/* ============================================================
   wonk Landing Page — styles.css
   Dark sections: dark grey bg · beige + teal text
   Light sections: beige bg · dark grey + teal text
   Brand: Beige #ECEBDD | Dark #4B4B4B | Teal #2DA096
          Purple #A78BFA | Peach #FB9278
   Font:  Outfit (Google Fonts)
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Tokens ── */
:root {
  --beige:       #ECEBDD;
  --dark:        #4B4B4B;
  --white:       #FFFFFF;
  --teal:        #2DA096;
  --teal-dark:   #258880;
  --teal-light:  rgba(45,160,150,0.18);
  --purple:      #A78BFA;
  --purple-light: rgba(167,139,250,0.18);
  --peach:       #FB9278;
  --muted:       #7A7A6A;
  --border:      #DDDDD0;

  /* Dark surfaces */
  --dark-bg:      #3A3A3A;
  --dark-surface: #313131;
  --dark-card:    #454545;
  --dark-deep:    #272727;
  --dark-border:  rgba(236,235,221,0.10);
  --beige-muted:  rgba(236,235,221,0.62);
  --beige-soft:   rgba(236,235,221,0.82);

  --font: 'Outfit', system-ui, -apple-system, sans-serif;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.22), 0 1px 3px rgba(0,0,0,.14);
  --shadow-md: 0 4px 20px rgba(0,0,0,.30);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.36);

  /* Light section shadows */
  --shadow-sm-l: 0 1px 4px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.05);
  --shadow-md-l: 0 4px 20px rgba(0,0,0,.10);
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--dark-bg);
  color: var(--beige);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: 96px 0;
}

/* ── Scroll animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Material Symbols — thin lines, variable weight ── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 48;
  display: inline-block;
  line-height: 1;
  font-style: normal;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s,
              transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

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

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 18px;
  font-weight: 600;
}

/* ── Section typography — dark default ── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--beige);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--beige-muted);
  line-height: 1.65;
  max-width: 580px;
}

/* ── Light section overrides ── */
.section-light {
  background: var(--beige);
}

.section-light .section-title {
  color: var(--dark);
}

.section-light .section-sub {
  color: var(--muted);
}

.section-light .why-card,
.section-light .persona-card,
.section-light .problem-card {
  background: var(--white);
  border-color: var(--border);
  box-shadow: var(--shadow-sm-l);
}

.section-light .why-card:hover,
.section-light .persona-card:hover,
.section-light .problem-card:hover {
  box-shadow: var(--shadow-md-l);
}

.section-light .why-card h3,
.section-light .persona-card h3,
.section-light .problem-card h3 {
  color: var(--dark);
}

.section-light .why-card p,
.section-light .persona-card p,
.section-light .problem-card p {
  color: var(--muted);
}

.section-light .team-card {
  background: var(--white);
  border-color: var(--border);
  box-shadow: var(--shadow-sm-l);
}

.section-light .team-card:hover {
  box-shadow: var(--shadow-md-l);
}

.section-light .team-info h3 {
  color: var(--dark);
}

.section-light .team-info p {
  color: var(--muted);
}

.section-light .team-photo {
  background: var(--beige);
}

.section-light .team-photo--open {
  background: #e0dfd1;
  border-bottom-color: var(--border);
}

.section-light .team-photo-q {
  color: rgba(75,75,75,0.18);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(49,49,49,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dark-border);
  height: 68px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  cursor: pointer;
}

.nav-logo-word {
  font-family: var(--font);
  font-size: 26px;
  font-weight: 700;
  color: var(--beige);
  letter-spacing: -0.01em;
}

.nav-logo-tag {
  font-size: 10px;
  font-weight: 400;
  color: var(--beige-muted);
  margin-top: 1px;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0 auto;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--beige-soft);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  transition: background 0.15s, color 0.15s;
}

.nav-links a:hover {
  background: rgba(236,235,221,0.08);
  color: var(--teal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-actions .btn {
  padding: 10px 22px;
  font-size: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.hamburger:hover {
  background: rgba(236,235,221,0.08);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--beige);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--dark-surface);
  border-bottom: 1px solid var(--dark-border);
  padding: 16px 28px 24px;
  z-index: 299;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-md);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--beige-soft);
  padding: 13px 4px;
  border-bottom: 1px solid var(--dark-border);
  transition: color 0.15s;
}

.mobile-menu a:last-of-type {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--teal);
}

.mobile-menu .btn {
  margin-top: 12px;
  width: 100%;
}

/* ============================================================
   HERO  ·  dark
   ============================================================ */
.hero {
  padding: 56px 0 48px;
  background: var(--dark-bg);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero-text {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.hero-illustration {
  flex-shrink: 0;
  width: 240px;
  opacity: 0.92;
}

.hero-illustration svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.hero-logo {
  font-size: 48px;
  font-weight: 700;
  color: var(--beige);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-tagline {
  font-size: 18px;
  font-weight: 400;
  color: var(--beige-muted);
  margin-top: 4px;
}

.hero h1 {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--beige);
  line-height: 1.15;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
  max-width: 580px;
}

.hero h1 .accent {
  color: var(--purple);
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 400;
  color: var(--beige-muted);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   COSMO LOOP  ·  hero illustration animation
   ============================================================ */

/* Each scene group: hidden by default, transform centred */
.cosmo-s {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: 50% 50%;
}

/* Full animation shorthand per scene (24s loop) */
.cosmo-s1 { animation: cs1 24s ease-in-out infinite both; }
.cosmo-s2 { animation: cs2 24s ease-in-out infinite both; }
.cosmo-s3 { animation: cs3 24s ease-in-out infinite both; }
.cosmo-s4 { animation: cs4 24s ease-in-out infinite both; }
.cosmo-s5 { animation: cs5 24s ease-in-out infinite both; }
.cosmo-s6 { animation: cs6 24s ease-in-out infinite both; }
.cosmo-s7 { animation: cs7 24s ease-in-out infinite both; }
.cosmo-s8 { animation: cs8 24s ease-in-out infinite both; }

@keyframes cs1 {
  0%    { opacity: 0; transform: scale(1.08) translateY(10px); }
  2%    { opacity: 1; transform: scale(1)    translateY(0); }
  12%   { opacity: 1; transform: scale(1)    translateY(0); }
  14%   { opacity: 0; transform: scale(1.4)  translateY(-38px); }
  100%  { opacity: 0; transform: scale(1.4)  translateY(-38px); }
}
@keyframes cs2 {
  0%, 12% { opacity: 0; transform: scale(1.08); }
  14%      { opacity: 1; transform: scale(1); }
  25%      { opacity: 1; transform: scale(1); }
  27%      { opacity: 0; transform: scale(0.97); }
  100%     { opacity: 0; }
}
@keyframes cs3 {
  0%, 25% { opacity: 0; transform: scale(0.9); }
  27%      { opacity: 1; transform: scale(1); }
  39%      { opacity: 1; transform: scale(1); }
  41%      { opacity: 0; transform: scale(1.08); }
  100%     { opacity: 0; }
}
@keyframes cs4 {
  0%, 39% { opacity: 0; transform: scale(0.88); }
  41%      { opacity: 1; transform: scale(1); }
  52%      { opacity: 1; transform: scale(1); }
  54%      { opacity: 0; transform: scale(1.08); }
  100%     { opacity: 0; }
}
@keyframes cs5 {
  0%, 52% { opacity: 0; transform: scale(0.9); }
  54%      { opacity: 1; transform: scale(1); }
  63%      { opacity: 1; transform: scale(1); }
  65%      { opacity: 0; transform: scale(1.06); }
  100%     { opacity: 0; }
}
@keyframes cs6 {
  0%, 63% { opacity: 0; }
  65%      { opacity: 1; }
  73%      { opacity: 1; }
  75%      { opacity: 0; }
  100%     { opacity: 0; }
}
@keyframes cs7 {
  0%, 73% { opacity: 0; transform: scale(1.16); }
  75%      { opacity: 1; transform: scale(1); }
  84%      { opacity: 1; transform: scale(1); }
  86%      { opacity: 0; transform: scale(0.95); }
  100%     { opacity: 0; }
}
@keyframes cs8 {
  0%, 84% { opacity: 0; transform: scale(1.08); }
  86%      { opacity: 1; transform: scale(1); }
  97%      { opacity: 1; }
  100%     { opacity: 0; }
}

/* Respect reduced-motion preference — show first scene statically */
@media (prefers-reduced-motion: reduce) {
  .cosmo-s1,
  .cosmo-s2,
  .cosmo-s3,
  .cosmo-s4,
  .cosmo-s5,
  .cosmo-s6,
  .cosmo-s7,
  .cosmo-s8 { animation: none; }
  .cosmo-s1 { opacity: 1; }

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   WHY WONK / WHY NOW  ·  light
   ============================================================ */
.why-now {
  /* background set by .section-light */
}

.why-now-header {
  margin-bottom: 56px;
  max-width: 780px;
}

.why-now-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.why-now-body p {
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.70;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.problem-card:hover {
  transform: translateY(-3px);
}

.problem-icon {
  font-size: 44px;
  color: var(--teal);
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--beige);
  line-height: 1.3;
}

.problem-card p {
  font-size: 15px;
  color: var(--beige-muted);
  line-height: 1.65;
}

/* ============================================================
   HOW IT WORKS  ·  dark
   ============================================================ */
.how {
  background: var(--dark-surface);
}

.how-header {
  margin-bottom: 64px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: var(--purple-light);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step:first-child { padding-left: 0; }
.step:last-child  { padding-right: 0; }

.step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--dark-surface), 0 0 0 6px var(--purple-light);
}

.step-icon {
  font-size: 44px;
  color: var(--teal);
}

.step h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--beige);
  line-height: 1.3;
}

.step p {
  font-size: 15px;
  font-weight: 400;
  color: var(--beige-muted);
  line-height: 1.6;
}

.step-svg-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--teal);
}

/* ============================================================
   WHY WONK IS DIFFERENT  ·  light
   ============================================================ */
.why {
  /* background set by .section-light */
}

.why-header {
  margin-bottom: 52px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-grid .why-card:nth-child(4) { grid-column: 1 / 2; }
.why-grid .why-card:nth-child(5) { grid-column: 2 / 4; }

.why-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--dark-border);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-icon {
  font-size: 44px;
  color: var(--teal);
}

.why-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--beige);
}

.why-card p {
  font-size: 15px;
  font-weight: 400;
  color: var(--beige-muted);
  line-height: 1.65;
}

/* ============================================================
   WHAT SETS US APART  ·  dark
   ============================================================ */
.compare {
  background: var(--dark-bg);
}

.compare-header {
  margin-bottom: 52px;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--dark-border);
}

table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 15px;
  font-family: var(--font);
}

thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--beige-muted);
  background: var(--dark-deep);
  border-bottom: 2px solid var(--dark-border);
  white-space: nowrap;
}

thead th.col-wonk {
  background: var(--teal);
  color: var(--white);
  text-align: center;
  font-weight: 700;
  font-size: 15px;
}

tbody tr {
  border-bottom: 1px solid var(--dark-border);
  transition: background 0.12s;
}

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

tbody tr:hover td {
  background: rgba(255,255,255,0.04);
}

tbody tr:hover td.col-wonk {
  background: #37b5a9;
}

tbody td {
  padding: 15px 20px;
  color: var(--beige-soft);
  vertical-align: middle;
  font-weight: 400;
  background: var(--dark-card);
}

td.feature-col {
  font-weight: 600;
  color: var(--beige);
}

td.col-wonk {
  background: rgba(45,160,150,0.15);
  text-align: center;
  font-weight: 600;
  color: var(--teal);
}

.check   { color: var(--teal); font-weight: 700; }
.cross   { color: var(--beige-muted); opacity: 0.6; }
.partial { color: var(--peach); font-weight: 600; font-size: 13px; }

/* Section label color variants */
.why-now .section-label,
.who .section-label {
  color: var(--purple);
}

/* ============================================================
   WHO IT'S FOR  ·  light
   ============================================================ */
.who {
  /* background set by .section-light */
}

.who-header {
  margin-bottom: 52px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.who-header-text {
  flex: 1;
  min-width: 0;
}

.who-illustration {
  flex-shrink: 0;
  width: 110px;
  margin-top: 8px;
  opacity: 0.82;
}

.who-illustration svg {
  width: 100%;
  height: auto;
  display: block;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.persona-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--dark-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.persona-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.persona-icon {
  font-size: 40px;
  color: var(--teal);
}

.persona-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--beige);
  line-height: 1.3;
}

.persona-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--beige-muted);
  line-height: 1.6;
}

/* ============================================================
   WAITLIST / FINAL CTA  ·  dark
   ============================================================ */
.waitlist {
  background: var(--dark-deep);
  color: var(--beige);
}

.waitlist .section-title {
  color: var(--beige);
  max-width: 600px;
}

.waitlist .section-sub {
  color: var(--beige-muted);
}

.waitlist-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.offer-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}

.offer-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--beige);
  margin-bottom: 20px;
  line-height: 1.3;
}

.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--beige-muted);
  line-height: 1.5;
}

.offer-icon {
  font-size: 22px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 1px;
}

.waitlist-form-wrap {}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--beige-muted);
  letter-spacing: 0.03em;
}

.form-field input,
.form-field textarea {
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: var(--beige);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
  resize: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(236,235,221,0.25);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  background: rgba(255,255,255,0.09);
}

.form-field input.error,
.form-field textarea.error {
  border-color: var(--peach);
}

.field-error {
  font-size: 12px;
  color: var(--peach);
  display: none;
  margin-top: 2px;
}

.field-error.visible { display: block; }

.form-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.checkbox-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--beige);
  line-height: 1.4;
}

.checkbox-option input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--teal);
  cursor: pointer;
}

.form-submit { margin-top: 20px; }
.form-submit .btn { width: 100%; }

.form-privacy {
  font-size: 12px;
  color: rgba(236,235,221,0.30);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.form-success {
  display: none;
  text-align: center;
  padding: 48px 0;
}

.form-success.visible { display: block; }

.form-success h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 16px;
}

.form-success p {
  font-size: 16px;
  color: var(--beige-muted);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto;
}

/* ============================================================
   ABOUT  ·  light
   ============================================================ */
.about {
  /* background set by .section-light */
}

.about-header {
  margin-bottom: 60px;
}

.about-mission {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
  max-width: 720px;
}

.about-mission p {
  font-size: 17px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.70;
}

/* Team grid — compact horizontal cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--dark-border);
  background: var(--dark-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Photo — circular headshot */
.team-photo {
  width: 156px;
  height: 156px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--dark-deep);
  flex-shrink: 0;
  margin: 24px auto 16px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  transition: filter 0.3s;
}

.team-card:hover .team-photo img {
  filter: grayscale(70%);
}

/* Open CTO placeholder */
.team-photo--open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--dark-deep);
  border-bottom: 1px solid var(--dark-border);
}

.team-photo-q {
  font-size: 64px;
  font-weight: 700;
  color: rgba(236,235,221,0.14);
  line-height: 1;
}

.team-info {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.team-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--beige);
  margin-bottom: 2px;
}

.team-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.team-role--open {
  color: var(--peach);
}

.team-info p {
  font-size: 13px;
  color: var(--beige-muted);
  line-height: 1.65;
}

.team-hire-btn {
  margin-top: 16px;
  align-self: flex-start;
  padding: 9px 18px;
  font-size: 13px;
}

/* ============================================================
   FOOTER  ·  dark
   ============================================================ */
footer {
  background: var(--dark-deep);
  border-top: 1px solid var(--dark-border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo-word {
  font-size: 20px;
  font-weight: 700;
  color: var(--beige);
  font-family: var(--font);
}

.footer-logo-tag {
  font-size: 11px;
  color: var(--beige-muted);
  margin-top: 2px;
  font-weight: 400;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--beige-muted);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--teal);
}

.footer-legal {
  font-size: 12px;
  color: rgba(236,235,221,0.28);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 32px;
  }

  .steps::before { display: none; }
  .step { padding: 0; }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid .why-card:nth-child(4),
  .why-grid .why-card:nth-child(5) {
    grid-column: auto;
  }

  .waitlist-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-grid .problem-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-illustration {
    order: -1;
    width: 180px;
    margin-bottom: -8px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger { display: flex; }

  section { padding: 72px 0; }

  .hero { padding: 40px 0 36px; }

  .hero-logo { font-size: 40px; }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-grid    { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }

  .persona-grid { grid-template-columns: repeat(2, 1fr); }

  .team-grid { grid-template-columns: 1fr; }

  .problem-grid .problem-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .why-now-header { max-width: 100%; }

  .who-header {
    flex-direction: column;
    gap: 0;
  }

  .who-illustration {
    display: none;
  }
}

@media (max-width: 540px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn { width: 100%; }

  .hero-illustration {
    width: 140px;
  }

  .persona-grid { grid-template-columns: 1fr; }
}
