/* ── Variables ──────────────────────────────────────────────────────────── */
:root {
  --cream:         #FFFBF0;
  --cream-mid:     #F7F2E6;
  --cream-deep:    #F2EDE4;
  --compare-bg:    #EDE8DF;
  --hiw-bg:        #F0EBF8;

  --green:         #3DC96B;
  --green-light:   #8EEAAA;
  --green-dark:    #28A354;
  --green-pale:    #E8FAF0;
  --green-tint:    #F0FDF5;

  --amber:         #FFBE2E;
  --amber-light:   #FFD97A;
  --amber-pale:    #FFF8E1;
  --amber-tint:    #FFFBEB;

  --purple:        #8B7CF7;
  --purple-light:  #C4B9FF;
  --purple-pale:   #EDE8FF;
  --purple-tint:   #F5F3FF;

  --coral:         #FF6B4A;
  --coral-light:   #FFAD9E;
  --coral-tint:    #FFF3F0;

  --ink:           #1C1408;
  --ink-mid:       #5C4A2A;
  --ink-muted:     #9B8B6A;
  --ink-faint:     #C8BBA8;

  --white:         #FFFFFF;
  --border:        rgba(28,20,8,0.10);
  --border-strong: rgba(28,20,8,0.18);
  --shadow-sm: 0 2px 12px rgba(28,20,8,0.08);
  --shadow:    0 8px 40px rgba(28,20,8,0.10);
  --shadow-lg: 0 24px 80px rgba(28,20,8,0.14);

  --nav-h:     68px;
  --container: 1200px;
  --ease-out:  cubic-bezier(0.2, 0.8, 0.2, 1);

  /* CTA dark section */
  --cta-bg:    #162812;
  --footer-bg: #0F1E0D;
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: 'Nunito', sans-serif; line-height: 1.15; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(255,251,240,0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(28,20,8,0.06);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo-img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-mid);
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--ink); background: rgba(28,20,8,0.06); }
.nav-cta-sm {
  padding: 9px 20px;
  font-size: 0.88rem;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  color: var(--white);
  background: var(--green);
  border-radius: 12px;
  margin-left: 6px;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(61,201,107,0.35);
}
.nav-cta-sm:hover { background: var(--green-dark); box-shadow: 0 6px 20px rgba(61,201,107,0.45); }
.nav-cta-sm:active { transform: scale(0.97); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.2s; }
.nav-mobile {
  display: none; flex-direction: column;
  padding: 12px 20px 20px;
  background: rgba(255,251,240,0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile-link {
  padding: 12px 8px;
  font-size: 1rem; font-weight: 600;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--border);
}
.nav-mobile-link:last-child { border-bottom: none; }
.nav-mobile-cta {
  margin-top: 12px; padding: 14px; text-align: center;
  background: var(--green); color: var(--white);
  font-weight: 800; font-family: 'Nunito', sans-serif;
  border-radius: 12px; border-bottom: none;
}
@media (max-width: 740px) { .nav-links { display: none; } .nav-burger { display: flex; } }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px;
  font-size: 1rem; font-weight: 800; font-family: 'Nunito', sans-serif;
  color: var(--white); background: var(--green);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(61,201,107,0.4);
  transition: background 0.2s, box-shadow 0.2s, transform 0.12s;
}
.btn-primary:hover { background: var(--green-dark); box-shadow: 0 8px 32px rgba(61,201,107,0.5); }
.btn-primary:active { transform: scale(0.97); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px;
  font-size: 1rem; font-weight: 700; font-family: 'Nunito', sans-serif;
  color: var(--ink);
  border: 2px solid var(--border-strong);
  border-radius: 14px;
  background: rgba(255,255,255,0.6);
  transition: border-color 0.2s, background 0.2s, transform 0.12s;
}
.btn-outline:hover { border-color: var(--green); background: var(--green-tint); color: var(--green-dark); }
.btn-outline:active { transform: scale(0.97); }

.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 40px;
  font-size: 1.1rem; font-weight: 800; font-family: 'Nunito', sans-serif;
  color: var(--cta-bg); background: var(--green);
  border-radius: 16px;
  box-shadow: 0 8px 36px rgba(61,201,107,0.45);
  transition: background 0.2s, box-shadow 0.3s, transform 0.12s;
}
.btn-cta:hover { background: var(--green-light); box-shadow: 0 10px 48px rgba(61,201,107,0.6); }
.btn-cta:active { transform: scale(0.97); }
.btn-arrow { transition: transform 0.2s; }
.btn-cta:hover .btn-arrow { transform: translateX(5px); }

/* ── Sections shared ─────────────────────────────────────────────────────── */
.section { padding: 96px 0; position: relative; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green-dark);
  margin-bottom: 10px;
}
.section-heading {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 48px) 40px 44px;
  position: relative;
  overflow: hidden;
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 0;
}
.hero-blob-a {
  width: 600px; height: 480px; top: -80px; left: -120px;
  background: radial-gradient(circle, rgba(61,201,107,0.16), transparent 70%);
}
.hero-blob-b {
  width: 500px; height: 400px; top: 60px; right: -80px;
  background: radial-gradient(circle, rgba(255,190,46,0.14), transparent 70%);
}
.hero-blob-c {
  width: 360px; height: 280px; bottom: 160px; left: 35%;
  background: radial-gradient(circle, rgba(139,124,247,0.10), transparent 70%);
}
.hero-particles {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 820px;
  width: 100%;
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
}
.hero-badge {
  display: inline-block;
  padding: 7px 18px;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-pale);
  border: 1.5px solid var(--green-light);
  border-radius: 999px;
}
.hero-pre {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  color: var(--ink-mid);
}
.hero-headline {
  font-size: clamp(3rem, 7.5vw, 5.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.0;
}
.hero-headline em {
  font-style: normal;
  color: var(--ink);
}

/* "Move!" slides in from the right with a spring bounce after the headline reveals */
@keyframes heroMoveIn {
  0%   { opacity: 0; transform: translateX(200px) scale(0.88); }
  60%  { opacity: 1; transform: translateX(-10px) scale(1.04); }
  78%  { transform: translateX(5px) scale(0.98); }
  90%  { transform: translateX(-2px) scale(1.01); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-move {
  display: inline-block;
  color: var(--green);
  opacity: 0;
  animation: heroMoveIn 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.9s;
}

/* Respect reduced-motion — just fade in with no movement */
@media (prefers-reduced-motion: reduce) {
  .hero-move {
    animation: fadeIn 0.4s ease forwards;
    animation-delay: 0.9s;
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--ink-mid);
  max-width: 540px; line-height: 1.7;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-top: 6px;
}
.hero-agents {
  position: relative; z-index: 2;
  width: 100%; max-width: 740px;
  margin: 24px auto 0;
}
.hero-agents img {
  width: 100%; height: auto;
  filter: drop-shadow(0 12px 32px rgba(28,20,8,0.11));
}
/* ── Unified section-transition wave ─────────────────────────────────────────
   Full-bleed (escapes any parent padding via the 100vw trick), pinned to the
   bottom edge of the UPPER section. The SVG path is filled with the NEXT
   section's colour, so the wave reads as the lower section rising up.        */
.sec-wave {
  position: absolute;
  bottom: -1px;            /* 1px overlap removes sub-pixel seams */
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  line-height: 0;
  pointer-events: none;
  z-index: 4;
}
.sec-wave svg { display: block; width: 100%; height: 52px; }
@media (max-width: 700px) { .sec-wave svg { height: 36px; } }

/* ── Compare section ─────────────────────────────────────────────────────── */
.section-compare {
  background: var(--compare-bg);
  padding: 80px 0 72px;
  position: relative;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}
.compare-card {
  border-radius: 28px;
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 24px;
  position: relative; overflow: hidden;
}
.compare-boring {
  background: #EDECE6;
  border: 2px solid #D8D5CC;
}
.compare-moikk {
  background: linear-gradient(150deg, #E4F9EC, #F5FFED);
  border: 2px solid #8EEAAA;
}
.compare-img-wrap {
  display: flex; align-items: center; justify-content: center;
  min-height: 180px;
}
.compare-img-wrap img { max-height: 200px; width: auto; max-width: 100%; }
.compare-boring .compare-img-wrap img { filter: grayscale(30%) brightness(0.95); }

.compare-content { display: flex; flex-direction: column; gap: 12px; }
.compare-tag {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px; width: fit-content;
}
.compare-tag-boring  { background: #D5D3CC; color: #6B665E; }
.compare-tag-moikk   { background: var(--green-pale); color: var(--green-dark); border: 1.5px solid var(--green-light); }
.compare-heading {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900; color: var(--ink);
}
.compare-card p { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.65; }


/* ── Features ────────────────────────────────────────────────────────────── */
.section-features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
.feature-card {
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.08s linear, box-shadow 0.25s;
}
.feature-card:hover { box-shadow: var(--shadow); }
.fc-green  { background: linear-gradient(150deg, var(--green-tint), #FFFFFF); border: 2px solid #A8EEBE; border-radius: 24px 24px 56px 24px; }
.fc-amber  { background: linear-gradient(150deg, var(--amber-tint), #FFFFFF); border: 2px solid #FADA8A; border-radius: 56px 24px 24px 24px; }
.fc-purple { background: linear-gradient(150deg, var(--purple-tint), #FFFFFF); border: 2px solid #C8BCFF; border-radius: 24px 56px 24px 24px; }
.fc-coral  { background: linear-gradient(150deg, var(--coral-tint),  #FFFFFF); border: 2px solid #FFBFB0; border-radius: 24px 24px 24px 56px; }
.fc-icon-wrap {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px; font-size: 1.5rem;
  flex-shrink: 0;
}
.fc-green  .fc-icon-wrap { background: rgba(61,201,107,0.14); }
.fc-amber  .fc-icon-wrap { background: rgba(255,190,46,0.18); }
.fc-purple .fc-icon-wrap { background: rgba(139,124,247,0.14); }
.fc-coral  .fc-icon-wrap { background: rgba(255,107,74,0.14); }
.feature-card h3 { font-family: 'Nunito', sans-serif; font-size: 1.05rem; font-weight: 800; color: var(--ink); }
.feature-card p  { font-size: 0.875rem; color: var(--ink-mid); line-height: 1.7; }

/* ── Board showcase (60/40) ──────────────────────────────────────────────── */
.section-boards {
  background: var(--cream-mid);
  padding: 0 0 52px;
  position: relative;
}

.boards-layout {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 680px;
}
.boards-info {
  padding: 56px 40px 56px 60px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 18px;
}
.boards-heading {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.boards-intro {
  font-size: 0.9rem;
  color: var(--ink-mid); line-height: 1.65;
}
.board-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}
.board-tab {
  padding: 8px 16px;
  font-size: 0.82rem; font-weight: 700; font-family: 'Nunito', sans-serif;
  color: var(--ink-mid);
  background: rgba(255,255,255,0.7);
  border: 1.5px solid var(--border-strong);
  border-radius: 999px;
  transition: all 0.18s;
  white-space: nowrap;
}
.board-tab:hover { color: var(--ink); border-color: var(--green); background: var(--green-tint); }
.board-tab.active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 3px 12px rgba(61,201,107,0.35);
}
.board-tab:active { transform: scale(0.97); }

.board-descriptions { min-height: 52px; }
.board-desc { display: none; font-size: 0.88rem; color: var(--ink-mid); line-height: 1.65; animation: fadeUp 0.35s var(--ease-out) forwards; }
.board-desc.active { display: block; }
.board-desc strong { color: var(--ink); }

.board-progress-row {
  display: flex; align-items: center; gap: 10px;
  margin-top: 4px;
}
.board-progress-wrap {
  flex: 1; height: 3px;
  background: var(--border);
  border-radius: 999px; overflow: hidden;
}
.board-progress-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 999px;
}
.board-progress-bar.running {
  animation: boardProgress 10s linear forwards;
}
@keyframes boardProgress { from{width:0} to{width:100%} }

.board-cycle-hint {
  font-size: 0.7rem; font-weight: 700;
  color: var(--ink-faint); letter-spacing: 0.06em; text-transform: uppercase;
  white-space: nowrap; transition: opacity 0.3s;
}
.board-cycle-hint.locked { opacity: 0; pointer-events: none; }

.boards-stage-wrap {
  padding: 40px 48px 40px 16px;
  display: flex; align-items: center;
}
.board-stage {
  width: 100%; height: 560px;
  position: relative; overflow: hidden;
  border-radius: 20px;
  background: #080d0c;
  box-shadow: 0 24px 80px rgba(28,20,8,0.22), 0 0 0 1px rgba(255,255,255,0.06);
}

/* ── How It Works ────────────────────────────────────────────────────────── */
.section-hiw { background: var(--hiw-bg); padding-bottom: 72px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}
@media (max-width: 960px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}
.step-card {
  padding: 36px 32px;
  border-radius: 24px;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 12px;
  border: 2px solid transparent;
}
.step-green  { background: linear-gradient(150deg, #E8FAF0, #FFFFFF); border-color: #A8EEBE; }
.step-amber  { background: linear-gradient(150deg, var(--amber-tint), #FFFFFF); border-color: #FADA8A; }
.step-purple { background: linear-gradient(150deg, var(--purple-tint), #FFFFFF); border-color: #C8BCFF; }
.step-coral  { background: linear-gradient(150deg, var(--coral-tint),  #FFFFFF); border-color: #FFBFB0; }
.step-num-bg {
  position: absolute; top: 10px; right: 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 5.5rem; font-weight: 900; line-height: 1;
  color: var(--green); opacity: 0.08;
  pointer-events: none; user-select: none;
}
.step-icon { font-size: 2.2rem; }
.step-card h3 { font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800; color: var(--ink); }
.step-card p  { font-size: 0.875rem; color: var(--ink-mid); line-height: 1.7; }

/* step-connector removed — 4-card grid uses step numbers for order */

/* callout section removed */

/* ── CTA section ─────────────────────────────────────────────────────────── */
.section-cta {
  background: var(--cta-bg);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.cta-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.cta-blob-a {
  width: 500px; height: 400px; top: -100px; left: -60px;
  background: rgba(61,201,107,0.12);
}
.cta-blob-b {
  width: 400px; height: 350px; bottom: -80px; right: -60px;
  background: rgba(143,212,26,0.10);
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}
.cta-logo { height: 44px; width: auto; opacity: 0.55; }
.cta-badge {
  padding: 5px 16px;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green-light);
  background: rgba(61,201,107,0.12);
  border: 1px solid rgba(61,201,107,0.25);
  border-radius: 999px;
}
.cta-headline {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--white); line-height: 1.05;
}
.cta-sub { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 440px; line-height: 1.7; }
.cta-note { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-top: -4px; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--footer-bg);
  padding: 48px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px; text-align: center;
}
.footer-logo    { height: 32px; width: auto; opacity: 0.55; }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.3); letter-spacing: 0.04em; }
.footer-email   { font-size: 0.88rem; font-weight: 600; color: var(--green-light); transition: color 0.2s; }
.footer-email:hover { color: var(--green); }

/* ── Scroll reveal ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  transition-delay: var(--rd, 0s);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { --rd: 0.06s; } .d2 { --rd: 0.14s; } .d3 { --rd: 0.22s; }
.d4 { --rd: 0.30s; } .d5 { --rd: 0.38s; }

@keyframes fadeUp { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }

/* ── Tilt cards ──────────────────────────────────────────────────────────── */
.tilt-card { transition: transform 0.08s linear, box-shadow 0.25s, border-color 0.25s; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .boards-layout { grid-template-columns: 1fr; }
  .boards-info {
    padding: 56px 40px 32px;
    justify-content: flex-start;
  }
  .boards-stage-wrap { padding: 0 24px 48px; }
  .board-stage { height: 440px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { width: 2px; height: 32px; border-top: none; border-left: 2.5px dashed rgba(61,201,107,0.4); margin: 0 auto; }
}
@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .compare-grid { grid-template-columns: 1fr; gap: 20px; }
  .callouts-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .board-stage { height: 320px; }
  .boards-info { padding: 40px 20px 24px; }
  .boards-stage-wrap { padding: 0 16px 40px; }
  .hero { padding: calc(var(--nav-h) + 32px) 20px 0; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline { justify-content: center; }
}
@media (max-width: 480px) {
  .board-tab { padding: 7px 12px; font-size: 0.76rem; }
  .compare-grid { padding: 0 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
