:root {
  color-scheme: light;
  /* iOS Liquid Glass palette — light, airy, translucent */
  --bg-base: #eef3fb;
  --bg-tint-1: #cfe0f4;
  --bg-tint-2: #fbe5d6;
  --bg-tint-3: #e3f0e8;

  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --glass-soft: rgba(255, 255, 255, 0.42);
  --glass-border: rgba(255, 255, 255, 0.55);
  --glass-edge: rgba(255, 255, 255, 0.9);
  --glass-rgb: 255 255 255;   /* channel for translucent surfaces: rgb(var(--glass-rgb) / a) */

  --ink: #0f172a;
  --ink-2: #1f2a44;
  --muted: #5b6678;
  --line: rgba(15, 23, 42, 0.10);
  --line-soft: rgba(15, 23, 42, 0.06);

  --primary: #3a6db5;
  --primary-2: #5784c7;
  --primary-soft: #d8e4f6;
  --accent: #c9913c;
  --accent-soft: #f6e6cb;
  --ok: #2f9e64;
  --danger: #c44a4a;

  /* Semantic surface tokens (so hardcoded #fff / borders / text can theme).
     Light values equal the originals, so light mode is unchanged. */
  --surface: #ffffff;       /* panels, cards, modals, inputs */
  --surface-2: #faf7ee;     /* subtle raised / paper tone */
  --field-bg: #ffffff;      /* form fields */
  --bd-cool: #e2e8f0;       /* cool solid border */
  --bd-paper: #d8d3c4;      /* warm/paper solid border */
  --ink-3: #344256;         /* soft body text */
  --on-accent: #ffffff;     /* text/icons on colored buttons (stays light) */

  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);

  --radius: 14px;
  --radius-lg: 22px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ============================================================================
   DARK THEME — applied when <html data-theme="dark"> (set by /theme.js before
   paint). Every color flows through the tokens above, so this single block
   re-skins the whole site. Semantic accent colors (status pills) keep their hue.
   ============================================================================ */
[data-theme="dark"] {
  color-scheme: dark;
  --bg-base: #0e1422;
  --bg-tint-1: #16203a;
  --bg-tint-2: #2a2018;
  --bg-tint-3: #13241c;

  --glass: rgba(22, 29, 46, 0.62);
  --glass-strong: rgba(28, 36, 56, 0.82);
  --glass-soft: rgba(22, 29, 46, 0.40);
  --glass-border: rgba(255, 255, 255, 0.10);
  --glass-edge: rgba(255, 255, 255, 0.14);
  --glass-rgb: 22 29 46;

  --ink: #e9eef7;
  --ink-2: #c6d0e1;
  --muted: #98a4b8;
  --line: rgba(255, 255, 255, 0.13);
  --line-soft: rgba(255, 255, 255, 0.07);

  --primary: #6f9fe0;
  --primary-2: #5784c7;
  --primary-soft: #233247;
  --accent: #d9a64e;
  --accent-soft: #3a2f1c;
  --ok: #46b67e;
  --danger: #e2706f;

  --surface: #161d2e;
  --surface-2: #1d2740;
  --field-bg: #1a2233;
  --bd-cool: #2a3447;
  --bd-paper: #33312a;
  --ink-3: #b9c4d6;
  --on-accent: #ffffff;

  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.35);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
}

/* ----------------------------------------------------------------------------
   DARK — restore + amplify the 3D / bevel on the filled buttons. The glossy
   top-edge highlight must read as WHITE on dark (the surface-tint conversion
   had turned it dark, flattening them), the gradient runs light-top→dark-bottom,
   and the drop shadow is deepened for a stronger raised feel.
   -------------------------------------------------------------------------- */
[data-theme="dark"] .btn {
  background: linear-gradient(180deg, #5f93e6 0%, #3f73c8 100%);
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.55),
    0 2px 5px rgba(0, 0, 0, 0.45),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.42),
    inset 0 -2px 4px rgba(0, 0, 0, 0.42);
}
[data-theme="dark"] .btn:hover {
  transform: translateY(-1px);
  /* Hover brightens toward BLUE (not white) — keeps the button's identity. */
  background: linear-gradient(180deg, #6ea2ee 0%, #4a7fd0 100%);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.60),
    0 2px 5px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -2px 4px rgba(0, 0, 0, 0.42);
}
[data-theme="dark"] .cta-login {
  background:
    radial-gradient(120% 180% at 50% -30%, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, #5f93e6 0%, #4076cb 55%, #2d5697 100%);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 1.5px 0 rgba(255, 255, 255, 0.45) inset,
    0 -1px 0 rgba(0, 0, 0, 0.40) inset,
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 9px 20px rgba(0, 0, 0, 0.52),
    0 2px 4px rgba(0, 0, 0, 0.40);
}
[data-theme="dark"] .cta-login::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
}
[data-theme="dark"] .cta-login::after {
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.30) 50%, transparent 70%);
}
/* Secondary / pill / ghost controls get a subtle raised edge in dark too. */
[data-theme="dark"] .ghost-btn,
[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .row-btn,
[data-theme="dark"] .danger-btn {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 2px 6px rgba(0, 0, 0, 0.35);
}

/* Dark — button HOVERS must stay in-theme. Several secondary buttons hover to a
   hardcoded near-white (#f4f8fd / #f0faf4) or pink (#fef2f2); on dark that flashes
   light. Generic controls hover into the active BLUE; semantic ones keep their hue. */
[data-theme="dark"] .copy-btn:hover,
[data-theme="dark"] .dt-sig-clear:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary);
}
[data-theme="dark"] .danger-btn:hover,
[data-theme="dark"] .addr-mini.danger:hover {
  background: rgba(226, 112, 111, 0.16);
  border-color: rgba(226, 112, 111, 0.5);
  color: var(--danger);
}
[data-theme="dark"] .dt-danger:hover {
  background: rgba(226, 112, 111, 0.16) !important;
}
[data-theme="dark"] .del-actions .pod-link:hover {
  background: rgba(70, 182, 126, 0.16);
  border-color: var(--ok);
  color: var(--ok);
}
/* Landing CTAs hover to a hardcoded white (multi-line background that slipped the
   token conversion). Secondary button hover → the same blue as Client Login;
   the hero badge pills stay dark instead of flashing white. */
[data-theme="dark"] .cta-secondary:hover {
  background:
    radial-gradient(140% 200% at 50% -30%, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, #5f93e6 0%, #4076cb 55%, #2d5697 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}
[data-theme="dark"] .badge:hover {
  background:
    radial-gradient(140% 200% at 50% -40%, rgb(var(--glass-rgb) / 0.95), rgb(var(--glass-rgb) / 0) 60%),
    var(--surface-2);
}

* { box-sizing: border-box; }

/* The `hidden` attribute must always win over any author display rule
   (e.g. label.field { display:flex } would otherwise reveal hidden fields). */
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg-base);
  line-height: 1.55;
  overflow-x: clip;   /* prevents horizontal scroll WITHOUT breaking position:sticky */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Animated background orbs — soft, blurred, very light */
body::before {
  content: "";
  position: fixed;
  inset: -10%;
  z-index: -2;
  background:
    radial-gradient(380px 380px at 10% 10%, var(--bg-tint-1) 0%, transparent 65%),
    radial-gradient(440px 440px at 90% 20%, var(--bg-tint-2) 0%, transparent 65%),
    radial-gradient(520px 520px at 80% 90%, var(--bg-tint-1) 0%, transparent 70%),
    radial-gradient(420px 420px at 15% 80%, var(--bg-tint-3) 0%, transparent 65%),
    var(--bg-base);
  filter: saturate(1.05);
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(15,23,42,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

h1, h2, h3, .serif {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", Georgia, serif;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: var(--ink);
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

::selection { background: rgba(58, 109, 181, 0.25); color: var(--ink); }

/* ============================================================================
   Reveal-on-scroll utility
   ============================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.28s; }
.reveal-delay-4 { transition-delay: 0.38s; }
.reveal-delay-5 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================================
   Glass primitive
   ============================================================================ */
.glass {
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow:
    inset 0 1px 0 var(--glass-edge),
    var(--shadow);
}

/* ============================================================================
   Top bar (sticky glass)
   ============================================================================ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(var(--glass-rgb) / 0.55);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  border-bottom: 1px solid var(--line);
}

/* Quick theme toggle (shared: landing nav + admin header + portal) */
.theme-toggle {
  background: var(--surface);
  border: 1px solid var(--bd-cool);
  color: var(--ink);
  width: 38px; height: 38px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}
.theme-toggle:hover { border-color: var(--primary); }
.theme-toggle:active { transform: scale(0.94); }
.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.brand img {
  width: 48px;
  height: 48px;
  display: block;
  border-radius: 12px;
  filter: drop-shadow(0 6px 14px rgba(58, 109, 181, 0.28));
  transition: transform 0.4s var(--ease-out);
}
.brand:hover img { transform: scale(1.04); }
.brand-text { line-height: 1.15; }
.brand-name {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-motto {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 2px;
  font-weight: 600;
}

.topnav { display: flex; gap: 22px; }
.topnav a {
  color: var(--ink);
  font-size: 14px;
  opacity: 0.78;
  position: relative;
  padding: 6px 0;
  transition: opacity 0.2s, color 0.2s;
  text-decoration: none;
}
.topnav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.topnav a:hover { opacity: 1; color: var(--primary); text-decoration: none; }
.topnav a:hover::after { transform: scaleX(1); }

/* ----------------------------------------------------------------------------
   .cta-login — top-right header pill. Liquid-glass over a deep blue gradient.
   ---------------------------------------------------------------------------- */
.cta-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  isolation: isolate;          /* contain ::before/::after to the pill */
  overflow: hidden;
  padding: 11px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #fff;
  background:
    radial-gradient(120% 180% at 50% -30%, rgb(var(--glass-rgb) / 0.42), rgb(var(--glass-rgb) / 0) 60%),
    linear-gradient(180deg, var(--primary-2) 0%, var(--primary) 55%, #2a548a 100%);
  border: 1px solid rgb(var(--glass-rgb) / 0.28);
  box-shadow:
    0 1px 0 rgb(var(--glass-rgb) / 0.55) inset,            /* top edge highlight */
    0 -1px 0 rgba(0,0,0,0.18) inset,                 /* bottom edge shade */
    0 0 0 1px rgba(58, 109, 181, 0.18),              /* faint outer ring */
    0 5px 13px rgba(58, 109, 181, 0.27),             /* main colored drop */
    0 1px 2px rgba(15, 23, 42, 0.12);                /* tight contact shadow */
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  transition: transform 0.18s var(--ease-out), box-shadow 0.25s var(--ease-out), filter 0.2s;
}
/* Subtle frosted top-half gloss (the iOS reflection) — sits below the text */
.cta-login::before {
  content: "";
  position: absolute;
  inset: 1px 1px 50% 1px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(var(--glass-rgb) / 0.32), rgb(var(--glass-rgb) / 0));
  pointer-events: none;
  z-index: -1;
}
/* Specular highlight that sweeps across on hover — sits above the text */
.cta-login::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgb(var(--glass-rgb) / 0.42) 50%, transparent 70%);
  transform: translateX(-130%) skewX(-18deg);
  transition: transform 0.9s var(--ease-out);
  pointer-events: none;
}
.cta-login:hover {
  transform: translateY(-1.5px);
  text-decoration: none;
  color: #fff;
  filter: saturate(112%);
  box-shadow:
    0 1px 0 rgb(var(--glass-rgb) / 0.6) inset,
    0 -1px 0 rgba(0,0,0,0.2) inset,
    0 0 0 1px rgba(58, 109, 181, 0.22),
    0 8px 17px rgba(58, 109, 181, 0.34),
    0 2px 3px rgba(15, 23, 42, 0.14);
}
.cta-login:hover::after { transform: translateX(130%) skewX(-18deg); }
.cta-login:active {
  transform: translateY(0);
  box-shadow:
    0 1px 0 rgb(var(--glass-rgb) / 0.4) inset,
    0 -1px 0 rgba(0,0,0,0.25) inset,
    0 0 0 1px rgba(58, 109, 181, 0.2),
    0 3px 7px rgba(58, 109, 181, 0.29);
}
.cta-login-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(var(--glass-rgb) / 0.45), rgb(var(--glass-rgb) / 0.18));
  box-shadow: inset 0 1px 0 rgb(var(--glass-rgb) / 0.7), inset 0 -1px 0 rgba(0,0,0,0.12);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}
.cta-login-text { white-space: nowrap; }

/* ============================================================================
   Hero (centered single column)
   ============================================================================ */
.hero {
  padding: 22px 24px 52px;
  position: relative;
  text-align: center;
}
.hero-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
}
.hero .kicker-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
  justify-content: center;
}
.hero .kicker-line::before,
.hero .kicker-line::after {
  content: "";
  width: 28px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.hero h1 {
  font-size: 64px;
  line-height: 1.02;
  margin: 0 0 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--primary), #6a9adf 60%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  background:
    radial-gradient(140% 220% at 50% -40%, rgb(var(--glass-rgb) / 0.48), rgb(var(--glass-rgb) / 0) 60%),
    linear-gradient(180deg, var(--primary-2) 0%, var(--primary) 55%, #2a548a 100%);
  border: 1px solid rgb(var(--glass-rgb) / 0.3);
  box-shadow:
    inset 0 1px 0 rgb(var(--glass-rgb) / 0.55),
    inset 0 -1px 0 rgba(0,0,0,0.2),
    0 0 0 1px rgba(58, 109, 181, 0.18),
    0 8px 17px rgba(58, 109, 181, 0.26),
    0 2px 3px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  transition: transform 0.18s var(--ease-out), box-shadow 0.25s var(--ease-out), filter 0.2s;
}
/* Top-half gloss reflection (the iOS reflection). z-index:-1 + isolation:isolate
   keeps the gloss between the gradient background and the text content. */
.cta-primary::before {
  content: "";
  position: absolute;
  inset: 1px 1px 50% 1px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(var(--glass-rgb) / 0.32), rgb(var(--glass-rgb) / 0));
  pointer-events: none;
  z-index: -1;
}
.cta-primary:hover {
  transform: translateY(-2px);
  text-decoration: none;
  filter: saturate(112%);
  box-shadow:
    inset 0 1px 0 rgb(var(--glass-rgb) / 0.6),
    inset 0 -1px 0 rgba(0,0,0,0.22),
    0 0 0 1px rgba(58, 109, 181, 0.22),
    0 11px 22px rgba(58, 109, 181, 0.31),
    0 2px 4px rgba(15, 23, 42, 0.13);
}
.cta-primary:active { transform: translateY(0); }
/* Specular sweep on hover */
.cta-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent, rgb(var(--glass-rgb) / 0.38), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}
.cta-primary:hover::after { left: 130%; }

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  background:
    radial-gradient(140% 200% at 50% -30%, rgb(var(--glass-rgb) / 0.85), rgb(var(--glass-rgb) / 0) 60%),
    var(--glass-strong);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow:
    inset 0 1px 0 var(--glass-edge),
    inset 0 -1px 0 rgba(15, 23, 42, 0.06),
    0 0 0 1px rgb(var(--glass-rgb) / 0.4),
    0 5px 14px rgba(15, 23, 42, 0.063),
    0 1px 2px rgba(15, 23, 42, 0.036);
  transition: transform 0.18s var(--ease-out), box-shadow 0.25s, background 0.25s;
}
/* Top gloss highlight (z-index:-1 keeps it under the text content) */
.cta-secondary::before {
  content: "";
  position: absolute;
  inset: 1px 1px 55% 1px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(var(--glass-rgb) / 0.6), rgb(var(--glass-rgb) / 0));
  pointer-events: none;
  z-index: -1;
}
.cta-secondary:hover {
  background:
    radial-gradient(140% 200% at 50% -30%, rgb(var(--glass-rgb) / 0.95), rgb(var(--glass-rgb) / 0) 60%),
    #fff;
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 var(--glass-edge),
    inset 0 -1px 0 rgba(15, 23, 42, 0.08),
    0 0 0 1px rgb(var(--glass-rgb) / 0.5),
    0 9px 18px rgba(15, 23, 42, 0.09),
    0 2px 3px rgba(15, 23, 42, 0.054);
}
.cta-secondary:active { transform: translateY(0); }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  justify-content: center;
}
.badge {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  background:
    radial-gradient(140% 200% at 50% -40%, rgb(var(--glass-rgb) / 0.8), rgb(var(--glass-rgb) / 0) 60%),
    var(--glass-strong);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow:
    inset 0 1px 0 var(--glass-edge),
    inset 0 -1px 0 rgba(15, 23, 42, 0.04),
    0 0 0 1px rgb(var(--glass-rgb) / 0.35),
    0 2px 5px rgba(15, 23, 42, 0.036);
  transition: transform 0.3s var(--ease-out), background 0.3s, box-shadow 0.3s;
}
.badge::before {
  content: "";
  position: absolute;
  inset: 1px 1px 55% 1px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(var(--glass-rgb) / 0.55), rgb(var(--glass-rgb) / 0));
  pointer-events: none;
  z-index: -1;
}
.badge:hover {
  transform: translateY(-2px);
  background:
    radial-gradient(140% 200% at 50% -40%, rgb(var(--glass-rgb) / 0.95), rgb(var(--glass-rgb) / 0) 60%),
    #fff;
  box-shadow:
    inset 0 1px 0 var(--glass-edge),
    0 0 0 1px rgb(var(--glass-rgb) / 0.5),
    0 4px 9px rgba(15, 23, 42, 0.054);
}

/* Full-bleed ticker band */
.ticker-band {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgb(var(--glass-rgb) / 0.45);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  padding: 9px 0;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.ticker {
  display: flex;
  width: max-content;
  animation: ticker 50s linear infinite;
  color: var(--primary);
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.ticker-group {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 28px;
  padding-right: 28px;
}
.ticker-group span { display: inline-block; }
.ticker .dot {
  width: 4px; height: 4px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================================
   Quote section + card (centerpiece glass panel)
   ============================================================================ */
.quote-section { padding-top: 64px; padding-bottom: 84px; }

.quote-card {
  background: var(--glass);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid var(--glass-border);
  color: var(--ink);
  border-radius: 24px;
  padding: 36px;
  margin-top: 36px;
  box-shadow:
    inset 0 1px 0 var(--glass-edge),
    inset 0 0 0 1px rgb(var(--glass-rgb) / 0.2),
    var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.quote-card::before {
  content: "";
  position: absolute;
  top: -80px; right: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(58,109,181,0.16), transparent 60%);
  pointer-events: none;
}
.quote-card::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -60px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,145,60,0.10), transparent 60%);
  pointer-events: none;
}

.quote-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.quote-map-col {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-help {
  background: rgb(var(--glass-rgb) / 0.55);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.quote-help strong { color: var(--ink); font-weight: 600; }

.field-group {
  border: 1px solid var(--glass-border);
  background: var(--glass-soft);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border-radius: var(--radius);
  padding: 16px 16px 8px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  box-shadow: inset 0 1px 0 rgb(var(--glass-rgb) / 0.55);
}
.field-group:focus-within {
  z-index: 100;   /* lift above the next sibling field-group so the autocomplete dropdown isn't clipped */
  border-color: rgba(58, 109, 181, 0.6);
  background: rgb(var(--glass-rgb) / 0.7);
  box-shadow: 0 0 0 4px rgba(58, 109, 181, 0.12);
}
.field-group legend {
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 8px;
  font-weight: 700;
}
.field-group legend .pill {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 3px 9px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
  font-weight: 700;
}
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
label.field {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--muted);
  margin: 10px 0;
  position: relative;
}
label.field span.label-text {
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--ink-2);
  font-size: 11px;
}
label.field input,
label.field select,
label.field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgb(var(--glass-rgb) / 0.85);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
label.field input::placeholder,
label.field textarea::placeholder { color: #99a1b0; }
label.field input:focus,
label.field select:focus,
label.field textarea:focus {
  border-color: var(--primary);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(58, 109, 181, 0.18);
}

/* Autocomplete */
.ac-wrap { position: relative; }
.ac-list {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgb(var(--glass-rgb) / 0.92);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-top: 6px;
  box-shadow: var(--shadow);
  z-index: 1000;
  max-height: 260px;
  overflow-y: auto;
  display: none;
}
.ac-list.show { display: block; animation: fade-down 0.18s var(--ease-out); }
@keyframes fade-down {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.ac-item {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  transition: background 0.15s;
}
.ac-item:last-child { border-bottom: 0; }
.ac-item:hover,
.ac-item.active { background: var(--primary-soft); }
.ac-item .ac-main { font-weight: 600; color: var(--ink); }
.ac-item .ac-sub { color: var(--muted); font-size: 12px; margin-top: 2px; }
.ac-hint {
  padding: 10px 14px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* Submit button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  width: 100%;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  transition: transform 0.1s, box-shadow 0.2s, filter 0.2s;
  box-shadow:
    0 10px 24px rgba(58, 109, 181, 0.35),
    inset 0 1px 0 rgb(var(--glass-rgb) / 0.45);
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(58,109,181,0.42), inset 0 1px 0 rgb(var(--glass-rgb) / 0.5); }
.btn:active { transform: translateY(1px); }
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent, rgb(var(--glass-rgb) / 0.28), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s var(--ease-out);
}
.btn:hover::after { left: 130%; }
.btn[disabled] { opacity: 0.7; cursor: not-allowed; }

.btn .spinner {
  width: 16px; height: 16px;
  border: 2px solid rgb(var(--glass-rgb) / 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}
.btn.loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Result */
.result {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: rgb(var(--glass-rgb) / 0.78);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: inset 0 1px 0 var(--glass-edge), var(--shadow-sm);
  display: none;
}
.result.show { display: block; animation: result-in 0.55s var(--ease-out); }
@keyframes result-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.result.ok { border-left: 4px solid var(--ok); }
.result.error { background: rgba(255, 232, 232, 0.86); border-left: 4px solid var(--danger); }

.result-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
  opacity: 0;
  animation: row-in 0.4s var(--ease-out) forwards;
}
.result-row:nth-child(1) { animation-delay: 0.05s; }
.result-row:nth-child(2) { animation-delay: 0.12s; }
.result-row:nth-child(3) { animation-delay: 0.19s; }
.result-row:nth-child(4) { animation-delay: 0.26s; }
.result-row:nth-child(5) { animation-delay: 0.33s; }
@keyframes row-in { to { opacity: 1; } }
.result-row:last-of-type { border-bottom: 0; }
.result-row .label { color: var(--muted); }
.result-row .val { font-weight: 600; color: var(--ink); }
.result-total {
  font-size: 32px;
  color: var(--ink);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-weight: 700;
  letter-spacing: -0.022em;
  opacity: 0;
  animation: row-in 0.5s var(--ease-out) 0.4s forwards;
}
.result-total small {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

.errmsg {
  color: var(--danger);
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 8px;
}

/* Map */
#map-preview {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  margin-top: 16px;
  background: #e5ecf6;
  border: 1px solid var(--glass-border);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 1px 0 var(--glass-edge), var(--shadow-sm);
}
.map-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 13px;
  pointer-events: none;
  text-align: center;
  padding: 20px;
}

/* ============================================================================
   Sections
   ============================================================================ */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 88px 24px;
}
.section h2 {
  font-size: 40px;
  margin: 0 0 14px;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.section .kicker {
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
}
.section p.intro {
  color: var(--muted);
  max-width: 720px;
  font-size: 18px;
}

/* Coverage card */
.coverage .coverage-card {
  background: var(--glass);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 44px 44px 36px;
  box-shadow:
    inset 0 1px 0 var(--glass-edge),
    var(--shadow);
  position: relative;
  overflow: hidden;
}
.coverage .coverage-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(58,109,181,0.14), transparent 60%);
  pointer-events: none;
}
.coverage .coverage-card .kicker { color: var(--primary); }
.coverage .coverage-card h2 { margin-bottom: 14px; }
.coverage .coverage-card .intro { max-width: 760px; }

.county-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  position: relative;
  z-index: 1;
}
.county-list li {
  background: rgb(var(--glass-rgb) / 0.7);
  border: 1px solid var(--glass-border);
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 var(--glass-edge);
  transition: transform 0.3s var(--ease-out), background 0.3s;
}
.county-list li:hover { transform: translateY(-2px); background: var(--surface); }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.card {
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 26px;
  box-shadow:
    inset 0 1px 0 var(--glass-edge),
    var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), background 0.3s;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  background: var(--glass-strong);
  box-shadow:
    inset 0 1px 0 var(--glass-edge),
    var(--shadow);
}
.card h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.card .icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
  color: #fff;
  border-radius: 14px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 24px;
  box-shadow:
    inset 0 1px 0 rgb(var(--glass-rgb) / 0.35),
    0 8px 18px rgba(58, 109, 181, 0.3);
  transition: transform 0.5s var(--ease-out);
}
.card:hover .icon { transform: rotate(-6deg) scale(1.05); }

/* ============================================================================
   Pricing strip (now light glass)
   ============================================================================ */
.pricing-strip {
  position: relative;
  padding: 0 24px;
}
.pricing-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
  background: var(--glass);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 var(--glass-edge), var(--shadow);
}
.pi-block {
  padding: 8px 22px;
  border-left: 3px solid var(--primary);
  transition: transform 0.4s var(--ease-out);
}
.pi-block:hover { transform: translateX(4px); }
.pi-block h3 {
  margin: 0 0 6px;
  font-size: 34px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.pi-block p { margin: 0; color: var(--muted); font-size: 14px; }

/* ============================================================================
   Coverage
   ============================================================================ */
.coverage {
  position: relative;
}

/* ============================================================================
   Footer
   ============================================================================ */
footer {
  background: var(--glass-strong);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  padding: 36px 24px;
  margin-top: 40px;
}
.foot-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}
.foot-brand { display: flex; align-items: center; gap: 14px; }
.foot-brand img { width: 40px; height: 40px; border-radius: 10px; }
.foot-motto {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
}
footer a { color: var(--primary); text-decoration: none; }
footer a:hover { text-decoration: underline; }

.foot-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 500;
}
.foot-fineprint {
  max-width: 1180px;
  margin: 18px auto 0;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
  color: var(--ink-2);
  opacity: 0.7;
  text-align: center;
}
.foot-fineprint a { font-weight: 500; }

/* ============================================================================
   Responsive
   ============================================================================ */
@media (max-width: 980px) {
  .quote-layout { grid-template-columns: 1fr; gap: 24px; }
  .quote-map-col { position: static; top: auto; }
  #map-preview { height: 280px; }
}

@media (max-width: 920px) {
  .hero { padding: 64px 20px 48px; }
  .hero h1 { font-size: 42px; }
  .hero p.lede { font-size: 17px; }
  .hero-ctas .cta-primary,
  .hero-ctas .cta-secondary { padding: 13px 22px; font-size: 15px; }
  .grid-3, .pricing-inner { grid-template-columns: 1fr; }
  .row { grid-template-columns: 1fr; }
  .topnav { display: none; }
  .section { padding: 64px 20px; }
  .section h2 { font-size: 30px; }
  .quote-card { padding: 22px; }
  .coverage .coverage-card { padding: 28px 24px; }
  .brand-name { font-size: 15px; }
  .brand-motto { font-size: 10px; letter-spacing: 2px; }
  .brand img { width: 40px; height: 40px; }
  .pricing-inner { padding: 24px; }
  .ticker { font-size: 11px; letter-spacing: 3px; }
  .foot-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-login { padding: 9px 14px; font-size: 13px; }
  .cta-login-icon { width: 16px; height: 16px; font-size: 12px; }
}

/* ============================================================================
   Quote form — size radios + add-ons menu (rate-card pricing)
   ============================================================================ */
.size-radios { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.size-radio {
  flex: 1; min-width: 120px; display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px;
  cursor: pointer; background: var(--glass-soft); transition: border-color .15s ease, background .15s ease;
}
.size-radio.is-checked { border-color: var(--primary); background: var(--primary-soft); }
.size-radio input { accent-color: var(--primary); margin: 0; }
.size-radio span { font-size: 14px; font-weight: 600; color: var(--ink); }
.size-radio small { display: block; font-weight: 500; font-size: 11px; color: var(--muted); }
.addon-menu { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.addon-item {
  display: flex; align-items: center; gap: 10px; padding: 8px 12px;
  border: 1px solid var(--line); border-radius: 9px; cursor: pointer;
  background: var(--glass-soft); font-size: 14px;
}
.addon-item.is-checked { border-color: var(--primary); background: var(--primary-soft); }
.addon-item input { accent-color: var(--primary); margin: 0; }
.addon-item small { color: var(--muted); font-weight: 600; }

/* ============================================================================
   Mobile-app promo band
   ========================================================================== */
.app-band { padding-top: 12px; padding-bottom: 22px; }
.app-band-card {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 38px;
  padding: 30px 36px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(58,109,181,0.12), rgba(87,132,199,0.03));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.app-devices {
  flex: none;
  color: var(--primary);
  display: flex;
  align-items: flex-end;
}
/* Explicit width+height (NOT width:auto) — Safari mis-sizes auto-width inline SVG. */
.app-devices .dev { display: block; height: 96px; flex: none; }
.app-devices .dev-pad {
  width: 74px;
  opacity: 0.4;
  transform: translateX(12px) translateY(-6px) rotate(-7deg);
}
.app-devices .dev-phone {
  width: 52px;
  position: relative;
  z-index: 2;
  margin-left: -24px;
  filter: drop-shadow(0 8px 16px rgba(58,109,181,0.28));
}
.app-copy { min-width: 0; }
.app-copy .kicker { margin-bottom: 2px; }
.app-band h2 { margin: 2px 0 12px; font-size: 24px; line-height: 1.2; }
.app-steps {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.app-step {
  display: inline-block; padding: 5px 13px; border-radius: 999px;
  background: rgb(var(--glass-rgb) / 0.7); border: 1px solid var(--line);
  font-size: 13px; font-weight: 700; color: var(--ink);
}
.app-arrow { color: var(--primary); font-weight: 700; }
.app-sub { color: var(--muted); font-size: 15px; margin: 0 0 16px; max-width: 540px; }
.app-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.appstore-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: #000; color: #fff;
  padding: 8px 16px 8px 13px; border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow-sm);
}
.as-apple { width: 22px; height: 22px; fill: #fff; flex: none; }
.as-text { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.as-text small { font-size: 9px; letter-spacing: 0.3px; opacity: 0.92; }
.as-text strong { font-size: 17px; font-weight: 600; letter-spacing: 0.2px; margin-top: 2px; }
.app-platforms { color: var(--muted); font-size: 13px; font-weight: 600; }
@media (max-width: 720px) {
  .app-band-card { flex-direction: column; text-align: center; gap: 16px; padding: 26px 20px; }
  .app-steps { justify-content: center; }
  .app-cta { justify-content: center; }
  .app-sub { margin-left: auto; margin-right: auto; }
}
