/* ------------------------------------------------------------------ */
/* Homepage styles for ai-visibility.sona.com (public/index.html).     */
/* Colour values come from the Sona design tokens package — see the     */
/* :root alias block below; tokens.css must load before this file.      */
/* Source: Sona Marketing Site Design System (Claude Design project).   */
/* ------------------------------------------------------------------ */

@font-face {
  font-family: "Satoshi";
  src: url("/fonts/Satoshi-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("/fonts/Satoshi-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("/fonts/Satoshi-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("/fonts/Satoshi-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------------------------
   Local aliases over the Sona design tokens.

   tokens.css is loaded first (see index.html) and owns every brand value. The
   names below stay as they were so the ~1,000 usages further down this file did
   not have to change; each now resolves to a --sona-* token instead of a hex.
   Add new colours by reaching for a token, not a literal.

   The handful still written as literals are called out inline: the palette has
   no equivalent for them.
   --------------------------------------------------------------------------- */
:root {
  /* Brand / core */
  --sona-navy: var(--sona-primary-400);
  --sona-navy-hover: var(--sona-primary-500);
  --sona-navy-deep: var(--sona-primary-700);
  --sona-navy-mid: var(--sona-primary-300);
  --sona-pink: var(--sona-secondary-200);
  --sona-pink-hover: #d81f6f; /* no token: darkened secondary-200 for hover */
  --sona-pink-link: var(--sona-secondary-100);
  --sona-pink-pill: var(--sona-secondary-60);
  --sona-pink-pill-inner: var(--sona-secondary-70);
  --sona-gradient-navy: linear-gradient(
    279deg,
    var(--sona-primary-400) 6.59%,
    var(--sona-primary-700) 32.47%,
    var(--sona-primary-400) 49.58%,
    var(--sona-primary-700) 67.11%,
    var(--sona-primary-400) 93.41%
  );

  /* Surfaces */
  --surface-light: var(--sona-primary-10);
  --surface-card: var(--sona-surface-card);
  --surface-chrome: var(--sona-surface-chrome);
  --surface-footer-bar: var(--sona-neutral-20);

  /* Pills / chips */
  --pill-bg: var(--sona-primary-40);
  --pill-border: var(--sona-primary-60);
  --pill-hover: var(--sona-primary-50);

  /* Text on light */
  --text-heading: var(--sona-text-heading);
  --text-heading-2: var(--sona-text-heading-alt);
  --text-body: var(--sona-text-body);
  --text-body-2: var(--sona-text-body-alt);
  --text-muted: var(--sona-text-muted);
  --text-muted-2: var(--sona-text-muted-2);
  --text-muted-3: var(--sona-text-fine);
  --text-slate: var(--sona-text-slate);
  --text-label: var(--sona-primary-80);

  /* Text on navy */
  --text-on-dark-heading: var(--sona-text-on-dark-heading);
  --text-on-dark-body: var(--sona-text-on-dark-body);

  /* Borders */
  --border-button: var(--sona-border-button);
  --border-light: var(--sona-border-card);
  --border-divider: var(--sona-neutral-30);
  --border-hair: var(--sona-border-hair);

  /* Status / semantic */
  --status-success: #22c55e; /* no token: distinct from the Sona success ramp */
  --status-success-bg: rgba(34, 197, 94, 0.12);
  --status-alert-bg: rgba(238, 43, 126, 0.15);
  --color-success-500: var(--sona-success-500);
  --color-success-70: var(--sona-success-70);
  --color-error: var(--sona-error-300);
  --color-error-200: var(--sona-error-200);
  --color-error-60: var(--sona-error-60);
  --tert-lime-200: #76a42f; /* no token: tertiary ramp not in the package */

  /* Layout */
  --max-content: 1440px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-14: 56px;

  /* Radii */
  --radius-pill: 9999px;
  --radius-md: 8px;
  --radius-card: 16px;
  --radius-feature: 20px;
  --radius-panel: 32px;

  /* Shadows */
  --shadow-window: 0 40px 90px rgba(29, 45, 130, 0.10), 0 12px 30px rgba(29, 45, 130, 0.04);
  --shadow-analytics: 0 0 8px 0 rgba(41, 64, 185, 0.01), 0 0 6px 0 rgba(41, 64, 185, 0.02), 0 0 5px 0 rgba(41, 64, 185, 0.04), 0 0 4px 0 rgba(41, 64, 185, 0.08), 0 0 2px 0 rgba(41, 64, 185, 0.10);
  --shadow-dropdown: 0px 4px 12px -2px rgba(10, 13, 18, 0.12);
  --shadow-pill: 0 2px 12px rgba(17, 27, 79, 0.22);

  /* Glass card (on navy) */
  --glass-bg: rgba(253, 253, 253, 0.06);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-inset: inset 0 1px 0 rgba(255, 255, 255, 0.25), inset 0 -1px 0 rgba(255, 255, 255, 0.1);

  /* Motion */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-base: 200ms;
  --dur-slow: 300ms;

  /* Type */
  --type-h2-size: 48px;
  --type-h2-lh: 1.25;
  --type-h2-ls: -1.2px;
  --type-lead-size: 20px;
  --type-body-size: 18px;
  --type-base-size: 16px;
  --type-caption-size: 14px;
  --type-fine-size: 13px;
  --font-sans: "Satoshi", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Weights come from the token package. Satoshi ships no 600, which is why
     --sona-fw-semibold deliberately resolves to 700 — never hardcode 600 here
     or the browser synthesises a fake bold. */
  --fw-regular: var(--sona-fw-regular);
  --fw-medium: var(--sona-fw-medium);
  --fw-semibold: var(--sona-fw-semibold);
  --fw-bold: var(--sona-fw-bold);
  --fw-black: var(--sona-fw-black);
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}
/* Keep the scrollbar gutter reserved so opening the modal (which locks body
   scroll) doesn't shift the whole page sideways */
html { scrollbar-gutter: stable; }

body {
  font-family: var(--font-sans);
  background: var(--surface-light);
  color: var(--text-body);
  min-height: 100%;
  width: 100%;
  max-width: 100%;
  /* clip, not hidden: overflow-x hidden would break the sticky navbar */
  overflow-x: clip;
}

a { color: var(--sona-navy-mid); text-decoration: none; }
a:hover { color: var(--sona-navy); }
::selection { background: var(--sona-pink-pill); }

img { max-width: 100%; }

/* ------------------------------ Announcement + Navbar ---------------------- */
/* Moved to /css/site-nav.css — the nav is now a shared component used by      */
/* index.html, results.html and every blog page. Edit it there, not here.      */
/* index.html loads site-nav.css AFTER this file.                              */

/* -------------------------------- Sections -------------------------------- */

.av-sec { padding: 80px 104px; }
.av-wrap { max-width: var(--max-content); margin: 0 auto; }
.sec-navy { background: var(--sona-gradient-navy); }
.sec-light { background: var(--surface-light); }

.sec-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 48px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.eyebrow.on-dark { color: var(--text-label); }
.eyebrow.pink { color: var(--sona-pink); }
.eyebrow.navy { color: var(--sona-navy-mid); }

.h2 {
  margin: 0;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: var(--text-heading);
}
.h2.on-dark { color: var(--text-on-dark-heading); }

.lead {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-body);
}
.lead.on-dark { color: var(--text-on-dark-body); }

/* Badge pill (pink) */
.badge-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: max-content;
  gap: 4px;
  padding: 8px 12px 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--sona-pink-pill);
}
.badge-pill > span:first-child {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  white-space: nowrap;
}
.badge-pill .arr {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 21px;
  border-radius: var(--radius-pill);
  background: var(--sona-pink-pill-inner);
  flex-shrink: 0;
}

/* Hero badge (glass gradient) */
.hero-badge {
  display: inline-flex;
  width: fit-content;
  border-radius: var(--radius-pill);
  padding: 1.2px;
  background: linear-gradient(140deg, var(--pill-border), rgba(255,255,255,0.25) 45%, var(--sona-pink-pill));
}
.hero-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: var(--radius-pill);
  padding: 7px 15px 7px 8px;
  background: linear-gradient(90deg, var(--pill-bg), #fbeef6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85), inset 0 -1px 0 rgba(255,255,255,0.6);
}
.hero-badge-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255,255,255,0.85);
  color: var(--sona-navy-mid);
  box-shadow: inset 0 0 0 1px var(--sona-primary-100);
}
.hero-badge-inner > span:last-child {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--sona-neutral-900);
  white-space: nowrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.5;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 16px;
  border: 1px solid transparent;
  transition: background-color var(--dur-base) var(--ease-standard), opacity var(--dur-base) var(--ease-standard);
}
.btn-primary { background: var(--sona-navy); color: var(--text-on-dark-heading); }
.btn-primary:hover { background: var(--sona-navy-hover); color: var(--text-on-dark-heading); }
.btn-pink { background: var(--sona-pink); color: var(--text-on-dark-heading); }
.btn-pink:hover { background: var(--sona-pink-hover); color: var(--text-on-dark-heading); }
.btn-ghost-dark { background: transparent; color: var(--text-on-dark-heading); border-color: var(--text-on-dark-heading); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.12); color: var(--text-on-dark-heading); }

/* ---------------------------------- Hero ----------------------------------- */

#hero { padding: 72px 104px 80px; scroll-margin-top: 118px; }
.hero-grid {
  max-width: var(--max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}
/* min-width: 0 lets grid columns shrink below their content's natural width,
   otherwise the scan bar can push past the section padding on small screens */
.hero-grid > * { min-width: 0; }
.hero-copy { display: flex; flex-direction: column; gap: 24px; }
.av-h1 {
  margin: 0;
  font-weight: 900;
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: -1.6px;
  color: var(--text-heading-2);
}
.av-h1 .pink { color: var(--sona-pink); }
.hero-lead {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-body-2);
  max-width: 520px;
}
.hero-micro { margin: 0; font-size: 14px; color: var(--text-muted-2); }

/* Scan form */
.scan-form { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 520px; }
.scan-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  min-width: 0;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 20px;
  box-shadow: var(--shadow-window);
}
.scan-bar .scheme { color: var(--text-muted-3); font-size: 15px; font-weight: 500; flex-shrink: 0; }
.scan-bar input {
  flex: 1 1 0;
  width: 0;
  min-width: 0;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-heading);
  background: transparent;
}
.scan-bar button { flex-shrink: 0; }
.scan-bar button {
  background: var(--sona-navy);
  color: var(--text-on-dark-heading);
  border: none;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
.scan-bar button:hover { background: var(--sona-navy-hover); }
.scan-bar button:disabled { cursor: not-allowed; opacity: 0.7; }
.scan-bar button:disabled:hover { background: var(--sona-navy); }
.scan-error { display: none; margin: 0; font-size: 13px; color: var(--color-error); font-weight: 500; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; max-width: 520px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 6px 13px;
  box-shadow: var(--shadow-analytics);
}
.chip svg { flex-shrink: 0; }

/* Report preview card */
.report {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-window);
  overflow: hidden;
}
.report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-divider);
}
.report-head .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--sona-navy-mid);
}
.report-head .site {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted-2);
}
.report-head .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--status-success); }

.report-score {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-bottom: 1px solid var(--border-divider);
}
.score-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  /* 80/100 score → ring is 80% filled, remainder stays light */
  background: conic-gradient(var(--sona-navy) 0% 80%, var(--pill-bg) 80% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.score-ring span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--surface-card);
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--sona-navy);
}
.grade-pill {
  font-size: 11px;
  font-weight: 700;
  color: var(--sona-navy-mid);
  background: var(--pill-bg);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.report-score .headline { margin: 7px 0 0; font-weight: 700; font-size: 15px; color: var(--text-heading); }
.report-score .sub { margin: 3px 0 0; font-size: 12.5px; font-weight: 500; color: var(--text-muted-2); }

.report-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-divider);
}
.report-stats > div {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 9px 10px;
  text-align: center;
}
.report-stats .v { font-weight: 900; font-size: 17px; letter-spacing: -0.02em; color: var(--text-heading); line-height: 1; }
.report-stats .k { font-size: 10.5px; font-weight: 500; color: var(--text-muted-2); margin-top: 4px; }

.report-cats { padding: 16px 20px; display: flex; flex-direction: column; gap: 11px; }
.report-cats .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted-2);
}
.cat-row-top {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: 5px;
}
.cat-row-top span:last-child { color: var(--text-muted-2); font-weight: 500; }
.cat-bar { height: 7px; background: var(--surface-chrome); border-radius: var(--radius-pill); overflow: hidden; }
.cat-bar > div { height: 100%; background: var(--sona-navy); border-radius: var(--radius-pill); }

.report-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-top: 1px solid var(--border-divider);
  background: var(--surface-light);
}
.report-foot .nums { display: flex; align-items: baseline; gap: 8px; }
.report-foot .from { font-weight: 900; font-size: 22px; letter-spacing: -0.02em; color: var(--text-heading); line-height: 1; }
.report-foot .arrow { color: var(--text-muted-3); font-size: 14px; }
.report-foot .to { font-weight: 900; font-size: 22px; letter-spacing: -0.02em; color: var(--sona-navy); line-height: 1; }
.report-foot .delta {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-success-500);
  background: var(--status-success-bg);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.report-foot .note { font-size: 12px; font-weight: 500; color: var(--text-muted-2); }

/* Stat strip */
.stat-strip {
  max-width: var(--max-content);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 1px solid var(--border-divider);
  padding-top: 40px;
}
.stat-strip .n { font-weight: 900; font-size: 44px; letter-spacing: -0.03em; color: var(--sona-navy); line-height: 1; }
.stat-strip p { margin: 0; }
.stat-strip .label { font-size: 15px; font-weight: 500; color: var(--text-body); margin-top: 10px; }
.stat-strip .src { font-size: 12px; font-weight: 500; color: var(--text-muted-3); margin-top: 10px; }

/* ------------------------------ Brand scores ------------------------------ */

.brands-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.brands-head .left { display: flex; flex-direction: column; gap: 16px; }
.brands-head .h2 { max-width: 620px; }
.brands-head .pink { color: var(--sona-pink-link); }
.brands-head .right {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-on-dark-body);
  max-width: 300px;
  margin: 0;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-feature);
  box-shadow: var(--glass-inset);
}

.brand-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.brand-card:hover { background: rgba(253, 253, 253, 0.1); }
.brand-card .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.brand-card .domain { font-size: 14px; font-weight: 600; color: var(--text-on-dark-heading); }
.brand-card .grade {
  font-weight: 700;
  font-size: 13px;
  color: var(--sona-navy);
  background: var(--sona-neutral-05);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.brand-card .big { font-weight: 900; font-size: 44px; letter-spacing: -0.03em; line-height: 1; color: var(--text-on-dark-heading); }
.brand-card .big small { font-size: 16px; color: var(--text-label); font-weight: 700; }
.brand-card .bars { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.brand-card .bar-top {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-on-dark-body);
  margin-bottom: 5px;
}
.brand-card .bar { height: 6px; background: rgba(255,255,255,0.14); border-radius: var(--radius-pill); overflow: hidden; }
.brand-card .bar > div { height: 100%; border-radius: var(--radius-pill); }
.brand-card .bar .lime { background: var(--tert-lime-200); }
.brand-card .bar .blue { background: #8fb0ff; }
.brand-card .cta { margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--sona-pink-link); }

/* --------------------------- Problem / solution ---------------------------- */

.av-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.av-col { display: flex; flex-direction: column; gap: 24px; }
.h2-40 {
  margin: 0;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text-heading);
}
.h2-40 .dim { color: var(--text-muted-2); }
.h2-40 .navy { color: var(--sona-navy-mid); }

.check-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list .text { font-size: 16px; font-weight: 500; line-height: 1.5; color: var(--text-body); }
.mark-x {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--status-alert-bg);
  color: var(--sona-pink);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.mark-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sona-navy-mid);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ---------------------------- What is (navy text) -------------------------- */

.what-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
.what-grid .left { display: flex; flex-direction: column; gap: 16px; }
.what-grid .left .h2 { font-size: 44px; line-height: 1.12; }
.what-copy {
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--text-on-dark-body);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.what-copy p { margin: 0; }
.what-copy strong { color: var(--text-on-dark-heading); font-weight: 700; }
.what-copy a { color: var(--sona-pink-link); }
.what-copy a:hover { color: var(--sona-pink-pill); }

/* ------------------------------- Card grids -------------------------------- */

.av-3up { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.av-4up { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.step-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-feature);
  box-shadow: var(--shadow-analytics);
  padding: 28px;
}
.step-card .num {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--pill-bg);
  color: var(--sona-navy);
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.step-card h3 { margin: 0; font-weight: 700; font-size: 20px; letter-spacing: -0.3px; color: var(--text-heading); }
.step-card p { margin: 10px 0 0; font-size: 15px; font-weight: 500; line-height: 1.55; color: var(--text-body); }

/* 35 checks category card */
.cat-card { padding: 26px; display: flex; flex-direction: column; }
.cat-card .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.cat-card h3 { margin: 0; font-weight: 700; font-size: 21px; letter-spacing: -0.3px; color: var(--text-on-dark-heading); }
.cat-card .pts {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-on-dark-heading);
  background: rgba(255,255,255,0.12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.cat-card .desc { margin: 0 0 16px; font-size: 14px; font-weight: 500; color: var(--text-label); line-height: 1.5; }
.cat-card .items { display: flex; flex-direction: column; gap: 10px; }
.cat-card .item {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-on-dark-body);
  line-height: 1.45;
}
.check-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--tert-lime-200);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ------------------------------ Before / after ----------------------------- */

.av-ba { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.ba-card {
  background: var(--surface-card);
  border-radius: var(--radius-feature);
  box-shadow: var(--shadow-analytics);
  padding: 28px;
}
.ba-card.bad { border: 1px solid var(--color-error-60); }
.ba-card.good { border: 1.5px solid var(--color-success-70); }
.ba-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.ba-top .tag { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.ba-card.bad .tag { color: var(--color-error); }
.ba-card.good .tag { color: var(--color-success-500); }
.ba-top .nums { display: flex; align-items: baseline; gap: 8px; }
.ba-card.bad .score { font-weight: 900; font-size: 40px; color: var(--color-error); line-height: 1; letter-spacing: -0.03em; }
.ba-card.bad .letter { font-weight: 900; font-size: 18px; color: var(--color-error); }
.ba-card.good .score { font-weight: 900; font-size: 40px; color: var(--color-success-500); line-height: 1; letter-spacing: -0.03em; }
.ba-card.good .letter { font-weight: 900; font-size: 18px; color: var(--color-success-500); }
.ba-row {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 0;
  border-top: 1px solid var(--border-divider);
}
.ba-card.bad .ba-row { color: var(--text-muted-2); }
.ba-card.bad .ba-row .x { color: var(--color-error); font-weight: 700; }
.ba-card.good .ba-row { color: var(--text-body); }
.ba-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--status-success);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.av-ba-arrow { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.av-ba-arrow .circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sona-navy);
  color: var(--sona-neutral-05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-window);
}
.av-ba-arrow .pts { font-size: 12px; font-weight: 700; color: var(--sona-navy-mid); }

/* ------------------------------- Disciplines ------------------------------- */

.disc-card { padding: 28px; }
.disc-card .abbr { font-weight: 900; font-size: 16px; letter-spacing: 0.04em; color: var(--sona-pink-link); }
.disc-card h3 { margin: 6px 0 12px; font-weight: 700; font-size: 20px; letter-spacing: -0.3px; color: var(--text-on-dark-heading); }
.disc-card p { margin: 0; font-size: 15px; font-weight: 500; line-height: 1.6; color: var(--text-on-dark-body); }

/* --------------------------------- Marquee --------------------------------- */

#prompts { padding: 80px 0; overflow: hidden; }
#prompts .sec-head { padding: 0 104px; margin-bottom: 36px; }
@keyframes sona-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: sona-marquee 50s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.prompt-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-body);
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  white-space: nowrap;
  box-shadow: var(--shadow-pill);
}
.prompt-pill img { width: 16px; height: 16px; border-radius: 4px; display: block; }
.marquee-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding: 0 104px;
}
.marquee-cta .link { font-size: 15px; font-weight: 600; color: var(--sona-navy-mid); }

/* --------------------------------- Platform -------------------------------- */

.engines-strip { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 44px; }
.engines-strip .label { font-size: 12px; font-weight: 600; letter-spacing: 0.4px; color: var(--text-label); }
.engines-strip .pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 820px; }
.engine-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-on-dark-heading);
  white-space: nowrap;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
}
.engine-pill img {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-pill);
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--sona-neutral-05);
  padding: 2px;
}

.plat-card { padding: 30px; }
.plat-card h3 { margin: 0; font-weight: 700; font-size: 22px; color: var(--text-on-dark-heading); }
.plat-card .q { margin: 8px 0 18px; font-size: 15px; font-weight: 500; font-style: italic; color: var(--sona-pink-link); }
.plat-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-on-dark-body);
  padding: 10px 0;
  border-top: 1px solid var(--glass-border);
  line-height: 1.5;
}
.plat-row .diamond { color: var(--sona-pink-link); }

.plat-wide { margin-top: 20px; padding: 30px; display: flex; flex-direction: column; gap: 16px; }
.plat-wide .head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.plat-wide .head h3 { margin: 0; font-weight: 700; font-size: 22px; color: var(--text-on-dark-heading); }
.plat-wide .head .q { margin: 0; font-size: 15px; font-weight: 500; font-style: italic; color: var(--sona-pink-link); }
.plat-mini { display: flex; flex-direction: column; gap: 6px; border-top: 1px solid var(--glass-border); padding-top: 14px; }
.plat-mini .t { font-size: 15px; font-weight: 700; color: var(--text-on-dark-heading); }
.plat-mini .b { font-size: 14.5px; font-weight: 500; color: var(--text-on-dark-body); line-height: 1.5; }

.pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.pipe-step {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--glass-border);
  color: var(--text-on-dark-body);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
}
.pipe-arrow { color: var(--sona-pink-link); font-size: 16px; }
.pipe-final {
  background: var(--sona-pink);
  color: var(--text-on-dark-heading);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
}
.plat-cta { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* -------------------------------- Free tools ------------------------------- */

.tool-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-feature);
  box-shadow: var(--shadow-analytics);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
}
.tool-card {
  transition: transform var(--dur-base) var(--ease-standard), box-shadow var(--dur-base) var(--ease-standard), border-color var(--dur-base) var(--ease-standard);
}
.tool-card:hover {
  border-color: var(--pill-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-window);
}
.tool-card .cta { transition: color var(--dur-base) var(--ease-standard); }
.tool-card:hover .cta { color: var(--sona-navy); }
.tool-card .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sona-navy-mid);
}
.tool-card h3 { margin: 0; font-weight: 700; font-size: 19px; letter-spacing: -0.3px; color: var(--text-heading); }
.tool-card p { margin: 0; font-size: 14.5px; font-weight: 500; line-height: 1.5; color: var(--text-body); }
.tool-card .cta { margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--sona-navy-mid); }

/* -------------------------------- Resources -------------------------------- */

.res-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 44px;
}
.res-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
}
.res-card:hover { background: rgba(253, 253, 253, 0.1); }
.res-tag {
  width: fit-content;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sona-navy-mid);
  background: var(--pill-bg);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.res-card h3 {
  margin: 4px 0 0;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.3px;
  line-height: 1.3;
  color: var(--text-on-dark-heading);
}
.res-card p {
  margin: 0;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-on-dark-body);
}
.res-card .cta { margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--sona-pink-link); }
.res-all { display: flex; justify-content: center; margin-top: 36px; }
.res-all a { font-size: 15px; font-weight: 600; color: var(--text-on-dark-heading); }
.res-all a:hover { color: var(--sona-pink-link); }

/* ----------------------------------- FAQ ----------------------------------- */

#faq .av-wrap { max-width: var(--max-content); }
.faq-sec { display: flex; flex-direction: column; gap: var(--space-14); width: 100%; }
.faq-headblock { display: flex; flex-direction: column; gap: var(--space-6); }
.faq-head { display: flex; flex-direction: column; gap: var(--space-6); }
@media (min-width: 900px) {
  .faq-head {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-10);
  }
}
.faq-head h2 {
  margin: 0;
  font-size: var(--type-h2-size);
  font-weight: 700;
  line-height: var(--type-h2-lh);
  letter-spacing: var(--type-h2-ls);
  color: var(--text-heading);
  max-width: 528px;
  text-wrap: pretty;
}
.faq-head p {
  margin: 0;
  font-size: var(--type-body-size);
  line-height: 1.6;
  color: var(--text-body-2);
  max-width: 430px;
  text-wrap: pretty;
}
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); width: 100%; }
.faq-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--sona-tint);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-analytics);
  transition: background var(--dur-base) var(--ease-standard);
}
.faq-item:hover, .faq-item.open { background: var(--pill-bg); }
.faq-q {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-sans);
}
.faq-q .q-text {
  font-size: var(--type-lead-size);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: var(--text-heading);
}
.faq-q svg {
  flex-shrink: 0;
  margin-left: 24px;
  color: var(--text-body);
  transform: rotate(0deg);
  transition: transform var(--dur-slow) var(--ease-standard);
}
.faq-item.open .faq-q svg { transform: rotate(90deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-slow) var(--ease-standard);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  margin: 0;
  padding: 0 24px 20px;
  font-size: var(--type-base-size);
  line-height: 1.6;
  color: var(--text-muted);
}

/* --------------------------------- CTA band -------------------------------- */

.cta-band {
  background: var(--sona-gradient-navy);
  padding: 80px 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
  text-align: center;
  width: 100%;
}
.cta-band .copy { display: flex; flex-direction: column; gap: var(--space-4); align-items: center; max-width: 753px; }
.cta-band h2 {
  margin: 0;
  font-weight: 700;
  font-size: var(--type-h2-size);
  line-height: var(--type-h2-lh);
  letter-spacing: var(--type-h2-ls);
  color: var(--text-on-dark-heading);
}
.cta-band p { margin: 0; font-size: 16px; line-height: 1.5; color: var(--text-on-dark-body); max-width: 576px; }
.cta-band .btns { display: flex; gap: var(--space-3); flex-wrap: wrap; justify-content: center; }

/* ---------------------------------- Footer --------------------------------- */

.footer { width: 100%; background: var(--surface-card); border-top: 1px solid var(--border-hair); }
.footer-grid {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--space-14) clamp(16px, 6vw, var(--space-8));
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col { display: flex; flex-direction: column; gap: var(--space-4); }
.footer-col .title { font-size: var(--type-fine-size); color: var(--text-heading); line-height: 1.5; }
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-2); margin: 0; padding: 0; list-style: none; }
.footer-col a {
  font-size: var(--type-fine-size);
  line-height: 1.5;
  color: var(--text-muted);
  transition: color var(--dur-base) var(--ease-standard);
}
.footer-col a:hover { color: var(--text-heading); }
.footer-bottom { background: var(--surface-footer-bar); height: 50px; display: flex; align-items: center; }
.footer-bottom-inner {
  max-width: var(--max-content);
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(16px, 6vw, var(--space-8));
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-inner .links { display: flex; align-items: center; gap: var(--space-6); }
.footer-bottom-inner a { font-size: var(--type-fine-size); color: var(--text-muted); }
.footer-bottom-inner a:hover { color: var(--text-heading); }
.footer-bottom-inner p { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ---------------- Auth modal (ported from the live site) ------------------- */

.modal-backdrop {
  position: fixed;
  inset: 0;
  /* Marketing site pairs this with backdrop-filter: blur(4px); omitted here
     because blurring the whole viewport while the hero marquee animates behind
     it forces a full re-blur every frame (jank). Colour matches otherwise. */
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 24px;
  animation: fadeIn 0.12s ease-out;
}
.modal-backdrop.hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--sona-neutral-05);
  border-radius: 16px;
  max-width: 480px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(13, 28, 65, 0.3);
  animation: slideUp 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideUp {
  from { transform: translateY(14px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
/* Marquee keeps compositing behind the modal otherwise */
body.modal-open .marquee-track { animation-play-state: paused; }
/* Auth modal — mirrors src/components/AuthModal.astro on the Sona marketing
   site (Tailwind utilities there, hand-written here). Keep values in sync. */
.auth-modal {
  padding: 40px 0;
  max-width: 500px;
  gap: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  font-family: var(--font-sans);
}
.auth-tab-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 0 40px;
}
.auth-tab-content.hidden { display: none; }
.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 9999px;
  color: var(--sona-text-slate);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.15s, color 0.15s;
}
.auth-modal-close:hover { background: var(--sona-neutral-20); color: var(--sona-text-heading); }
.auth-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-bottom: 1px solid var(--sona-border-button);
  padding: 0 40px;
}
.auth-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 4px 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: var(--fw-medium);
  cursor: pointer;
  margin-bottom: -1px;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.auth-tab[data-active="true"] { color: var(--sona-neutral-900); border-bottom-color: var(--sona-pink); }
.auth-tab[data-active="false"] { color: var(--sona-text-slate); border-bottom-color: transparent; }
.auth-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  width: 100%;
  background: var(--sona-neutral-05);
  border: 1px solid var(--sona-border-button);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--sona-neutral-900);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.auth-social-btn:hover { background: var(--sona-neutral-20); border-color: var(--sona-neutral-70); color: var(--sona-neutral-900); }
.auth-social-btn img { flex-shrink: 0; }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 4px 0;
}
.auth-divider-line { flex: 1; height: 1px; background: var(--sona-border-button); }
.auth-divider-text { font-size: 12px; font-weight: var(--fw-regular); color: var(--sona-border-button); line-height: 1; }
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}
.auth-field--demo { gap: 8px; }
.auth-label { font-size: 14px; font-weight: var(--fw-semibold); color: var(--sona-neutral-900); }
.auth-email-input {
  height: 37px;
  padding: 0 12px;
  border: 1px solid var(--sona-border-button);
  border-radius: 6px;
  background: var(--sona-neutral-05);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--sona-neutral-900);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.auth-email-input::placeholder { color: var(--sona-border-button); }
.auth-email-input:focus { border-color: var(--sona-navy-mid); }
.auth-error { font-size: 12px; color: var(--color-error-200); }
.auth-error.hidden { display: none; }
.auth-continue-btn {
  height: 48px;
  width: 100%;
  background: var(--sona-pink);
  border: none;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--sona-neutral-05);
  cursor: pointer;
  transition: background 0.15s;
}
.auth-continue-btn:hover { background: var(--sona-pink-hover); }
.auth-continue-btn.hidden { display: none; }
.auth-demo-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.auth-demo-extra {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.auth-demo-extra.hidden { display: none; }
.auth-legal { font-size: 12px; color: var(--sona-neutral-200); text-align: center; line-height: 1.5; margin: 0; }
.auth-legal a { color: var(--sona-navy-mid); }
.auth-legal a:hover { text-decoration: underline; }

/* -------------------------------- Responsive ------------------------------- */

@media (max-width: 1080px) {
  .av-4up { grid-template-columns: repeat(2, 1fr) !important; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .report-stats { grid-template-columns: repeat(4, 1fr); }
  .hero-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 900px) {
  .av-sec, #hero, #prompts .sec-head, .marquee-cta, .cta-band { padding-left: 20px !important; padding-right: 20px !important; }
  .av-row { gap: 40px !important; grid-template-columns: 1fr !important; }
  .av-3up, .av-ba { grid-template-columns: 1fr !important; }
  .av-ba-arrow .circle { transform: rotate(90deg); }
}
@media (max-width: 640px) {
  .av-4up { grid-template-columns: 1fr !important; }
  .stat-strip { grid-template-columns: 1fr; }
  .av-h1 { font-size: 40px !important; letter-spacing: -0.9px !important; }
  .h2, .h2-40, .cta-band h2, .faq-head h2 { font-size: 30px !important; letter-spacing: -0.7px !important; }
  .av-sec, #hero, #prompts, .cta-band { padding-top: 56px !important; padding-bottom: 56px !important; }
  .report-stats { grid-template-columns: repeat(2, 1fr); }
  /* Keep the scan bar as one compact pill row on mobile, same box as desktop */
  .scan-bar { padding: 6px 6px 6px 20px; gap: 6px; }
  .scan-bar .scheme { font-size: 14px; }
  .scan-bar input { font-size: 14px; }
  .footer-bottom { height: auto; }
  .footer-bottom-inner { flex-direction: column; align-items: center; padding: 12px 16px; }
  /* Stacked CTA button pairs get equal, full width */
  .cta-band .btns, .plat-cta, .marquee-cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-band .btns .btn, .plat-cta .btn, .marquee-cta .btn { width: 100%; }
  .marquee-cta .link { text-align: center; }
}
