@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@300;400;500;700&display=swap');

/* ══════════════════════════════════════════
   DESIGN SYSTEM VARIABLES (NOUS WHITE THEME)
   ══════════════════════════════════════════ */
:root {
  --bg: #FFFFFF;          /* Stark White Canvas */
  --bg-alt: #F9F9FB;      /* Sleek Light Gray Panels */
  --ink: #09090B;         /* High-Contrast Stone Black */
  --muted: #52525B;       /* Muted Zinc Gray */
  --faint: #E4E4E7;       /* Thin Hairlines */
  --border: #09090B;      /* Stark Structural Outline */
  --accent: #C8560A;      /* burmt orange/copper signature */
  --accent-hover: #AB4807;
  --accent-light: #FCEEE3;
  
  --font-sans: 'Geist', system-ui, -apple-system, sans-serif;
  --font-mono: 'Geist Mono', monospace;
  
  --radius: 6px;          /* Stark square-ish developer corners */
}

/* ══════════════════════════════════════════
   RESETS & GLOBAL STYLES
   ══════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--faint);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

/* Accessible focus ring indicators */
a:focus-visible, button:focus-visible, [role="button"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Layout container */
.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════
   FLOATING STARK NAVIGATION HEADER
   ══════════════════════════════════════════ */
.site-header-wrapper {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: none;
}

.site-header {
  pointer-events: auto;
  margin: 0 auto;
  max-width: 952px;
  width: calc(100% - 48px);
  height: 56px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  transition: all 0.2s ease;
}

.site-header.scrolled {
  top: 10px;
  height: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.logo-brand {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.logo-brand span {
  color: var(--accent);
}

/* Desktop navigation links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}

.nav-cta-btn {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--border);
  color: var(--bg) !important;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.nav-cta-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF !important;
}

/* Hamburger mobile button */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile Overlay menu */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 998;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-overlay.open {
  transform: translateY(0);
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.mobile-link {
  font-family: var(--font-mono);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  border-bottom: 1px solid var(--faint);
  padding-bottom: 10px;
}

.mobile-link.active,
.mobile-link:hover {
  color: var(--ink);
  border-bottom-color: var(--border);
}

.mobile-cta {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  background: var(--border);
  color: #FFFFFF !important;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
}

/* ══════════════════════════════════════════
   SECTION STYLING & RYHTHM
   ══════════════════════════════════════════ */
section {
  padding-top: clamp(32px, 5vw, 52px);
  padding-bottom: 12px;
}

.sec-head {
  margin-bottom: 20px;
  max-width: 650px;
}

.sec-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.sec-title {
  font-family: var(--font-sans);
  font-size: clamp(24px, 5.5vw, 32px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.sec-desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
}

.sec-divider {
  border: none;
  border-top: 1px solid var(--faint);
  margin-top: 24px;
}

/* ══════════════════════════════════════════
   HERO LAYOUT
   ══════════════════════════════════════════ */
.hero-section {
  padding-top: 110px;
  padding-bottom: 24px;
  min-height: auto;
  display: block;
}

.hero-layout {
  max-width: 820px;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(32px, 7vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: inherit;
}

.hero-subtitle {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 65ch;
  margin-bottom: 24px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ══════════════════════════════════════════
   STARK BUTTON SYSTEM
   ══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 500;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
  border: 1px solid var(--border);
}

.btn-primary {
  background: var(--border);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-secondary {
  background: var(--bg);
  color: var(--ink);
}

.btn-secondary:hover {
  background: var(--bg-alt);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-secondary:active {
  transform: translateY(1px);
}

/* ══════════════════════════════════════════
   BENTO GRID DESIGN
   ══════════════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.bento-card {
  background: var(--bg-alt);
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: none;
}

.bento-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.bento-icon {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 14px;
  background: var(--faint);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.bento-card h3 {
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 10px;
}

.bento-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* Bento grid sizing configurations */
.col-12 { grid-column: span 12; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-8 { grid-column: span 8; }

@media (max-width: 768px) {
  .bento-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}

/* ══════════════════════════════════════════
   EXPERIENCE REGISTRY (TABULAR ROWS)
   ══════════════════════════════════════════ */
.experience-summary {
  margin-bottom: 28px;
}

.experience-summary p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 16px;
}

.registry-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.registry-item {
  background: var(--bg);
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  padding: 14px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.registry-item:hover {
  border-color: var(--border);
  background: var(--bg-alt);
}

.registry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.registry-header-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.registry-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}

.registry-role {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.registry-company {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--accent);
  margin-left: 6px;
}

.registry-arrow {
  font-size: 16px;
  color: var(--muted);
  transition: transform 0.25s ease, color 0.15s;
  display: flex;
  align-items: center;
}

.registry-item:hover .registry-arrow {
  color: var(--accent);
}

.registry-item.expanded .registry-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.registry-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, margin-top 0.2s ease;
  margin-top: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

.registry-item.expanded .registry-content {
  max-height: 400px;
  opacity: 1;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--faint);
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tech-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--faint);
  color: var(--muted);
  padding: 2px 6px;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .registry-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .registry-arrow {
    align-self: flex-end;
    margin-top: -24px;
  }
}

/* ══════════════════════════════════════════
   STARK CARD BOXES (GitHub, Podcast, Substack)
   ══════════════════════════════════════════ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.content-card {
  background: var(--bg);
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
  position: relative;
}

.content-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.content-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 8px;
  flex-grow: 1;
}

.card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  border-top: 1px dashed var(--faint);
  padding-top: 12px;
}

.card-cta-icon {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.content-card:hover .card-cta-icon {
  gap: 8px;
}

/* ══════════════════════════════════════════
   PRESS & MEDIA wall
   ══════════════════════════════════════════ */
.press-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.press-chip {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--faint);
  padding: 6px 14px;
  border-radius: 4px;
  transition: all 0.15s ease;
}

.press-chip:hover {
  border-color: var(--border);
  color: var(--ink);
  background: var(--bg-alt);
}

/* ══════════════════════════════════════════
   OFFICE HOURS CALL OUT
   ══════════════════════════════════════════ */
.cta-section {
  padding-bottom: 80px;
}

.cta-box {
  background: var(--bg-alt);
  color: var(--ink);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.cta-box h2 {
  font-family: var(--font-sans);
  font-size: clamp(22px, 4.5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.2;
  max-width: 520px;
}

.cta-box p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 520px;
}

.cta-box .btn-primary {
  align-self: flex-start;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .cta-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 48px;
  }
  
  .cta-box .btn-primary {
    align-self: center;
    margin-top: 0;
  }
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--faint);
  padding: 40px 0;
}

.footer-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-layout {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 13px;
  color: var(--muted);
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  border-top: 1px dashed var(--faint);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-bottom a {
  color: var(--muted);
}

.footer-bottom a:hover {
  color: var(--ink);
}

/* ══════════════════════════════════════════
   SKELETONS & FEED ERRORS
   ══════════════════════════════════════════ */
.skeleton {
  pointer-events: none;
}

.skel-line {
  background: linear-gradient(90deg, var(--bg-alt) 25%, var(--faint) 50%, var(--bg-alt) 75%);
  background-size: 200% 100%;
  border-radius: 2px;
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.fetch-error {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--faint);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
}

.fetch-error a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

/* ══════════════════════════════════════════
   INTERACTIVE SUBPAGES (Calculator & Case Study)
   ══════════════════════════════════════════ */
.title-sec {
  padding-top: 90px;
  margin-bottom: 12px;
}

.title-sec h1 {
  font-family: var(--font-sans);
  font-size: clamp(26px, 6vw, 38px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.title-sec p {
  font-size: 14.5px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.6;
}

/* Calculator Grid */
.calc-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

@media (min-width: 768px) {
  .calc-container {
    grid-template-columns: 1fr 1.2fr;
  }
}

.input-panel {
  background: var(--bg-alt);
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.input-group label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.input-field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-field-wrapper span {
  position: absolute;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
}

.input-group input {
  width: 100%;
  padding: 10px 12px 10px 30px;
  border: 1px solid var(--faint);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 14px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.15s ease;
}

.input-group input:focus {
  outline: none;
  border-color: var(--border);
}

.output-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bar-chart-preview {
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--bg-alt);
}

.bar-chart-preview h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--muted);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.bar-container {
  display: flex;
  height: 20px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--faint);
}

.bar-seg {
  height: 100%;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
}

.bar-label-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bar-color-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.metric-card {
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--bg-alt);
}

.metric-card span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
}

.metric-card h3 {
  font-size: 18px;
  color: var(--accent);
  margin-top: 4px;
  font-family: var(--font-mono);
}

.captable-wrapper {
  border: 1px solid var(--faint);
  border-radius: var(--radius);
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-align: left;
}

th {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--faint);
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 600;
}

td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--faint);
  color: var(--muted);
  background: var(--bg);
}

tr:last-child td {
  border-bottom: none;
}

/* Case Study details */
.article-header {
  padding-top: 90px;
}

.article-header h1 {
  font-family: var(--font-sans);
  font-size: clamp(26px, 6vw, 36px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 8px;
}

.article-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--accent);
  display: flex;
  gap: 16px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.article-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 65ch;
}

.article-body h2 {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 24px;
  border-bottom: 1px solid var(--faint);
  padding-bottom: 6px;
  letter-spacing: -0.02em;
}

.article-body p strong {
  color: var(--ink);
}

.code-block {
  background: var(--bg-alt);
  border: 1px solid var(--faint);
  color: var(--ink);
  border-radius: 4px;
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  overflow-x: auto;
  line-height: 1.5;
}

.keyword-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--muted);
  background: var(--bg-alt);
  border: 1px solid var(--faint);
  padding: 16px;
  border-radius: var(--radius);
}

@media (min-width: 600px) {
  .keyword-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════════
   SCROLL REVEAL TRANSITIONS
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
