/* =========================================================================
   CrowdSurge design system
   One token set + component library shared by every public view (marketing
   pages, event pass pages, the venue-partner page). Dark is the fixed
   startup default (the glow/gradient brand only really reads on a dark
   ground) - the bare :root holds the dark palette, and light only ever
   applies when someone explicitly opts in via the toggle in site.js, which
   stamps data-theme="light" and remembers the choice. OS/browser
   prefers-color-scheme is intentionally ignored.
   ========================================================================= */

:root {
  color-scheme: dark;
  --bg: #07060c;
  --bg-soft: #0c0a15;
  --surface: #130f1e;
  --surface-2: #1a1528;
  --ink: #eeecf6;
  --muted: #a29cbe;
  --muted-2: #756f92;
  --hairline: #2a2438;
  --hairline-soft: #1c1727;

  --blue: #3fa2ff;
  --violet: #9068f5;
  --violet-deep: #5b3fd1;
  --lock: #3ddc9b;
  --lock-bg: rgba(61, 220, 155, 0.14);
  --wait: #f5a84a;
  --wait-bg: rgba(245, 168, 74, 0.14);
  --danger: #e5484d;
  --danger-bg: rgba(229, 72, 77, 0.14);

  --grad: linear-gradient(96deg, var(--blue) 6%, var(--violet) 62%, var(--violet-deep) 96%);
  --grad-soft: linear-gradient(96deg, rgba(63, 162, 255, 0.16), rgba(144, 104, 245, 0.16));
  --glow-violet: 0 0 50px rgba(144, 104, 245, 0.32);
  --shadow-card: 0 22px 60px -22px rgba(6, 4, 14, 0.65);

  --font-display: "Unbounded", "Segoe UI", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --logo-backdrop: transparent;
  --logo-backdrop-pad: 0;
}

/* Deliberately no @media (prefers-color-scheme: light) block - dark is the default startup theme
   for every visitor regardless of OS/browser preference. Light only ever applies when someone
   explicitly picks it via the toggle (site.js stamps data-theme="light" and remembers it). */
:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f8f6fc;
  --bg-soft: #f1eef8;
  --surface: #ffffff;
  --surface-2: #f3f0fa;
  --ink: #18142a;
  --muted: #5b5578;
  --muted-2: #7a7496;
  --hairline: #e5e0f0;
  --hairline-soft: #ece7f7;
  --lock-bg: rgba(23, 181, 120, 0.12);
  --lock: #12965f;
  --wait-bg: rgba(211, 133, 20, 0.14);
  --wait: #b06a0e;
  --danger-bg: rgba(210, 47, 51, 0.12);
  --danger: #c22327;
  --glow-violet: 0 12px 36px -14px rgba(144, 104, 245, 0.32);
  --shadow-card: 0 24px 50px -24px rgba(40, 24, 80, 0.2);
  --logo-backdrop: #100b1c;
  --logo-backdrop-pad: 6px 14px;
}

/* =========================================================================
   Reset / base
   ========================================================================= */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { text-wrap: balance; font-family: var(--font-display); margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
::selection { background: var(--violet); color: #fff; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
@media (max-width: 640px) { .wrap { padding: 0 18px; } }

/* =========================================================================
   Nav + footer
   ========================================================================= */
.cs-nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--hairline-soft);
}
.cs-nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.cs-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
/* The logo's "Crowd" half is rendered white with no dark-bg variant supplied, so it reads fine on
   the dark nav as-is but would vanish on the light theme's near-white ground. --logo-backdrop stays
   transparent in dark mode (logo floats free, unchanged) and becomes a dark pill in light mode only,
   giving the white text something to sit on either way. */
.cs-logo-mark {
    display: inline-flex;
    align-items: center;
    /*background: var(--logo-backdrop); border-radius: 999px;*/
    padding: var(--logo-backdrop-pad, 0);
}
.cs-logo-img { height: 70px; width: auto; display: block; }
.cs-logo-img-sm { height: 24px; }
.cs-icon-mark { height: 50px; width: auto; display: block; }
.cs-icon-mark-sm { height: 28px; }
.cs-brand-pill {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted-2); border: 1px solid var(--hairline); border-radius: 999px; padding: 4px 10px;
}
.cs-navlinks { display: flex; align-items: center; gap: 30px; }
.cs-navlinks a.navlink { font-size: 14.5px; font-weight: 600; color: var(--muted); text-decoration: none; }
.cs-navlinks a.navlink:hover { color: var(--ink); }

.cs-footer { border-top: 1px solid var(--hairline-soft); padding: 44px 0; }
.cs-footer-grid { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; }
.cs-footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.cs-footer-links a { font-size: 14px; color: var(--muted); text-decoration: none; font-weight: 600; }
.cs-footer-links a:hover { color: var(--ink); }
.cs-footer-bottom {
  margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--hairline-soft);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 13px; color: var(--muted-2);
}
.cs-footer-bottom .domain { font-family: var(--font-mono); }

/* =========================================================================
   Buttons, chips, badges
   ========================================================================= */
.btn {
  font-family: var(--font-body); font-weight: 700; font-size: 14.5px; border-radius: 11px;
  padding: 11px 20px; border: 1px solid transparent; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.btn-grad { background: var(--grad); color: #fff; box-shadow: var(--glow-violet); }
.btn-grad:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--muted-2); }
.btn-danger { background: transparent; color: var(--danger); border-color: var(--danger-bg); }
.btn-danger:hover { background: var(--danger-bg); border-color: var(--danger); }
.btn-sm { padding: 9px 16px; font-size: 13.5px; border-radius: 9px; }
.btn-block { width: 100%; }

.theme-toggle {
  border: 1px solid var(--hairline); background: var(--surface); color: var(--muted);
  border-radius: 9px; padding: 9px 12px; font-size: 13px; font-weight: 600; cursor: pointer;
  font-family: var(--font-body); flex: none;
}
.theme-toggle:hover { color: var(--ink); }

.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }

.badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--hairline); background: var(--surface); font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.badge.dotted::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--lock); box-shadow: 0 0 0 3px var(--lock-bg); }

.chip {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11.5px;
  font-weight: 500; padding: 5px 10px; border-radius: 999px;
}
.chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.chip-wait { background: var(--wait-bg); color: var(--wait); }
.chip-lock { background: var(--lock-bg); color: var(--lock); }
.chip-muted { background: var(--hairline-soft); color: var(--muted-2); }

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative; overflow: hidden; padding: 92px 0 80px;
  background:
    radial-gradient(720px 420px at 82% -8%, color-mix(in srgb, var(--violet) 28%, transparent), transparent 70%),
    radial-gradient(540px 360px at 6% 10%, color-mix(in srgb, var(--blue) 20%, transparent), transparent 70%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
/* Large, soft, low-opacity - deliberately atmospheric rather than a crisp foreground graphic, so the
   128px source icon doesn't need to hold up to close inspection at this size. A higher-res source
   would let this go sharper/bigger later without changing the treatment. */
.hero-icon-accent {
  position: absolute; z-index: 0; top: -70px; right: -50px;
  width: 380px; height: 380px;
  background-image: url('/img/crowdsurge-icon.png');
  background-size: contain; background-position: center; background-repeat: no-repeat;
  opacity: 0.16; filter: blur(1.5px);
  pointer-events: none;
}
@media (max-width: 900px) {
  .hero-icon-accent { width: 260px; height: 260px; top: -40px; right: -30px; }
}
.hero h1 { font-size: clamp(32px, 4.4vw, 56px); font-weight: 800; line-height: 1.08; margin: 22px 0 22px; }
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 18px; color: var(--muted); max-width: 46ch; line-height: 1.6; }
.hero-ctas { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.stat-row { display: flex; gap: 28px; margin-top: 42px; flex-wrap: wrap; }
.stat-row div { display: flex; flex-direction: column; gap: 2px; }
.stat-row .n { font-family: var(--font-mono); font-size: 15px; color: var(--ink); font-weight: 500; }
.stat-row .l { font-size: 12.5px; color: var(--muted-2); max-width: 20ch; }

.proof { position: relative; height: 400px; }
.proof-card {
  position: absolute; width: 280px; background: var(--surface); border: 1px solid var(--hairline);
  border-radius: 18px; padding: 18px; box-shadow: var(--shadow-card);
}
.proof-card.a { top: 8px; left: 6px; transform: rotate(-4deg); }
.proof-card.b { bottom: 4px; right: 0; transform: rotate(3deg); width: 296px; }
.proof-title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.proof-meta { font-size: 12.5px; color: var(--muted); margin-bottom: 14px; }
.proof-avatars { display: flex; margin-top: 14px; }
.proof-avatars span { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--surface); margin-left: -8px; background: var(--grad); }
.proof-avatars span:first-child { margin-left: 0; }
.proof-arrow { position: absolute; left: 50%; top: 52%; transform: translate(-50%, -50%) rotate(8deg); font-family: var(--font-mono); font-size: 11px; color: var(--muted-2); }

/* =========================================================================
   Generic section shell
   ========================================================================= */
section.cs-section { padding: 88px 0; }
.section-head { max-width: 640px; margin: 0 0 48px; }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 16.5px; line-height: 1.6; }

/* Fork (two-audience split) */
.fork { background: var(--bg-soft); border-top: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); }
.fork-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hairline-soft); border-radius: 20px; overflow: hidden; border: 1px solid var(--hairline-soft); }
.fork-panel { background: var(--surface); padding: 44px 40px; display: flex; flex-direction: column; gap: 16px; }
.fork-panel .tag { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }
.fork-panel h3 { font-size: 25px; font-weight: 800; }
.fork-panel p { color: var(--muted); font-size: 15.5px; line-height: 1.65; }
.fork-panel .btn { align-self: flex-start; margin-top: 8px; }

/* Numbered steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step .num { font-family: var(--font-mono); font-size: 13px; color: var(--muted-2); padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--hairline); }
.step h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* Trust strip */
.trust { background: var(--bg-soft); border-top: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); }
.trust-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
.trust-list { display: flex; flex-direction: column; gap: 22px; }
.trust-item { display: flex; gap: 14px; }
.trust-item .ic { width: 34px; height: 34px; border-radius: 10px; flex: none; background: var(--grad-soft); border: 1px solid var(--hairline); display: flex; align-items: center; justify-content: center; }
.trust-item h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 4px; }
.trust-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.city-panel { background: var(--surface); border: 1px solid var(--hairline); border-radius: 18px; padding: 30px; }
.city-panel .eyebrow { margin-bottom: 14px; }
.city-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin-top: 6px; }
.city-grid span { font-size: 14.5px; font-weight: 600; padding: 9px 0; border-bottom: 1px solid var(--hairline-soft); display: flex; align-items: center; justify-content: space-between; }
.city-grid span::after { content: "\2192"; color: var(--muted-2); font-weight: 400; }
.city-note { font-size: 13px; color: var(--muted-2); margin-top: 16px; line-height: 1.6; }

/* Gradient promo band (homepage venue teaser + venue-page insight panels reuse this look) */
.promo-band { border-radius: 24px; background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--hairline); padding: 56px; position: relative; overflow: hidden; }
.promo-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(480px 300px at 88% 6%, color-mix(in srgb, var(--violet) 22%, transparent), transparent 70%); pointer-events: none; }
.promo-inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.promo-copy h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 800; margin-bottom: 16px; }
.promo-copy p { color: var(--muted); font-size: 16px; line-height: 1.65; max-width: 44ch; }
.promo-copy .hero-ctas { margin-top: 28px; }
.promo-points { display: flex; flex-direction: column; gap: 18px; }
.promo-point { background: var(--surface); border: 1px solid var(--hairline); border-radius: 14px; padding: 18px 20px; display: flex; gap: 14px; align-items: flex-start; }
.promo-point .k { font-family: var(--font-mono); font-size: 12px; color: var(--violet); flex: none; width: 64px; padding-top: 2px; }
.promo-point h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.promo-point p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

.final-cta { text-align: center; padding: 100px 0 110px; }
.final-cta h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; max-width: 18ch; margin: 0 auto 30px; }
.final-cta .hero-ctas { justify-content: center; }

/* =========================================================================
   Venue-partner page specific
   ========================================================================= */
.insight { background: var(--bg-soft); border-top: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); }
.insight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--hairline-soft); border-radius: 20px; overflow: hidden; border: 1px solid var(--hairline-soft); }
.insight-panel { background: var(--surface); padding: 40px; }
.insight-panel .tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; display: block; }
.insight-panel.a .tag { color: var(--muted-2); }
.insight-panel.b .tag { color: var(--violet); }
.insight-panel p { font-size: 17px; line-height: 1.65; color: var(--muted); }
.insight-panel.b p { color: var(--ink); }

.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cat-card { background: var(--surface); border: 1px solid var(--hairline); border-radius: 16px; padding: 24px; }
.cat-card .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--grad-soft); border: 1px solid var(--hairline); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.cat-card h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 6px; }
.cat-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--hairline); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--font-body); color: var(--ink); }
.faq-q h4 { font-size: 16px; font-weight: 700; margin: 0; }
.faq-q .plus { font-family: var(--font-mono); font-size: 18px; color: var(--muted-2); flex: none; transition: transform .2s ease; }
.faq-item[open] .faq-q .plus { transform: rotate(45deg); }
.faq-a { padding: 0 4px 22px; color: var(--muted); font-size: 14.5px; line-height: 1.65; max-width: 68ch; }
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

.form-section { background: var(--bg-soft); border-top: 1px solid var(--hairline-soft); }
.form-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.form-copy p { color: var(--muted); font-size: 15.5px; line-height: 1.65; max-width: 36ch; margin-top: 14px; }
.form-copy .contact-note { margin-top: 28px; display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--muted-2); line-height: 1.6; }
.form-card { background: var(--surface); border: 1px solid var(--hairline); border-radius: 18px; padding: 34px; box-shadow: var(--shadow-card); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-size: 12.5px; font-weight: 700; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 14.5px; color: var(--ink);
  background: var(--bg-soft); border: 1px solid var(--hairline); border-radius: 10px; padding: 11px 13px;
  outline: none; transition: border-color .15s ease; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--violet); }
.field textarea { resize: vertical; min-height: 80px; font-family: var(--font-body); }
.field-error { color: var(--wait); font-size: 12px; margin-top: 4px; }

.thanks-card { text-align: center; padding: 30px 4px; }
.thanks-card .ic { width: 48px; height: 48px; border-radius: 50%; background: var(--lock-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--lock); }
.thanks-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.thanks-card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* =========================================================================
   Event pass (Details.cshtml + GuestRsvp.cshtml)
   ========================================================================= */
.pass-page { background: radial-gradient(640px 420px at 12% -6%, color-mix(in srgb, var(--blue) 16%, transparent), transparent 65%), radial-gradient(680px 460px at 100% 8%, color-mix(in srgb, var(--violet) 18%, transparent), transparent 65%), var(--bg); min-height: 60vh; padding: 40px 18px 90px; }
.pass { max-width: 560px; margin: 0 auto; background: var(--surface); border: 1px solid var(--hairline); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-card); }
.pass-banner { height: 150px; position: relative; overflow: hidden; background: radial-gradient(120% 160% at 15% 0%, rgba(255,255,255,0.16), transparent 55%), var(--grad); }
.pass-banner img { width: 100%; height: 100%; object-fit: cover; }
.pass-body { padding: 26px 30px 28px; }
.pass-invited-by { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--muted-2); margin-bottom: 10px; }
.pass-invited-by strong { color: var(--muted); }
.pass-title { font-size: 25px; font-weight: 800; line-height: 1.16; margin-bottom: 14px; }
.pass-meta-list { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.pass-meta-row { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; }
.pass-meta-row .ic { width: 18px; height: 18px; flex: none; margin-top: 1px; color: var(--muted-2); }
.pass-meta-row .txt strong { display: block; font-weight: 700; color: var(--ink); font-size: 14.5px; }
.pass-meta-row .txt span { color: var(--muted); font-size: 13.5px; }
.pass-addr-locked { display: flex; align-items: center; gap: 6px; color: var(--muted-2); font-size: 13px; margin-top: 2px; }
.pass-addr-locked svg { width: 13px; height: 13px; }
.pass-divider { height: 1px; background: var(--hairline-soft); margin: 22px 0; }
.pass-about p { color: var(--muted); font-size: 14.5px; line-height: 1.65; white-space: pre-line; }
.pass-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 10px; display: block; }
.pass-host { display: flex; align-items: center; gap: 12px; background: var(--bg-soft); border: 1px solid var(--hairline); border-radius: 14px; padding: 14px 16px; }
.pass-host .av { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); flex: none; position: relative; }
.pass-host .av .v { position: absolute; right: -2px; bottom: -2px; width: 14px; height: 14px; border-radius: 50%; background: var(--blue); border: 2px solid var(--bg-soft); }
.pass-host .txt strong { display: block; font-size: 14px; font-weight: 700; }
.pass-host .txt span { font-size: 12.5px; color: var(--muted-2); }
.pass-note { margin-top: 20px; font-size: 12.5px; color: var(--muted-2); text-align: center; line-height: 1.6; }
.pass-cta-bar { display: flex; gap: 12px; margin-top: 22px; }
.pass-status-banner { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 14px; margin-top: 22px; font-size: 14px; }
.pass-status-banner.confirmed { background: var(--lock-bg); color: var(--lock); }
.pass-status-banner.declined { background: rgba(117,111,146,0.16); color: var(--muted-2); }
.pass-status-banner.info { background: var(--grad-soft); color: var(--ink); }
.pass-status-banner.info strong { color: var(--ink); }
.pass-status-banner.info span { color: var(--muted); opacity: 1; }
.pass-status-banner.info .ic { color: var(--violet); }
.pass-status-banner .ic { width: 20px; height: 20px; flex: none; }
.pass-status-banner strong { display: block; font-size: 14.5px; margin-bottom: 2px; }
.pass-status-banner span { font-size: 13px; opacity: .85; font-weight: 400; }
.pass-cta-secondary { display: flex; gap: 12px; margin-top: 22px; }
.btn-secondary { background: var(--surface-2); color: var(--ink); border: 1px solid var(--hairline); flex: 1; }
.btn-secondary:hover { border-color: var(--muted-2); }

.footer-mini { max-width: 560px; margin: 26px auto 0; text-align: center; }
.footer-mini details { display: inline-block; text-align: left; }
.footer-mini summary { list-style: none; cursor: pointer; font-size: 12.5px; color: var(--muted-2); text-align: center; font-family: var(--font-mono); letter-spacing: 0.02em; }
.footer-mini summary::-webkit-details-marker { display: none; }
.footer-mini .explain { margin-top: 10px; font-size: 13px; color: var(--muted); line-height: 1.6; text-align: center; max-width: 440px; }
.footer-mini .cslink { color: var(--violet); font-weight: 600; text-decoration: none; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .proof { height: 300px; margin-top: 20px; }
  .fork-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .promo-inner { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cs-navlinks a.navlink:not(.btn) { display: none; }
  .cs-footer-grid { flex-direction: column; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .promo-band { padding: 32px 22px; }
  .proof-card { position: static; transform: none !important; width: 100%; margin-bottom: 14px; }
  .proof { height: auto; }
  .proof-arrow { display: none; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
