/* ============================================================
   GRABO SOFTWARE — design system
   Light, clean, single accent (GRABO orange #FF6B00). No purple.
   Fonts: Outfit (display) · Inter (body) · JetBrains Mono (labels)
   ============================================================ */

:root {
  /* Ink + paper */
  --ink:        #14130F;
  --ink-2:      #3A3934;
  --graphite:   #59574F;
  --mute:       #87847A;
  --line:       #E8E2D6;
  --line-2:     #F0EBE1;
  --paper:      #FFFFFF;
  --paper-2:    #FAF6EF;   /* warm off-white */
  --paper-3:    #F3EDE2;
  --paper-card: #FFFFFF;

  /* Brand */
  --orange:     #FF6B00;
  --orange-600: #E85F00;
  --orange-700: #C95100;
  --orange-tint:#FFF1E5;
  --orange-line:#FFD9BB;

  /* Dark band */
  --night:      #100F0D;
  --night-2:    #1B1916;
  --night-line: #2C2926;
  --cream:      #F6F1E7;
  --cream-mute: #B4ADA0;

  /* Type */
  --f-display: 'Outfit','Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  --f-body:    'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --f-mono:    'JetBrains Mono','SF Mono','Fira Code',monospace;

  /* Shape */
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-xl: 34px;

  /* softer, warmer shadows (SimplyWise-style friendliness) */
  --shadow-sm: 0 2px 10px rgba(31,24,12,.05);
  --shadow:    0 8px 28px rgba(31,24,12,.07), 0 2px 6px rgba(31,24,12,.035);
  --shadow-lg: 0 20px 56px rgba(31,24,12,.12), 0 6px 16px rgba(31,24,12,.05);
  --shadow-orange: 0 12px 30px rgba(255,107,0,.28);

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

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--graphite);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,svg,video { display: block; max-width: 100%; }
/* default icon size for inline <use> glyphs; component rules below override */
svg { width: 1.1em; height: 1.1em; flex: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2.5px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ---------- type ---------- */
h1,h2,h3,h4 { font-family: var(--f-display); color: var(--ink); font-weight: 800; line-height: 1.05; letter-spacing: -.02em; }
.accent { color: var(--orange); }
.h-xl { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.h-lg { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.h-md { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.08rem,1.6vw,1.32rem); line-height: 1.6; color: var(--ink-2); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: .76rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange-700);
  display: inline-flex; align-items: center; gap: .55em;
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--orange); border-radius: 2px; }
.eyebrow--plain::before { display: none; }
.eyebrow--light { color: var(--orange); }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 880px; }
section { position: relative; }
.sec { padding: clamp(64px, 9vw, 116px) 0; }
.sec--tight { padding: clamp(48px,6vw,76px) 0; }
.sec--paper2 { background: var(--paper-2); }
.sec--night { background: var(--night); color: var(--cream-mute); }
.sec--night h1,.sec--night h2,.sec--night h3 { color: #fff; }

.sec-head { max-width: 720px; }
.sec-head--center { margin: 0 auto; text-align: center; }
.sec-head .eyebrow { margin-bottom: 18px; }
.sec-head h2 { margin-bottom: 16px; }
.sec-head p { font-size: 1.12rem; color: var(--graphite); }
.sec--night .sec-head p { color: var(--cream-mute); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--f-body); font-weight: 650; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
  white-space: nowrap; letter-spacing: -.01em;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn--primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,107,0,.38); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn--outline-light:hover { border-color: #fff; transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: .92rem; }
.btn--lg { padding: 17px 32px; font-size: 1.06rem; }
.btn--block { display: flex; width: 100%; }

.linkarrow { display: inline-flex; align-items: center; gap: .4em; font-weight: 650; color: var(--ink); }
.linkarrow svg { width: 1.05em; height: 1.05em; transition: transform .18s var(--ease); }
.linkarrow:hover svg { transform: translateX(4px); }
.linkarrow--accent { color: var(--orange-700); }

/* ---------- chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: .45em;
  font-family: var(--f-mono); font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.chip--live { background: #E7F7EC; color: #137a3b; }
.chip--live::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: #22a356; box-shadow: 0 0 0 3px rgba(34,163,86,.18); }
.chip--soon { background: var(--paper-3); color: var(--mute); border: 1px solid var(--line); }
.chip--soon { background: #F2EDE2; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  border-bottom: 1px solid transparent;
}
.nav__inner { display: flex; align-items: center; gap: 22px; height: 70px; }
.nav.is-stuck { background: rgba(255,255,255,.82); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom-color: var(--line); }
.brand { display: inline-flex; align-items: baseline; gap: 9px; font-family: var(--f-display); font-weight: 900; font-size: 1.45rem; color: var(--ink); letter-spacing: -.03em; }
.brand .dot { color: var(--orange); }
.brand__tag { font-family: var(--f-mono); font-size: .58rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--mute); transform: translateY(-2px); }
.nav__spacer { flex: 1; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__link { font-size: .96rem; font-weight: 550; color: var(--ink-2); transition: color .15s; }
.nav__link:hover { color: var(--orange-700); }
.nav__toggle { display: none; background: none; border: 0; color: var(--ink); padding: 6px; }
.nav__toggle svg { width: 26px; height: 26px; }
.nav__auth { display: flex; align-items: center; gap: 18px; }
.nav__credits { display: inline-flex; align-items: center; gap: 7px; background: var(--orange-tint); color: var(--orange-700); font-weight: 700; padding: 8px 14px; border-radius: 999px; font-size: .9rem; }
.nav__credits svg { width: 15px; height: 15px; }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; border-bottom: 1px solid var(--line);
    padding: 8px 24px 22px; box-shadow: var(--shadow); transform: translateY(-12px);
    opacity: 0; pointer-events: none; transition: opacity .2s var(--ease), transform .2s var(--ease);
  }
  .nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__link { padding: 13px 0; border-bottom: 1px solid var(--line-2); }
  .nav__links .btn { margin-top: 14px; }
  .nav__auth { flex-direction: column; align-items: stretch; gap: 10px; padding-top: 10px; }
  .nav__auth .btn { width: 100%; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 130px 0 70px; position: relative; overflow: hidden; }
.hero::before {
  content:""; position: absolute; top: -160px; right: -160px; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(255,107,0,.13), transparent 62%); pointer-events: none; z-index: 0;
}
.hero__grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero h1 { margin: 20px 0 22px; }
.hero .lead { max-width: 38ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__note { margin-top: 18px; font-size: .9rem; color: var(--mute); display: flex; align-items: center; gap: 8px; }
.hero__note svg { width: 16px; height: 16px; color: #22a356; }

/* hold / tap visual */
.holdtap { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
.htcard { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--paper-2); border: 1px solid var(--line); box-shadow: var(--shadow); min-height: 380px; }
.htcard__label { position: absolute; top: 14px; left: 14px; z-index: 3; }
.htcard__photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.htcard--hold { background: var(--night); }
.htcard--hold::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(16,15,13,.05), rgba(16,15,13,.55)); }
.htcard--tap { display: flex; align-items: flex-end; justify-content: center; padding: 26px 26px 0; background: linear-gradient(170deg,#FFF7F0,#FBEFE3); }
.tag-pill { display: inline-flex; align-items: center; gap: .5em; font-family: var(--f-mono); font-size: .64rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--ink); backdrop-filter: blur(6px); box-shadow: var(--shadow-sm); }
.tag-pill svg { width: 1.15em; height: 1.15em; color: var(--orange); }
.tag-pill--dark { background: rgba(0,0,0,.5); color:#fff; }

/* phone mockup */
.phone { width: 100%; max-width: 232px; border-radius: 30px 30px 0 0; background: #14130F; padding: 10px 10px 0; box-shadow: 0 20px 50px rgba(20,19,15,.28); border: 1px solid #2a2722; border-bottom: 0; }
.phone__notch { width: 42%; height: 6px; background: #2a2722; border-radius: 999px; margin: 0 auto 9px; }
.phone__screen { border-radius: 22px 22px 0 0; overflow: hidden; background:#fff; aspect-ratio: 414/640; }
.phone__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ---------- hero social proof (stars + heritage) ---------- */
.hero__social { display: flex; align-items: center; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.hero__stars { color: var(--orange); letter-spacing: 2px; font-size: 1.05rem; }
.hero__social span { font-size: .92rem; color: var(--graphite); font-weight: 550; }
.hero__social b { color: var(--ink); font-weight: 700; }

/* ---------- testimonial-style "sound familiar" cards ---------- */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.qcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.qcard__mark { font-family: var(--f-display); font-size: 2.6rem; line-height: .6; color: var(--orange-line); margin-bottom: 6px; }
.qcard p { font-family: var(--f-display); font-weight: 600; font-size: 1.14rem; line-height: 1.42; color: var(--ink); }
.qcard__who { margin-top: auto; padding-top: 18px; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); display: flex; align-items: center; gap: 9px; }
.qcard__who::before { content: ""; width: 22px; height: 2px; background: var(--orange); border-radius: 2px; }

/* ---------- marquee / trust numbers ---------- */
.stat__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--orange-tint); color: var(--orange-700); display: grid; place-items: center; margin: 0 auto 12px; }
.stat__ic svg { width: 22px; height: 22px; }
.statline--cards { gap: 16px; }
.statline--cards > div { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 26px 18px; text-align: center; box-shadow: var(--shadow-sm); }
.statline { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 64px; padding-top: 36px; border-top: 1px solid var(--line); }
.stat__num { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.8rem,3.4vw,2.6rem); color: var(--ink); letter-spacing: -.03em; }
.stat__num .accent { color: var(--orange); }
.stat__lbl { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); margin-top: 4px; }
.sec--night .stat__num { color: #fff; }
.sec--night .statline { border-color: var(--night-line); }

/* ============================================================
   APP / KIT GRID
   ============================================================ */
.kit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.kit-card {
  position: relative; display: flex; flex-direction: column; gap: 12px;
  background: var(--paper-card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px 24px 22px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s;
  min-height: 100%;
}
a.kit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--orange-line); }
.kit-card__top { display: flex; align-items: center; justify-content: space-between; }
.kit-ic { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--orange-tint); color: var(--orange-700); flex: none; }
.kit-ic svg { width: 26px; height: 26px; }
.kit-card h3 { font-size: 1.22rem; }
.kit-card p { font-size: .98rem; color: var(--graphite); line-height: 1.5; }
.kit-card__foot { margin-top: auto; padding-top: 8px; display: flex; align-items: center; gap: 10px; }
.kit-card .linkarrow { font-size: .92rem; }

/* ============================================================
   STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step__n { font-family: var(--f-display); font-weight: 800; font-size: 1rem; color: var(--orange); width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--orange-line); display: grid; place-items: center; margin-bottom: 18px; }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: .98rem; }

/* ============================================================
   FEATURE SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--flip .split__media { order: -1; }
.split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); background: var(--paper-2); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split h2 { margin-bottom: 18px; }
.checklist { margin-top: 22px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); font-size: 1.02rem; }
.checklist svg { width: 22px; height: 22px; color: var(--orange); flex: none; margin-top: 2px; }

/* ============================================================
   CTA BAND + EMAIL FORM
   ============================================================ */
.cta-band { background: var(--night); color: var(--cream); overflow: hidden; position: relative; }
.cta-band::before { content:""; position:absolute; bottom:-180px; left:50%; transform:translateX(-50%); width:760px; height:420px; background: radial-gradient(ellipse, rgba(255,107,0,.22), transparent 65%); }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color:#fff; }
.cta-band p { color: var(--cream-mute); }

.eform { display: flex; gap: 10px; max-width: 480px; }
.eform--center { margin: 0 auto; }
.eform input[type=email] {
  flex: 1; min-width: 0; padding: 15px 18px; border-radius: 999px; border: 1.5px solid var(--line);
  background:#fff; font-family: var(--f-body); font-size: 1rem; color: var(--ink);
}
.eform input::placeholder { color: var(--mute); }
.eform input:focus-visible { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,107,0,.16); }
.cta-band .eform input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); color:#fff; }
.cta-band .eform input::placeholder { color: var(--cream-mute); }
.cta-band .eform input:focus-visible { background: rgba(255,255,255,.1); border-color: var(--orange); }
.eform__msg { font-size: .92rem; margin-top: 14px; min-height: 1.2em; }
.eform__msg.is-ok { color: #2bbd6a; }
.eform__msg.is-err { color: #ff8a5c; }
.eform-note { font-size: .82rem; color: var(--mute); margin-top: 14px; }
.cta-band .eform-note { color: var(--cream-mute); }

/* ============================================================
   APP PAGE
   ============================================================ */
.apphero { padding: 124px 0 64px; }
.apphero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.apphero__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.apphero__media img { width: 100%; }
.app-ic-lg { width: 64px; height: 64px; border-radius: 16px; background: var(--orange-tint); color: var(--orange-700); display: grid; place-items: center; margin-bottom: 22px; }
.app-ic-lg svg { width: 32px; height: 32px; }
.app-meta { display:flex; gap:14px; align-items:center; margin: 22px 0 6px; flex-wrap: wrap; }

.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.deepcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 32px; }
.deepcard h3 { font-size: 1.35rem; margin-bottom: 12px; display:flex; align-items:center; gap:10px; }
.deepcard h3 svg { width: 22px; height: 22px; color: var(--orange); }

.applist { display: grid; gap: 10px; margin-top: 64px; }
.approw { display:flex; align-items:center; gap:16px; padding:16px 20px; border:1px solid var(--line); border-radius: var(--r); background:#fff; transition: border-color .18s, transform .18s; }
a.approw:hover { border-color: var(--orange-line); transform: translateX(3px); }
.approw .kit-ic { width: 44px; height: 44px; border-radius: 11px; }
.approw .kit-ic svg { width: 22px; height: 22px; }
.approw__txt { flex:1; }
.approw__txt strong { color: var(--ink); font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; }
.approw__txt span { display:block; font-size:.92rem; color: var(--mute); }

/* ============================================================
   APP SPEC SECTIONS (flow / AI / screens / MVP)
   ============================================================ */
.flow { counter-reset: flow; display: grid; gap: 0; max-width: 780px; list-style: none; padding: 0; }
.flow li { position: relative; padding: 3px 0 30px 60px; color: var(--ink-2); font-size: 1.06rem; line-height: 1.55; }
.flow li:last-child { padding-bottom: 0; }
.flow li::before { counter-increment: flow; content: counter(flow); position: absolute; left: 0; top: -3px; width: 40px; height: 40px; border-radius: 50%; background: var(--orange-tint); color: var(--orange-700); font-family: var(--f-display); font-weight: 800; display: grid; place-items: center; font-size: 1.02rem; }
.flow li:not(:last-child)::after { content: ""; position: absolute; left: 19px; top: 44px; bottom: 6px; width: 2px; background: var(--line); }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 34px; }
.feature-grid li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-2); font-size: 1.04rem; line-height: 1.5; }
.feature-grid li svg { width: 24px; height: 24px; color: var(--orange); flex: none; margin-top: 2px; }

.taglist { display: flex; flex-wrap: wrap; gap: 10px; }
.taglist span { display: inline-flex; align-items: center; gap: .55em; padding: 9px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: .95rem; color: var(--ink-2); font-weight: 500; }
.taglist span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex: none; }

.mvp-card { background: var(--night); color: var(--cream); border-radius: var(--r-lg); padding: 32px; height: 100%; }
.mvp-card h3 { color: #fff; display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 1.3rem; }
.mvp-card h3 svg { width: 22px; height: 22px; color: var(--orange); }
.mvp-card > p { color: var(--cream-mute); margin-bottom: 22px; }
.mvp-card .taglist span { background: rgba(255,255,255,.07); border-color: var(--night-line); color: #fff; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.price-card { background:#fff; border:1px solid var(--line); border-radius: var(--r-lg); padding: 32px 28px; display:flex; flex-direction:column; }
.price-card--feat { border-color: var(--orange); box-shadow: var(--shadow); position: relative; }
.price-card--feat::before { content:"Most popular"; position:absolute; top:-12px; left:28px; font-family:var(--f-mono); font-size:.66rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; background:var(--orange); color:#fff; padding:5px 11px; border-radius:999px; }
.price-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.price-card__desc { font-size:.96rem; color:var(--graphite); min-height: 48px; }
.price-card__price { font-family:var(--f-display); font-weight:800; font-size:2.4rem; color:var(--ink); margin: 18px 0 4px; }
.price-card__price small { font-family:var(--f-body); font-size:.9rem; font-weight:500; color:var(--mute); }
.price-card ul { display:grid; gap:11px; margin: 20px 0 26px; }
.price-card li { display:flex; gap:10px; font-size:.98rem; color:var(--ink-2); }
.price-card li svg { width:20px;height:20px;color:var(--orange);flex:none;margin-top:2px; }
.price-card .btn { margin-top: auto; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: 0; max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary { list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative; font-family: var(--f-display); font-weight: 700; font-size: 1.16rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content:"+"; position:absolute; right: 8px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; font-weight: 400; color: var(--orange); transition: transform .2s var(--ease); }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 44px 24px 0; color: var(--graphite); }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto { text-align: center; }
.manifesto__lines p { font-family: var(--f-display); font-weight: 700; font-size: clamp(1.3rem,2.6vw,2rem); line-height: 1.4; color: rgba(255,255,255,.5); letter-spacing: -.02em; }
.manifesto__lines p strong { color: #fff; font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--night); color: var(--cream-mute); padding: 72px 0 36px; }
.foot__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--night-line); }
.foot .brand { color:#fff; margin-bottom: 16px; }
.foot__blurb { font-size: .95rem; max-width: 30ch; color: var(--cream-mute); }
.foot__col h4 { font-family: var(--f-mono); font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; color:#fff; margin-bottom: 16px; font-weight:600; }
.foot__col a { display:block; padding: 6px 0; color: var(--cream-mute); font-size:.96rem; transition: color .15s; }
.foot__col a:hover { color:#fff; }
.foot__news { display:flex; align-items:center; gap:18px; flex-wrap:wrap; padding:24px 0; border-top:1px solid var(--night-line); margin-top:8px; }
.foot__news > span { font-size:.95rem; color:var(--cream); font-weight:500; }
.foot__news .eform { margin:0; flex:1; min-width:240px; max-width:380px; }
.foot__news .eform input { background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.2); color:#fff; }
.foot__news .eform input::placeholder { color:var(--cream-mute); }
.foot__news .eform__msg { flex-basis:100%; font-size:.86rem; }
.foot__bottom { display:flex; justify-content:space-between; align-items:center; gap:16px; padding-top: 28px; font-size:.86rem; color: var(--cream-mute); flex-wrap: wrap; }
.foot__bottom a:hover { color:#fff; }

/* ============================================================
   reveal animation
   ============================================================ */
/* Hidden-until-revealed only applies when JS is active; no-JS shows everything. */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity:1; transform:none; transition:none; } html{scroll-behavior:auto;} }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid, .split, .apphero__grid, .twocol { grid-template-columns: 1fr; gap: 40px; }
  .split--flip .split__media { order: 0; }
  .kit-grid, .steps, .price-grid, .quotes { grid-template-columns: repeat(2,1fr); }
  .foot__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero .lead { max-width: none; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .kit-grid, .steps, .price-grid, .statline, .feature-grid, .quotes { grid-template-columns: 1fr; }
  .statline { gap: 26px; }
  .eform { flex-direction: column; }
  .eform .btn { width: 100%; }
  .foot__top { grid-template-columns: 1fr 1fr; }
  .hero { padding-top: 110px; }
  .holdtap { gap: 12px; }
  .htcard { min-height: 300px; }
}
