/* =========================================================
   Blume Landing — styles.css (Light + Dark)
   Notes:
   - Keeps your existing visual language (tokens, header, drawer, hero, cards).
   - Adds "section tabs" layering (rounded top overlap) like the old site.
   - Keeps figcaption overlays for media frames; rail cards now use overlay too.
   ========================================================= */

/* -----------------------------
   0) Theme selection helpers
------------------------------ */
:root {
  color-scheme: light;
}

html[data-theme="dark"],
body[data-theme="dark"] {
  color-scheme: dark;
}

html[data-theme="light"],
body[data-theme="light"] {
  color-scheme: light;
}

html[data-theme="auto"],
body[data-theme="auto"] {
  color-scheme: light dark;
}

/* =========================================================
   1) Design tokens (LIGHT defaults)
========================================================= */
:root {
  /* Brand (LIGHT) */
  --brand-1: #009de3;
  --brand-2: #00BDEF;
  --brand-3: #00DCFF;

  /* Neutrals (LIGHT) */
  --bg: #ffffff;
  --bg-2: #f6f8fb;
  --bg-3: #eef3f8;

  --ink: #0B1220;
  --text: rgba(11, 18, 32, .92);
  --text-2: rgba(11, 18, 32, .78);
  --muted: rgba(11, 18, 32, .70);
  --muted-2: rgba(11, 18, 32, .54);

  --line: rgba(11, 18, 32, .12);
  --line-2: rgba(11, 18, 32, .08);

  /* Surfaces */
  --surface: rgba(255, 255, 255, .86);
  --surface-solid: #ffffff;

  /* Shadows (LIGHT) */
  --shadow-lg: 0 24px 60px rgba(11, 18, 32, .10);
  --shadow-md: 0 14px 34px rgba(11, 18, 32, .08);
  --shadow-sm: 0 8px 18px rgba(11, 18, 32, .06);

  /* Radii */
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  /* Layout */
  --container: 1200px;
  --section-pad: clamp(72px, 8vw, 96px);

  /* Motion + focus */
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.2, .8, .2, 1);
  --focus: 0 0 0 4px rgba(0, 157, 227, .22);

  /* Header */
  --topbar-h: 72px;

  /* Ambient background */
  --grad-soft: none;

  /* Section “tab” look */
  --tab-radius: 34px;
  --tab-overlap: 24px;
}

@media (max-width: 980px) {
  :root {
    --topbar-h: 64px;
  }
}

/* =========================================================
   1.1) DARK overrides
========================================================= */
html[data-theme="dark"],
body[data-theme="dark"] {
  --bg: #070A10;
  --bg-2: #090D16;
  --bg-3: #0B1020;

  --ink: rgba(255, 255, 255, .92);
  --text: rgba(255, 255, 255, .92);
  --text-2: rgba(255, 255, 255, .78);
  --muted: rgba(255, 255, 255, .62);
  --muted-2: rgba(255, 255, 255, .52);

  --line: rgba(255, 255, 255, .12);
  --line-2: rgba(255, 255, 255, .08);

  --surface: rgba(255, 255, 255, .06);
  --surface-solid: rgba(10, 14, 24, .70);

  --shadow-lg: 0 18px 60px rgba(0, 0, 0, .55);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, .45);
  --shadow-sm: inset 0 1px 0 rgba(255, 255, 255, .08);

  --focus: 0 0 0 4px rgba(124, 92, 255, .25);

  --grad-soft: radial-gradient(800px 500px at 20% 10%, rgba(124, 92, 255, .22), transparent 55%),
    radial-gradient(700px 450px at 80% 25%, rgba(72, 166, 255, .18), transparent 55%),
    radial-gradient(900px 600px at 50% 100%, rgba(46, 233, 166, .10), transparent 60%);
}

/* Auto (OS dark) */
@media (prefers-color-scheme: dark) {

  html[data-theme="auto"],
  body[data-theme="auto"] {
    --bg: #070A10;
    --bg-2: #090D16;
    --bg-3: #0B1020;

    --ink: rgba(255, 255, 255, .92);
    --text: rgba(255, 255, 255, .92);
    --text-2: rgba(255, 255, 255, .78);
    --muted: rgba(255, 255, 255, .62);
    --muted-2: rgba(255, 255, 255, .52);

    --line: rgba(255, 255, 255, .12);
    --line-2: rgba(255, 255, 255, .08);

    --surface: rgba(255, 255, 255, .06);
    --surface-solid: rgba(10, 14, 24, .70);

    --shadow-lg: 0 18px 60px rgba(0, 0, 0, .55);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, .45);
    --shadow-sm: inset 0 1px 0 rgba(255, 255, 255, .08);

    --focus: 0 0 0 4px rgba(124, 92, 255, .25);

    --grad-soft: radial-gradient(800px 500px at 20% 10%, rgba(124, 92, 255, .22), transparent 55%),
      radial-gradient(700px 450px at 80% 25%, rgba(72, 166, 255, .18), transparent 55%),
      radial-gradient(900px 600px at 50% 100%, rgba(46, 233, 166, .10), transparent 60%);
  }
}

/* =========================================================
   2) Base
========================================================= */
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-h) + 18px);
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
  background-image: none;
  background-attachment: scroll;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@supports (overflow: clip) {
  body {
    overflow-x: clip;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

video {
  display: block;
}

p {
  margin: 0 0 14px;
  line-height: 1.65;
  color: var(--text);
}

[id] {
  scroll-margin-top: calc(var(--topbar-h) + 18px);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 30px);
  }
}

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

.muted {
  color: var(--muted-2);
}

::selection {
  background: rgba(0, 157, 227, .22);
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 12px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  z-index: 999;
  transform: translateY(-140%);
  transition: transform .18s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
  outline: none;
  box-shadow: var(--focus);
}

html[data-theme="dark"] .skip-link,
body[data-theme="dark"] .skip-link {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .92);
}

a:focus-visible,
button:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 12px;
}

button,
.btn,
a {
  -webkit-tap-highlight-color: transparent;
}

/* =========================================================
   3) Buttons
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease), box-shadow .18s var(--ease), opacity .18s var(--ease);
  user-select: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
  opacity: .92;
}

.btn--primary,
.btn--brand {
  background: var(--brand-1);
  color: #fff;
  text-decoration: none !important;
}

.btn--primary:hover,
.btn--brand:hover {
  background: #008bca;
}

.btn--outline {
  background: transparent;
  color: var(--brand-1);
  border-color: rgba(0, 157, 227, .55);
}

.btn--outline:hover {
  background: rgba(0, 157, 227, .06);
  border-color: rgba(0, 157, 227, .72);
}

.btn--ghost {
  background: rgba(11, 18, 32, .04);
  color: var(--ink);
  border-color: rgba(11, 18, 32, .10);
  text-decoration: none !important;
}

.btn--ghost:hover {
  background: rgba(11, 18, 32, .06);
  border-color: rgba(11, 18, 32, .14);
}

.btn--sm {
  padding: 10px 14px;
  font-size: 14px;
}

.btn--xs {
  padding: 8px 12px;
  font-size: 13px;
}

html[data-theme="dark"] .btn--primary,
html[data-theme="dark"] .btn--brand,
body[data-theme="dark"] .btn--primary,
body[data-theme="dark"] .btn--brand {
  background: #fff;
  color: #070A10;
  border: 1px solid rgba(255, 255, 255, .92);
}

html[data-theme="dark"] .btn--outline,
body[data-theme="dark"] .btn--outline {
  border-color: rgba(255, 255, 255, .85);
  color: rgba(255, 255, 255, .92);
}

html[data-theme="dark"] .btn--outline:hover,
body[data-theme="dark"] .btn--outline:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, 1);
}

html[data-theme="dark"] .btn--ghost,
body[data-theme="dark"] .btn--ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .92);
}

/* =========================================================
   4) Header nav + mega menus (kept)
========================================================= */
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  background: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 18, 32, .08);
}

.topbar.is-scrolled {
  background: #fff;
  border-bottom-color: rgba(11, 18, 32, .10);
}

html[data-theme="dark"] .topbar,
body[data-theme="dark"] .topbar {
  background: rgba(7, 10, 16, .55);
  border-bottom-color: rgba(255, 255, 255, .06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .20);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

html[data-theme="dark"] .topbar.is-scrolled,
body[data-theme="dark"] .topbar.is-scrolled {
  background: rgba(7, 10, 16, .72);
  border-bottom-color: rgba(255, 255, 255, .08);
  box-shadow: 0 16px 60px rgba(0, 0, 0, .45);
}

.topbar__inner {
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav__group {
  position: relative;
}

.nav__link {
  background: transparent;
  border: 0;
  color: rgba(11, 18, 32, .86);
  font-weight: 650;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 10px;
  border-radius: 999px;
  transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}

.nav__link:hover {
  background: rgba(0, 157, 227, .06);
  color: rgba(11, 18, 32, .98);
  transform: translateY(-1px);
}

.nav__link.is-active {
  background: rgba(0, 157, 227, .10);
  color: var(--brand-1);
}

html[data-theme="dark"] .nav__link,
body[data-theme="dark"] .nav__link {
  color: rgba(255, 255, 255, .78);
}

html[data-theme="dark"] .nav__link:hover,
body[data-theme="dark"] .nav__link:hover {
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .95);
}

.nav__link--dd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chev {
  opacity: .75;
  transform: translateY(1px);
  transition: transform .16s var(--ease), opacity .16s var(--ease);
}

.nav__link[aria-expanded="true"] {
  background: rgba(0, 157, 227, .10);
  color: var(--brand-1);
}

.nav__link[aria-expanded="true"] .chev {
  opacity: 1;
  transform: rotate(180deg) translateY(-1px);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar__textlink {
  color: rgba(11, 18, 32, .78);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background .18s var(--ease), color .18s var(--ease);
}

.topbar__textlink:hover {
  background: rgba(0, 157, 227, .06);
  color: rgba(11, 18, 32, .92);
}

html[data-theme="dark"] .topbar__textlink,
body[data-theme="dark"] .topbar__textlink {
  color: rgba(255, 255, 255, .78);
}

html[data-theme="dark"] .topbar__textlink:hover,
body[data-theme="dark"] .topbar__textlink:hover {
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .95);
}

.burger {
  width: 42px;
  height: 42px;
  display: none;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, .12);
  background: rgba(255, 255, 255, .75);
  cursor: pointer;
  position: relative;
  transition: background .18s var(--ease), border-color .18s var(--ease);
}

.burger:hover {
  background: rgba(255, 255, 255, .92);
  border-color: rgba(11, 18, 32, .16);
}

.burger>svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(11, 18, 32, .84);
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .topbar__textlink {
    display: none;
  }
}

html[data-theme="dark"] .burger,
body[data-theme="dark"] .burger {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .10);
}

html[data-theme="dark"] .burger>svg,
body[data-theme="dark"] .burger>svg {
  color: rgba(255, 255, 255, .84);
}

/* Backdrop behind mega menu */
.nav-backdrop {
  position: fixed;
  inset: var(--topbar-h, 72px) 0 0 0;
  z-index: 110;
  background: rgba(11, 18, 32, .22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease);
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

html[data-theme="dark"] .nav-backdrop,
body[data-theme="dark"] .nav-backdrop {
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(2px);
}

/* Dropdown panels */
.dd {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--topbar-h, 72px);
  z-index: 115;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.dd.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dd.dd--blume {
  background: #fff;
  border-top: 1px solid rgba(11, 18, 32, .08);
  border-bottom: 1px solid rgba(11, 18, 32, .08);
  max-height: calc(100vh - var(--topbar-h, 72px));
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.dd.dd--blume .mega {
  padding: 22px 0 18px;
}

html[data-theme="dark"] .dd.dd--blume,
body[data-theme="dark"] .dd.dd--blume {
  background: transparent;
  border-color: transparent;
}

html[data-theme="dark"] .mega,
body[data-theme="dark"] .mega {
  background: rgba(10, 14, 24, .70);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--shadow-lg);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

/* Mega grid */
.mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 280px;
  gap: 44px;
  align-items: start;
}

.mega__title {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0, 157, 227, .74);
  font-weight: 800;
}

.mega__title--mt {
  margin-top: 22px;
}

html[data-theme="dark"] .mega__title,
body[data-theme="dark"] .mega__title {
  color: #14ddff;
  font-weight: 700;
  letter-spacing: .12em;
}

.mega__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px;
  border-radius: 14px;
  color: rgba(11, 18, 32, .88);
  font-size: 13px;
  line-height: 1.15;
  transition: background .18s var(--ease), transform .18s var(--ease), color .18s var(--ease);
}

.mega__link:hover {
  background: rgba(0, 157, 227, .06);
  transform: translateY(-1px);
}

.mega__ico {
  flex: 0 0 20px;
  color: rgba(11, 18, 32, .55);
}

.mega__link:hover .mega__ico {
  color: rgba(0, 157, 227, .85);
}

html[data-theme="dark"] .mega__link,
body[data-theme="dark"] .mega__link {
  color: rgba(255, 255, 255, .86);
  border-radius: 12px;
}

html[data-theme="dark"] .mega__link:hover,
body[data-theme="dark"] .mega__link:hover {
  background: rgba(255, 255, 255, .06);
}

html[data-theme="dark"] .mega__ico,
body[data-theme="dark"] .mega__ico {
  color: rgba(255, 255, 255, .55);
}

.mega__aside {
  padding-left: 34px;
  border-left: 1px solid rgba(11, 18, 32, .10);
}

html[data-theme="dark"] .mega__aside,
body[data-theme="dark"] .mega__aside {
  border-left-color: rgba(255, 255, 255, .10);
}

.mega__card {
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .80);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}

.mega__card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .92);
  border-color: rgba(0, 157, 227, .28);
  box-shadow: var(--shadow-md);
}

.mega__cardName {
  font-weight: 750;
  font-size: 16px;
  letter-spacing: -.01em;
  color: rgba(11, 18, 32, .96);
}

.mega__cardSub {
  margin-top: 6px;
  color: rgba(11, 18, 32, .62);
  font-size: 13px;
  line-height: 1.35;
}

html[data-theme="dark"] .mega__card,
body[data-theme="dark"] .mega__card {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .08);
}

html[data-theme="dark"] .mega__cardName,
body[data-theme="dark"] .mega__cardName {
  color: rgba(255, 255, 255, .92);
}

html[data-theme="dark"] .mega__cardSub,
body[data-theme="dark"] .mega__cardSub {
  color: rgba(255, 255, 255, .62);
}

.mega__updates {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega__updates li {
  margin: 12px 0;
}

.mega__updates a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1.2;
}

.mega__updates a:hover {
  color: rgba(11, 18, 32, .96);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.mega__updatesIco {
  color: rgba(0, 157, 227, .85);
}

html[data-theme="dark"] .mega__updates a,
body[data-theme="dark"] .mega__updates a {
  color: rgba(255, 255, 255, .78);
}

html[data-theme="dark"] .mega__updates a:hover,
body[data-theme="dark"] .mega__updates a:hover {
  color: rgba(255, 255, 255, .95);
}

.mega__bottom {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(11, 18, 32, .10);
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 22px;
}

.mega__bottomCard {
  display: block;
  padding: 10px 10px;
  border-radius: 14px;
  transition: background .18s var(--ease);
}

.mega__bottomCard:hover {
  background: rgba(0, 157, 227, .06);
}

.mega__bottomTitle {
  font-weight: 750;
  letter-spacing: -.01em;
}

.mega__bottomSub {
  margin-top: 6px;
  color: rgba(11, 18, 32, .62);
  font-size: 13px;
  line-height: 1.35;
}

html[data-theme="dark"] .mega__bottom,
body[data-theme="dark"] .mega__bottom {
  border-top-color: rgba(255, 255, 255, .10);
}

html[data-theme="dark"] .mega__bottomSub,
body[data-theme="dark"] .mega__bottomSub {
  color: rgba(255, 255, 255, .62);
}

.dd--why .why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 0.92fr;
  gap: 18px;
  padding: 18px 0 20px;
}

.whyCard {
  display: block;
  color: inherit;
}

.whyCard__media {
  border-radius: 16px;
  border: 1px solid rgba(11, 18, 32, .10);
  overflow: hidden;
  aspect-ratio: 302 / 288;
  background: #fff;
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
}

.whyCard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .35s var(--ease);
  will-change: transform;
}

.whyCard:hover .whyCard__media img {
  transform: scale(1.04);
}

.whyCard__title {
  font-weight: 750;
  font-size: 16px;
  line-height: 1.2;
  color: rgba(11, 18, 32, .95);
}

.whyCard__sub {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(11, 18, 32, .62);
}

.whyAside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.whyTile {
  display: block;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .80);
  box-shadow: var(--shadow-sm);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease);
}

.whyTile:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .92);
  border-color: rgba(0, 157, 227, .28);
  box-shadow: var(--shadow-md);
}

.whyTile__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(0, 157, 227, .12);
  color: rgba(11, 18, 32, .90);
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 11px;
  margin-bottom: 10px;
}

.whyTile__ico {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(11, 18, 32, .06);
  margin-bottom: 10px;
  color: rgba(11, 18, 32, .82);
}

.whyTile__h {
  font-weight: 850;
  font-size: 14px;
  margin-bottom: 6px;
  color: rgba(11, 18, 32, .94);
}

.whyTile__p {
  font-size: 13px;
  color: rgba(11, 18, 32, .62);
}

html[data-theme="dark"] .whyCard__media,
body[data-theme="dark"] .whyCard__media {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .10);
}

html[data-theme="dark"] .whyCard__title,
body[data-theme="dark"] .whyCard__title {
  color: rgba(255, 255, 255, .92);
}

html[data-theme="dark"] .whyCard__sub,
body[data-theme="dark"] .whyCard__sub {
  color: rgba(255, 255, 255, .62);
}

html[data-theme="dark"] .whyTile,
body[data-theme="dark"] .whyTile {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .10);
}

html[data-theme="dark"] .whyTile:hover,
body[data-theme="dark"] .whyTile:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .14);
}

html[data-theme="dark"] .whyTile__pill,
body[data-theme="dark"] .whyTile__pill {
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .86);
}

html[data-theme="dark"] .whyTile__ico,
body[data-theme="dark"] .whyTile__ico {
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .86);
}

html[data-theme="dark"] .whyTile__h,
body[data-theme="dark"] .whyTile__h {
  color: rgba(255, 255, 255, .92);
}

html[data-theme="dark"] .whyTile__p,
body[data-theme="dark"] .whyTile__p {
  color: rgba(255, 255, 255, .62);
}

@media (max-width: 1120px) {
  .mega__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 320px;
    gap: 34px;
  }

  .mega__aside {
    padding-left: 26px;
  }
}

/* =========================================================
   5) Mobile drawer
========================================================= */
.drawer--blume {
  position: fixed;
  inset: 0;
  z-index: 140;
  pointer-events: none;
}

.drawer--blume.is-open {
  pointer-events: auto;
}

.drawer--blume .drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, .25);
  opacity: 0;
  transition: opacity 180ms var(--ease);
}

.drawer--blume.is-open .drawer__backdrop {
  opacity: 1;
}

.drawer--blume .drawer__panel {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  transform: translateX(6%);
  opacity: 0;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
  border-left: 1px solid rgba(11, 18, 32, .10);
}

.drawer--blume.is-open .drawer__panel {
  transform: translateX(0);
  opacity: 1;
}

.drawer__header {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-bottom: 1px solid rgba(11, 18, 32, .10);
  position: relative;
}

.drawer__topCta {
  color: rgba(11, 18, 32, .92);
  font-weight: 850;
}

.drawer__close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: rgba(11, 18, 32, .74);
  font-size: 20px;
  cursor: pointer;
}

.drawer__screens {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.drawer__screen {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 10px 16px 22px;
  transition: transform 220ms var(--ease);
  will-change: transform;
}

.drawer__row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6px;
  border: 0;
  border-bottom: 1px solid rgba(11, 18, 32, .10);
  background: transparent;
  color: rgba(11, 18, 32, .92);
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  text-align: left;
}

.drawer__arrow {
  opacity: .65;
  font-weight: 900;
}

.drawer__back {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0 16px;
  border: 0;
  background: transparent;
  color: rgba(11, 18, 32, .74);
  font-weight: 800;
  cursor: pointer;
}

.drawer__promo {
  display: block;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .80);
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
}

.drawer__promo strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: rgba(11, 18, 32, .94);
}

.drawer__promo span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: rgba(11, 18, 32, .62);
}

.drawer__subhead,
.drawer__label {
  margin: 18px 0 10px;
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 900;
  color: rgba(0, 157, 227, .70);
  text-transform: uppercase;
}

.drawer__tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.drawer__tile {
  display: block;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .80);
  box-shadow: var(--shadow-sm);
}

.drawer__tilePill {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(0, 157, 227, .12);
  font-weight: 900;
  font-size: 11px;
  margin-bottom: 10px;
  color: rgba(11, 18, 32, .92);
}

.drawer__tileIcon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(11, 18, 32, .06);
  margin-bottom: 10px;
  color: rgba(11, 18, 32, .82);
}

.drawer__tileH {
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 6px;
  color: rgba(11, 18, 32, .94);
}

.drawer__tileP {
  font-size: 13px;
  color: rgba(11, 18, 32, .62);
}

.drawer__link {
  display: block;
  padding: 14px 6px;
  border-bottom: 1px solid rgba(11, 18, 32, .10);
  color: rgba(11, 18, 32, .90);
  font-weight: 750;
}

.drawer__footer {
  padding: 14px 16px 18px;
  border-top: 1px solid rgba(11, 18, 32, .10);
  display: grid;
  gap: 12px;
}

.drawer__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 16px;
  border-radius: 999px;
  font-weight: 900;
}

.drawer__btn--ghost {
  border: 1px solid rgba(11, 18, 32, .14);
  color: rgba(11, 18, 32, .92);
  background: rgba(255, 255, 255, .78);
}

.drawer__btn--primary {
  border: 1px solid rgba(0, 157, 227, .25);
  color: #fff;
  background: var(--brand-1);
}

/* Dark drawer */
html[data-theme="dark"] .drawer--blume .drawer__panel,
body[data-theme="dark"] .drawer--blume .drawer__panel {
  background: rgba(10, 14, 24, .80);
  border-left-color: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

html[data-theme="dark"] .drawer--blume .drawer__backdrop,
body[data-theme="dark"] .drawer--blume .drawer__backdrop {
  background: rgba(0, 0, 0, .55);
}

html[data-theme="dark"] .drawer__row,
html[data-theme="dark"] .drawer__link,
html[data-theme="dark"] .drawer__topCta,
body[data-theme="dark"] .drawer__row,
body[data-theme="dark"] .drawer__link,
body[data-theme="dark"] .drawer__topCta {
  color: rgba(255, 255, 255, .90);
  border-bottom-color: rgba(255, 255, 255, .10);
}

html[data-theme="dark"] .drawer__label,
html[data-theme="dark"] .drawer__subhead,
body[data-theme="dark"] .drawer__label,
body[data-theme="dark"] .drawer__subhead {
  color: rgba(255, 255, 255, .62);
}

html[data-theme="dark"] .drawer__promo,
body[data-theme="dark"] .drawer__promo {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .10);
}

html[data-theme="dark"] .drawer__promo strong,
body[data-theme="dark"] .drawer__promo strong {
  color: rgba(255, 255, 255, .92);
}

html[data-theme="dark"] .drawer__promo span,
body[data-theme="dark"] .drawer__promo span {
  color: rgba(255, 255, 255, .62);
}

html[data-theme="dark"] .drawer__tile,
body[data-theme="dark"] .drawer__tile {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .08);
  border-radius: 18px;
}

html[data-theme="dark"] .drawer__tilePill,
body[data-theme="dark"] .drawer__tilePill {
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .86);
}

html[data-theme="dark"] .drawer__tileIcon,
body[data-theme="dark"] .drawer__tileIcon {
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .86);
}

html[data-theme="dark"] .drawer__tileH,
body[data-theme="dark"] .drawer__tileH {
  color: rgba(255, 255, 255, .92);
}

html[data-theme="dark"] .drawer__tileP,
body[data-theme="dark"] .drawer__tileP {
  color: rgba(255, 255, 255, .62);
}

html[data-theme="dark"] .drawer__btn--primary,
body[data-theme="dark"] .drawer__btn--primary {
  background: #fff;
  color: #070A10;
  border-color: rgba(255, 255, 255, .92);
}

html[data-theme="dark"] .drawer__btn--ghost,
body[data-theme="dark"] .drawer__btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .85);
}

/* =========================================================
   6) Hero
========================================================= */
.heroMain {
  padding-top: calc(var(--topbar-h, 72px) + 56px);
  padding-bottom: 72px;
  position: relative;
}

.heroMain--video {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(11, 18, 32, .06);
}

.heroMain__bgVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(.95) brightness(1.12) contrast(1.02);
}

.heroMain__bgOverlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .65);
  z-index: 0;
}

.heroMain--video .heroMain__wrap {
  position: relative;
  z-index: 2;
}

html[data-theme="dark"] .heroMain__bgOverlay,
body[data-theme="dark"] .heroMain__bgOverlay {
  background: linear-gradient(to bottom, rgba(11, 18, 32, .68), rgba(11, 18, 32, .58));
}

html[data-theme="dark"] .heroMain--video,
body[data-theme="dark"] .heroMain--video {
  border-bottom-color: rgba(255, 255, 255, .06);
}

.heroMain__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.heroMain__copy {
  max-width: 68ch;
}

.heroMain__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .70);
  color: rgba(11, 18, 32, .82);
  font-weight: 750;
  font-size: 13px;
  margin-bottom: 16px;
}

.kickerDot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--brand-1);
  box-shadow: 0 0 0 4px rgba(0, 157, 227, .12);
}

html[data-theme="dark"] .heroMain__kicker,
body[data-theme="dark"] .heroMain__kicker {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.heroMain__title {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.06;
  letter-spacing: -.03em;
  font-weight: 500;
  color: rgba(11, 18, 32, .98);
  text-wrap: balance;
}

html[data-theme="dark"] .heroMain__title,
body[data-theme="dark"] .heroMain__title {
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 18px 60px rgba(0, 0, 0, .55);
}

.heroMain__rotator {
  display: block;
  margin-top: .08em;
  line-height: 1.25;
  min-height: calc(3 * 1.05em);
  padding-bottom: .06em;
}

.heroMain__rotate {
  color: rgba(11, 18, 32, .90);
  font-weight: 650;
  display: inline;
  overflow-wrap: anywhere;
  word-break: break-word;
}

html[data-theme="dark"] .heroMain__rotate,
body[data-theme="dark"] .heroMain__rotate {
  color: rgba(255, 255, 255, .88);
}

/* caret (not used in words mode) */
.heroMain__rotate::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: .95em;
  margin-left: 3px;
  background: var(--brand-1);
  opacity: .75;
  animation: caretBlink 1s steps(1) infinite;
  vertical-align: -0.08em;
}

@keyframes caretBlink {

  0%,
  49% {
    opacity: .75;
  }

  50%,
  100% {
    opacity: 0;
  }
}

/* Shopify-like word-by-word */
.heroMain__rotate--words::after {
  content: none !important;
  display: none !important;
}

.heroMain__rotate--words .heroWord {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.heroMain__rotate--words .heroWord__inner {
  display: inline-block;
  will-change: transform, opacity;
  animation: heroWordIn var(--word-in, 560ms) var(--ease) both;
  animation-delay: calc(var(--i) * var(--word-stagger-in, 70ms));
}

.heroMain__rotate--words.is-exiting .heroWord__inner {
  animation-name: heroWordOut;
  animation-timing-function: var(--ease-soft);
}

@keyframes heroWordIn {
  from {
    transform: translateY(-110%);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes heroWordOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }

  to {
    transform: translateY(110%);
    opacity: 0;
  }
}

.heroMain__sub {
  color: rgba(11, 18, 32, .70);
  max-width: 72ch;
  font-size: 16.5px;
  margin-bottom: 18px;
  line-height: 1.65;
}

html[data-theme="dark"] .heroMain__sub,
body[data-theme="dark"] .heroMain__sub {
  color: rgba(255, 255, 255, .78);
}

.heroMain__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.heroMain__fineprint {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(11, 18, 32, .58);
}

html[data-theme="dark"] .heroMain__fineprint,
body[data-theme="dark"] .heroMain__fineprint {
  color: rgba(255, 255, 255, .62);
}

/* Mobile hero tuning */
@media (max-width: 520px) {
  .heroMain {
    padding-top: calc(var(--topbar-h, 64px) + 32px);
    padding-bottom: 44px;
  }

  .heroMain__kicker {
    font-size: 12px;
    padding: 7px 10px;
    gap: 8px;
    margin-bottom: 14px;
  }

  .kickerDot {
    width: 7px;
    height: 7px;
  }

  .heroMain__title {
    font-size: clamp(38px, 9.3vw, 52px);
    line-height: 1.05;
    letter-spacing: -.035em;
    margin-bottom: 10px;
  }

  .heroMain__rotator {
    margin-top: .10em;
    line-height: 1.06;
    min-height: calc(4 * 1.06em);
    padding-bottom: .04em;
  }

  .heroMain__rotate {
    font-weight: 700;
  }

  .heroMain__sub {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .heroMain__cta {
    gap: 10px;
    margin-top: 6px;
  }

  .heroMain__cta .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
  }

  .heroMain__fineprint {
    font-size: 12px;
    line-height: 1.45;
    margin-top: 12px;
  }
}

/* =========================================================
   7) Sections + “tab” stacking
========================================================= */
.section,
.final,
.footer {
  position: relative;
  isolation: isolate;
}

/* Default section background */
.section {
  padding: var(--section-pad) 0;
  --section-bg: var(--bg);
}

/* Tint section background (uses token so it can be drawn in the tab layer) */
.section--tint {
  --section-bg: var(--bg-2);
}

/* Draw the rounded “tab” background that overlaps previous section */
.section::before,
.final::before,
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--tab-overlap) * -1);
  bottom: 0;
  background: var(--section-bg);
  border-top-left-radius: var(--tab-radius);
  border-top-right-radius: var(--tab-radius);
  border-top: 1px solid rgba(11, 18, 32, .06);
  pointer-events: none;
  z-index: 0;
}

/* Dark tint uses subtle gradient (matches your previous tint look) */
html[data-theme="dark"] .section--tint {
  --section-bg: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
}

@media (prefers-color-scheme: dark) {
  html[data-theme="auto"] .section--tint {
    --section-bg: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
  }
}

html[data-theme="dark"] .section::before,
html[data-theme="dark"] .final::before,
html[data-theme="dark"] .footer::before {
  border-top-color: rgba(255, 255, 255, .06);
}

@media (prefers-color-scheme: dark) {

  html[data-theme="auto"] .section::before,
  html[data-theme="auto"] .final::before,
  html[data-theme="auto"] .footer::before {
    border-top-color: rgba(255, 255, 255, .06);
  }
}

/* Ensure content sits above the tab layer */
.section>.container,
.final>.container,
.footer>.container {
  position: relative;
  z-index: 1;
}

/* Section headings */
.sectionHead {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 26px;
}

.sectionHead--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

@media (max-width: 980px) {
  .sectionHead {
    flex-direction: column;
    align-items: flex-start;
  }

  .sectionHead--center {
    align-items: flex-start;
    text-align: left;
  }
}

.eyebrow {
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(0, 157, 227, .72);
  font-size: 12px;
  margin: 0 0 8px;
}

html[data-theme="dark"] .eyebrow,
body[data-theme="dark"] .eyebrow {
  font-weight: 600;
  color: rgba(255, 255, 255, .62);
}

.sectionTitle {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 46px);
  letter-spacing: -.03em;
  line-height: 1.10;
  color: rgba(11, 18, 32, .98);
  text-wrap: balance;
}

.sectionLead {
  margin: 0;
  color: rgba(11, 18, 32, .70);
  max-width: 68ch;
  font-size: 17px;
}

html[data-theme="dark"] .sectionTitle,
body[data-theme="dark"] .sectionTitle {
  color: rgba(255, 255, 255, .95);
}

html[data-theme="dark"] .sectionLead,
body[data-theme="dark"] .sectionLead {
  color: rgba(255, 255, 255, .78);
}

/* Simple grid split */
.featureSplit {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: start;
}

@media (max-width: 980px) {
  .featureSplit {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* Lists */
.checkList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.checkList li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  color: rgba(11, 18, 32, .74);
}

.checkList li::before {
  content: "✓";
  color: var(--brand-1);
  font-weight: 900;
  margin-top: 1px;
}

.checkList--soft li {
  border-bottom-color: rgba(0, 157, 227, .16);
}

html[data-theme="dark"] .checkList li,
body[data-theme="dark"] .checkList li {
  color: rgba(255, 255, 255, .74);
}

/* Media frames + caption overlay */
.mediaFrame,
.mockup__frame,
.stickyFrame {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .80);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}

html[data-theme="dark"] .mediaFrame,
html[data-theme="dark"] .mockup__frame,
html[data-theme="dark"] .stickyFrame,
body[data-theme="dark"] .mediaFrame,
body[data-theme="dark"] .mockup__frame,
body[data-theme="dark"] .stickyFrame {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .09);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mediaFrame img,
.mockup__frame img,
.stickyFrame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mediaFrame figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  margin: 0;
  padding: 10px 14px;
  font-size: 14px;
  color: #fff;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  max-width: calc(100% - 40px);
}

.mediaFrame--tall {
  align-self: stretch;
}

/* Link pill */
.linkRow {
  margin-top: 18px;
}

.linkPill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 157, 227, .22);
  background: rgba(0, 157, 227, .06);
  color: rgba(0, 157, 227, 1);
  font-weight: 750;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}

.linkPill:hover {
  transform: translateY(-1px);
  background: rgba(0, 157, 227, .08);
  border-color: rgba(0, 157, 227, .30);
}

/* Metrics */
.metrics {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.metric {
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.metric__k {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  /* color: rgba(11,18,32,.56); */
  margin-bottom: 6px;
  font-weight: 900;
}

.metric__v {
  /* color: rgba(11,18,32,.84); */
  font-weight: 650;
  line-height: 1.35;
}

html[data-theme="dark"] .metric__k,
body[data-theme="dark"] .metric__k {
  color: rgba(255, 255, 255, .62);
}

html[data-theme="dark"] .metric__v,
body[data-theme="dark"] .metric__v {
  color: rgba(255, 255, 255, .82);
}

@media (max-width: 980px) {
  .metrics {
    grid-template-columns: 1fr;
  }
}

/* Sticky showcase */
.stickyShowcase {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: start;
}

@media (max-width: 980px) {
  .stickyShowcase {
    grid-template-columns: 1fr;
  }

  .stickyShowcase__right {
    order: -1;
  }
}

.stickyFrame {
  position: sticky;
  top: calc(var(--topbar-h, 72px) + 18px);
  aspect-ratio: 1200 / 840;
}

.stickyFrame img {
  transition: opacity .22s var(--ease);
}

.stickyFrame img.is-swapping {
  opacity: 0;
}

.stickySteps {
  display: grid;
  gap: 10px;
}

.stickyStep {
  width: 100%;
  text-align: left;
  border-radius: 16px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .72);
  padding: 14px 14px;
  cursor: pointer;
  transition: border-color .18s var(--ease), background .18s var(--ease), transform .18s var(--ease);
}

.stickyStep h3 {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -.01em;
  color: rgba(11, 18, 32, .95);
}

.stickyStep p {
  margin: 0;
  color: rgba(11, 18, 32, .68);
}

.stickyStep:hover {
  border-color: rgba(0, 157, 227, .28);
  background: rgba(0, 157, 227, .05);
  transform: translateY(-1px);
}

.stickyStep.is-active {
  border-color: rgba(0, 157, 227, .45);
  background: rgba(0, 157, 227, .08);
}

.stickyStep:focus-visible {
  box-shadow: var(--focus);
}

html[data-theme="dark"] .stickyStep,
body[data-theme="dark"] .stickyStep {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .10);
}

html[data-theme="dark"] .stickyStep h3,
body[data-theme="dark"] .stickyStep h3 {
  color: rgba(255, 255, 255, .92);
}

html[data-theme="dark"] .stickyStep p,
body[data-theme="dark"] .stickyStep p {
  color: rgba(255, 255, 255, .70);
}

/* Image collage */
.imageCollage {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.imageCollage> :nth-child(1) {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.imageCollage> :nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.imageCollage> :nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

@media (max-width: 980px) {
  .imageCollage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .imageCollage> :nth-child(1),
  .imageCollage> :nth-child(2),
  .imageCollage> :nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }
}

/* Two-up */
.twoUp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.twoUp__item {
  padding-right: 6px;
}

.miniTitle {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -.01em;
  color: rgba(11, 18, 32, .95);
}

.miniText {
  margin: 0 0 12px;
  color: rgba(11, 18, 32, .68);
}

html[data-theme="dark"] .miniTitle,
body[data-theme="dark"] .miniTitle {
  color: rgba(255, 255, 255, .92);
}

html[data-theme="dark"] .miniText,
body[data-theme="dark"] .miniText {
  color: rgba(255, 255, 255, .70);
}

.miniLinks {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.miniLinks a {
  color: rgba(0, 157, 227, 1);
  font-weight: 750;
  padding-bottom: 2px;
  border-bottom: 2px solid rgba(0, 157, 227, .18);
  transition: border-color .18s var(--ease), transform .18s var(--ease);
}

.miniLinks a:hover {
  border-bottom-color: rgba(0, 157, 227, .50);
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .twoUp {
    grid-template-columns: 1fr;
  }
}

/* Horizontal rail */
.rail {
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.rail__track {
  display: flex;
  gap: 14px;
  padding: 2px 2px 16px;
  scroll-snap-type: x mandatory;
}

.railCard {
  flex: 0 0 360px;
  scroll-snap-align: start;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}

.railCard img {
  width: 100%;
  height: auto;
}

.railCard figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  margin: 0;
  padding: 10px 12px;
  color: #fff;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  font-weight: 750;
  max-width: calc(100% - 28px);
}

@media (max-width: 520px) {
  .railCard {
    flex-basis: 86%;
  }
}

html[data-theme="dark"] .railCard,
body[data-theme="dark"] .railCard {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .10);
  box-shadow: var(--shadow-md);
}

/* Callout */
.callout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(11, 18, 32, .10);
  background: var(--bg-2);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}

.callout__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

@media (max-width: 980px) {
  .callout {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

html[data-theme="dark"] .callout,
body[data-theme="dark"] .callout {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .10);
}

/* =========================================================
   PATCH — Rewards callout media polish
   Fixes:
   - White card flashing behind image
   - Ensures rounded corners always apply
   - Keeps it consistent with your mediaFrame + shadows
   ========================================================= */

.callout {
  overflow: hidden; /* ensures nothing bleeds outside the callout container */
}

/* Make the media side behave like a real framed component */
.callout__media {
  /* lock the visual to a stable shape so the background never peeks */
  aspect-ratio: 1200 / 860;
  background: inherit; /* matches your system */
  border-radius: var(--radius-lg);
  overflow: clip; /* better clipping for transformed children (fallback below) */
}

@supports not (overflow: clip) {
  .callout__media {
    overflow: hidden;
  }
}

/* Ensure the image fully fills the frame and keeps corners */
.callout__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit; /* belt + suspenders */
  transform: translateZ(0); /* helps with parallax rendering */
  will-change: transform;
}

/* If your parallax script transforms .parallax__inner, keep it clipped */
.callout__media .parallax__inner {
  border-radius: inherit;
}

/* Dark mode surface for the frame */
html[data-theme="dark"] .callout__media {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .09);
}

/* Auto + OS dark */
@media (prefers-color-scheme: dark) {
  html[data-theme="auto"] .callout__media {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .09);
  }
}

/* Optional: make the caption look more “native” to your system */
.callout__media figcaption {
  left: 18px;
  bottom: 18px;
  border-radius: 10px;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 10px;
}

.timeline__step {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.timeline__n {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 157, 227, .10);
  border: 1px solid rgba(0, 157, 227, .18);
  color: rgba(0, 157, 227, 1);
  font-weight: 900;
  margin-bottom: 10px;
}

.timeline__t {
  font-weight: 850;
  color: rgba(11, 18, 32, .95);
}

.timeline__p {
  margin: 6px 0 0;
  color: rgba(11, 18, 32, .68);
}

@media (max-width: 980px) {
  .timeline {
    grid-template-columns: 1fr;
  }
}

html[data-theme="dark"] .timeline__t,
body[data-theme="dark"] .timeline__t {
  color: rgba(255, 255, 255, .92);
}

html[data-theme="dark"] .timeline__p,
body[data-theme="dark"] .timeline__p {
  color: rgba(255, 255, 255, .70);
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
}

.faqItem {
  border-radius: 16px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .86);
  overflow: hidden;
}

.faqItem summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 16px;
  font-weight: 900;
  color: rgba(11, 18, 32, .92);
  position: relative;
}

.faqItem summary::-webkit-details-marker {
  display: none;
}

.faqItem summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(11, 18, 32, .60);
  font-weight: 900;
}

.faqItem[open] summary::after {
  content: "−";
}

.faqItem p {
  margin: 0;
  padding: 0 16px 16px;
  color: rgba(11, 18, 32, .70);
}

html[data-theme="dark"] .faqItem,
body[data-theme="dark"] .faqItem {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

html[data-theme="dark"] .faqItem summary,
body[data-theme="dark"] .faqItem summary {
  color: rgba(255, 255, 255, .92);
}

html[data-theme="dark"] .faqItem summary::after,
body[data-theme="dark"] .faqItem summary::after {
  color: rgba(255, 255, 255, .60);
}

html[data-theme="dark"] .faqItem p,
body[data-theme="dark"] .faqItem p {
  color: rgba(255, 255, 255, .72);
}

/* CTA band */
.ctaBand {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(11, 18, 32, .10);
  background: var(--bg-2);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ctaBand__copy h3 {
  margin: 0 0 6px;
  color: rgba(11, 18, 32, .96);
  font-size: 22px;
  letter-spacing: -.02em;
}

.ctaBand__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 520px) {
  .ctaBand {
    padding: 20px;
  }

  .ctaBand__actions .btn {
    width: 100%;
  }
}

html[data-theme="dark"] .ctaBand,
body[data-theme="dark"] .ctaBand {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .10);
  position: relative;
  overflow: hidden;
}

html[data-theme="dark"] .ctaBand__copy h3,
body[data-theme="dark"] .ctaBand__copy h3 {
  color: rgba(255, 255, 255, .95);
}

html[data-theme="dark"] .ctaBand::before,
body[data-theme="dark"] .ctaBand::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(600px 250px at 20% 0%, rgba(124, 92, 255, .18), transparent 55%),
    radial-gradient(600px 250px at 80% 0%, rgba(72, 166, 255, .14), transparent 55%);
  pointer-events: none;
}

/* Final CTA */
.final {
  padding: calc(var(--section-pad) - 10px) 0 var(--section-pad);
  --section-bg: var(--bg);
}

.final__panel {
  border-radius: 32px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: var(--bg-2);
  box-shadow: var(--shadow-lg);
  padding: 34px 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.final__panel h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: -.03em;
  color: rgba(11, 18, 32, .96);
}

.final__cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

@media (max-width: 520px) {
  .final__panel {
    text-align: left;
  }

  .final__cta {
    justify-content: flex-start;
  }

  .final__cta .btn {
    width: 100%;
  }
}

html[data-theme="dark"] .final__panel,
body[data-theme="dark"] .final__panel {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .10);
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

html[data-theme="dark"] .final__panel::before,
body[data-theme="dark"] .final__panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(600px 250px at 20% 0%, rgba(124, 92, 255, .18), transparent 55%),
    radial-gradient(600px 250px at 80% 0%, rgba(72, 166, 255, .14), transparent 55%);
  pointer-events: none;
}

html[data-theme="dark"] .final__panel h2,
body[data-theme="dark"] .final__panel h2 {
  color: rgba(255, 255, 255, .95);
}

/* =========================================================
   8) Footer
========================================================= */
.footer {
  padding: 54px 0 62px;
  --section-bg: var(--bg-2);
  border-top: 1px solid rgba(11, 18, 32, .08);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__logoImg {
  height: 40px;
  width: auto;
}

.footer__tagline {
  color: rgba(11, 18, 32, .68);
  max-width: 56ch;
}

.footer__cta {
  border-radius: 22px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.footer__cta h4 {
  margin: 0 0 6px;
  color: rgba(11, 18, 32, .95);
}

.footer__cta p {
  margin: 0 0 12px;
  color: rgba(11, 18, 32, .68);
  font-size: 13px;
}

.footer__ctaActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 18, 32, .08);
}

.footer__col h5 {
  margin: 0 0 10px;
  font-size: 13px;
  color: rgba(11, 18, 32, .88);
}

.footer__col a {
  display: block;
  padding: 6px 0;
  font-size: 12px;
  color: rgba(11, 18, 32, .62);
  transition: color .18s var(--ease), transform .18s var(--ease);
}

.footer__col a:hover {
  color: rgba(11, 18, 32, .92);
  transform: translateX(2px);
}

.footer__bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(11, 18, 32, .08);
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: rgba(11, 18, 32, .58);
  font-size: 12px;
}

.footer__bottomLinks {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__bottom a {
  color: rgba(11, 18, 32, .66);
}

.footer__bottom a:hover {
  color: rgba(11, 18, 32, .92);
}

@media (max-width: 980px) {
  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
  }

  .footer__ctaActions .btn {
    width: 100%;
  }
}

html[data-theme="dark"] .footer,
body[data-theme="dark"] .footer {
  background: rgba(0, 0, 0, .25);
  border-top-color: rgba(255, 255, 255, .06);
}

html[data-theme="dark"] .footer a:hover,
body[data-theme="dark"] .footer a:hover {
  color: rgba(255, 255, 255, .95);
}

html[data-theme="dark"] .footer__cta,
body[data-theme="dark"] .footer__cta {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .10);
  box-shadow: var(--shadow-md);
}

html[data-theme="dark"] .footer__tagline,
body[data-theme="dark"] .footer__tagline {
  color: rgba(255, 255, 255, .68);
}

html[data-theme="dark"] .footer__col h5,
body[data-theme="dark"] .footer__col h5 {
  color: rgba(255, 255, 255, .88);
}

html[data-theme="dark"] .footer__col a,
body[data-theme="dark"] .footer__col a {
  color: rgba(255, 255, 255, .62);
}

html[data-theme="dark"] .footer__bottom,
body[data-theme="dark"] .footer__bottom {
  color: rgba(255, 255, 255, .58);
}

html[data-theme="dark"] .footer__cta h4,
body[data-theme="dark"] .footer__cta h4 {
  color: rgba(255, 255, 255, .92);
}

html[data-theme="dark"] .footer__cta p,
body[data-theme="dark"] .footer__cta p {
  color: rgba(255, 255, 255, .70);
}

/* =========================================================
   9) Animations
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn {
    transition: none;
  }

  .heroMain__rotate::after {
    animation: none;
  }

  .heroMain__rotate--words .heroWord__inner {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Parallax helper */
.parallax {
  overflow: visible;
}

.parallax__inner {
  will-change: transform;
}


/* =========================================================
   PATCH — Restore AUTO dark-mode component overrides
   Why: the site uses html[data-theme="auto"] by default.
   Tokens already switch in OS-dark, but component-level dark
   overrides also need auto equivalents.
   ========================================================= */
@media (prefers-color-scheme: dark) {

  html[data-theme="auto"] ::selection,
  body[data-theme="auto"] ::selection {
    background: rgba(124, 92, 255, .30);
  }

  html[data-theme="auto"] .skip-link,
  body[data-theme="auto"] .skip-link {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12);
    color: rgba(255, 255, 255, .92);
  }

  /* Buttons */
  html[data-theme="auto"] .btn--primary,
  html[data-theme="auto"] .btn--brand,
  body[data-theme="auto"] .btn--primary,
  body[data-theme="auto"] .btn--brand {
    background: #ffffff;
    color: #070A10;
    border: 1px solid rgba(255, 255, 255, .92);
    box-shadow: none;
  }

  html[data-theme="auto"] .btn--outline,
  body[data-theme="auto"] .btn--outline {
    background: transparent;
    border-color: rgba(255, 255, 255, .85);
    color: rgba(255, 255, 255, .92);
  }

  html[data-theme="auto"] .btn--outline:hover,
  body[data-theme="auto"] .btn--outline:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, 1);
  }

  html[data-theme="auto"] .btn--ghost,
  body[data-theme="auto"] .btn--ghost {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .92);
  }

  html[data-theme="auto"] .btn--ghost:hover,
  body[data-theme="auto"] .btn--ghost:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .28);
  }

  /* Topbar + nav */
  html[data-theme="auto"] .topbar,
  body[data-theme="auto"] .topbar {
    background: rgba(7, 10, 16, .55);
    border-bottom-color: rgba(255, 255, 255, .06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .20);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  html[data-theme="auto"] .topbar.is-scrolled,
  body[data-theme="auto"] .topbar.is-scrolled {
    background: rgba(7, 10, 16, .72);
    border-bottom-color: rgba(255, 255, 255, .08);
    box-shadow: 0 16px 60px rgba(0, 0, 0, .45);
  }

  html[data-theme="auto"] .nav__link,
  body[data-theme="auto"] .nav__link {
    color: rgba(255, 255, 255, .78);
  }

  html[data-theme="auto"] .nav__link:hover,
  body[data-theme="auto"] .nav__link:hover {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .95);
  }

  html[data-theme="auto"] .topbar__textlink,
  body[data-theme="auto"] .topbar__textlink {
    color: rgba(255, 255, 255, .78);
  }

  html[data-theme="auto"] .topbar__textlink:hover,
  body[data-theme="auto"] .topbar__textlink:hover {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .95);
  }

  html[data-theme="auto"] .burger,
  body[data-theme="auto"] .burger {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .10);
  }

  html[data-theme="auto"] .burger>svg,
  body[data-theme="auto"] .burger>svg {
    color: rgba(255, 255, 255, .84);
  }

  html[data-theme="auto"] .nav-backdrop,
  body[data-theme="auto"] .nav-backdrop {
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  html[data-theme="auto"] .dd.dd--blume,
  body[data-theme="auto"] .dd.dd--blume {
    background: transparent;
    border-color: transparent;
  }

  html[data-theme="auto"] .mega,
  body[data-theme="auto"] .mega {
    background: rgba(10, 14, 24, .70);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: var(--shadow-lg);
    border-radius: 18px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
  }

  html[data-theme="auto"] .mega__title,
  body[data-theme="auto"] .mega__title {
    color: #14ddff;
    font-weight: 700;
    letter-spacing: .12em;
  }

  html[data-theme="auto"] .mega__link,
  body[data-theme="auto"] .mega__link {
    color: rgba(255, 255, 255, .86);
    border-radius: 12px;
  }

  html[data-theme="auto"] .mega__link:hover,
  body[data-theme="auto"] .mega__link:hover {
    background: rgba(255, 255, 255, .06);
  }

  html[data-theme="auto"] .mega__ico,
  body[data-theme="auto"] .mega__ico {
    color: rgba(255, 255, 255, .55);
  }

  html[data-theme="auto"] .mega__aside,
  body[data-theme="auto"] .mega__aside {
    border-left-color: rgba(255, 255, 255, .10);
  }

  html[data-theme="auto"] .mega__card,
  body[data-theme="auto"] .mega__card {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .08);
    box-shadow: var(--shadow-sm);
  }

  html[data-theme="auto"] .mega__cardName,
  body[data-theme="auto"] .mega__cardName {
    color: rgba(255, 255, 255, .92);
  }

  html[data-theme="auto"] .mega__cardSub,
  body[data-theme="auto"] .mega__cardSub {
    color: rgba(255, 255, 255, .62);
  }

  /* WHY cards/tiles */
  html[data-theme="auto"] .whyCard__media,
  body[data-theme="auto"] .whyCard__media {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .10);
  }

  html[data-theme="auto"] .whyCard__title,
  body[data-theme="auto"] .whyCard__title {
    color: rgba(255, 255, 255, .92);
  }

  html[data-theme="auto"] .whyCard__sub,
  body[data-theme="auto"] .whyCard__sub {
    color: rgba(255, 255, 255, .62);
  }

  html[data-theme="auto"] .whyTile,
  body[data-theme="auto"] .whyTile {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .10);
  }

  html[data-theme="auto"] .whyTile:hover,
  body[data-theme="auto"] .whyTile:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .14);
  }

  html[data-theme="auto"] .whyTile__pill,
  body[data-theme="auto"] .whyTile__pill {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .86);
  }

  html[data-theme="auto"] .whyTile__ico,
  body[data-theme="auto"] .whyTile__ico {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .86);
  }

  html[data-theme="auto"] .whyTile__h,
  body[data-theme="auto"] .whyTile__h {
    color: rgba(255, 255, 255, .92);
  }

  html[data-theme="auto"] .whyTile__p,
  body[data-theme="auto"] .whyTile__p {
    color: rgba(255, 255, 255, .62);
  }

  /* Hero overlay + text */
  html[data-theme="auto"] .heroMain__bgOverlay,
  body[data-theme="auto"] .heroMain__bgOverlay {
    background: linear-gradient(to bottom, rgba(11, 18, 32, .68), rgba(11, 18, 32, .58));
  }

  html[data-theme="auto"] .heroMain--video,
  body[data-theme="auto"] .heroMain--video {
    border-bottom-color: rgba(255, 255, 255, .06);
  }

  html[data-theme="auto"] .heroMain__title,
  body[data-theme="auto"] .heroMain__title {
    color: rgba(255, 255, 255, .95);
  }

  html[data-theme="auto"] .heroMain__kicker,
  body[data-theme="auto"] .heroMain__kicker {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .86);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  html[data-theme="auto"] .heroMain__sub,
  body[data-theme="auto"] .heroMain__sub {
    color: rgba(255, 255, 255, .78);
  }

  html[data-theme="auto"] .heroMain__fineprint,
  body[data-theme="auto"] .heroMain__fineprint {
    color: rgba(255, 255, 255, .62);
  }

  html[data-theme="auto"] .heroMain__rotate,
  body[data-theme="auto"] .heroMain__rotate {
    color: rgba(255, 255, 255, .88);
  }

  /* Section headings + components */
  html[data-theme="auto"] .eyebrow,
  body[data-theme="auto"] .eyebrow {
    color: rgba(255, 255, 255, .62);
    font-weight: 600;
  }

  html[data-theme="auto"] .sectionTitle,
  body[data-theme="auto"] .sectionTitle {
    color: rgba(255, 255, 255, .95);
  }

  html[data-theme="auto"] .sectionLead,
  body[data-theme="auto"] .sectionLead {
    color: rgba(255, 255, 255, .78);
  }

  html[data-theme="auto"] .checkList li,
  body[data-theme="auto"] .checkList li {
    color: rgba(255, 255, 255, .74);
  }

  html[data-theme="auto"] .mediaFrame,
  html[data-theme="auto"] .mockup__frame,
  html[data-theme="auto"] .stickyFrame,
  body[data-theme="auto"] .mediaFrame,
  body[data-theme="auto"] .mockup__frame,
  body[data-theme="auto"] .stickyFrame {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .09);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  html[data-theme="auto"] .stickyStep,
  body[data-theme="auto"] .stickyStep {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .10);
  }

  html[data-theme="auto"] .stickyStep h3,
  body[data-theme="auto"] .stickyStep h3 {
    color: rgba(255, 255, 255, .92);
  }

  html[data-theme="auto"] .stickyStep p,
  body[data-theme="auto"] .stickyStep p {
    color: rgba(255, 255, 255, .70);
  }

  html[data-theme="auto"] .railCard,
  body[data-theme="auto"] .railCard {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .10);
    box-shadow: var(--shadow-md);
  }

  html[data-theme="auto"] .callout,
  body[data-theme="auto"] .callout {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .10);
    box-shadow: var(--shadow-lg);
  }

  html[data-theme="auto"] .timeline__t,
  body[data-theme="auto"] .timeline__t {
    color: rgba(255, 255, 255, .92);
  }

  html[data-theme="auto"] .timeline__p,
  body[data-theme="auto"] .timeline__p {
    color: rgba(255, 255, 255, .70);
  }

  html[data-theme="auto"] .faqItem,
  body[data-theme="auto"] .faqItem {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  html[data-theme="auto"] .faqItem summary,
  body[data-theme="auto"] .faqItem summary {
    color: rgba(255, 255, 255, .92);
  }

  html[data-theme="auto"] .faqItem summary::after,
  body[data-theme="auto"] .faqItem summary::after {
    color: rgba(255, 255, 255, .60);
  }

  html[data-theme="auto"] .faqItem p,
  body[data-theme="auto"] .faqItem p {
    color: rgba(255, 255, 255, .72);
  }

  html[data-theme="auto"] .ctaBand,
  body[data-theme="auto"] .ctaBand {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .10);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
  }

  html[data-theme="auto"] .ctaBand__copy h3,
  body[data-theme="auto"] .ctaBand__copy h3 {
    color: rgba(255, 255, 255, .95);
  }

  html[data-theme="auto"] .final__panel,
  body[data-theme="auto"] .final__panel {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .10);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    border-radius: 22px;
  }

  html[data-theme="auto"] .final__panel h2,
  body[data-theme="auto"] .final__panel h2 {
    color: rgba(255, 255, 255, .95);
  }

  html[data-theme="auto"] .footer,
  body[data-theme="auto"] .footer {
    background: rgba(0, 0, 0, .25);
    border-top-color: rgba(255, 255, 255, .06);
  }

  html[data-theme="auto"] .footer a:hover,
  body[data-theme="auto"] .footer a:hover {
    color: rgba(255, 255, 255, .95);
  }

  html[data-theme="auto"] .footer__cta,
  body[data-theme="auto"] .footer__cta {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .10);
    box-shadow: var(--shadow-md);
  }

  html[data-theme="auto"] .footer__cta h4,
  body[data-theme="auto"] .footer__cta h4 {
    color: rgba(255, 255, 255, .92);
  }

  html[data-theme="auto"] .footer__cta p,
  body[data-theme="auto"] .footer__cta p {
    color: rgba(255, 255, 255, .70);
  }

  html[data-theme="auto"] .footer__tagline,
  body[data-theme="auto"] .footer__tagline {
    color: rgba(255, 255, 255, .68);
  }

  html[data-theme="auto"] .footer__col h5,
  body[data-theme="auto"] .footer__col h5 {
    color: rgba(255, 255, 255, .88);
  }

  html[data-theme="auto"] .footer__col a,
  body[data-theme="auto"] .footer__col a {
    color: rgba(255, 255, 255, .62);
  }

  html[data-theme="auto"] .footer__bottom,
  body[data-theme="auto"] .footer__bottom {
    color: rgba(255, 255, 255, .58);
  }
}

/* =========================================================
   PATCH — Mobile drawer in AUTO dark mode
   ========================================================= */
@media (prefers-color-scheme: dark) {

  html[data-theme="auto"] .drawer--blume .drawer__panel,
  body[data-theme="auto"] .drawer--blume .drawer__panel {
    background: rgba(10, 14, 24, .80);
    border-left-color: rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  html[data-theme="auto"] .drawer--blume .drawer__backdrop,
  body[data-theme="auto"] .drawer--blume .drawer__backdrop {
    background: rgba(0, 0, 0, .55);
  }

  html[data-theme="auto"] .drawer__row,
  html[data-theme="auto"] .drawer__link,
  html[data-theme="auto"] .drawer__topCta,
  body[data-theme="auto"] .drawer__row,
  body[data-theme="auto"] .drawer__link,
  body[data-theme="auto"] .drawer__topCta {
    color: rgba(255, 255, 255, .90);
    border-bottom-color: rgba(255, 255, 255, .10);
  }

  html[data-theme="auto"] .drawer__back,
  body[data-theme="auto"] .drawer__back {
    color: rgba(255, 255, 255, .70);
  }

  html[data-theme="auto"] .drawer__label,
  html[data-theme="auto"] .drawer__subhead,
  body[data-theme="auto"] .drawer__label,
  body[data-theme="auto"] .drawer__subhead {
    color: rgba(255, 255, 255, .62);
  }

  html[data-theme="auto"] .drawer__promo,
  body[data-theme="auto"] .drawer__promo {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .10);
    box-shadow: var(--shadow-sm);
  }

  html[data-theme="auto"] .drawer__promo strong,
  body[data-theme="auto"] .drawer__promo strong {
    color: rgba(255, 255, 255, .92);
  }

  html[data-theme="auto"] .drawer__promo span,
  body[data-theme="auto"] .drawer__promo span {
    color: rgba(255, 255, 255, .62);
  }

  html[data-theme="auto"] .drawer__tile,
  body[data-theme="auto"] .drawer__tile {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .08);
    border-radius: 18px;
  }

  html[data-theme="auto"] .drawer__tilePill,
  body[data-theme="auto"] .drawer__tilePill {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .86);
  }

  html[data-theme="auto"] .drawer__tileIcon,
  body[data-theme="auto"] .drawer__tileIcon {
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .86);
  }

  html[data-theme="auto"] .drawer__tileH,
  body[data-theme="auto"] .drawer__tileH {
    color: rgba(255, 255, 255, .92);
  }

  html[data-theme="auto"] .drawer__tileP,
  body[data-theme="auto"] .drawer__tileP {
    color: rgba(255, 255, 255, .62);
  }

  html[data-theme="auto"] .drawer__btn--primary,
  body[data-theme="auto"] .drawer__btn--primary {
    background: #fff;
    color: #070A10;
    border-color: rgba(255, 255, 255, .92);
  }

  html[data-theme="auto"] .drawer__btn--ghost,
  body[data-theme="auto"] .drawer__btn--ghost {
    background: transparent;
    color: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .85);
  }

  html[data-theme="auto"] .drawer__footer,
  body[data-theme="auto"] .drawer__footer {
    border-top-color: rgba(255, 255, 255, .10);
  }

  html[data-theme="auto"] .drawer__header,
  body[data-theme="auto"] .drawer__header {
    border-bottom-color: rgba(255, 255, 255, .10);
  }

  html[data-theme="auto"] .drawer__close,
  body[data-theme="auto"] .drawer__close {
    color: rgba(255, 255, 255, .75);
  }
}

.featureSplit__actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

/* =========================================================
   Migration — Shopify-like layout (tuned: smaller type, less vertical height,
   title matches your global sectionTitle styling)
========================================================= */
.migrationEasy {
  --migration-accent: #009de3;
  --migration-step-num-w: clamp(44px, 3.2vw, 64px);
  --migration-step-gap: clamp(12px, 1.6vw, 18px);
  margin-top: clamp(10px, 2vw, 18px);
}

/* Make heading behave like every other section (no oversized override) */
.migrationEasy__head {
  margin-bottom: 26px;
  /* matches .sectionHead default spacing */
}

.migrationEasy__head .sectionTitle {
  max-width: unset;
  font-size: unset;
  line-height: unset;
  letter-spacing: unset;
  font-weight: unset;
}

.migrationEasy__head .sectionLead {
  max-width: 68ch;
  /* match your global .sectionLead */
}

/* Reduce overall vertical footprint (both sides align) */
.migrationEasy__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.migrationEasy__visuals {
  position: relative;
  min-height: clamp(320px, 34vw, 520px);
}

.migrationEasy__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(320px, 34vw, 520px);
}

/* Panels (fade stays the same) */
.migrationEasy__panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .92fr);
  gap: clamp(12px, 1.8vw, 22px);
  align-items: start;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity .34s var(--ease),
    transform .34s var(--ease),
    visibility 0s linear .34s;
}

.migrationEasy__panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

/* Images: avoid “tall stretched” feel by reducing fixed heights */
.migrationEasy__card {
  overflow: hidden;
  border-radius: clamp(20px, 2.2vw, 28px);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.migrationEasy__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .55s var(--ease);
}

.migrationEasy__panel.is-active .migrationEasy__card img {
  transform: scale(1);
}

.migrationEasy__card--primary {
  align-self: start;
  height: clamp(260px, 28vw, 430px);
}

.migrationEasy__card--secondary {
  align-self: end;
  justify-self: end;
  width: 88%;
  height: clamp(220px, 24vw, 360px);
  margin-top: clamp(48px, 5vw, 86px);
}

/* Steps: make them ~half-size compared to current */
.migrationEasy__steps {
  width: 100%;
  display: grid;
}

.migrationEasy__step {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: var(--migration-step-num-w) minmax(0, 1fr);
  column-gap: var(--migration-step-gap);
  align-items: center;
  padding: clamp(12px, 1.2vw, 18px) 0;
  /* less vertical */
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  opacity: .78;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}

.migrationEasy__step::after {
  content: "";
  position: absolute;
  left: calc(var(--migration-step-num-w) + var(--migration-step-gap));
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
  opacity: 1;
  transition: background .2s var(--ease), opacity .2s var(--ease);
}

.migrationEasy__step:hover,
.migrationEasy__step:focus-visible,
.migrationEasy__step.is-active {
  opacity: 1;
  transform: translateX(6px);
}

.migrationEasy__step.is-active::after {
  background: #009de3;
}

.migrationEasy__num {
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1;
  letter-spacing: .06em;
  font-weight: 700;
  color: var(--migration-accent);
  padding-top: .10em;
}

.migrationEasy__title {
  display: block;
  font-size: clamp(18px, 2.0vw, 28px);
  /* ~half of the prior huge size */
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 650;
  color: var(--ink);
  text-wrap: balance;
}

.migrationEasy__text {
  display: block;
  /* show on desktop too (Shopify-style) */
  margin-top: 8px;
  max-width: 44ch;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-2);
}

.migrationEasy__actions {
  margin-top: 18px;
  padding-left: calc(var(--migration-step-num-w) + var(--migration-step-gap));
}

/* Responsive */
@media (max-width: 980px) {
  .migrationEasy__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .migrationEasy__visuals {
    min-height: clamp(300px, 64vw, 460px);
  }

  .migrationEasy__content {
    min-height: auto;
  }

  .migrationEasy__actions {
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  .migrationEasy__visuals {
    min-height: 320px;
  }

  .migrationEasy__panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, .86fr);
    gap: 12px;
  }

  .migrationEasy__card--primary {
    height: clamp(240px, 70vw, 380px);
  }

  .migrationEasy__card--secondary {
    width: 100%;
    height: clamp(210px, 58vw, 340px);
    margin-top: 38px;
  }

  .migrationEasy__step {
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: 12px;
    padding: 14px 0;
    opacity: 1;
    transform: none !important;
  }

  .migrationEasy__step::after {
    left: 52px;
  }

  .migrationEasy__num {
    font-size: 14px;
  }

  .migrationEasy__title {
    font-size: clamp(18px, 5.6vw, 26px);
  }

  .migrationEasy__text {
    font-size: 13px;
  }

  .migrationEasy__actions {
    margin-top: 18px;
  }

  .migrationEasy__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {

  .migrationEasy__panel,
  .migrationEasy__card img,
  .migrationEasy__step {
    transition: none !important;
  }
}

/* Migration steps: show descriptions + keep breathing room */
.migrationEasy__text {
  display: block;
}

.migrationEasy__steps {
  gap: 10px;
}

.migrationEasy__step {
  padding: 14px 0;
}

.migrationEasy__step::after {
  opacity: .55;
}

.pricingGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 18px
}

.priceCard {
  border: 1px solid rgba(11, 18, 32, .10);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.priceCard h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -.01em
}

.price {
  font-size: 38px;
  letter-spacing: -.03em;
  font-weight: 700;
  margin: 0
}

.price small {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted)
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  background: rgba(0, 157, 227, .10);
  border: 1px solid rgba(0, 157, 227, .18);
  color: rgba(0, 157, 227, 1);
  width: fit-content
}

.priceMeta {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5
}

.priceCard .btn {
  width: 100%
}

.note {
  font-size: 13px;
  color: var(--muted)
}

@media (max-width:980px) {
  .pricingGrid {
    grid-template-columns: 1fr
  }
}

@media (prefers-color-scheme:dark) {
  html[data-theme=auto] .priceCard {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .10)
  }
}

html[data-theme=dark] .priceCard {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .10)
}

/* Toggle */
.pricingSwitch {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px
}

.pricingToggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(11, 18, 32, .10);
  background: rgba(255, 255, 255, .70);
  border-radius: 999px;
  padding: 10px 12px;
  box-shadow: var(--shadow-sm)
}

.pricingToggle__label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: -.01em
}

.pricingToggle__label.is-active {
  color: var(--text);
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 30px;
  flex: 0 0 auto
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 18, 32, .15);
  transition: .2s;
  border-radius: 999px
}

.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  top: 3px;
  background: white;
  transition: .2s;
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(11, 18, 32, .18)
}

.switch input:checked+.slider {
  background: rgba(0, 157, 227, .35)
}

.switch input:checked+.slider:before {
  transform: translateX(22px)
}

.saveBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  background: rgba(16, 185, 129, .12);
  border: 1px solid rgba(16, 185, 129, .18);
  color: rgba(16, 185, 129, 1)
}

@media (prefers-color-scheme:dark) {
  html[data-theme=auto] .pricingToggle {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .10)
  }

  html[data-theme=auto] .slider:before {
    background: rgba(255, 255, 255, .92)
  }
}

html[data-theme=dark] .pricingToggle {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .10)
}

html[data-theme=dark] .slider:before {
  background: rgba(255, 255, 255, .92)
}

/* Manual dark mode */
html[data-theme="dark"] .footer__logoImg {
  content: url("/assets/img/logo/blume-logo-h-blue-white.svg");
}

/* Auto mode when OS is dark */
@media (prefers-color-scheme: dark) {
  html[data-theme="auto"] .footer__logoImg {
    content: url("/assets/img/logo/blume-logo-h-blue-white.svg");
  }
}