/* ===================================================================
   Sūtra — design system  (multi-page static site)
   Palette: warm ivory paper · deep ink-navy · saffron/gold accent.
   Type:    Fraunces (display serif) + Inter (text).
   =================================================================== */

:root {
  --paper:      #FBFAF6;
  --paper-2:    #F3F0E8;
  --paper-3:    #ECE7DA;
  --ink:        #16130E;
  --ink-soft:   #4A453C;
  --ink-faint:  #857E70;
  --line:       #E4DECF;
  --line-soft:  #EEE9DD;
  --gold:       #B8892B;
  --gold-deep:  #97701F;
  --gold-glow:  rgba(184,137,43,.15);
  --midnight:   #141B26;
  --midnight-2: #1C2634;
  --midnight-3: #232F40;

  --maxw: 1160px;
  --maxw-narrow: 760px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(20,16,8,.05);
  --shadow-md: 0 18px 48px -24px rgba(20,16,8,.35);
  --shadow-lg: 0 40px 80px -32px rgba(20,16,8,.45);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-text: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-text);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: var(--maxw-narrow); }

/* ---------- Typography helpers ---------- */
.eyebrow, .section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 16px;
}
.section-eyebrow--light { color: #E7B85C; }

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0 0 18px;
}
.section-title--light { color: #F6F1E7; }
.section-title em { font-style: italic; color: var(--gold-deep); }
.section-title--light em { color: #E7B85C; }

.section-lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 48px;
}
.section-lead--light { color: #C8CEDA; }
.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .section-lead { margin-inline: auto; }

.pad { padding: clamp(72px, 10vw, 128px) 0; }
.pad-sm { padding: clamp(56px, 7vw, 90px) 0; }
section { scroll-margin-top: 88px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .01em;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { --btn-bg: var(--gold); --btn-fg: #fff; }
.btn--primary:hover { --btn-bg: var(--gold-deep); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line); }
.btn--ghost:hover { --btn-bg: var(--paper-2); box-shadow: var(--shadow-sm); }
.btn--light { --btn-bg: #F6F1E7; --btn-fg: var(--midnight); }
.btn--outline-light { --btn-bg: transparent; --btn-fg: #F6F1E7; border-color: rgba(255,255,255,.28); }
.btn--outline-light:hover { --btn-bg: rgba(255,255,255,.08); }
.btn--sm { padding: 10px 20px; font-size: .95rem; }
.btn--block { width: 100%; padding-block: 16px; }

.textlink {
  display: inline-flex; align-items: center; gap: .4em;
  font-weight: 600; color: var(--gold-deep);
  text-decoration: none;
  transition: gap .18s var(--ease), color .18s var(--ease);
}
.textlink svg { width: 1em; height: 1em; transition: transform .18s var(--ease); }
.textlink:hover { color: var(--gold); gap: .65em; }
.textlink:hover svg { transform: translateX(2px); }

/* ---------- Badge / pill ---------- */
.badge {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  padding: 6px 14px; border-radius: 999px;
  background: var(--gold-glow); color: var(--gold-deep);
  border: 1px solid rgba(184,137,43,.22);
}
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* ================= NAV ================= */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand__logo { width: 30px; height: 30px; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; letter-spacing: .01em; }

.nav__links { display: flex; gap: 30px; align-items: center; }
.nav__links a {
  color: var(--ink-soft); text-decoration: none; font-size: .96rem; font-weight: 500;
  position: relative; transition: color .18s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .22s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); }

.nav__right { display: flex; align-items: center; gap: 10px; }
/* The header Log in / Request-a-demo pair; on mobile they move into the menu. */
.nav__mob { display: none; }
.nav__toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: transparent; border-radius: 10px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .22s var(--ease), opacity .22s var(--ease);
}
.nav__toggle span::before { transform: translateY(-6px); }
.nav__toggle span::after  { transform: translateY(4px); }
.nav.is-open .nav__toggle span { background: transparent; }
.nav.is-open .nav__toggle span::before { transform: rotate(45deg); }
.nav.is-open .nav__toggle span::after  { transform: rotate(-45deg) translateY(-1px); }

/* ================= HERO ================= */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(56px, 8vw, 104px) 0 clamp(56px, 8vw, 96px);
  background:
    radial-gradient(52% 70% at 82% 6%, var(--gold-glow), transparent 60%),
    radial-gradient(46% 56% at 4% 100%, rgba(20,27,38,.05), transparent 60%),
    var(--paper);
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero__copy { max-width: 620px; }
.hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2.4rem, 5.2vw, 4rem); line-height: 1.05; letter-spacing: -.015em;
  margin: 22px 0 24px;
}
.hero__title em { font-style: italic; color: var(--gold-deep); }
.hero__sub { font-size: clamp(1.05rem, 1.5vw, 1.24rem); color: var(--ink-soft); margin: 0 0 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note { margin: 20px 0 0; font-size: .9rem; color: var(--ink-faint); }

/* Hero floating dashboard */
.hero__visual { position: relative; min-height: 420px; }
.mock {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 18px 20px;
}
.mock__label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.mock--main { top: 20px; left: 0; width: 74%; z-index: 2; animation: float 7s var(--ease) infinite; }
.mock--score { top: 0; right: 0; width: 46%; z-index: 3; animation: float 6s var(--ease) infinite .6s; }
.mock--collections { bottom: 0; left: 8%; width: 62%; z-index: 4; animation: float 8s var(--ease) infinite .3s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.mock__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; margin: 4px 0 14px; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 84px; }
.bars span { flex: 1; background: linear-gradient(180deg, #E8CD8A, var(--gold)); border-radius: 5px 5px 0 0; opacity: .9; }
.mock__row { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-top: 1px solid var(--line-soft); font-size: .86rem; }
.mock__row:first-of-type { border-top: none; }
.mock__pill { font-size: .72rem; font-weight: 600; padding: 3px 9px; border-radius: 999px; }
.mock__pill--good { background: #EAF6EC; color: #1E6B33; }
.mock__pill--warn { background: #FBF1DA; color: var(--gold-deep); }

.score-ring { display: flex; align-items: center; gap: 14px; }
.score-ring svg { width: 62px; height: 62px; }
.score-ring__num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; line-height: 1; }
.score-ring__cap { font-size: .8rem; color: var(--ink-faint); }

/* ================= STAT BAND ================= */
.statband { background: var(--midnight); color: #EDEAE1; }
.statband__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.09); border-radius: var(--radius); overflow: hidden; }
.statband .stat { background: var(--midnight-2); padding: 34px 28px; text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 500; line-height: 1; color: #F6F1E7; }
.stat__num em { font-style: normal; color: #E7B85C; }
.stat__label { margin-top: 8px; font-size: .92rem; color: #AEB6C4; }

/* ================= LIFECYCLE ================= */
.chain { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.chain__step { padding: 30px 24px 34px; border-right: 1px solid var(--line); position: relative; transition: background .2s var(--ease); }
.chain__step:last-child { border-right: none; }
.chain__step:hover { background: var(--paper-2); }
.chain__i { font-family: var(--font-display); font-size: .95rem; color: var(--gold); font-weight: 600; }
.chain__step h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.32rem; margin: 10px 0 8px; }
.chain__step p { margin: 0; font-size: .92rem; color: var(--ink-faint); }
.chain__step::after {
  content: "→"; position: absolute; right: -11px; top: 34px; z-index: 2;
  color: var(--gold); background: #fff; width: 22px; height: 22px; display: grid; place-items: center;
  border-radius: 50%; font-size: .8rem;
}
.chain__step:last-child::after { display: none; }

/* ================= GRIDS / CARDS ================= */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #D8CFB6; }
.card__icon {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px;
  background: linear-gradient(160deg, #FBF1DA, #F3E4C2); color: var(--gold-deep); margin-bottom: 18px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; margin: 0 0 10px; }
.card p { margin: 0; color: var(--ink-soft); font-size: .98rem; }
.card__list { margin: 14px 0 0; padding: 0; list-style: none; }
.card__list li { position: relative; padding-left: 22px; font-size: .92rem; color: var(--ink-soft); margin-bottom: 7px; }
.card__list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* ================= FEATURE ROWS (alternating) ================= */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 76px); align-items: center; }
.frow + .frow { margin-top: clamp(56px, 8vw, 100px); }
.frow--flip .frow__media { order: -1; }
.frow__eyebrow { color: var(--gold-deep); font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; }
.frow h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 12px 0 14px; }
.frow p { color: var(--ink-soft); margin: 0 0 18px; }
.frow__list { list-style: none; margin: 0; padding: 0; }
.frow__list li { position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--ink-soft); }
.frow__list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 14px; height: 14px;
  background: var(--gold-glow); border: 2px solid var(--gold); border-radius: 4px;
}
.frow__media {
  background: linear-gradient(160deg, #fff, var(--paper-2)); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-md); min-height: 260px;
  display: flex; flex-direction: column; justify-content: center; gap: 14px;
}
.mini {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px;
  display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-sm);
}
.mini__ic { width: 40px; height: 40px; flex: none; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(160deg, #FBF1DA, #F3E4C2); color: var(--gold-deep); }
.mini__ic svg { width: 20px; height: 20px; }
.mini__t { font-weight: 600; font-size: .95rem; }
.mini__s { font-size: .82rem; color: var(--ink-faint); }
.mini--float { animation: float 7s var(--ease) infinite; }
.mini--float:nth-child(2) { animation-delay: .5s; }
.mini--float:nth-child(3) { animation-delay: 1s; }

/* ================= AI DARK SECTION ================= */
.ai {
  background: radial-gradient(70% 90% at 85% 0%, rgba(184,137,43,.16), transparent 55%), var(--midnight);
  color: #EDEAE1;
}
.ai .section-lead { color: #C8CEDA; }
.ai__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); overflow: hidden; }
.ai__item { background: var(--midnight-2); padding: 30px 28px; transition: background .2s var(--ease); }
.ai__item:hover { background: var(--midnight-3); }
.ai__ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(231,184,92,.14); color: #E7B85C; margin-bottom: 16px; }
.ai__ic svg { width: 22px; height: 22px; }
.ai__item h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.22rem; margin: 0 0 10px; color: #F6F1E7; }
.ai__item p { margin: 0; color: #AEB6C4; font-size: .96rem; }

/* ================= STEPS ================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step__n { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); font-weight: 500; line-height: 1; }
.step h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; margin: 12px 0 10px; }
.step p { margin: 0; color: var(--ink-soft); }

/* ================= IMPACT ================= */
.impact { background: var(--paper-2); }
.impact__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.impact__cell { text-align: center; padding: 20px; }
.impact__num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.1rem); font-weight: 500; color: var(--gold-deep); line-height: 1; }
.impact__lbl { margin-top: 10px; color: var(--ink-soft); font-size: .96rem; }
.impact__foot { margin: 34px auto 0; text-align: center; font-size: .86rem; color: var(--ink-faint); max-width: 60ch; }

/* ================= MOATS ================= */
.moat { padding: 30px 6px; border-top: 2px solid var(--gold); }
.moat__num { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); font-weight: 500; line-height: 1; }
.moat h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; margin: 16px 0 10px; }
.moat p { margin: 0; color: var(--ink-soft); }

/* ================= PERSONAS ================= */
.persona { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease); box-shadow: var(--shadow-sm); }
.persona:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.persona__top { padding: 26px 28px 22px; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--line-soft); }
.persona__ic { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: linear-gradient(160deg, #FBF1DA, #F3E4C2); color: var(--gold-deep); }
.persona__ic svg { width: 24px; height: 24px; }
.persona__role { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; }
.persona__body { padding: 22px 28px 28px; }
.persona__body p { margin: 0 0 14px; color: var(--ink-soft); font-size: .96rem; }
.persona__body .card__list { margin-top: 0; }

/* ================= FAQ ================= */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 8px; font-size: 1.1rem; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--font-text);
}
.faq__q .faq__ic { flex: none; width: 22px; height: 22px; position: relative; }
.faq__q .faq__ic::before, .faq__q .faq__ic::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--gold); transition: transform .25s var(--ease);
}
.faq__q .faq__ic::before { width: 14px; height: 2px; }
.faq__q .faq__ic::after { width: 2px; height: 14px; }
.faq__item.is-open .faq__ic::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq__a p { margin: 0 8px 24px; color: var(--ink-soft); max-width: 68ch; }

/* ================= CTA BAND ================= */
.ctaband { position: relative; overflow: hidden;
  background: radial-gradient(60% 120% at 80% 0%, rgba(184,137,43,.22), transparent 60%), var(--midnight); color: #F6F1E7; }
.ctaband__inner { text-align: center; max-width: 720px; margin-inline: auto; }
.ctaband .section-title { color: #F6F1E7; }
.ctaband p { color: #C8CEDA; font-size: 1.1rem; margin: 0 0 30px; }
.ctaband__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================= PAGE HERO (inner pages) ================= */
.phero { position: relative; overflow: hidden;
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 5vw, 60px);
  background: radial-gradient(50% 80% at 85% 0%, var(--gold-glow), transparent 60%), var(--paper); }
.phero__inner { max-width: 780px; }
.phero h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.06; letter-spacing: -.015em; margin: 20px 0 20px; }
.phero h1 em { font-style: italic; color: var(--gold-deep); }
.phero p { font-size: clamp(1.05rem, 1.5vw, 1.24rem); color: var(--ink-soft); margin: 0; max-width: 60ch; }

/* ================= CONTACT / FORM ================= */
.cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: start; }
.cta__list { list-style: none; margin: 6px 0 30px; padding: 0; }
.cta__list li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--ink-soft); }
.cta__list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.contact__meta { display: grid; gap: 16px; margin-top: 8px; }
.contact__meta a { color: var(--gold-deep); font-weight: 600; text-decoration: none; }
.contact__card { display: flex; gap: 14px; align-items: flex-start; }
.contact__card .persona__ic { width: 42px; height: 42px; }
.contact__card h4 { margin: 0 0 3px; font-size: 1rem; }
.contact__card p { margin: 0; color: var(--ink-faint); font-size: .92rem; }

.formwrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 42px); box-shadow: var(--shadow-md); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-size: .86rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
.field .opt { font-weight: 400; color: var(--ink-faint); }
.field input, .field select, .field textarea {
  font-family: var(--font-text); font-size: 1rem; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #B4AC9B; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px var(--gold-glow);
}
.field textarea { resize: vertical; }
.form__note { font-size: .82rem; color: var(--ink-faint); text-align: center; margin: 14px 0 0; }
.field__err { display: block; margin-top: 6px; font-size: .82rem; font-weight: 500; color: #A32B21; }
.hp { position: absolute !important; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form__status { margin-top: 16px; font-size: .95rem; font-weight: 500; text-align: center; border-radius: 10px;
  padding: 0; max-height: 0; overflow: hidden; transition: max-height .3s var(--ease), padding .3s var(--ease); }
.form__status.is-visible { max-height: 140px; padding: 12px 14px; }
.form__status.is-success { background: #EAF6EC; color: #1E6B33; }
.form__status.is-error { background: #FBEBEA; color: #A32B21; }

/* ================= FOOTER ================= */
.footer { background: var(--midnight); color: #B7BEC9; padding: 66px 0 34px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px 24px; align-items: start; }
.footer .brand__name { color: #F6F1E7; }
.footer__brand p { margin: 14px 0 0; max-width: 40ch; font-size: .95rem; color: #8A93A1; }
.footer__col h4 { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: #7A828F; margin: 4px 0 16px; }
.footer__col a { display: block; color: #C4CBD6; text-decoration: none; font-size: .95rem; margin-bottom: 11px; transition: color .18s var(--ease); }
.footer__col a:hover { color: #E7B85C; }
.footer__copy { grid-column: 1 / -1; margin: 32px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09);
  font-size: .85rem; color: #7A828F; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ================= REVEAL ================= */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ================= RESPONSIVE ================= */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { min-height: 340px; max-width: 520px; }
  .grid--3, .ai__grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .impact__grid { grid-template-columns: repeat(2, 1fr); }
  .frow { grid-template-columns: 1fr; gap: 28px; }
  .frow--flip .frow__media { order: 0; }
  .cta__inner { grid-template-columns: 1fr; }
  .chain { grid-template-columns: repeat(2, 1fr); }
  .chain__step::after { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }

  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px 24px 20px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform .22s var(--ease), opacity .22s var(--ease);
  }
  .nav.is-open .nav__links { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 14px 4px; border-bottom: 1px solid var(--line-soft); }
  .nav__links a::after { display: none; }
  .nav__cta, .nav__login { display: none; }
  .nav__mob { display: block; color: var(--ink); font-weight: 600; }
  .nav__links a.nav__mob:last-child { border-bottom: none; color: var(--gold-deep); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .ai__grid, .steps, .chain, .impact__grid, .statband__grid, .footer__inner { grid-template-columns: 1fr; }
  .chain__step { border-right: none; border-bottom: 1px solid var(--line); }
  .chain__step:last-child { border-bottom: none; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .hero__actions .btn, .ctaband__actions .btn { flex: 1; }
}

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