:root {
  /* Surfaces — true neutral dark, no blue/green tint */
  --bg-0: #08080a;
  --bg-1: #0c0c0e;
  --bg-2: #111114;
  --surface: rgba(28, 28, 33, 0.65);
  --surface-2: rgba(36, 36, 42, 0.7);
  --surface-3: #1a1a1f;

  /* Borders — subtle white at low opacity */
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Text */
  --text: #f1f1f4;
  --muted: #9b9ba3;
  --dim: #5e5e66;

  /* Accents — restrained: warm pearl gold for premium, white for primary */
  --gold: #d4a04c;
  --gold-2: #b9863a;
  --gold-soft: rgba(212, 160, 76, 0.16);
  --gold-line: rgba(212, 160, 76, 0.45);

  --success: #6ee7b7;
  --warning: #f5b265;
  --danger: #f78a8a;

  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 22px 60px -22px rgba(0, 0, 0, 0.7);
  --shadow-card-hover: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 26px 72px -22px rgba(0, 0, 0, 0.8);

  --grad-card: linear-gradient(155deg, rgba(28, 28, 33, 0.85), rgba(14, 14, 17, 0.85));
  --grad-bg:
    radial-gradient(ellipse at 50% -20%, rgba(255, 255, 255, 0.045), transparent 60%),
    radial-gradient(ellipse at 90% 80%, rgba(212, 160, 76, 0.05), transparent 55%),
    linear-gradient(180deg, #0d0d10 0%, #07070a 75%);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { color-scheme: dark; scroll-behavior: smooth; }
body {
  background: var(--grad-bg) fixed;
  color: var(--text);
  font: 15px/1.6 -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
  font-feature-settings: 'kern';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; vertical-align: middle; }

a { color: var(--text); text-decoration: none; transition: color 0.15s ease, opacity 0.15s ease; }
a:hover { color: #fff; text-decoration: underline; text-decoration-color: rgba(255, 255, 255, 0.3); text-underline-offset: 3px; }

h1, h2, h3, h4 {
  color: var(--text); margin: 0;
  line-height: 1.12; letter-spacing: -0.024em; font-weight: 700;
}
h1 { font-size: clamp(34px, 5.5vw, 60px); font-weight: 800; }
h2 { font-size: clamp(24px, 3.4vw, 36px); margin-bottom: 14px; }
h3 { font-size: 18px; font-weight: 700; }
p { margin: 0 0 12px; }

.muted { color: var(--muted); }
.dim { color: var(--dim); }
.code {
  font-family: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 6px; border-radius: 5px;
}
.center { text-align: center; }
.small { font-size: 12px; }
.mt { margin-top: 28px; }
.text { color: var(--text); }

.skip-link {
  position: absolute; left: -1000px; top: 0;
  background: var(--text); color: var(--bg-0); padding: 8px 12px; border-radius: 0 0 8px 0;
  font-weight: 700; z-index: 999;
}
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

/* Subtle white-to-pearl wash for the few words that need to stand out */
.grad-text {
  background: linear-gradient(180deg, #ffffff 0%, #c9c9d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  margin-bottom: 18px;
}

.lede {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  max-width: 620px;
  line-height: 1.55;
}

/* ────────  Buttons  ──────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 18px; border-radius: 10px;
  border: 1px solid var(--border-strong);
  font: inherit; font-weight: 600; font-size: 14px; cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  text-decoration: none; letter-spacing: 0.1px;
  transition: transform 0.08s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.18s ease;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}
.btn:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(255, 255, 255, 0.22); text-decoration: none; }
.btn:active { transform: translateY(1px); }

/* Primary = glossy off-white pill with icon polish */
.btn-primary {
  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #f6f5f8 35%,
      #ecebef 65%,
      #d8d6dc 100%);
  color: #18181c;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    /* top-edge highlight (glass top) */
    inset 0 1px 0 rgba(255, 255, 255, 1),
    /* bottom-edge soft darkness (glass bottom) */
    inset 0 -1px 0 rgba(0, 0, 0, 0.06),
    /* tight 1px lift */
    0 1px 0 rgba(0, 0, 0, 0.05),
    /* near drop shadow */
    0 4px 12px -4px rgba(0, 0, 0, 0.25),
    /* far drop shadow */
    0 16px 32px -10px rgba(0, 0, 0, 0.35);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}
.btn-primary:hover {
  color: #0c0c0e;
  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #fafafd 35%,
      #f1f0f4 65%,
      #ddd9e0 100%);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05),
    0 1px 0 rgba(0, 0, 0, 0.06),
    0 6px 18px -4px rgba(0, 0, 0, 0.3),
    0 22px 44px -10px rgba(0, 0, 0, 0.45);
}
.btn-primary:active {
  background:
    linear-gradient(180deg, #e8e6eb 0%, #f0eef3 60%, #f5f4f7 100%);
  transform: translateY(0);
  box-shadow:
    inset 0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.1);
}
/* Icon polish on glossy buttons — sit slightly inset, add 1px glass highlight */
.btn-primary svg {
  color: #18181c;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.55));
  opacity: 0.92;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.btn-primary:hover svg { opacity: 1; }

/* Ghost = transparent with thin outline */
.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.04); }

/* Gold accent — sparingly used on premium / "Most popular" */
.btn-gold {
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color: #1d1409; border-color: var(--gold-line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 14px 30px -12px rgba(212, 160, 76, 0.45);
}

.btn-lg { padding: 14px 22px; font-size: 15px; border-radius: 12px; }
.btn-sm { padding: 7px 12px; font-size: 12.5px; border-radius: 8px; }
.btn-block { display: flex; width: 100%; }

.text-link { background: none; border: 0; padding: 0; color: var(--muted); cursor: pointer; font: inherit; }
.text-link:hover { color: var(--text); text-decoration: underline; }
.inline-form { display: inline; }

/* ────────  Header / nav  ──────── */

.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.85), rgba(8, 8, 10, 0.55));
  border-bottom: 1px solid var(--border);
}
/* The blur lives on a pseudo so .site-nav doesn't create a containing block
   for the position: fixed mobile drawer (which would anchor it to the header). */
.site-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  pointer-events: none;
}
.nav-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding-top: 14px; padding-bottom: 14px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--text); font-weight: 700; }
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  display: grid; place-items: center;
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.logo-text { font-size: 16px; letter-spacing: -0.005em; }
.logo-text-2 {
  color: var(--gold);
  margin-left: 4px;
  letter-spacing: 0.04em;
  font-weight: 800;
}
.nav-links {
  display: flex; gap: 4px; align-items: center; justify-self: center;
}
.nav-links a {
  color: var(--muted); padding: 8px 14px; border-radius: 8px;
  font-weight: 500; font-size: 14px;
  transition: color 0.15s ease, background 0.15s ease;
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); text-decoration: none; }
.nav-links a.is-active { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.nav-cta { display: flex; gap: 8px; align-items: center; }

.nav-toggle { display: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  margin: 5px 0; transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-open-cb { display: none; }

/* ────────  Hero  ──────── */

.hero { position: relative; padding: clamp(60px, 8vw, 110px) 0 clamp(40px, 6vw, 80px); }
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 75% 30%, rgba(255, 255, 255, 0.06), transparent 45%),
    radial-gradient(circle at 20% 90%, rgba(212, 160, 76, 0.06), transparent 50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  position: relative;
}
.hero-copy h1 { margin-bottom: 20px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0 16px; }
.hero-trust {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 22px; flex-wrap: wrap;
  color: var(--muted); font-size: 13px;
}
.hero-trust li { font-weight: 500; }
.hero-trust li::before { content: '✓ '; color: var(--gold); font-weight: 800; margin-right: 2px; }

/* Phone mock — monochrome with single warm accent */
.hero-art { display: grid; place-items: center; }
.phone {
  width: clamp(240px, 32vw, 320px);
  aspect-ratio: 9 / 19;
  border-radius: 38px;
  background: linear-gradient(160deg, #1a1a1f, #08080b);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px;
  box-shadow:
    0 60px 120px -40px rgba(0, 0, 0, 0.9),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  position: relative;
}
.phone-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 22px; background: #04040a; border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 26px;
  background:
    radial-gradient(ellipse at top, rgba(255, 255, 255, 0.04), transparent 60%),
    linear-gradient(180deg, #0e0e12, #050507);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 38px 18px 22px;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.phone-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 11px; font-weight: 700; letter-spacing: 0.4px;
  border: 1px solid var(--gold-line);
}
.phone-status .dot {
  width: 6px; height: 6px; border-radius: 999px; background: var(--gold);
  box-shadow: 0 0 8px rgba(212, 160, 76, 0.7);
}
.phone-shield {
  filter: drop-shadow(0 8px 24px rgba(255, 255, 255, 0.08));
  margin: 6px 0;
}
.phone-shield svg path:first-child {
  stroke: rgba(255, 255, 255, 0.55) !important;
  fill: rgba(255, 255, 255, 0.04) !important;
}
.phone-shield svg path:last-child {
  stroke: var(--gold) !important;
}
.phone-loc {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px 14px;
  width: 100%;
}
.phone-loc .flag { font-size: 24px; }
.loc-city { font-weight: 700; font-size: 14px; }
.loc-meta { color: var(--muted); font-size: 11px; }
.phone-stats { display: flex; gap: 10px; width: 100%; }
.phone-stats > div {
  flex: 1; background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px; padding: 8px 12px;
}
.ps-l { color: var(--dim); font-size: 10px; letter-spacing: 0.5px; text-transform: uppercase; }
.ps-v { font-weight: 700; font-size: 13px; }

/* ────────  Stat band  ──────── */

.band {
  margin: clamp(24px, 4vw, 50px) 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px; text-align: center;
}
.band-grid > div {
  display: flex; flex-direction: column; gap: 4px;
  color: var(--muted); font-size: 13px;
  border-right: 1px solid var(--border);
  padding: 4px 12px;
}
.band-grid > div:last-child { border-right: 0; }
.band-num {
  font-size: clamp(24px, 3vw, 32px); font-weight: 800;
  color: var(--text); letter-spacing: -0.025em;
}

/* ────────  Features grid  ──────── */

.features { padding: clamp(50px, 6vw, 90px) 0; }
.features h2 { text-align: center; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.feature-grid.xl { gap: 18px; margin-top: 36px; }
.feature {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.feature:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card-hover);
}
.feature::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.feature-ico {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-items: center;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
/* Tone variants kept subtle — no colored fills */
.feature-ico[data-tone="blue"],
.feature-ico[data-tone="green"],
.feature-ico[data-tone="cyan"] {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}
.feature-ico[data-tone="warning"] {
  background: var(--gold-soft);
  color: var(--gold);
  border-color: var(--gold-line);
}
.feature h3 { margin-bottom: 6px; }
.feature p { color: var(--muted); margin: 0; font-size: 14px; line-height: 1.55; }

/* ────────  Locations grid  ──────── */

.locations { padding: clamp(36px, 5vw, 60px) 0; }
.locations h2 { text-align: center; }
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 32px 0 24px;
}
.loc-chip {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex; gap: 12px; align-items: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.loc-chip:hover { border-color: var(--border-strong); background: rgba(255, 255, 255, 0.04); }
.loc-chip .flag { font-size: 24px; }
.loc-name { font-weight: 600; font-size: 14px; }
.loc-cities { color: var(--muted); font-size: 11.5px; }

/* ────────  Plan grid  ──────── */

.plans-tease { padding: clamp(50px, 6vw, 90px) 0; }
.plans-tease h2 { text-align: center; }
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.plan-grid.wide { max-width: 980px; margin-left: auto; margin-right: auto; }
.plan-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.plan-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card-hover);
}
.plan-card.is-feature {
  border-color: var(--gold-line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 26px 60px -22px rgba(212, 160, 76, 0.32);
}
.plan-card.is-feature::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.plan-badge {
  position: absolute; top: 16px; right: 16px;
  padding: 4px 10px; border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  color: #1d1409; font-size: 10.5px; font-weight: 800; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.plan-price {
  font-size: clamp(34px, 4vw, 44px); font-weight: 800;
  color: var(--text); letter-spacing: -0.025em;
}
.plan-price span { font-size: 14px; color: var(--muted); margin-left: 2px; font-weight: 500; }
.plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.plan-features li { color: var(--muted); font-size: 13.5px; }

/* ────────  Page hero  ──────── */

.page-hero {
  padding: clamp(60px, 7vw, 100px) 0 clamp(20px, 3vw, 40px);
  text-align: center;
}
.page-hero h1 { max-width: 800px; margin-left: auto; margin-right: auto; }
.page-hero .lede { margin-left: auto; margin-right: auto; }

/* ────────  CTA band  ──────── */

.cta-band {
  margin: clamp(50px, 6vw, 90px) 0;
  padding: clamp(32px, 5vw, 48px) 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.cta-band-inner h2 { margin: 0; }
.cta-band-inner p { margin: 8px 0 0; color: var(--muted); }

/* ────────  FAQ  ──────── */

.faq { padding: clamp(50px, 6vw, 90px) 0; }
.faq-grid { max-width: 760px; margin: 28px auto 0; display: grid; gap: 8px; }
.faq details {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  transition: border-color 0.15s ease;
}
.faq details:hover { border-color: var(--border-strong); }
.faq summary {
  cursor: pointer; font-weight: 600; list-style: none;
  display: flex; align-items: center; gap: 10px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: '+'; color: var(--muted);
  font-weight: 700; font-size: 18px; line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease; display: inline-block; width: 14px;
}
.faq details[open] summary::before { transform: rotate(45deg); color: var(--gold); }
.faq details p { margin: 12px 0 0; color: var(--muted); font-size: 14px; }

/* ────────  Auth pages  ──────── */

.auth-pane {
  display: grid; place-items: center;
  padding: clamp(40px, 8vw, 90px) 16px;
  min-height: calc(100vh - 80px);
}
.auth-card {
  width: 100%; max-width: 420px;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 38px);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 40px 100px -30px rgba(0, 0, 0, 0.8), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
  position: relative; overflow: hidden;
}
.auth-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.auth-card h1 { font-size: 26px; margin-bottom: 6px; }
.auth-foot { margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--border); text-align: center; font-size: 13px; }
.auth-foot a { color: var(--gold); }
.auth-fine { font-size: 11.5px; margin-top: 14px; line-height: 1.6; }
.auth-fine a { color: var(--muted); text-decoration: underline; }

/* ────────  Forms  ──────── */

form label { display: block; margin: 14px 0; color: var(--muted); font-size: 12px; font-weight: 500; letter-spacing: 0.2px; }
form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="number"],
form input[type="search"],
form textarea,
form select {
  display: block; width: 100%; margin-top: 6px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 12px 14px; font-size: 14px; font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
form input:focus, form textarea:focus, form select:focus {
  outline: 0;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}
form input::placeholder { color: var(--dim); }

/* ────────  Account dashboard  ──────── */

.account-shell { padding: clamp(28px, 4vw, 50px) 0; }
.account-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }

.card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin: -22px -22px 18px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
}
.dl-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }

.account-table { width: 100%; border-collapse: collapse; min-width: 540px; }
.account-table th, .account-table td { padding: 11px 8px; text-align: left; }
.account-table thead th {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.6px; color: var(--muted);
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.account-table tbody tr { border-bottom: 1px solid var(--border); }
.account-table tbody tr:last-child { border-bottom: 0; }
.table-wrap { overflow-x: auto; }

/* ────────  Pills (shared)  ──────── */

.pill {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.06); color: var(--muted);
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
  border: 1px solid var(--border);
}
.pill.large { padding: 6px 14px; font-size: 12px; }
.pill-success { background: var(--gold-soft); color: var(--gold); border-color: var(--gold-line); }

/* ────────  Flash  ──────── */

.flash-stack { padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.flash {
  padding: 12px 14px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  font-weight: 500; font-size: 13.5px; color: var(--text);
}
.flash-success { border-color: var(--gold-line); background: var(--gold-soft); color: var(--gold); }
.flash-error { border-color: rgba(247, 138, 138, 0.4); background: rgba(247, 138, 138, 0.08); color: var(--danger); }

/* ────────  Download cards  ──────── */

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  padding: clamp(24px, 4vw, 36px) clamp(20px, 4vw, 32px) 0;
  max-width: 1180px; margin: 0 auto;
}
.dl-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.dl-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.dl-ico {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.dl-ico[data-tone="green"], .dl-ico[data-tone="blue"] {
  background: rgba(255, 255, 255, 0.05); color: var(--text); border-color: var(--border-strong);
}
.store-badge { display: inline-block; transition: opacity 0.15s ease; }
.store-badge:hover { opacity: 0.82; }
.dl-fine { color: var(--muted); font-size: 12px; margin: 0; }
.desktop-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }

.setup-card {
  margin: clamp(28px, 4vw, 40px) 0;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-card);
}
.setup-steps {
  list-style: none; padding: 0; counter-reset: step;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px;
  margin-top: 18px;
}
.setup-steps li {
  counter-increment: step;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 18px 18px 60px;
  position: relative;
  display: flex; flex-direction: column; gap: 4px;
}
.setup-steps li::before {
  content: counter(step);
  position: absolute; left: 14px; top: 16px;
  width: 32px; height: 32px;
  background: rgba(255, 255, 255, 0.06); color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: 9px; display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
}
.setup-steps strong { font-size: 15px; font-weight: 600; }
.setup-steps span { color: var(--muted); font-size: 13px; }

/* ────────  Legal pages  ──────── */

.legal { max-width: 780px; padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(40px, 6vw, 70px); }
.legal h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 6px; }
.legal h2 { font-size: 18px; margin: 32px 0 8px; font-weight: 700; }
.legal p, .legal li { color: var(--muted); }
.legal ul { padding-left: 18px; }

/* ────────  Footer  ──────── */

.site-foot {
  margin-top: clamp(40px, 6vw, 80px);
  border-top: 1px solid var(--border);
  padding: 44px 0 22px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.4));
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
}
.foot-grid h4 {
  font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px; font-weight: 700;
}
.foot-grid a, .foot-grid .text-link {
  display: block; color: var(--muted); margin: 6px 0; font-size: 13.5px;
  transition: color 0.15s ease;
}
.foot-grid a:hover, .foot-grid .text-link:hover { color: var(--text); text-decoration: none; }
.foot-tagline { color: var(--muted); margin-top: 12px; font-size: 13px; max-width: 280px; line-height: 1.5; }
.foot-fine {
  margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--dim); font-size: 12px;
}
.foot-fine .status { color: var(--gold); font-weight: 600; }
.foot-fine .status::before { content: '● '; }

/* ────────  Responsive  ──────── */

@media (max-width: 880px) {
  .nav-row {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  .nav-toggle {
    display: inline-block;
    order: 2;
    width: 28px; height: 22px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  /* Full-screen drawer that slides in from the right */
  .nav-links {
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    background: rgba(8, 8, 10, 0.97);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    padding: 24px 20px 200px;
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 1;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 49;
    border-top: 1px solid var(--border);
  }
  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    color: var(--text);
  }
  .nav-links a:hover,
  .nav-links a.is-active {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border);
  }
  .nav-links a svg {
    width: 18px; height: 18px;
    opacity: 0.85;
  }

  /* CTA bar pinned to the bottom of the drawer */
  .nav-cta {
    position: fixed;
    left: 0; right: 0;
    bottom: 0;
    padding: 16px 20px calc(20px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, transparent 0%, rgba(8, 8, 10, 0.97) 18%);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border);
    transform: translateX(100%);
    opacity: 1;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.04s;
    z-index: 50;
    justify-content: stretch;
    align-items: stretch;
  }
  .nav-cta .btn {
    width: 100%;
    flex: 0 0 auto;
    padding: 14px 18px;
    font-size: 15px;
    justify-content: center;
  }
  .nav-cta .inline-form { display: block; width: 100%; }
  .nav-cta .inline-form .btn { width: 100%; }

  .nav-open-cb:checked ~ .container .nav-links,
  .nav-open-cb:checked ~ .container .nav-cta {
    transform: translateX(0);
    pointer-events: auto;
  }
  .nav-open-cb:checked ~ .container .nav-cta { transition-delay: 0s; }

  .nav-open-cb:checked ~ .container .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open-cb:checked ~ .container .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open-cb:checked ~ .container .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 760px) {
  .hero { padding-top: clamp(36px, 8vw, 70px); }
  .hero-grid { grid-template-columns: 1fr; gap: clamp(20px, 5vw, 36px); }
  .hero-art { order: -1; padding-bottom: 4px; }
  .phone { width: clamp(280px, 76vw, 360px); }
  .hero-trust { gap: 12px; font-size: 12.5px; }
  .account-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .band-grid > div { border-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 12px; }
  .band-grid > div:last-child { border-bottom: 0; }
}

@media (max-width: 600px) {
  /* Stack hero CTAs full-width on phones — long button labels can't fit side-by-side */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-cta .btn {
    width: 100%;
    flex: 0 0 auto;
    white-space: nowrap;
  }
  /* Same for the bottom CTA band */
  .cta-band-inner > .btn { width: 100%; white-space: nowrap; }
}

@media (max-width: 500px) {
  h1 { font-size: clamp(28px, 8vw, 38px); }
  .feature, .plan-card { padding: 20px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .phone { width: min(82vw, 320px); }
}

/* Scrollbar polish */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  border: 2px solid transparent; background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.2); background-clip: padding-box; }

*:focus-visible { outline: 2px solid var(--text); outline-offset: 2px; border-radius: inherit; }


/* ═════════════  Icons + animation layer  ═════════════ */

/* Eyebrows now have inline icons */
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
}
.eyebrow svg { color: var(--gold); }

/* Section heads on home page */
.section-head { text-align: center; margin-bottom: 8px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { display: inline-block; margin-bottom: 8px; }

/* Nav links — icon + text */
.nav-links a {
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-links a svg {
  color: currentColor;
  opacity: 0.6;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav-links a:hover svg { opacity: 1; transform: translateY(-1px); }
.nav-links a.is-active svg { opacity: 1; color: var(--gold); }

/* CTA buttons gain icon nudge on hover */
.btn svg { transition: transform 0.18s ease; }
.btn:hover svg { transform: translateX(2px); }
/* Up arrow buttons (download icon) animate up instead of right */
.btn:hover svg[d*="M12 3v12"] { transform: translateY(-1px); }

/* Primary button — clean opacity-only sheen on hover (no rest-state band) */
.btn-primary { position: relative; overflow: hidden; isolation: isolate; }
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -75%;
  width: 50%;
  z-index: -1;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.65) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
  transition: left 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.2s ease;
}
.btn-primary:hover::before {
  opacity: 1;
  left: 125%;
}

/* Hero phone — gentle continuous float + parallax wobble */
@keyframes float-y {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}
.hero-art { perspective: 800px; }
.phone {
  animation: float-y 7s ease-in-out infinite;
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0) rotateY(calc(var(--px, 0px) * -0.6deg)) rotateX(calc(var(--py, 0px) * 0.6deg));
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}
.phone-shield { animation: shield-pulse 4s ease-in-out infinite; }
@keyframes shield-pulse {
  0%, 100% { filter: drop-shadow(0 8px 24px rgba(255, 255, 255, 0.06)); }
  50% { filter: drop-shadow(0 12px 32px rgba(212, 160, 76, 0.22)); }
}
.phone-status .dot { animation: dot-pulse 1.6s ease-in-out infinite; }
@keyframes dot-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(212, 160, 76, 0.7); }
  50% { box-shadow: 0 0 14px rgba(212, 160, 76, 1); }
}

/* Stat band — icon + number + label */
.band-grid > div {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.band-ico {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--gold);
  margin-bottom: 4px;
}

/* Plan feature list — icon checks */
.plan-features li {
  display: inline-flex; align-items: center; gap: 8px;
}
.plan-features li svg { color: var(--gold); flex-shrink: 0; }
.plan-features li::before { content: none; }

/* Card shines + spotlight cursor follow */
.feature, .plan-card, .loc-chip, .dl-card {
  position: relative;
  isolation: isolate;
}
.has-spotlight::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.07), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.has-spotlight:hover::after { opacity: 1; }

/* Sticky nav: subtle elevation when page is scrolled */
.site-nav { transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease; }
.site-nav.is-scrolled {
  box-shadow: 0 14px 40px -20px rgba(0, 0, 0, 0.7);
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.92), rgba(8, 8, 10, 0.78));
}

/* Footer social row */
.foot-social { display: flex; gap: 8px; margin-top: 14px; }
.foot-social a {
  width: 32px; height: 32px; border-radius: 9px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  margin: 0;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.foot-social a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-strong);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Footer h4 with icon */
.foot-grid h4 {
  display: inline-flex; align-items: center; gap: 7px;
}
.foot-grid h4 svg { color: var(--gold); opacity: 0.85; }

/* Hero trust list — gold check leading bullet (already added in earlier rule) */

/* ─── Reveal-on-scroll system ───────────────────────────────────────── */

[data-reveal],
.reveal-child {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-child {
  transition-delay: calc(var(--stagger, 0) * 70ms);
}
[data-reveal].is-revealed,
.reveal-child.is-revealed {
  opacity: 1;
  transform: none;
}

/* When motion is reduced, render everything in its final state */
.motion-reduced [data-reveal],
.motion-reduced .reveal-child {
  opacity: 1 !important;
  transform: none !important;
}
.motion-reduced .phone,
.motion-reduced .phone-shield,
.motion-reduced .phone-status .dot {
  animation: none !important;
}

/* When JS hasn't loaded (no class on <html>), still show content — no FOUC blank */
html:not(.motion-ok):not(.motion-reduced) [data-reveal],
html:not(.motion-ok):not(.motion-reduced) .reveal-child {
  opacity: 1;
  transform: none;
}

/* ─── Tiny inline-icon polish ──────────────────────────────────────── */
.btn .inline-form { display: inline; }
.foot-social a:focus-visible { outline-offset: 3px; }

/* Hover lift across all clickable cards */
.feature, .plan-card, .dl-card, .loc-chip {
  transition: transform 0.22s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.18s ease,
              box-shadow 0.22s ease;
}

/* CTA arrow that lives on links — gold accent on hover */
.center .btn-ghost svg { color: var(--gold); opacity: 0.85; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.001s !important; }
  [data-reveal], .reveal-child { opacity: 1 !important; transform: none !important; }
}


/* ═════════════  Final polish layer  ═════════════ */

/* Trust band — quiet horizontal strip just under the hero */
.trust-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.025), transparent);
  padding: 18px 0;
}
.trust-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(14px, 2.8vw, 32px);
  text-align: center;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted);
  font-size: 13px; font-weight: 500;
  padding: 6px 0;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* "How it works" three-step section */
.how-it-works { padding: clamp(50px, 6vw, 90px) 0; }
.how-it-works h2 { text-align: center; }
.how-grid {
  list-style: none; padding: 0; margin: 32px 0 0; counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.how-step {
  position: relative;
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-card);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  overflow: hidden;
  isolation: isolate;
}
.how-step:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: var(--shadow-card-hover); }
.how-step::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}
.how-num {
  position: absolute; top: 22px; right: 22px;
  font-size: 60px; line-height: 1; font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
  letter-spacing: -0.04em;
}
.how-ico {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-strong);
  color: var(--gold);
}
.how-step h3 { margin-bottom: 4px; }
.how-step p { color: var(--muted); margin: 0; font-size: 14px; line-height: 1.55; }

/* Plan-card "Save X% vs monthly" pill — appears under the price */
.plan-save {
  display: inline-block;
  margin-top: -4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid var(--gold-line);
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px;
  text-transform: uppercase;
  align-self: flex-start;
}

/* Forgot-password label row */
.label-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.label-link {
  font-size: 11px; color: var(--gold);
  text-decoration: none;
}
.label-link:hover { color: var(--gold); text-decoration: underline; }

/* Site error pages */
.error-pane {
  display: grid; place-items: center;
  min-height: calc(100vh - 80px);
  padding: clamp(40px, 6vw, 80px) 0;
  text-align: center;
}
.error-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 14px;
  max-width: 560px;
}
.error-mark {
  width: 72px; height: 72px; border-radius: 22px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  color: var(--text);
  margin-bottom: 4px;
}
.error-mark-warn {
  background: var(--gold-soft);
  border-color: var(--gold-line);
  color: var(--gold);
}
.error-card h1 { font-size: clamp(34px, 6vw, 50px); }
.error-actions {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 8px;
}

/* Mobile niceties for the new sections */
@media (max-width: 600px) {
  .trust-row { gap: 14px; }
  .trust-item { font-size: 12.5px; }
  .how-num { font-size: 48px; top: 18px; right: 18px; }
  .how-step { padding: 22px; }
  .plan-save { font-size: 10.5px; }
}


/* ═════════════  Help & support page  ═════════════ */

.help-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 20px 0 12px;
}
.help-cat {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  display: block;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  position: relative; overflow: hidden;
  isolation: isolate;
}
.help-cat::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.help-cat:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
  text-decoration: none;
}
.help-cat-ico {
  width: 44px; height: 44px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--gold-soft);
  color: var(--gold);
  border: 1px solid var(--gold-line);
  margin-bottom: 14px;
}
.help-cat h3 { margin-bottom: 6px; font-size: 16px; }
.help-cat p { color: var(--muted); margin: 0; font-size: 13px; line-height: 1.5; }

.help-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  margin-top: 28px;
  align-items: start;
}
@media (max-width: 820px) { .help-contact-grid { grid-template-columns: 1fr; } }

.help-contact-card {
  background: var(--grad-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow-card);
  position: relative; overflow: hidden;
  isolation: isolate;
}
.help-contact-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}
.help-contact-card h3 { font-size: 16px; margin-bottom: 14px; }

.help-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) { .help-form .form-row { grid-template-columns: 1fr; } }
.help-form button { margin-top: 8px; }

.help-emails {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.help-emails li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 6px 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
}
.help-emails li:last-child { border-bottom: 0; padding-bottom: 0; }
.help-emails strong {
  font-size: 11px; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--muted); font-weight: 700;
  align-self: center;
}
.help-emails a {
  color: var(--gold); font-weight: 600; font-size: 14px;
  word-break: break-all;
}
.help-emails span { grid-column: 2; }

.help-status {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.help-status .dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
  animation: dot-pulse-status 2s ease-in-out infinite;
}
@keyframes dot-pulse-status {
  0%, 100% { box-shadow: 0 0 8px var(--success); opacity: 0.9; }
  50% { box-shadow: 0 0 14px var(--success); opacity: 1; }
}
.help-status-title { font-weight: 700; font-size: 14px; color: var(--success); }
