/* ============================================================
   Hillary AI — premium dark theme
   near-black depth · brand red · cream white · sharp editorial type
   (palette from the Meet Hillary deck: red / black / white)
   ============================================================ */

:root {
  /* ── Hillary red / black / cream palette (from the deck) ──
     Variable names kept as --navy/--blue for compatibility; only the
     VALUES changed. --navy* = near-black backgrounds, --blue* = red. */
  --navy:        #0f0f0f;   /* near-black background */
  --navy-2:      #131313;
  --panel:       #191919;   /* charcoal panels */
  --panel-2:     #1f1f1f;
  --line:        #2c2c2c;
  --line-soft:   #242424;

  --blue:        #c81e1e;   /* brand red (primary) */
  --blue-bright: #e63946;   /* coral-red (bright accent on dark) */
  --blue-deep:   #a01717;   /* deep red */
  --blue-glow:   rgba(200, 30, 30, .45);
  --on-accent:   #ffffff;   /* text/icons on top of red */

  --ink:         #f4f0e8;   /* cream white (headlines) */
  --ink-soft:    #d9d5cd;
  --muted:       #9a968f;
  --muted-2:     #6f6c66;

  --wrap:        1140px;
  --r:           16px;
  --r-lg:        22px;
  --ease:        cubic-bezier(.22, 1, .36, 1);

  --font-display: "Sora", "Manrope", system-ui, sans-serif;
  --font-body:    "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

/* ---------- ambient background ---------- */
.bg-grain {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.bg-glow {
  position: fixed; z-index: 0; pointer-events: none;
  border-radius: 50%;
  filter: blur(90px);
}
.bg-glow--top {
  top: -320px; left: 50%; transform: translateX(-50%);
  width: 820px; height: 620px;
  background: radial-gradient(circle, var(--blue-glow), transparent 68%);
  opacity: .55;
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; position: relative; z-index: 1; }
.narrow { max-width: 820px; }
main { position: relative; z-index: 1; }

.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }
.section--panel { background: linear-gradient(180deg, var(--navy-2), var(--panel)); border-block: 1px solid var(--line-soft); }

/* ---------- typography ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 18px;
}
.eyebrow.center, .h2.center, .body.center { text-align: center; }
.eyebrow.center { display: block; }

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 26px;
}
.muted-h { color: var(--muted); }
.h2.center { margin-inline: auto; }

.body { font-size: clamp(16px, 1.6vw, 18px); color: var(--ink-soft); }
.body.center { max-width: 760px; margin-inline: auto; }

.grad {
  background: linear-gradient(120deg, var(--blue-bright), var(--blue) 55%, var(--blue-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hl { color: var(--blue-bright); }

/* ---------- pill ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue-bright);
  padding: 9px 18px; border-radius: 999px;
  background: rgba(200, 30, 30, .08);
  border: 1px solid rgba(200, 30, 30, .28);
  box-shadow: inset 0 0 22px rgba(200, 30, 30, .08);
}
.pill__spark { color: var(--blue-bright); font-size: 13px; }

/* ---------- buttons ---------- */
.btn {
  --pad: 15px 28px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 15.5px;
  padding: var(--pad); border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .2s, border-color .2s;
}
.btn .arw { transition: transform .28s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }
.btn--sm { --pad: 11px 20px; font-size: 14px; }
.btn--lg { --pad: 18px 38px; font-size: 17px; }
.btn--full { width: 100%; }

.btn--primary {
  color: var(--on-accent);
  background: linear-gradient(120deg, var(--blue-bright), var(--blue));
  box-shadow: 0 10px 30px -8px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -10px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn--ghost {
  color: var(--ink); background: rgba(255,255,255,.03);
  border-color: var(--line);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--blue); background: rgba(200,30,30,.08); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 15, 15, .78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo {
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  color: var(--ink); text-decoration: none; letter-spacing: -.02em;
}
.logo span { color: var(--blue); }
.logo--sm { font-size: 19px; }

/* ---------- hero ---------- */
.hero { padding: clamp(70px, 12vw, 150px) 0 clamp(50px, 8vw, 90px); text-align: center; }
.hero__inner { display: flex; flex-direction: column; align-items: center; }
.hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(58px, 13vw, 150px);
  line-height: .92; letter-spacing: -.045em;
  color: var(--ink); margin: 26px 0 4px;
}
.hero__sub {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(22px, 3.6vw, 38px); line-height: 1.1;
  color: var(--blue-bright); letter-spacing: -.01em; margin-top: 10px;
}
.hero__lede { max-width: 620px; font-size: clamp(16px, 2vw, 20px); color: var(--muted); margin: 22px auto 0; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 38px; }

/* ---------- stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  width: 100%; max-width: 900px; margin-top: 64px;
}
.stat {
  padding: 26px 18px; border-radius: var(--r);
  background: linear-gradient(180deg, var(--panel), var(--navy-2));
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 8px; align-items: center;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.stat:hover { transform: translateY(-4px); border-color: var(--blue); box-shadow: 0 20px 40px -22px var(--blue-glow); }
.stat__num {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3.4vw, 38px);
  color: var(--blue-bright); letter-spacing: -.02em;
}
.stat__label { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }

/* ---------- quote band ---------- */
.band { padding: clamp(60px, 9vw, 110px) 0; background: linear-gradient(180deg, var(--navy), var(--navy-2)); border-block: 1px solid var(--line-soft); }
.band__quote {
  max-width: 900px; margin-inline: auto; text-align: center;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(20px, 2.9vw, 30px); line-height: 1.4; letter-spacing: -.01em;
  color: var(--ink-soft);
}

/* ---------- problem stack ---------- */
.stack { margin-top: 34px; font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 2.3vw, 24px); line-height: 1.55; color: var(--ink); }
.stack p { margin: 2px 0; }
.stack__hi { color: var(--blue-bright); }
.stack__until { color: var(--muted); font-weight: 500; margin-top: 8px; }

/* ---------- comparison table ---------- */
.table-scroll { overflow-x: auto; margin-top: 44px; border-radius: var(--r-lg); border: 1px solid var(--line); }
.cmp { width: 100%; border-collapse: collapse; min-width: 620px; background: var(--panel); }
.cmp th, .cmp td { text-align: left; padding: 20px 24px; border-bottom: 1px solid var(--line-soft); }
.cmp thead th {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2);
  background: var(--navy-2);
}
.cmp td { color: var(--ink-soft); font-size: 15.5px; }
.cmp td:first-child { font-weight: 600; color: var(--ink); font-family: var(--font-display); }
.cmp__sal { color: var(--muted); white-space: nowrap; }
.cmp tbody tr:last-child td { border-bottom: none; }
.cmp__hi { background: linear-gradient(90deg, rgba(200,30,30,.12), rgba(200,30,30,.04)); }
.cmp__hi td:first-child { color: var(--blue-bright); }
.cmp__hi .cmp__sal { color: var(--blue-bright); font-weight: 700; }

/* ---------- what-she-does cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 52px; }
.card {
  position: relative; padding: 34px 28px 30px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel), var(--navy-2));
  border: 1px solid var(--line); overflow: hidden;
  transition: transform .32s var(--ease), border-color .32s, box-shadow .32s;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(120% 80% at 50% -20%, rgba(200,30,30,.14), transparent 60%);
  opacity: 0; transition: opacity .32s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(200,30,30,.5); box-shadow: 0 30px 60px -30px var(--blue-glow); }
.card:hover::before { opacity: 1; }
.card__no {
  font-family: var(--font-display); font-weight: 800; font-size: 42px;
  line-height: 1; letter-spacing: -.03em;
  -webkit-text-stroke: 1.5px var(--blue); color: transparent;
  display: block; margin-bottom: 16px;
}
.card__title { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink); margin-bottom: 10px; letter-spacing: -.01em; }
.card__body { font-size: 15px; color: var(--muted); }

/* ---------- testimonial ---------- */
.quote { margin-top: 46px; padding: 38px 40px; border-radius: var(--r-lg); background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--blue); position: relative; }
.quote blockquote { font-family: var(--font-display); font-weight: 500; font-size: clamp(17px, 2.2vw, 22px); line-height: 1.5; color: var(--ink); letter-spacing: -.01em; }
.quote figcaption { margin-top: 20px; font-size: 14px; font-weight: 700; letter-spacing: .04em; color: var(--blue-bright); }

/* ---------- who it's for ---------- */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.fit__col { padding: 34px 30px; border-radius: var(--r-lg); background: var(--panel); border: 1px solid var(--line); }
.fit__col--yes { border-top: 3px solid var(--blue); }
.fit__col--no { border-top: 3px solid var(--line); }
.fit__head { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--ink); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; letter-spacing: -.01em; }
.tick { color: var(--blue-bright); } .cross { color: var(--muted-2); }
.fit ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.fit li { position: relative; padding-left: 26px; font-size: 15.5px; color: var(--ink-soft); }
.fit li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.fit__col--yes li::before { content: "✓"; color: var(--blue); }
.fit__col--no li::before { content: "✗"; color: var(--muted-2); }

/* ---------- tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 52px; align-items: stretch; }
.tier {
  position: relative; display: flex; flex-direction: column;
  padding: 34px 26px 28px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel), var(--navy-2));
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.tier:hover { transform: translateY(-6px); border-color: rgba(200,30,30,.5); box-shadow: 0 30px 60px -30px var(--blue-glow); }
.tier--pop { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), 0 30px 60px -34px var(--blue-glow); }
.tier__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--on-accent); background: linear-gradient(120deg, var(--blue-bright), var(--blue));
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 8px 20px -8px var(--blue-glow);
}
.tier__name { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink); letter-spacing: -.01em; }
.tier__price { display: flex; align-items: baseline; gap: 8px; margin: 16px 0 4px; }
.tier__num { font-family: var(--font-display); font-weight: 800; font-size: 48px; line-height: 1; color: var(--blue-bright); letter-spacing: -.03em; }
.tier__unit { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.tier__tag { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; }
.tier__desc { font-size: 14.5px; color: var(--muted); flex: 1; margin-bottom: 22px; }
.tiers__note { max-width: 780px; margin: 40px auto 0; text-align: center; font-size: 15px; color: var(--muted); }
.tiers__note strong { color: var(--ink-soft); }

/* ============================================================
   SETUP FORM
   ============================================================ */
.setup { padding: clamp(72px, 11vw, 130px) 0 clamp(60px, 9vw, 110px); background: linear-gradient(180deg, var(--panel), var(--navy)); border-top: 1px solid var(--line-soft); position: relative; }
.setup::before {
  content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 480px; border-radius: 50%; filter: blur(100px);
  background: radial-gradient(circle, var(--blue-glow), transparent 70%); opacity: .4; pointer-events: none;
}
.setup--standalone { border-top: none; min-height: 100vh; }
.setup--standalone .setup__head { margin-top: 8px; }
.setup__head { text-align: center; max-width: 760px; margin: 0 auto 52px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.setup__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(36px, 6vw, 66px); line-height: 1; letter-spacing: -.03em; color: var(--ink); }
.setup__lede { font-size: clamp(16px, 1.8vw, 18px); color: var(--muted); max-width: 640px; }
.setup__meta { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }

.form { max-width: 880px; margin-inline: auto; display: flex; flex-direction: column; gap: 22px; }
.fs {
  position: relative; border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--panel), var(--navy-2));
  padding: 34px 32px;
}
.fs--star { border-color: rgba(200,30,30,.4); box-shadow: 0 0 0 1px rgba(200,30,30,.18), 0 30px 60px -40px var(--blue-glow); }
.fs__legend {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--blue);
  padding: 0; margin-bottom: 6px;
}
.fs__star {
  display: inline-block; font-family: var(--font-display); font-size: 11.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--blue-bright);
  background: rgba(200,30,30,.1); border: 1px solid rgba(200,30,30,.3);
  padding: 5px 13px; border-radius: 999px; margin-bottom: 14px;
}
.fs__hint { font-size: 14.5px; color: var(--muted); margin-bottom: 22px; margin-top: 4px; }

.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--wide { grid-column: 1 / -1; }
.field__label { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--ink); letter-spacing: -.005em; }
.field__label b { color: var(--blue-bright); }
.field__label i { color: var(--muted-2); font-weight: 500; font-style: normal; }

input, select, textarea {
  font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: var(--navy); border: 1px solid var(--line);
  border-radius: 12px; padding: 14px 16px; width: 100%;
  transition: border-color .2s, box-shadow .2s, background .2s;
  -webkit-appearance: none; appearance: none;
}
textarea { resize: vertical; min-height: 76px; line-height: 1.55; }
input::placeholder, textarea::placeholder { color: var(--muted-2); }
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%238b97b3' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }
select option { background: var(--navy-2); color: var(--ink); }
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(200,30,30,.22);
  background: var(--navy-2);
}
input:invalid:not(:placeholder-shown), textarea:invalid:not(:placeholder-shown) { }
.field--error input, .field--error select, .field--error textarea { border-color: #ff6b6b; box-shadow: 0 0 0 3px rgba(255,107,107,.18); }

.form__foot { text-align: center; margin-top: 10px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.form__err { color: #ff8585; font-size: 14.5px; font-weight: 600; }
.form__note { font-size: 14px; color: var(--muted-2); line-height: 1.6; }
.btn--lg[disabled] { opacity: .6; cursor: not-allowed; transform: none; }
.btn--lg.is-loading { position: relative; color: transparent; }
.btn--lg.is-loading::after {
  content: ""; position: absolute; width: 20px; height: 20px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.4); border-top-color: var(--on-accent);
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- wizard ---------- */
.wiz { margin-bottom: 30px; }
.wiz__bar { height: 6px; border-radius: 999px; background: var(--line); overflow: hidden; }
.wiz__fill { display: block; height: 100%; width: 25%; border-radius: 999px; background: linear-gradient(90deg, var(--blue), var(--blue-bright)); transition: width .45s var(--ease); box-shadow: 0 0 16px var(--blue-glow); }
.wiz__steps { list-style: none; display: flex; justify-content: space-between; gap: 8px; margin-top: 16px; padding: 0; }
.wiz__step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.wiz__dot {
  width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  background: var(--navy); border: 1.5px solid var(--line); color: var(--muted-2);
  transition: all .3s var(--ease);
}
.wiz__name { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: .02em; color: var(--muted-2); transition: color .3s; }
.wiz__step.is-active .wiz__dot { border-color: var(--blue); color: var(--blue-bright); background: rgba(200,30,30,.12); box-shadow: 0 0 0 4px rgba(200,30,30,.14); }
.wiz__step.is-active .wiz__name { color: var(--ink); }
.wiz__step.is-done .wiz__dot { border-color: var(--blue); background: var(--blue); color: var(--on-accent); }
.wiz__step.is-done .wiz__name { color: var(--ink-soft); }
@media (max-width: 560px) { .wiz__name { display: none; } }

.fs[hidden] { display: none; }
.wiz__nav { display: flex; gap: 12px; justify-content: center; width: 100%; }
.wiz__nav .btn { min-width: 150px; }
.form__saved { font-size: 13.5px; color: var(--blue-bright); font-weight: 600; }
@media (max-width: 520px) { .wiz__nav { flex-direction: column-reverse; } .wiz__nav .btn { width: 100%; } }

/* ---------- success ---------- */
.success { max-width: 620px; margin: 0 auto; text-align: center; padding: 60px 40px; border-radius: var(--r-lg); background: linear-gradient(180deg, var(--panel), var(--navy-2)); border: 1px solid rgba(200,30,30,.4); box-shadow: 0 40px 80px -50px var(--blue-glow); animation: pop .5s var(--ease); }
.success__mark { width: 72px; height: 72px; margin: 0 auto 24px; border-radius: 50%; display: grid; place-items: center; font-size: 34px; color: var(--on-accent); background: linear-gradient(120deg, var(--blue-bright), var(--blue)); box-shadow: 0 14px 34px -10px var(--blue-glow); }
.success__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 4vw, 36px); color: var(--ink); letter-spacing: -.02em; margin-bottom: 14px; }
.success__body { color: var(--muted); font-size: 16px; }
@keyframes pop { from { opacity: 0; transform: scale(.96) translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line-soft); padding: 40px 0; background: var(--navy); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer p { font-size: 13.5px; color: var(--muted-2); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .fit { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .wrap { padding-inline: 18px; }
  .grid2 { grid-template-columns: 1fr; }
  .field--wide { grid-column: auto; }
  .fs { padding: 26px 20px; }
  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .footer__inner { justify-content: center; text-align: center; }
}

/* prevent iOS auto-zoom on focus (inputs already 16px) */
@media (pointer: coarse) { input, select, textarea { font-size: 16px; } }

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