/* ========================================================================
   Cicada — design tokens + base
   ======================================================================== */
:root {
  --bg:            rgb(250, 250, 250);
  --bg-soft:       rgb(245, 245, 245);
  --bg-tint:       rgb(238, 242, 255);
  --ink:           rgb(10, 10, 10);
  --ink-2:         rgb(18, 18, 18);
  --muted:         rgb(115, 115, 115);
  --muted-2:       rgb(163, 163, 163);
  --line:          rgb(229, 229, 229);
  --line-2:        rgb(212, 212, 212);

  --brand:         rgb(12, 64, 238);
  --brand-deep:    rgb(10, 55, 209);
  --brand-darker:  rgb(8, 47, 179);
  --brand-darkest: rgb(22, 40, 167);
  --brand-soft:    rgb(129, 140, 248);
  --brand-tint:    rgb(224, 231, 255);
  --brand-ink:     rgb(2, 18, 74);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  --container: 1312px;
  --gutter: 64px;
}

* { box-sizing: border-box; }

/* ========================================================================
   Focus-visible — keyboard focus rings (no rings on mouse/touch)
   :focus:not(:focus-visible) preserves native ring on browsers without
   :focus-visible support — only suppresses ring when click/touch focus.
   ======================================================================== */
:focus:not(:focus-visible) { outline: none; }
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}
.btn:focus-visible { outline-offset: 3px; border-radius: 12px; }
.btn--ghost-light:focus-visible { outline-color: #fff; }
.nav__link:focus-visible,
.faq-item__row:focus-visible,
.mobile-drawer__menu a:focus-visible { outline-offset: 4px; }
.mini-select:focus-visible { outline-offset: 2px; border-radius: 8px; }
.mobile-drawer__close:focus-visible,
.mobile-menu-btn:focus-visible { outline-offset: 2px; border-radius: 12px; }
.field__input:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -1px;
}
/* Mouse-click focus (no :focus-visible match) → soft brand glow on the field
   without an outline ring; keeps mouse and keyboard styles distinct + clean. */
.field__input:focus:not(:focus-visible) {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(12, 64, 238, 0.12);
}
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { overflow-x: clip; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0 0; padding: 0; color: inherit; }
input, textarea { font-family: inherit; }
a { color: inherit; text-decoration: none; }

/* ========================================================================
   Layout
   ======================================================================== */
.page {
  width: 100%;
  max-width: 100%;
  /* Bottom padding intentionally 0 — footer should sit flush against the
     viewport edge (no white strip under it). Top padding stays. */
  padding: 24px var(--gutter) 0;
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: center;
}
.container {
  width: 100%;
  max-width: var(--container);
}

/* ========================================================================
   Section "bullet" capsule label (numbered)
   ======================================================================== */
.bullets {
  display: inline-flex;
  align-items: center;
  height: 28px;
  gap: 0;
}
.bullets__cap, .bullets__pill {
  border: 0.5px solid var(--muted);
  background: var(--bg);
  border-radius: 8px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bullets__cap { width: 16px; }
.bullets__pill {
  padding: 8px 12px;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: var(--muted);
  line-height: 1.2;
  display: inline-flex;
}
.bullets__pill .num { opacity: .9; }
.bullets__line {
  width: 16px;
  height: 0.5px;
  background: var(--muted);
}

/* dark / on-blue variant */
.bullets--onblue .bullets__cap,
.bullets--onblue .bullets__pill {
  background: var(--brand);
  border-color: var(--brand-soft);
  color: var(--bg-tint);
}
.bullets--onblue .bullets__line { background: var(--brand-soft); }

/* on-dark variant for footer */
.bullets--ondark .bullets__cap,
.bullets--ondark .bullets__pill {
  background: var(--ink);
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}
.bullets--ondark .bullets__line { background: rgba(255,255,255,0.3); }

/* ========================================================================
   Type
   ======================================================================== */
.h1 {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0;
  color: var(--ink);
}
.h2 {
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}
.h3 {
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
}
.h4 {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
}
.body {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--muted);
  margin: 0;
}
.body--small { font-size: 14px; letter-spacing: 0.005em; }
.cap {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.5;
}

/* ========================================================================
   Buttons
   ======================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-deep); }
.btn--dark { background: var(--ink); color: #fafafa; }
.btn--dark:hover { background: var(--ink-2); }
.btn--ghost-light {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--ghost-light:hover { background: rgb(245, 245, 245); }
.btn--full { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ========================================================================
   Header / nav
   ======================================================================== */
.nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.nav__menu {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav__link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  color: var(--ink);
  padding: 6px 10px;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.nav__link:hover { background: var(--bg-soft); }
.nav__link--ondark { color: var(--bg-tint); }
.nav__link--ondark:hover { background: rgba(255,255,255,0.06); }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 26px; width: auto; display: block; }

/* ========================================================================
   Hero
   ======================================================================== */
.hero {
  position: relative;
  width: 100%;
  max-width: var(--container);
  display: flex;
  align-items: stretch;
  margin-top: 24px;
  min-height: 560px;
}
.hero__col {
  width: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  position: relative;
  z-index: 2;
}
.hero__chip {
  align-self: flex-start;
  background: var(--bg-tint);
  color: var(--brand);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.015em;
}
.hero__sub {
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 360px;
  margin: 0;
}
.hero__visual {
  position: absolute;
  right: -64px;
  top: -24px;
  width: 920px;
  height: 720px;
  pointer-events: none;
  z-index: 1;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right top;
  display: block;
}
.hero__regulatory {
  position: absolute;
  right: 0; bottom: -48px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink);
  color: #fafafa;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.015em;
  z-index: 3;
}
.hero__regulatory .marks {
  display: inline-flex; gap: 6px;
  font-weight: 600;
}
.hero__regulatory-mark {
  height: 12px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: .95;
}

/* spinning halo + chart canvas */
.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* ========================================================================
   Section spacing
   ======================================================================== */
.section { width: 100%; display: flex; flex-direction: column; gap: 32px; }
.section__head { display: flex; flex-direction: column; gap: 28px; }

/* ========================================================================
   Feature cards
   ======================================================================== */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feat {
  background: rgb(245, 247, 252);
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
  transition: border-color .15s, transform .2s, background .15s;
}
.feat__body { margin-top: auto; }
.feat:hover { border-color: var(--brand-soft); transform: translateY(-2px); }
.feat__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-tint);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.feat__title { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 8px; }
.feat__body { font-size: 14px; line-height: 1.5; color: var(--muted); margin: 0; letter-spacing: 0.005em; }

/* ========================================================================
   How it works (blue card)
   ======================================================================== */
.how {
  width: 100%;
  border-radius: 24px;
  padding: 64px;
  background:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.18) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(180deg, rgb(10,55,209), rgb(8,47,179));
  color: var(--bg-tint);
  display: flex;
  flex-direction: column;
  gap: 44px;
  position: relative;
  overflow: hidden;
}
.how__head {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap;
}
.how__title-block { display: flex; flex-direction: column; gap: 28px; max-width: 460px; }
.how__title { font-size: 30px; font-weight: 700; line-height: 1; letter-spacing: -0.01em; color: var(--bg-tint); margin: 0; }
.how__sub { font-size: 16px; line-height: 1.5; color: var(--bg-tint); opacity: .9; max-width: 340px; margin: 0; }
.how__logo {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--bg-tint);
}
.how__logo .logo svg { opacity: .95; }
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.step {
  background: var(--brand-darker);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.step__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-tint);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.step__title { color: var(--bg-tint); font-size: 20px; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; margin: 0; }
.step__body { color: var(--bg-tint); font-size: 14px; line-height: 1.5; letter-spacing: 0.005em; opacity: .85; margin: 0; }
.step__num {
  position: absolute; top: 24px; right: 28px;
  font-size: 12px; opacity: .6;
  font-feature-settings: 'tnum';
}

/* ========================================================================
   Price ticker
   ======================================================================== */
.ticker {
  width: calc(100% + 2 * var(--gutter));
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
  background: var(--bg-soft);
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  --gap: 48px;
}
.ticker__track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  animation: tickerScroll 120s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.ticker__sym {
  width: 24px; height: 24px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 11px; font-weight: 700;
  flex: 0 0 auto;
}
.ticker__name { font-size: 14px; font-weight: 500; color: var(--ink); }
.ticker__price { font-size: 14px; font-weight: 400; color: var(--muted-2); font-feature-settings: 'tnum'; }
.ticker__dot {
  width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--line-2);
  display: inline-block;
  align-self: center;
  flex: 0 0 auto;
}

/* ========================================================================
   Two-column form section
   ======================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: 64px;
  align-items: stretch;
  width: 100%;
}
.benefits {
  display: flex; flex-direction: column; gap: 44px;
  height: 100%;
}
.benefit-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1; /* fill remaining column height so it matches the form card height */
}
.benefit-card__row {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 32px;
}
.benefit-card__title { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 8px; }
.benefit-card__sub { font-size: 14px; color: var(--muted-2); line-height: 1.5; max-width: 380px; margin: 0; letter-spacing: 0.005em; }
.benefit-card__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 16px;
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
.benefit-card__list::-webkit-scrollbar { width: 6px; }
.benefit-card__list::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 3px; }
.price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 0;
}
.price-row__left { display: flex; align-items: center; gap: 12px; }
.price-row__name { font-size: 14px; font-weight: 500; color: var(--ink); }
.price-row__amount {
  font-size: 14px;
  color: var(--muted-2);
  font-feature-settings: 'tnum';
  flex: 1;
  text-align: right;
  margin-right: 24px;
}
.price-row__delta { font-size: 14px; font-weight: 500; font-feature-settings: 'tnum'; min-width: 64px; text-align: right; }
.price-row__delta--up { color: rgb(15, 138, 75); }
.price-row__delta--flat { color: var(--muted-2); }
.price-row__delta--down { color: rgb(196, 47, 47); }

/* mini select */
.mini-select {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

/* ========================================================================
   Form card
   ======================================================================== */
.form-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.progress { display: flex; gap: 8px; width: 200px; }
.progress__seg {
  height: 4px; flex: 1;
  background: var(--line);
  border-radius: 2px;
  transition: background .25s;
}
.progress__seg--active { background: var(--brand); }
.form-card__title { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; margin: 0; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field__label { font-size: 12px; font-weight: 500; color: var(--muted); letter-spacing: 0.005em; }
.field__input {
  height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field__input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(12,64,238,0.12);
}
.field__input::placeholder { color: var(--muted-2); }
.field__input--error { border-color: rgb(196, 47, 47); }
.field__error { font-size: 12px; color: rgb(196, 47, 47); }
.form__success {
  text-align: center;
  padding: 32px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.form__success-icon {
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--bg-tint); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
}
.form-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: 100%;
}
.contact__intro {
  margin: 0;
}
.form-stack .form-card {
  flex: 1; /* form card grows to match the benefit card height */
}
.license-mark {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
}
.license-mark img {
  height: 44px;
  width: auto;
  opacity: .9;
  display: block;
}

/* ========================================================================
   FAQ
   ======================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 16px 32px;
  transition: padding .25s ease;
  overflow: hidden;
}
.faq-item--open { padding: 32px; }
.faq-item__row {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  text-align: left;
}
.faq-item__q { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; padding-right: 16px; }
.faq-item__chev {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(229, 229, 229, 0);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: transform .25s ease, background .15s;
  flex: 0 0 auto;
}
.faq-item--open .faq-item__chev {
  background: rgba(229, 229, 229, 0.5);
  transform: rotate(180deg);
}
.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease, margin-top .3s ease;
  margin-top: 0;
  font-size: 16px; line-height: 1.5; color: var(--muted);
  max-width: 780px;
}
.faq-item__a > div { overflow: hidden; }
.faq-item--open .faq-item__a {
  grid-template-rows: 1fr;
  margin-top: 16px;
}

/* ========================================================================
   Footer (dark CTA + image)
   ======================================================================== */
.footer {
  /* Break out of the .page padding symmetrically so the footer fills the
     viewport exactly (no scrollbar/100vw rounding glitches on iOS Safari). */
  width: calc(100% + 2 * var(--gutter));
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
  background:
    linear-gradient(
      180deg,
      var(--bg-soft) 0%,
      var(--bg-soft) 22%,
      rgb(232, 236, 252) 32%,
      rgb(165, 180, 248) 50%,
      var(--brand) 70%,
      var(--brand-deep) 100%
    );
  color: var(--ink);
  border-radius: 0;
  padding: 80px 0 40px;
  display: flex; flex-direction: column; gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.footer__inner { width: 100%; max-width: var(--container); padding: 0 var(--gutter); }
.footer__cta {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 64px;
  flex-wrap: wrap;
}
.footer__cta-text { display: flex; flex-direction: column; gap: 16px; max-width: 360px; }
.footer__cta h2 { color: var(--ink); font-size: 36px; font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; margin: 0; }
.footer__cta p { color: var(--muted); font-size: 16px; line-height: 1.5; margin: 0; }
.footer__cta-btn { align-self: flex-start; }
.footer__socials { display: flex; gap: 16px; }
.footer__social {
  width: 24px; height: 24px;
  background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  transition: opacity .15s;
}
.footer__social img { width: 100%; height: 100%; display: block; }
.footer__social:hover { opacity: .65; background: transparent; }
.footer__socials--mobile { display: none; }
.footer__image {
  width: 100%; max-width: var(--container);
  position: relative;
  height: 760px;
  margin-top: 16px;
  margin-bottom: -180px;
  padding: 0;
  display: block;
}
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .35;
  mix-blend-mode: overlay;
  z-index: 1;
}
.footer__inner, .footer__image, .footer__bar {
  position: relative;
  z-index: 2;
}
.footer__dashboards {
  position: relative;
  width: 100%;
  height: 100%;
  filter: blur(1px);
  /* Static blur — no will-change needed; browsers cache the rasterized result */
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 55%, rgba(0,0,0,0.55) 82%, rgba(0,0,0,0) 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 55%, rgba(0,0,0,0.55) 82%, rgba(0,0,0,0) 100%);
}
.footer__dashboards img.desk {
  position: absolute;
  right: 16%; bottom: 0;
  width: 80%;
  border-radius: 16px 16px 0 0;
  border: none;
  box-shadow: none;
}
.footer__dashboards img.mob {
  position: absolute;
  right: 0; bottom: -110px;
  width: 26%;
  border-radius: 24px 24px 0 0;
  border: none;
  box-shadow: none;
}
.footer__bar {
  width: 100%; max-width: var(--container);
  padding: 0 var(--gutter);
  display: flex; flex-direction: column; gap: 44px;
  position: relative;
  z-index: 2;
}
.footer__nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__small {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; color: var(--bg-tint); opacity: .7; letter-spacing: 0.015em;
  flex-wrap: wrap; gap: 16px;
}
.footer__small .links { display: flex; gap: 16px; }
.footer__small a:hover { opacity: 1; color: #fff; }
.footer__disclaimer {
  flex-basis: 100%;
  width: 100%;
  margin: 0;
  line-height: 1.6;
}

/* ========================================================================
   Mobile menu button (hidden on desktop)
   ======================================================================== */
.mobile-menu-btn {
  display: none;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--bg-soft);
  align-items: center; justify-content: center;
  color: var(--ink);
}

/* ========================================================================
   Responsive
   ======================================================================== */
@media (max-width: 1100px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .hero__visual { width: 700px; height: 600px; right: -120px; opacity: .85; }
  .hero__col { width: 60%; }
}

.hero__regulatory--mobile { display: none; }

@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .page { gap: 64px; padding: 16px 20px 0; }
  .nav__menu { display: none; }
  .mobile-menu-btn { display: inline-flex; }
  .nav .btn { padding: 0 14px; height: 36px; font-size: 13px; }
  .h1 { font-size: 36px; }
  .h2 { font-size: 24px; }
  .h3 { font-size: 20px; }
  .h4 { font-size: 18px; }
  .hero { min-height: auto; flex-direction: column; gap: 24px; }
  .hero__col { width: 100%; gap: 20px; }
  .hero__visual { display: none; }
  .hero__regulatory--desktop { display: none; }
  .hero__regulatory--mobile {
    display: inline-flex;
    position: relative;
    right: auto; bottom: auto;
    align-self: flex-start;
  }
  .hero__sub { max-width: 100%; }
  .hero__col > div { width: 100%; }
  .hero__col .btn--primary { width: 100%; height: 48px; justify-content: center; }
  .feat-grid { grid-template-columns: 1fr; gap: 12px; }
  .feat { min-height: 0; padding: 20px; }
  .how { padding: 32px 20px; border-radius: 20px; gap: 32px; }
  .how__head { flex-direction: column; gap: 24px; }
  .how__title { font-size: 24px; }
  .steps { grid-template-columns: 1fr; gap: 12px; }
  .step { padding: 24px; }
  .step__title { font-size: 18px; }
  .form-card { padding: 24px; border-radius: 20px; }
  .benefit-card { padding: 24px; border-radius: 20px; }
  .benefit-card__row { flex-direction: column; gap: 16px; }
  .faq-item { padding: 16px 20px; }
  .faq-item--open { padding: 20px; }
  .faq-item__q { font-size: 16px; }
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .mobile-menu-btn { display: inline-flex; }

  .footer {
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
    padding: 48px 0 32px;
    border-radius: 0;
    gap: 32px;
  }
  .footer::after { display: none; }
  .footer__image { display: none; }
  .footer__inner { padding: 0 20px; }
  .footer__bar { padding: 0 20px; gap: 32px; margin-top: 0; }
  .footer__cta { flex-direction: column; gap: 24px; align-items: stretch; }
  .footer__cta-text { max-width: 100%; gap: 12px; text-align: center; align-items: center; }
  .footer__cta-btn { align-self: center; }
  .footer__cta h2 { color: #fff; font-size: 30px; }
  .footer__cta p { color: rgba(255,255,255,0.78); }
  .footer__cta-text > div { width: 100%; }
  .footer__cta .btn--primary {
    width: 100%; height: 48px; justify-content: center;
    background: #fff; color: var(--ink);
  }
  .footer__cta .btn--primary:hover { background: rgb(245,245,245); }
  .footer__cta .footer__socials { display: none; }
  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .footer__nav .nav__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    order: 2;
  }
  .footer__nav .nav__menu a { font-size: 16px; }
  .footer__nav .logo { order: 1; }
  .footer__nav .btn--ghost-light { display: none; }
  .footer__socials--mobile {
    display: flex;
    gap: 28px;
    justify-content: center;
    order: 3;
    color: #fff;
  }
  .footer__socials--mobile .footer__social { color: #fff; }
  .footer__small {
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 11px;
    gap: 12px;
  }
  .footer__small .links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .ticker { padding: 16px 0; }
  .ticker__name, .ticker__price { font-size: 13px; }
}

/* Mobile drawer (full-screen menu) */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  padding: 16px 20px 28px;
}
.mobile-drawer__top {
  display: flex; align-items: center; gap: 12px;
}
.mobile-drawer__top .logo { margin-right: auto; }
.mobile-drawer__start { padding: 0 14px; height: 36px; font-size: 13px; }
.mobile-drawer__close {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  color: var(--ink);
}
.mobile-drawer__menu {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.mobile-drawer__menu a {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.mobile-drawer__cta {
  width: 100%;
  height: 52px;
  margin-bottom: 28px;
}
.mobile-drawer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.mobile-drawer__socials {
  display: flex;
  gap: 24px;
}
.mobile-drawer__socials img { width: 24px; height: 24px; display: block; }
.mobile-drawer__bottom span { font-size: 12px; color: var(--muted); }

/* ========================================================================
   Touch devices — neutralize hover-only effects so they don't "stick"
   after tap. Each rule resets the visual delta from the corresponding
   :hover declaration above.
   ======================================================================== */
@media (hover: none) {
  .btn--primary:hover { background: var(--brand); }
  .btn--dark:hover { background: var(--ink); }
  .btn--ghost-light:hover { background: #fff; }
  .nav__link:hover { background: transparent; }
  .nav__link--ondark:hover { background: transparent; }
  .feat:hover { border-color: transparent; transform: none; }
  .ticker:hover .ticker__track { animation-play-state: running; }
  .footer__social:hover { opacity: 1; background: transparent; }
  .footer__small a:hover { opacity: .7; color: var(--bg-tint); }
}

/* ========================================================================
   Reduced-motion users — kill long/looping animations + transitions.
   Hero rAF rotation is gated separately in JS via matchMedia.
   ======================================================================== */
/* Mobile section labels: stretch full width with the pill centered */
@media (max-width: 768px) {
  .bullets {
    display: flex;
    width: 100%;
  }
  .bullets__line { flex: 1; }
  .bullets__pill { justify-content: center; }
}

/* Narrow phones (~320–375px): allow chip to wrap, coverage row to stack */
@media (max-width: 480px) {
  .hero__chip {
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
    border-radius: 12px;
  }
  .price-row { flex-wrap: wrap; gap: 6px 12px; }
  .price-row__amount {
    flex: 1 0 100%;
    margin-right: 0;
    text-align: left;
    padding-left: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ticker__track { animation: none; }
  .feat { transition: none; }
  .faq-item__a { transition: none; }
}
