/* ============================================================
   Oak & Main — design system  ·  "Modern Main Street"
   Editorial, warm-premium. Fraunces display + Inter UI.
   Hand-written, zero-framework. Class API kept stable across pages.
   ============================================================ */

:root {
  /* warm surfaces */
  --bg:        #14110d;
  --bg-2:      #1a1610;
  --surface:   #201b14;
  --surface-2: #2a2319;
  --line:      rgba(245,239,230,.085);
  --line-2:    rgba(245,239,230,.16);

  /* parchment text (warm, AA+ on --bg) */
  --text:   #f6f1e9;
  --muted:  #c7bdac;
  --faint:  #968b7a;

  /* light / editorial band */
  --cream:   #f4ecdd;
  --cream-2: #ece1cd;
  --ink:     #251d12;
  --ink-mute:#5d5345;

  /* signature accent — oak/amber */
  --oak:      #e0a64e;
  --oak-2:    #f2c67d;
  --oak-deep: #b27a28;
  --oak-glow: rgba(224,166,78,.18);

  /* restrained green — used only for proof/checks */
  --green:  #5bbd8c;

  --r-sm: 10px; --r: 14px; --r-lg: 22px; --r-xl: 30px;
  --maxw: 1200px;
  --shadow:    0 20px 50px -24px rgba(0,0,0,.7);
  --shadow-lg: 0 40px 90px -30px rgba(0,0,0,.82);
  --shadow-oak:0 24px 60px -22px rgba(224,166,78,.4);

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

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

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0; font-family: var(--sans); background: var(--bg); color: var(--muted);
  line-height: 1.65; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* warm ambient: one subtle radial, NOT glow blobs */
body::after {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(60% 50% at 78% -5%, rgba(224,166,78,.10), transparent 70%),
    radial-gradient(50% 40% at 0% 8%, rgba(224,166,78,.05), transparent 70%);
}
/* film grain — kills the flat digital look */
body::before {
  content: ""; position: fixed; inset: -50%; z-index: -1; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.section { padding: 104px 0; position: relative; }
.section--tight { padding: 64px 0; }
.divide { border-top: 1px solid var(--line); }

.eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--oak); font-family: var(--sans); }
.section-head { max-width: 660px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { margin: 14px 0 0; }
.section-head p { margin: 16px 0 0; color: var(--muted); font-size: 1.05rem; }

/* ---------- type ---------- */
h1, h2 { font-family: var(--serif); font-weight: 460; color: var(--text); line-height: 1.04; letter-spacing: -.018em; margin: 0; font-optical-sizing: auto; }
h1 { font-size: clamp(2.9rem, 6.2vw, 5.1rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-family: var(--sans); font-weight: 700; font-size: 1.22rem; line-height: 1.25; letter-spacing: -.01em; color: var(--text); margin: 0; }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.32rem); color: var(--muted); line-height: 1.55; }
.lead b { color: var(--text); font-weight: 600; }
.grad { font-style: italic; color: var(--oak-2); }            /* editorial italic accent on the serif */
em.grad, .serif-em { font-family: var(--serif); font-style: italic; color: var(--oak-2); font-weight: 500; }

/* ---------- buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 650; font-size: .92rem; letter-spacing: .005em; text-decoration: none; cursor: pointer;
  border-radius: var(--r-sm); padding: 0 22px; height: 50px; border: 1px solid transparent; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), background .25s, border-color .25s, color .2s; }
.btn::after { content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.28), transparent); transform: skewX(-18deg); transition: left .6s var(--ease); }
.btn:hover::after { left: 130%; }
.btn:active { transform: translateY(0) scale(.985); }
.btn-primary { color: #2a1c06; background: linear-gradient(165deg, var(--oak-2), var(--oak)); box-shadow: var(--shadow-oak), inset 0 1px 0 rgba(255,255,255,.35); font-weight: 700; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 28px 60px -20px rgba(224,166,78,.6); }
.btn-ghost { color: var(--text); background: rgba(245,239,230,.045); border-color: var(--line-2); }
.btn-ghost:hover { background: rgba(245,239,230,.09); border-color: var(--oak); transform: translateY(-1px); }
.btn-oak { color: #2a1c06; background: linear-gradient(165deg, var(--oak-2), var(--oak)); box-shadow: var(--shadow-oak); font-weight: 700; }
.btn-oak:hover { transform: translateY(-2px); }
.btn-lg { height: 56px; padding: 0 30px; font-size: 1rem; }
.btn-block { width: 100%; }

/* focus — always visible */
a, button, input, select, textarea { outline: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--oak-2); outline-offset: 3px; border-radius: 6px; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* ---------- header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, backdrop-filter .3s; }
.site-header.scrolled { background: rgba(20,17,13,.78); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; transition: height .3s var(--ease); }
.site-header.scrolled .nav { height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand .mark { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--surface-2), var(--surface)); border: 1px solid var(--line-2); box-shadow: 0 6px 18px -8px rgba(0,0,0,.7); }
.brand .name { font-family: var(--serif); color: var(--text); font-weight: 500; font-size: 1.32rem; letter-spacing: -.01em; }
.brand .name .amp { color: var(--oak); font-style: italic; margin: 0 1px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { position: relative; color: var(--muted); text-decoration: none; font-weight: 550; font-size: .9rem; padding: 4px 0; transition: color .2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--oak); transition: width .3s var(--ease); }
.nav-links a:hover { color: var(--text); } .nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-btn { display: none; background: none; border: 1px solid var(--line-2); border-radius: 9px; width: 42px; height: 42px; color: var(--text); cursor: pointer; }

/* ---------- hero (two-column, with crafted visual) ---------- */
.hero { padding: 84px 0 92px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.badge { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: 999px; background: var(--oak-glow); border: 1px solid rgba(224,166,78,.28); margin-bottom: 26px; }
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--oak-2); animation: ping 2.6s var(--ease) infinite; }
.badge span { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--oak-2); }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(224,166,78,.5);} 70%,100% { box-shadow: 0 0 0 9px rgba(224,166,78,0);} }
.hero h1 { max-width: 13ch; }
.hero .lead { max-width: 46ch; margin-top: 24px; }

/* hero URL capture */
.url-form { max-width: 520px; margin-top: 34px; }
.url-box { display: flex; gap: 8px; padding: 8px; border-radius: var(--r);
  background: rgba(26,22,16,.92); border: 1px solid var(--line-2); box-shadow: var(--shadow); transition: border-color .25s, box-shadow .25s; }
.url-box:focus-within { border-color: rgba(224,166,78,.55); box-shadow: 0 0 0 4px var(--oak-glow); }
.url-box .field { flex: 1; display: flex; align-items: center; gap: 10px; padding-left: 14px; }
.url-box input { flex: 1; background: none; border: none; color: var(--text); font-size: .95rem; font-family: inherit; }
.url-box input::placeholder { color: var(--faint); }
.url-note { margin: 16px 0 0; font-size: .82rem; color: var(--muted); }
.url-note b { color: var(--oak-2); }
.anchor-strip { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: .85rem; color: var(--muted); }
.anchor-strip .a-item { display: inline-flex; align-items: center; gap: 7px; }
.anchor-strip svg { color: var(--green); flex: none; }

/* crafted hero visual — tilted browser showing a fast local site + 100 score */
.hero-visual { position: relative; perspective: 1400px; }
.browser { transform: rotateY(-13deg) rotateX(5deg) rotate(1deg); transform-style: preserve-3d;
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-2); background: #0f0c08;
  box-shadow: var(--shadow-lg); transition: transform .6s var(--ease); }
.hero-visual:hover .browser { transform: rotateY(-7deg) rotateX(3deg); }
.browser .bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; background: var(--surface); border-bottom: 1px solid var(--line); }
.browser .bar i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.browser .bar i:nth-child(1){ background:#e0654e;} .browser .bar i:nth-child(2){ background:var(--oak);} .browser .bar i:nth-child(3){ background:var(--green);}
.browser .addr { margin-left: 10px; flex: 1; height: 22px; border-radius: 6px; background: var(--bg-2); border: 1px solid var(--line); display: flex; align-items: center; padding: 0 10px; font-size: .68rem; color: var(--faint); }
.browser .shot { padding: 0; background: linear-gradient(180deg, #17130d, #120f0a); }
.shot .s-hero { padding: 26px 22px 20px; background: radial-gradient(120% 90% at 80% 0%, rgba(224,166,78,.14), transparent 60%); }
.shot .s-tag { font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--oak-2); font-weight: 700; }
.shot .s-h { font-family: var(--serif); font-size: 1.45rem; line-height: 1.1; color: var(--text); margin: 8px 0 0; }
.shot .s-row { display: flex; gap: 8px; margin-top: 14px; }
.shot .s-btn { height: 26px; border-radius: 7px; padding: 0 14px; display: grid; place-items: center; font-size: .6rem; font-weight: 700; }
.shot .s-btn.p { background: var(--oak); color: #2a1c06; } .shot .s-btn.g { border: 1px solid var(--line-2); color: var(--muted); }
.shot .s-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; padding: 16px 22px 24px; }
.shot .s-card { height: 52px; border-radius: 9px; background: var(--surface); border: 1px solid var(--line); }
.score-pill { position: absolute; bottom: -16px; left: -16px; display: flex; align-items: center; gap: 10px; padding: 10px 16px 10px 12px;
  border-radius: 14px; background: rgba(20,17,13,.9); backdrop-filter: blur(10px); border: 1px solid var(--line-2); box-shadow: var(--shadow); }
.score-ring { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: .85rem; color: var(--green);
  background: conic-gradient(var(--green) 100%, transparent 0); }
.score-ring span { width: 32px; height: 32px; border-radius: 50%; background: var(--bg); display: grid; place-items: center; }
.score-pill .st { font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }
.score-pill .sv { font-size: .78rem; font-weight: 700; color: var(--text); }

/* ---------- proof strip ---------- */
.proof { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.proof .stat { text-align: center; padding: 30px 16px; background: var(--bg); }
.proof .num { font-family: var(--serif); font-size: 2.3rem; font-weight: 500; color: var(--text); line-height: 1; }
.proof .num .unit { color: var(--oak); }
.proof .label { margin-top: 10px; font-size: .82rem; color: var(--muted); }
.proof .label a { color: var(--oak-2); text-decoration: none; } .proof .label a:hover { text-decoration: underline; }

/* ---------- cards / bento ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { position: relative; padding: 32px; border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(245,239,230,.03), rgba(245,239,230,.008));
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; overflow: hidden; }
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, var(--oak-glow), transparent); opacity: 0; transition: opacity .35s; }
.card:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card .ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 24px;
  background: var(--oak-glow); border: 1px solid rgba(224,166,78,.25); color: var(--oak-2); transition: transform .35s var(--ease); }
.card:hover .ico { transform: scale(1.08) rotate(-3deg); }
.card.em .ico { background: rgba(91,189,140,.12); border-color: rgba(91,189,140,.28); color: var(--green); }
.card h3 { margin-bottom: 11px; }
.card p { margin: 0; font-size: .95rem; }

/* ---------- comparison ---------- */
.compare { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.compare .col { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; background: linear-gradient(180deg, rgba(245,239,230,.022), transparent); }
.compare .col.win { border-color: rgba(224,166,78,.45); background: linear-gradient(180deg, var(--oak-glow), transparent); box-shadow: var(--shadow); transform: translateY(-6px); }
.compare .col h3 { font-size: 1.08rem; }
.compare .col .price { font-family: var(--serif); font-size: 1.7rem; font-weight: 500; color: var(--text); margin: 8px 0 2px; }
.compare .col .price .sub, .compare .col .sub { font-family: var(--sans); font-size: .8rem; color: var(--faint); font-weight: 400; }
.compare ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 11px; }
.compare li { display: flex; gap: 10px; font-size: .88rem; }
.compare li svg { flex: none; margin-top: 3px; }
.compare li.no { color: var(--faint); } .compare li.no svg { color: #6b5f4d; }
.compare li.yes svg { color: var(--green); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 34px; }
.step { text-align: center; }
.step .n { width: 66px; height: 66px; margin: 0 auto 22px; border-radius: 18px; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 500; font-size: 1.35rem; color: var(--oak-2); background: var(--surface); border: 1px solid var(--line-2); box-shadow: var(--shadow); }
.step h3 { margin-bottom: 9px; }
.step p { margin: 0 auto; max-width: 30ch; font-size: .93rem; }

/* ---------- light editorial band ---------- */
.band-light { background: var(--cream); color: var(--ink-mute); position: relative; }
.band-light h2 { color: var(--ink); }
.band-light .eyebrow { color: var(--oak-deep); }
.band-light .section-head p { color: var(--ink-mute); }
.band-light .step .n { background: #fff; color: var(--oak-deep); border-color: rgba(37,29,18,.12); box-shadow: 0 14px 30px -16px rgba(37,29,18,.3); }
.band-light .step h3 { color: var(--ink); }
.band-light .step p { color: var(--ink-mute); }

/* ---------- pricing ---------- */
.tiers { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.tier { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 30px;
  background: linear-gradient(180deg, rgba(245,239,230,.025), transparent); position: relative; transition: transform .3s var(--ease), border-color .3s; }
.tier:hover { border-color: var(--line-2); }
.tier.feat { border-color: rgba(224,166,78,.5); background: linear-gradient(180deg, var(--oak-glow), transparent); box-shadow: var(--shadow-lg); }
.tier .pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-family: var(--sans); font-size: .64rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: #2a1c06; background: linear-gradient(165deg, var(--oak-2), var(--oak)); padding: 6px 15px; border-radius: 999px; }
.tier .tname { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--oak); }
.tier .cost { font-family: var(--serif); margin: 16px 0 2px; font-size: 3rem; font-weight: 500; color: var(--text); line-height: 1; }
.tier .cost span { font-family: var(--sans); font-size: .95rem; font-weight: 400; color: var(--faint); }
.tier .yr { font-size: .8rem; color: var(--green); font-weight: 600; }
.tier .desc { margin: 16px 0 0; font-size: .89rem; min-height: 44px; }
.tier ul { list-style: none; margin: 22px 0 28px; padding: 22px 0 0; border-top: 1px solid var(--line); display: grid; gap: 13px; }
.tier li { display: flex; gap: 10px; font-size: .9rem; color: var(--muted); }
.tier li svg { flex: none; margin-top: 3px; color: var(--green); }
.tier li b { color: var(--text); font-weight: 600; }
.tier .btn { margin-top: auto; }
.price-foot { margin: 28px auto 0; max-width: 660px; text-align: center; font-size: .85rem; color: var(--muted); }
.price-foot b { color: var(--text); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq details { border: 1px solid var(--line); border-radius: var(--r); background: rgba(245,239,230,.02); overflow: hidden; transition: border-color .25s; }
.faq details[open] { border-color: var(--line-2); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 22px; font-weight: 650; color: var(--text); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { transition: transform .3s var(--ease); color: var(--oak); flex: none; }
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq .a { padding: 0 22px 20px; font-size: .93rem; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: #0d0b08; padding: 64px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 44px; }
.foot-grid h4 { color: var(--text); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 16px; }
.foot-grid a { display: block; color: var(--muted); text-decoration: none; font-size: .9rem; margin-bottom: 11px; transition: color .2s; }
.foot-grid a:hover { color: var(--oak-2); }
.foot-blurb { font-size: .88rem; color: var(--faint); max-width: 38ch; margin: 18px 0 0; line-height: 1.6; }
.foot-bottom { margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; color: var(--faint); }
.foot-bottom .serif-em { font-size: .95rem; }

/* ============================================================
   Mockup request page
   ============================================================ */
.mockup-layout { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: start; padding: 64px 0 92px; }
.mockup-pitch { position: sticky; top: 104px; }
.mockup-pitch h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); }
.mockup-pitch .lead { margin-top: 18px; }
.benefit-list { list-style: none; margin: 34px 0 0; padding: 30px 0 0; border-top: 1px solid var(--line); display: grid; gap: 22px; }
.benefit { display: flex; gap: 15px; }
.benefit .bi { flex: none; width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: var(--oak-glow); border: 1px solid rgba(224,166,78,.25); color: var(--oak-2); }
.benefit h3 { font-size: 1rem; margin-bottom: 3px; }
.benefit p { margin: 0; font-size: .89rem; }

.form-card { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--r-xl); padding: 38px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.form-card > .glow { position: absolute; top: -40px; right: -40px; width: 220px; height: 220px; background: var(--oak-glow); filter: blur(70px); pointer-events: none; }
.form-card h2 { font-size: 1.7rem; }
.form-card .sub { margin: 6px 0 26px; font-size: .89rem; color: var(--muted); }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.fg.full { grid-column: 1 / -1; }
.fg label { font-size: .76rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.fg label .opt { color: var(--faint); font-weight: 500; text-transform: none; letter-spacing: 0; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 0 14px; height: 48px; border-radius: var(--r-sm);
  background: var(--bg-2); border: 1px solid var(--line); color: var(--text); font-size: .94rem; font-family: inherit; transition: border-color .2s, box-shadow .2s; }
.fg textarea { height: auto; padding: 12px 14px; resize: vertical; min-height: 92px; }
.fg input::placeholder, .fg textarea::placeholder { color: var(--faint); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: rgba(224,166,78,.55); box-shadow: 0 0 0 3px var(--oak-glow); }
.objectives { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.obj { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: var(--r-sm); background: var(--bg-2); border: 1px solid var(--line); cursor: pointer; font-size: .86rem; color: var(--text); transition: border-color .2s, background .2s; }
.obj:hover { border-color: var(--line-2); }
.obj input { accent-color: var(--oak); width: 16px; height: 16px; }
.obj:has(input:checked) { border-color: rgba(224,166,78,.5); background: var(--oak-glow); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-trust { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: .8rem; color: var(--faint); }
.form-trust svg { color: var(--green); flex: none; }
.form-status { margin-top: 14px; text-align: center; font-size: .9rem; min-height: 1.2em; color: var(--muted); }
.form-status.err { color: #f0a58e; }
.form-success { text-align: center; padding: 30px 8px; }
.form-success .check { width: 66px; height: 66px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: rgba(91,189,140,.14); border: 1px solid rgba(91,189,140,.32); color: var(--green); }
.form-success h2 { margin-bottom: 10px; }
.form-success p { margin: 0 auto; max-width: 42ch; }
.cf-turnstile { margin-top: 4px; min-height: 65px; }

/* ---------- legal / prose ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 60px 0 92px; }
.legal h1 { font-size: clamp(2.1rem, 4vw, 3rem); }
.legal .updated { color: var(--faint); font-size: .85rem; margin: 12px 0 8px; }
.legal .note { margin: 18px 0 38px; padding: 14px 18px; border-left: 3px solid var(--oak); background: var(--oak-glow); border-radius: 0 var(--r-sm) var(--r-sm) 0; font-size: .86rem; color: var(--muted); }
.legal h2 { font-family: var(--sans); font-weight: 700; font-size: 1.18rem; margin: 38px 0 12px; color: var(--text); }
.legal p, .legal li { font-size: .94rem; color: var(--muted); }
.legal ul { padding-left: 20px; display: grid; gap: 8px; }
.legal a { color: var(--oak-2); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 520px; }
  .browser { transform: none; }
  .hero-visual:hover .browser { transform: none; }
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 8px 0; }
  .nav-links.open a { padding: 14px 26px; width: 100%; }
  .proof { grid-template-columns: repeat(2,1fr); }
  .bento, .compare, .steps, .tiers { grid-template-columns: 1fr; }
  .compare .col.win, .tier.feat { transform: none; }
  .tier.feat { order: -1; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 76px 0; }
  .mockup-layout { grid-template-columns: 1fr; gap: 36px; padding: 40px 0 64px; }
  .mockup-pitch { position: static; }
  .field-grid, .objectives { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .proof { grid-template-columns: 1fr 1fr; }
  .url-box { flex-direction: column; } .url-box .btn { width: 100%; }
  .foot-grid { grid-template-columns: 1fr; }
  .score-pill { left: 0; }
}
