/* ==========================================================================
   Siraj Angels — shared styles (index.html + apply.html)
   Palette is sampled from the Siraj Angels logo.
   ========================================================================== */

:root {
  /* Brand palette — from the logo. The four brand colours live here only. */
  --navy: #00203B;       /* primary / dark */
  --gold: #C8B083;       /* accent — the flame. Use on navy; too light for text on cream */
  --charcoal: #413F3D;   /* body text */
  --cream: #F3F2EE;      /* background / paper */

  /* Derived tints (not new brand colours — shades of the four above) */
  --navy-2: #0B2C4A;                 /* raised panel on navy */
  --paper: #FBFAF7;                  /* card surface on cream */
  --text-soft: #5E5B57;              /* secondary text on cream (≈6:1) */
  --line: #DEDBD3;                   /* hairlines on cream */
  --line-dark: rgba(243, 242, 238, .14);
  --on-navy-soft: rgba(243, 242, 238, .8);
  --error: #A12A1E;

  /* Typography — PLACEHOLDER (TODO: confirm brand fonts; see README).
     Montserrat echoes the geometric caps in the logo. Swap here + the Google Fonts <link>. */
  --font-display: "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1160px;
  --gutter: 20px;
  --radius: 14px;
  --header-h: 76px;
  --section-pad: clamp(64px, 10vw, 120px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); color: var(--navy); line-height: 1.12; margin: 0; letter-spacing: -0.015em; }
h2 { font-size: clamp(1.85rem, 4.2vw, 2.75rem); font-weight: 700; max-width: 20ch; margin-bottom: 1.25rem; }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
@media (min-width: 768px) { :root { --gutter: 32px; } }

[hidden] { display: none !important; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--navy); color: var(--cream); padding: 10px 16px; border-radius: 8px; font-weight: 600; text-decoration: none; }
.skip-link:focus { top: 12px; }

/* Visible focus everywhere: navy ring on light, gold ring on dark */
:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; border-radius: 4px; }
.on-dark :focus-visible, .hero :focus-visible, .section--dark :focus-visible, .cta-band :focus-visible, .site-footer :focus-visible { outline-color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 16px 26px; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--navy); color: var(--cream); }          /* on light */
.btn--primary:hover { background: var(--navy-2); }
.btn--gold { background: var(--gold); color: var(--navy); }              /* on dark, ≈8:1 */
.btn--gold:hover { background: #D6C29B; }
.btn--ghost { color: var(--cream); border-color: rgba(243, 242, 238, .4); }
.btn--ghost:hover { border-color: var(--cream); }
.btn--sm { padding: 11px 20px; font-size: .9375rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: progress; transform: none; }

/* ---------- Brand lockup (header) ----------
   Mark + wordmark images cut from the supplied logo; swap files in assets/logo/. */
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--navy); }
.brand__mark { height: 44px; width: auto; }
.brand__text { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.brand__wordmark { height: 22px; width: auto; }
.brand__credit { font-size: .6875rem; letter-spacing: .03em; color: var(--text-soft); line-height: 1.2; }
@media (max-width: 380px) { .brand__credit { font-size: .625rem; } .brand__mark { height: 38px; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243, 242, 238, .94);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 16px; }

.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; color: var(--navy); flex: none; }
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after { display: block; width: 22px; height: 2px; background: currentColor; border-radius: 2px; position: relative; transition: transform .2s, background .2s; }
.nav-toggle__bar::before, .nav-toggle__bar::after { content: ""; position: absolute; left: 0; }
.nav-toggle__bar::before { top: -7px; }
.nav-toggle__bar::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { transform: translateY(-7px) rotate(-45deg); }

.site-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--line); display: none; }
.site-nav.is-open { display: block; }
.site-nav ul { list-style: none; margin: 0; padding: 8px var(--gutter) 20px; display: flex; flex-direction: column; }
.site-nav a:not(.btn) { display: block; padding: 12px 0; color: var(--navy); text-decoration: none; font-weight: 500; border-bottom: 1px solid var(--line); }
.site-nav a:not(.btn):hover, .site-nav a.is-active { text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 6px; }
.site-nav .btn { margin-top: 16px; }

@media (min-width: 1060px) {
  .nav-toggle { display: none; }
  .site-nav { position: static; display: block; background: none; border: 0; }
  .site-nav ul { flex-direction: row; align-items: center; gap: 26px; padding: 0; }
  .site-nav a:not(.btn) { padding: 6px 0; border: 0; font-size: .9375rem; }
  .site-nav .btn { margin: 0 0 0 4px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy); color: var(--cream);
  padding: clamp(64px, 10vw, 120px) 0 0;
}
.hero-inner { position: relative; display: grid; gap: 40px; align-items: center; }
@media (min-width: 960px) { .hero-inner { grid-template-columns: 1.35fr 1fr; } }
.eyebrow { font-size: .8125rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.hero h1 { color: var(--cream); font-size: clamp(2.4rem, 6.4vw, 4.4rem); font-weight: 700; max-width: 16ch; margin-bottom: 1.5rem; letter-spacing: -0.025em; }
.lede { font-size: clamp(1.0625rem, 2vw, 1.25rem); max-width: 56ch; color: var(--on-navy-soft); margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Decorative mark with the "lamp" glow — siraj means lamp */
.hero-art { display: none; position: relative; justify-self: center; }
.hero-art::before {
  content: ""; position: absolute; left: 50%; top: 2%; width: 150%; aspect-ratio: 1; transform: translate(-50%, -38%);
  background: radial-gradient(circle, rgba(200, 176, 131, .32) 0%, rgba(200, 176, 131, 0) 58%);
  pointer-events: none;
}
.hero-art img { position: relative; width: min(380px, 100%); height: auto; }
@media (min-width: 960px) { .hero-art { display: block; } }

.trust-strip { list-style: none; margin: clamp(56px, 8vw, 96px) 0 0; padding: 26px 0 30px; border-top: 1px solid var(--line-dark); display: grid; gap: 12px 32px; font-size: .9375rem; color: var(--on-navy-soft); }
.trust-strip li { display: flex; gap: 10px; align-items: baseline; }
.trust-strip li::before { content: ""; flex: none; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); transform: translateY(-2px); }
@media (min-width: 640px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .trust-strip { grid-template-columns: repeat(4, auto); justify-content: space-between; } }

/* ---------- Sections ---------- */
.section { padding: var(--section-pad) 0; }
.section--paper { background: var(--paper); }
.section--dark { background: var(--navy); color: var(--on-navy-soft); }
.section--dark h2, .section--dark h3 { color: var(--cream); }

.kicker { display: inline-flex; align-items: center; gap: 12px; font-size: .8125rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--navy); margin-bottom: 1rem; }
.kicker::before { content: ""; width: 28px; height: 2px; background: var(--gold); }
.section--dark .kicker { color: var(--gold); }

.split { display: grid; gap: 24px 64px; }
@media (min-width: 900px) { .split { grid-template-columns: 5fr 7fr; align-items: start; } }

.prose { max-width: 62ch; }
.prose > p:first-child { font-size: 1.1875rem; color: var(--navy); }
.section--dark .prose > p:first-child { color: var(--cream); }
.prose-sub { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin: 2rem 0 0; }
.closing-note { margin-top: 1.75rem; padding-left: 18px; border-left: 3px solid var(--gold); color: var(--text-soft); }

.check-list { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before {
  content: ""; position: absolute; left: 2px; top: .42em; width: 14px; height: 8px;
  border-left: 2.5px solid var(--navy); border-bottom: 2.5px solid var(--navy);
  transform: rotate(-45deg);
}
.check-list li::after { content: ""; position: absolute; left: 0; top: .15em; width: 22px; height: 22px; border-radius: 50%; background: rgba(200, 176, 131, .35); z-index: -1; }
.check-list li { z-index: 0; }

/* Why Join */
.benefits { list-style: none; margin: 2.5rem 0 0; padding: 0; display: grid; gap: 16px; }
@media (min-width: 640px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.benefit { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.benefit__icon { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: rgba(200, 176, 131, .3); margin-bottom: 18px; }
.benefit h3 { margin-bottom: .6rem; }
.benefit p { margin: 0; color: var(--text-soft); font-size: 1rem; }

/* How it works */
.steps { list-style: none; margin: 2.5rem 0 0; padding: 0; display: grid; }
.step { position: relative; padding: 24px 0 24px 64px; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num { position: absolute; left: 0; top: 22px; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--navy); line-height: 1.2; }
.step__num::after { content: ""; display: block; width: 20px; height: 2px; background: var(--gold); margin-top: 6px; }
.step h3 { margin-bottom: .4rem; }
.step p { margin: 0; color: var(--text-soft); font-size: 1rem; }
@media (min-width: 960px) {
  .steps { grid-template-columns: repeat(5, 1fr); gap: 24px; }
  .step, .step:last-child { padding: 28px 0 0; border: 0; border-top: 2px solid var(--navy); }
  .step__num { position: static; display: block; margin-bottom: 18px; font-size: 1.9rem; }
}

/* Pipeline facts */
.facts { margin: 2rem 0 0; display: grid; }
.facts div { display: grid; gap: 2px; padding: 16px 0; border-top: 1px solid var(--line-dark); }
.facts div:last-child { border-bottom: 1px solid var(--line-dark); }
.facts dt { font-size: .8125rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.facts dd { margin: 0; color: var(--cream); font-weight: 500; }
@media (min-width: 560px) { .facts div { grid-template-columns: 160px 1fr; align-items: baseline; } }

/* Demo Day */
.demo-grid { display: grid; gap: 16px; margin: 2.5rem 0 2rem; }
@media (min-width: 720px) { .demo-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.demo-stat { background: var(--navy); color: var(--cream); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.demo-stat__num { font-family: var(--font-display); font-weight: 700; font-size: clamp(3.25rem, 7vw, 4.25rem); line-height: .9; color: var(--gold); }
.demo-stat__label { color: var(--on-navy-soft); font-size: 1rem; }
.demo-copy { max-width: 64ch; color: var(--text-soft); }
.demo-copy p:last-child { margin: 0; }

/* Leadership */
.people { list-style: none; margin: 2.5rem 0 0; padding: 0; display: grid; gap: 16px; align-items: start; }
@media (min-width: 800px) { .people { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.person { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.person__initials { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: .04em; margin-bottom: 20px; }
.person h3 { margin-bottom: .3rem; }
.person__role { font-size: .8125rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); margin-bottom: 1rem; }
.person__role::before { content: ""; display: inline-block; width: 16px; height: 2px; background: var(--gold); margin-right: 8px; vertical-align: middle; }
.person__bio { margin: 0; color: var(--text-soft); font-size: 1rem; }

/* Membership */
.membership-grid { display: grid; gap: 32px; }
@media (min-width: 960px) { .membership-grid { grid-template-columns: 7fr 5fr; gap: 56px; align-items: start; } }
.member-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.member-list li { padding: 18px 0; border-top: 1px solid var(--line); }
.member-list li:last-child { border-bottom: 1px solid var(--line); }
.member-list strong { display: block; font-family: var(--font-display); color: var(--navy); font-weight: 600; margin-bottom: 2px; }
.cta-card { background: var(--navy); color: var(--on-navy-soft); border-radius: calc(var(--radius) + 4px); padding: clamp(28px, 4vw, 40px); }
.cta-card h3 { color: var(--cream); font-size: 1.5rem; margin-bottom: .75rem; }
.cta-card p { margin-bottom: 1.5rem; }

/* FAQ */
.faq-wrap { max-width: 860px; }
.faq { margin-top: 2rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 0; font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; line-height: 1.3; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(200, 176, 131, .35); font-family: var(--font-body); font-weight: 500; font-size: 1.25rem; line-height: 1; color: var(--navy); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 24px; max-width: 64ch; color: var(--text-soft); }
.faq a, .text-link { color: var(--navy); font-weight: 600; text-decoration-color: var(--gold); text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* Final CTA band */
.cta-band { position: relative; overflow: hidden; background: var(--navy); color: var(--cream); padding: clamp(56px, 8vw, 88px) 0; text-align: center; }
.cta-band::before { content: ""; position: absolute; left: 50%; top: 0; width: 900px; max-width: 140vw; aspect-ratio: 2; transform: translate(-50%, -55%); background: radial-gradient(ellipse, rgba(200, 176, 131, .28) 0%, rgba(200, 176, 131, 0) 62%); pointer-events: none; }
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--cream); max-width: 24ch; margin: 0 auto 1.75rem; font-size: clamp(1.6rem, 3.6vw, 2.4rem); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: var(--on-navy-soft); padding: 64px 0 32px; font-size: .9375rem; border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; gap: 36px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.6fr 1.4fr 1fr; } }
.footer-brand img { width: 200px; height: auto; margin-bottom: 18px; }
.footer-brand p { margin: 0; }
.footer-heading { font-family: var(--font-body); font-size: .8125rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin: 0 0 14px; }
.site-footer address { font-style: normal; line-height: 1.8; }
.site-footer a { color: var(--cream); text-decoration-color: rgba(243, 242, 238, .35); text-underline-offset: 3px; }
.site-footer a:hover { text-decoration-color: var(--gold); }
.footer-links { list-style: none; margin: 0; padding: 0; line-height: 2; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }
.legal { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-dark); font-size: .8125rem; color: rgba(243, 242, 238, .7); }
.legal p { max-width: 90ch; margin-bottom: .5rem; }

/* ==========================================================================
   Apply page
   ========================================================================== */
.apply-hero { background: var(--navy); color: var(--on-navy-soft); padding: clamp(56px, 8vw, 96px) 0 clamp(120px, 14vw, 160px); position: relative; overflow: hidden; }
.apply-hero::before { content: ""; position: absolute; right: -10%; top: -60%; width: 70vw; max-width: 760px; aspect-ratio: 1; background: radial-gradient(circle, rgba(200, 176, 131, .25) 0%, rgba(200, 176, 131, 0) 60%); pointer-events: none; }
.apply-hero .container { position: relative; }
.apply-hero h1 { color: var(--cream); font-size: clamp(2.2rem, 5.5vw, 3.5rem); font-weight: 700; margin-bottom: 1rem; letter-spacing: -0.02em; }
.apply-hero p { max-width: 56ch; font-size: 1.125rem; margin: 0; }

.apply-body { margin-top: clamp(-104px, -10vw, -72px); padding-bottom: var(--section-pad); position: relative; }
.track-tabs { display: grid; gap: 12px; }
@media (min-width: 640px) { .track-tabs { grid-template-columns: 1fr 1fr; gap: 16px; } }
.track-tab {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px; text-align: left;
  font: inherit; color: var(--charcoal); cursor: pointer;
  background: var(--paper); border: 2px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: 0 18px 40px -28px rgba(0, 32, 59, .45);
  transition: border-color .2s, background .2s, transform .2s;
}
.track-tab:hover { border-color: var(--gold); transform: translateY(-1px); }
.track-tab__label { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--navy); display: flex; align-items: center; gap: 10px; }
.track-tab__label::before { content: ""; width: 12px; height: 12px; border-radius: 50%; border: 2px solid var(--navy); flex: none; }
.track-tab__desc { font-size: .9375rem; color: var(--text-soft); }
.track-tab[aria-selected="true"] { border-color: var(--navy); background: var(--paper); box-shadow: 0 0 0 1px var(--navy), 0 18px 40px -28px rgba(0, 32, 59, .45); }
.track-tab[aria-selected="true"] .track-tab__label::before { background: var(--navy); box-shadow: inset 0 0 0 2px var(--paper); }

.track-prompt { margin: 28px 0 0; text-align: center; color: var(--text-soft); }

.track-panel { margin-top: 28px; display: grid; gap: 32px; }
@media (min-width: 960px) { .track-panel { grid-template-columns: 4fr 7fr; gap: 56px; align-items: start; } .track-intro { position: sticky; top: calc(var(--header-h) + 32px); } }
.track-intro h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.track-intro p { color: var(--text-soft); }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px); padding: clamp(24px, 4vw, 40px); box-shadow: 0 20px 50px -34px rgba(0, 32, 59, .4); }
.form-title { font-size: 1.3rem; margin-bottom: 24px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.field-row { display: grid; gap: 0 16px; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field label { font-weight: 600; font-size: .9375rem; color: var(--navy); }
.optional { font-weight: 400; color: var(--text-soft); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 1rem; color: var(--charcoal); width: 100%;
  padding: 12px 14px; border: 1.5px solid #B9B4AA; border-radius: 10px; background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #85807A; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(200, 176, 131, .6); }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300203B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; }
.field [aria-invalid="true"] { border-color: var(--error); }
.field-hint { margin: 0; font-size: .875rem; color: var(--text-soft); }
.field-hint--counter { text-align: right; font-variant-numeric: tabular-nums; }
.field-hint--counter.is-near { color: var(--error); font-weight: 600; }
.field-error { color: var(--error); font-size: .875rem; margin: 0; }
.form-error { color: var(--error); font-weight: 500; }
.form-fineprint { margin: 14px 0 0; font-size: .875rem; color: var(--text-soft); text-align: center; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-success { outline: none; }
.form-success h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.form-success h3::before { content: ""; display: block; width: 40px; height: 4px; background: var(--gold); border-radius: 2px; margin-bottom: 20px; }
.form-success p { margin: 0 0 1.5rem; font-size: 1.125rem; }
.app-redirect h3 { font-size: 1.4rem; margin-bottom: .75rem; }
