/* ==========================================================================
   Ambience Ireland — design system

   Light theme. The palette comes from the logo: teal → emerald.
   The previous dark theme is kept at design/dark-theme-reference.css.

   Accent values are darker here than their dark-theme counterparts because
   they now have to hold contrast against a light field rather than glow on
   black. Anything used for small text clears 4.5:1; large display text and
   decorative fills clear 3:1.
   ========================================================================== */

/* ---------------------------------------------------------------- tokens */

:root {
  /* The page field is a tinted off-white, never #FFF — flat white reads as an
     unstyled document. Cards are pure white so they lift off it. */
  --bg: #F4F9F7;
  --bg-2: #EDF4F1;
  --surface: #FFFFFF;
  --surface-2: #FFFFFF;
  --surface-3: #F2F8F5;
  --surface-4: #E8F1ED;

  /* Deep teal-black rather than neutral grey — keeps the brand hue in the
     type instead of letting the page drift to greyscale. */
  --ink: #072320;

  --line: rgba(7, 35, 32, 0.09);
  --line-2: rgba(7, 35, 32, 0.15);
  --line-3: rgba(7, 35, 32, 0.26);

  --text: #072320;
  --text-2: #47615C;
  --text-3: #5A716C;

  /* brand */
  --teal: #0C8F84;
  --teal-deep: #0A6E66;
  --green: #2AA757;
  --green-deep: #16804B;

  /* Decorative fills and icons — 3:1+, not for small text. */
  --grad: linear-gradient(115deg, #0C8F84 0%, #189A6E 52%, #2AA757 100%);
  /* Buttons and any surface carrying white text — deep enough for 4.5:1. */
  --grad-solid: linear-gradient(115deg, #0A7A72 0%, #127C5C 55%, #16804B 100%);
  /* Large display headings only. */
  --grad-text: linear-gradient(115deg, #0B8078 0%, #249142 100%);
  --grad-soft: linear-gradient(115deg, rgba(12, 143, 132, 0.10) 0%, rgba(42, 167, 87, 0.10) 100%);

  /* Contrast accent. Teal/emerald alone reads duotone; amber sits opposite it
     on the wheel, carries warmth, and gives the page a second voice for
     highlights without competing for the primary CTA. */
  --warm: #9A5A0B;            /* small text and labels — 5.1:1 on the field */
  --warm-fill: #E7A54A;       /* chips and flags, always with ink text on top */
  --warm-bright: #F0B968;     /* amber on the dark bands — 8.1:1 */
  --warm-soft: rgba(231, 165, 74, 0.15);
  --warm-tint: #FBF4E9;       /* warm band background */

  --glow-teal: rgba(12, 143, 132, 0.22);
  --glow-green: rgba(42, 167, 87, 0.18);

  /* Scroll progress, 0 → 1, written by main.js. Drives the aurora field so the
     background genuinely shifts down the page instead of sitting still. */
  --sy: 0;

  --amber: #8A5D0A;

  /* type */
  --font-display: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* geometry */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --container: 1400px;
  --gutter: clamp(20px, 5vw, 40px);

  /* Light themes carry hierarchy on shadow where dark themes carry it on
     borders. Two-part shadows — a tight contact shadow plus a wide soft one —
     read as real depth instead of a grey halo. */
  --shadow-sm: 0 1px 2px rgba(7, 35, 32, 0.06), 0 1px 3px rgba(7, 35, 32, 0.05);
  --shadow-md: 0 2px 4px rgba(7, 35, 32, 0.04), 0 10px 24px -6px rgba(7, 35, 32, 0.10);
  --shadow-lg: 0 4px 10px rgba(7, 35, 32, 0.05), 0 30px 60px -18px rgba(7, 35, 32, 0.18);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --header-h: 96px;
}

/* ------------------------------------------------------------------ reset */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.026em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

::selection { background: #B4E7DA; color: #062018; }
/* The dark bands need the inverse, or selected text goes dark-on-dark. */
.compare ::selection,
.ctaband ::selection,
.footer ::selection,
.console ::selection { background: rgba(79, 199, 184, 0.34); color: #F2FBF8; }

:focus-visible {
  outline: 2px solid var(--teal-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translate(-50%, -180%);
  z-index: 200;
  background: #FFFFFF;
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow-md);
  padding: 10px 18px;
  border-radius: var(--r-pill);
  transition: transform 0.2s var(--ease);
}
.skip:focus { transform: translate(-50%, 0); }

/* --------------------------------------------------------- background fx */

.fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  /* Promote once and isolate: this layer never affects document layout, and
     keeping it off the main paint path matters on low-end laptops. */
  contain: strict;
  transform: translateZ(0);
}

/* Tinted paper. Warmer and slightly deeper toward the bottom so a long page
   never reads as one flat sheet. */
.fx__base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(150% 78% at 50% -18%, rgba(12, 143, 132, 0.13), transparent 60%),
    linear-gradient(180deg, #FBFEFC 0%, var(--bg) 38%, #E9F2EE 100%);
}

/* Wide, very soft key light spilling from the top edge. */
.fx__beam {
  position: absolute;
  top: -32vh; left: 50%;
  width: 140vw; height: 76vh;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(24, 154, 140, 0.16), transparent 64%);
  filter: blur(56px);
  /* Fades out as you scroll away from the hero. */
  opacity: calc(1 - var(--sy) * 1.6);
}

/* On light these are washes, not glows: low alpha, wide blur, and three
   related hues so the mesh has depth without turning into a tie-dye. */
.fx__aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.95;
  will-change: transform, translate;
}

/* `translate` is a separate property from `transform`, so the scroll offset
   below composes with the drift animations instead of fighting them. */
.fx__aurora--a {
  width: 52vw; height: 52vw;
  min-width: 460px; min-height: 460px;
  top: -16vw; left: -10vw;
  background: radial-gradient(circle, rgba(24, 168, 154, 0.22), transparent 68%);
  animation: drift-a 26s var(--ease) infinite alternate;
  translate: calc(var(--sy) * 26vw) calc(var(--sy) * 42vh);
}
.fx__aurora--b {
  width: 46vw; height: 46vw;
  min-width: 400px; min-height: 400px;
  top: 4vw; right: -14vw;
  background: radial-gradient(circle, rgba(74, 186, 108, 0.20), transparent 68%);
  animation: drift-b 32s var(--ease) infinite alternate;
  translate: calc(var(--sy) * -30vw) calc(var(--sy) * 55vh);
}
/* Starts below the fold and rises into view as you scroll — this is what keeps
   the lower half of the page from going flat. A cooler cyan than the other two,
   which is what stops the mesh reading as a single green smear. */
.fx__aurora--c {
  width: 62vw; height: 48vw;
  top: 88vh; left: 22vw;
  background: radial-gradient(circle, rgba(86, 166, 200, 0.20), transparent 70%);
  animation: drift-c 38s var(--ease) infinite alternate;
  translate: calc(var(--sy) * -18vw) calc(var(--sy) * -118vh);
}
/* A fourth field that only arrives near the bottom, so the footer end of the
   page has its own colour rather than fading to nothing. */
.fx__aurora--d {
  width: 58vw; height: 44vw;
  top: 150vh; right: -8vw;
  background: radial-gradient(circle, rgba(42, 167, 87, 0.18), transparent 70%);
  animation: drift-b 44s var(--ease) infinite alternate;
  translate: calc(var(--sy) * -6vw) calc(var(--sy) * -172vh);
}

@keyframes drift-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(8vw, 6vw, 0) scale(1.15); }
}
@keyframes drift-b {
  from { transform: translate3d(0, 0, 0) scale(1.1); }
  to   { transform: translate3d(-7vw, 9vw, 0) scale(0.92); }
}
@keyframes drift-c {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-10vw, -4vw, 0) scale(1.12); }
}

/* Settles the outer edges a touch so the centre still reads brightest. Far
   gentler than the dark theme's — a heavy vignette on light looks like a
   photocopy. */
.fx__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 82% 72% at 50% 44%, transparent 48%, rgba(7, 35, 32, 0.07) 100%);
}

/* Grain reads as dirt on a light page — barely there, just enough to stop the
   large gradient areas banding. */
.fx__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ------------------------------------------------------------- primitives */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

main { position: relative; z-index: 1; }

.section { padding-block: clamp(48px, 6vw, 84px); position: relative; }
.section--tight { padding-block: clamp(36px, 4.2vw, 58px); }

/* Section-level ambience. These scroll WITH the content, unlike the fixed
   aurora field, so each band gets its own lighting as it comes into view.
   --lit-x / --lit-y place the source; set them inline per section. */
.section--lit::before {
  content: '';
  position: absolute;
  inset: -8% -14%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    46% 52% at var(--lit-x, 18%) var(--lit-y, 42%),
    rgba(12, 143, 132, 0.10),
    transparent 68%
  );
}
.section--lit-green::before {
  background: radial-gradient(
    46% 52% at var(--lit-x, 82%) var(--lit-y, 46%),
    rgba(42, 167, 87, 0.09),
    transparent 68%
  );
}

/* A hairline seam with a soft bloom, used to separate major bands. Far more
   composed than dropping a flat 1px border between sections. */
.section--seam::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2) 22%, var(--line-2) 78%, transparent);
}
.section--seam::before {
  content: '';
  position: absolute;
  left: 50%; bottom: -60px;
  width: min(760px, 76vw); height: 120px;
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(12, 143, 132, 0.12), transparent 70%);
  filter: blur(26px);
}

.section__head { max-width: 760px; margin-bottom: clamp(28px, 3.2vw, 44px); }
.section__head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 12px;
  border-radius: var(--r-pill);
  background: rgba(12, 143, 132, 0.08);
  border: 1px solid rgba(12, 143, 132, 0.18);
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}

h1, .h1 { font-size: clamp(2.35rem, 4.5vw, 3.6rem); }
h2, .h2 { font-size: clamp(1.95rem, 3.9vw, 3rem); }
h3, .h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); letter-spacing: -0.018em; }

.lede {
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  color: var(--text-2);
  line-height: 1.65;
  margin-top: 20px;
  max-width: 60ch;
}
.section__head--center .lede { margin-inline: auto; }

/* Uses the darker display gradient so clipped text still clears 3:1. */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}
.pill__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(42, 167, 87, 0.20);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(42, 167, 87, 0.20); }
  50%      { box-shadow: 0 0 0 7px rgba(42, 167, 87, 0); }
}

/* ---------------------------------------------------------------- buttons */

.btn {
  --btn-py: 13px;
  --btn-px: 24px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: var(--btn-py) var(--btn-px);
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 550;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.22s var(--ease-out), box-shadow 0.28s var(--ease-out),
              background-color 0.22s var(--ease), border-color 0.22s var(--ease);
}
.btn--sm { --btn-py: 9px; --btn-px: 17px; font-size: 14px; }
.btn--lg { --btn-py: 16px; --btn-px: 30px; font-size: 16px; }
.btn--block { width: 100%; }

/* Deep gradient + white text: 4.6:1 at the lightest end of the ramp. */
.btn--primary {
  background: var(--grad-solid);
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(7, 35, 32, 0.10), 0 8px 20px -8px rgba(10, 122, 114, 0.55);
}
/* Sheen sweeps across on hover. */
.btn--primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.30) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease-out);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(7, 35, 32, 0.10), 0 16px 30px -10px rgba(10, 122, 114, 0.55);
}
.btn--primary:hover::after { transform: translateX(130%); }

/* White card-style secondary, so it reads as a real control on a light field
   rather than a faint outline. */
.btn--ghost {
  background: #FFFFFF;
  border-color: var(--line-2);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover {
  border-color: var(--line-3);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}


.btn:active { transform: translateY(0) scale(0.985); }

.btn__arrow { transition: transform 0.25s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ----------------------------------------------------------------- header */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease),
              backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: rgba(252, 254, 253, 0.78);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: var(--line);
}

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__mark { width: 46px; display: block; flex-shrink: 0; }
.brand__mark img { width: 100%; height: auto; display: block; }

/* The SVG's animated soundlines are gone now the registered artwork is a
   raster, so the hover cue is a light lift on the mark instead. */
.brand__mark img { transition: transform 0.4s var(--ease-out); }
.brand:hover .brand__mark img { transform: scale(1.06); }

.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__word strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.026em;
  color: var(--text);
}
.brand__word em {
  font-style: normal;
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-top: 3px;
}

/*
 * Footer carries the full registered lockup rather than mark + type. The
 * lockup's wordmark is dark teal, which all but disappears on the dark footer —
 * so it sits on a frosted glass plate. Translucent rather than solid white, so
 * the footer's gradient still reads through and it looks placed rather than
 * pasted on.
 */
.brandlockup {
  display: inline-block;
  width: clamp(158px, 15vw, 196px);
  padding: 20px 24px;
  border-radius: var(--r-lg);
  background:
    linear-gradient(152deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.80) 100%);
  backdrop-filter: blur(16px) saturate(165%);
  -webkit-backdrop-filter: blur(16px) saturate(165%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 2px 6px rgba(0, 0, 0, 0.22),
    0 16px 40px -16px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.brandlockup:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 4px 10px rgba(0, 0, 0, 0.24),
    0 24px 52px -18px rgba(0, 0, 0, 0.55);
}
.brandlockup img { width: 100%; height: auto; display: block; }

@media (prefers-reduced-motion: reduce) {
  .brandlockup:hover { transform: none; }
}

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__link {
  position: relative;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.008em;
  color: var(--text-2);
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.nav__link:hover { color: var(--text); background: rgba(7, 35, 32, 0.05); }

/*
 * Active nav item gets a frosted-glass pill: a translucent fill, a blurred
 * backdrop, a light top border catching the "light" and a soft inner highlight.
 * Reads as a real surface rather than a flat swatch.
 */
.nav__link.is-active,
.nav__link.is-pressed {
  color: var(--text);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.45));
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 1px 2px rgba(7, 35, 32, 0.07),
    0 6px 18px -8px rgba(12, 143, 132, 0.35);
  padding: 9px 17px;
}
.nav__link.is-active::after {
  content: '';
  position: absolute;
  left: 30%; right: 30%; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}
/* Momentary press feedback on click. */
.nav__link:active { transform: scale(0.97); }

.header__actions { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  padding: 0;
  place-items: center;
  align-content: center;
  justify-items: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 17px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease);
}
.burger[aria-expanded='true'] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.burger[aria-expanded='true'] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.mobilenav {
  padding: 8px var(--gutter) 28px;
  background: rgba(252, 254, 253, 0.97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  animation: menu-in 0.32s var(--ease-out);
}
@keyframes menu-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: none; }
}
.mobilenav nav { display: flex; flex-direction: column; }
.mobilenav nav a {
  padding: 15px 4px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
.mobilenav__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }

/* ------------------------------------------------------------------- hero */

.hero { padding-block: clamp(34px, 4.5vw, 62px) clamp(44px, 5.5vw, 74px); }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.hero h1 { margin-top: 6px; }
.hero .lede { margin-top: 24px; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--text-3);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero__trust svg { width: 15px; height: 15px; color: var(--green-deep); flex-shrink: 0; }

/* ------------------------------------------------------- hero app console */

/*
 * The console stays DARK on the light page. It mirrors the real app UI (teal on
 * near-black) and gives the hero a single high-contrast focal point — the same
 * reason product screenshots are shown dark on light marketing pages.
 * It redefines the ink tokens locally, so everything nested inside inherits
 * dark-appropriate colours without a second set of class names.
 */
.console {
  --surface: #0D181B;
  --surface-2: #112125;
  --line: rgba(190, 240, 228, 0.10);
  --line-2: rgba(190, 240, 228, 0.19);
  --text: #E9F2F0;
  --text-2: #9DB3B0;
  --text-3: #7F9793;
  --teal: #19B8AE;
  --green: #4ED16A;
  --grad: linear-gradient(115deg, #19B8AE 0%, #2FC28C 52%, #4ED16A 100%);
  --grad-soft: linear-gradient(115deg, rgba(25, 184, 174, 0.18) 0%, rgba(78, 209, 106, 0.18) 100%);

  position: relative;
  border-radius: var(--r-xl);
  color: var(--text);
  background:
    linear-gradient(160deg, rgba(25, 184, 174, 0.12), transparent 42%),
    #0D181B;
  border: 1px solid rgba(190, 240, 228, 0.12);
  box-shadow:
    0 2px 6px rgba(7, 35, 32, 0.10),
    0 40px 80px -24px rgba(7, 35, 32, 0.42);
  /* Extra bottom padding leaves dead space for the floating stat card to
     overlap without covering the footer row. */
  padding: 18px 18px 46px;
  animation: float-console 9s ease-in-out infinite;
}
@keyframes float-console {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

/* Halo behind the console. */
.console::before {
  content: '';
  position: absolute;
  inset: -30% -18% -22%;
  z-index: -1;
  background: radial-gradient(ellipse at 55% 40%, rgba(12, 143, 132, 0.30), transparent 62%);
  filter: blur(40px);
  opacity: 0.8;
}

.console__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 4px 16px;
}
.console__dots { display: flex; gap: 5px; }
.console__dots i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line-2);
}
.console__title {
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.05em;
  color: var(--text-3);
  text-transform: uppercase;
}
.console__badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(78, 209, 106, 0.14);
  border: 1px solid rgba(78, 209, 106, 0.32);
  color: var(--green);
  font-size: 11.5px;
  font-weight: 600;
}
.console__badge svg { width: 12px; height: 12px; }

/* venue chips */
.console__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.chip {
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-3);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.24s var(--ease);
}
.chip:hover { color: var(--text-2); border-color: var(--line-2); }
.chip.is-active {
  background: var(--grad-soft);
  border-color: rgba(78, 209, 106, 0.4);
  color: var(--text);
}

/* now playing */
.player { display: grid; grid-template-columns: 92px 1fr; gap: 16px; align-items: center; }

.player__art {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--grad);
  display: grid;
  place-items: center;
  transition: background 0.7s var(--ease);
}
.player__art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.42));
}

/* live equaliser */
.eq { display: flex; align-items: flex-end; gap: 3.5px; height: 40px; position: relative; z-index: 1; }
.eq i {
  width: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  height: 20%;
  animation: eq-bounce 1.05s ease-in-out infinite alternate;
}
.eq i:nth-child(1) { animation-delay: 0s;     height: 35%; }
.eq i:nth-child(2) { animation-delay: 0.16s;  height: 62%; }
.eq i:nth-child(3) { animation-delay: 0.32s;  height: 88%; }
.eq i:nth-child(4) { animation-delay: 0.1s;   height: 50%; }
.eq i:nth-child(5) { animation-delay: 0.42s;  height: 72%; }
@keyframes eq-bounce {
  from { transform: scaleY(0.32); }
  to   { transform: scaleY(1); }
}
.eq i { transform-origin: bottom; }

.player__meta { min-width: 0; }
.player__track {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.player__artist { font-size: 13px; color: var(--text-3); margin-top: 3px; }

.player__meta.is-swapping .player__track,
.player__meta.is-swapping .player__artist {
  opacity: 0;
  transform: translateY(6px);
}
.player__track, .player__artist {
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}

.player__progress {
  height: 3px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.09);
  margin-top: 14px;
  overflow: hidden;
}
.player__progress i {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: var(--grad);
  animation: progress 9s linear infinite;
}
@keyframes progress {
  from { width: 4%; }
  to   { width: 100%; }
}

.console__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--text-3);
}
.console__foot strong { color: var(--text-2); font-weight: 550; }

/* Floating stat card — hangs off the console's bottom-left corner, clear of
   the artwork so nothing overlaps the now-playing row. */
.console__float {
  position: absolute;
  left: -30px;
  bottom: -26px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 18px;
  border-radius: var(--r-md);
  background: rgba(13, 24, 27, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(190, 240, 228, 0.16);
  box-shadow: 0 12px 30px -10px rgba(7, 35, 32, 0.45);
  animation: float-chip 7s ease-in-out infinite;
}
@keyframes float-chip {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(9px); }
}
.console__float b {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.console__float span {
  font-size: 11.5px;
  color: var(--text-3);
  line-height: 1.4;
  display: block;
  white-space: nowrap;
}

/* ----------------------------------------------------------- trust strip */

.strip {
  border-block: 1px solid var(--line);
  padding-block: 22px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
}
.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.marquee__row {
  display: flex;
  flex-shrink: 0;
  gap: 48px;
  padding-right: 48px;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__row { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
  white-space: nowrap;
}
.marquee__item svg { width: 16px; height: 16px; color: var(--teal-deep); }

/* ------------------------------------------------------------------ cards */

.cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  position: relative;
  padding: 30px 28px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease-out);
}
/* Cursor-tracked spotlight — --mx/--my are written by main.js. */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%),
              rgba(12, 143, 132, 0.07), transparent 62%);
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--shadow-md); }
.card:hover::before { opacity: 1; }

/* The featured card is already signalled by its tint, teal border, deeper
   shadow, gradient CTA and the flag. A top accent bar on top of all that was
   just noise — and with the flag straddling the edge it had nowhere to sit. */

.card__icon {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid rgba(12, 143, 132, 0.20);
  margin-bottom: 20px;
  color: var(--teal-deep);
}
.card__icon svg { width: 20px; height: 20px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-2); font-size: 15px; }


/* resolution callout under the problem cards */
.callout {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 30px;
  border-radius: var(--r-lg);
  background: linear-gradient(115deg, rgba(12, 143, 132, 0.09), rgba(42, 167, 87, 0.09));
  border: 1px solid rgba(12, 143, 132, 0.22);
}
.callout__mark {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-solid);
  color: #FFFFFF;
}
.callout__mark svg { width: 19px; height: 19px; }
.callout p { color: var(--text); font-size: 15.5px; }
.callout p strong { font-weight: 600; }

/* ------------------------------------------------------------------ steps */

.steps { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); position: relative; }

.step { position: relative; padding: 30px 26px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); overflow: hidden; }
.step__index {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--warm);
  opacity: 0.92;
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 9px; }
.step p { color: var(--text-2); font-size: 14.5px; }

/* ----------------------------------------------------------- venue tabs */

.venues__layout {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: stretch;
}

.venuetabs { display: flex; flex-direction: column; gap: 5px; }
.venuetab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--text-3);
  font-size: 15px;
  font-weight: 500;
  transition: all 0.26s var(--ease);
}
.venuetab svg { width: 19px; height: 19px; flex-shrink: 0; opacity: 0.7; }
.venuetab:hover { color: var(--text-2); background: rgba(7, 35, 32, 0.045); }
.venuetab.is-active {
  color: var(--text);
  background: var(--surface);
  border-color: var(--line-2);
  box-shadow: var(--shadow-sm);
}
.venuetab.is-active svg { color: var(--teal); opacity: 1; }
.venuetab.is-active::before {
  content: '';
  position: absolute;
  left: 0; top: 22%; bottom: 22%;
  width: 2.5px;
  border-radius: 2px;
  background: var(--grad);
}

.venuepanel {
  position: relative;
  padding: clamp(28px, 3.4vw, 44px);
  border-radius: var(--r-lg);
  background:
    linear-gradient(150deg, rgba(12, 143, 132, 0.055), transparent 46%),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-height: 320px;
}
.venuepanel__body > * { animation: panel-in 0.5s var(--ease-out) backwards; }
.venuepanel__body > *:nth-child(2) { animation-delay: 0.05s; }
.venuepanel__body > *:nth-child(3) { animation-delay: 0.1s; }
.venuepanel__body > *:nth-child(4) { animation-delay: 0.15s; }
@keyframes panel-in {
  from { opacity: 0; transform: translateY(14px); filter: blur(4px); }
  to   { opacity: 1; transform: none; filter: none; }
}

.venuepanel h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
.venuepanel__mood {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.venuepanel p { color: var(--text-2); margin-top: 14px; max-width: 52ch; }

.venuepanel__catlabel {
  margin-top: 26px;
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.venuepanel__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag {
  padding: 7px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  background: var(--surface-3);
  font-size: 13px;
  color: var(--text-2);
}

/* ambient wave in the venue panel corner */
.venuepanel__wave {
  position: absolute;
  right: -10px; bottom: -6px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 90px;
  opacity: 0.42;
  pointer-events: none;
}
.venuepanel__wave i {
  width: 5px;
  border-radius: 3px 3px 0 0;
  background: var(--grad);
  animation: wave-bounce 1.6s ease-in-out infinite alternate;
  transform-origin: bottom;
}

@keyframes wave-bounce {
  from { transform: scaleY(0.25); }
  to   { transform: scaleY(1); }
}

/* -------------------------------------------------------------- vibe set */

/*
 * A fixed row of slots that swaps its whole set at once, rather than a marquee.
 * A marquee has to repeat its content to fill the viewport; with a pool this
 * size that means visible duplicates. Swapping sets in place avoids that
 * entirely and keeps the covers at a readable size.
 */
.vibeset {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.vibeslot {
  position: relative;
  margin: 0;
  /* Source crops range 0.71–0.93; the slot fixes one ratio and object-fit
     absorbs the difference, so the image files stay untouched. */
  aspect-ratio: 3 / 4;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-4);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

/*
 * Two stacked layers so the swap is a real crossfade — the incoming cover
 * resolves through the outgoing one, rather than the old fading out to an
 * empty slot and the new fading back in. A slow ease-in-out on opacity alone
 * is what reads as a natural dissolve; translate and scale made it feel
 * mechanical, so they're gone.
 */
.vibeslot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 1150ms cubic-bezier(0.37, 0, 0.34, 1);
}
/* The waiting layer. No .js gate, so the single static image is visible
   from first paint whether or not the script ever runs. */
.vibeslot img.is-back { opacity: 0; }

.vibeset:hover .vibeslot:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1000px) {
  .vibeset { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .vibeslot:nth-child(5) { display: none; }
}
@media (max-width: 760px) {
  .vibeset { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vibeslot:nth-child(4) { display: none; }
}
@media (max-width: 520px) {
  .vibeset { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vibeslot:nth-child(3) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  /* No rotation at all — the first set simply stays put. */
  .vibeslot img { transition: none; }
}

/* ------------------------------------------------------------------ plans */

.plans { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(272px, 1fr)); align-items: stretch; }

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  /* No overflow clipping here — .plan__flag deliberately straddles the top
     edge, and hiding overflow cuts it in half. */
  transition: transform 0.35s var(--ease-out), border-color 0.3s var(--ease),
              box-shadow 0.35s var(--ease-out);
}
.plan:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--shadow-md); }

.plan--featured {
  background:
    linear-gradient(165deg, rgba(12, 143, 132, 0.07), transparent 44%),
    var(--surface);
  border-color: rgba(12, 143, 132, 0.30);
  box-shadow: 0 4px 10px rgba(7, 35, 32, 0.05), 0 24px 50px -16px rgba(10, 122, 114, 0.28);
}
/* Straddles the card's top edge. The ring in the page background colour cuts a
   clean gap through the card border so the pill reads as sitting on top of it
   rather than merging into it. */
.plan__flag {
  position: absolute;
  top: -12px; left: 28px;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  background: var(--warm-fill);
  box-shadow: 0 0 0 4px var(--bg), 0 2px 8px -1px rgba(154, 90, 11, 0.42);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan__name { font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.plan__size { font-size: 13.5px; color: var(--text-3); margin-top: 4px; }

.plan__price { display: flex; align-items: baseline; gap: 4px; margin-top: 22px; }
.plan__cur { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--text-2); }
.plan__amt {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.plan__per { font-size: 14px; color: var(--text-3); margin-left: 2px; }

.plan__was {
  margin-top: 9px;
  font-size: 13.5px;
  color: var(--text-3);
}
.plan__was s { opacity: 0.75; }
.plan__save {
  display: inline-block;
  margin-left: 7px;
  padding: 2px 9px;
  border-radius: var(--r-pill);
  background: rgba(22, 128, 75, 0.10);
  border: 1px solid rgba(22, 128, 75, 0.24);
  color: var(--green-deep);
  font-size: 11.5px;
  font-weight: 600;
}

.plan .btn { margin-top: 24px; }
/* A white ghost button on a white card has nothing to separate it from the
   card, so inside a plan it takes a tinted fill instead. */
.plan .btn--ghost {
  background: var(--surface-3);
  box-shadow: none;
}
.plan .btn--ghost:hover {
  background: var(--surface-4);
  box-shadow: none;
}

.plan__list { list-style: none; margin: 24px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); display: grid; gap: 11px; }
.plan__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text-2); }
.plan__list svg { width: 16px; height: 16px; color: var(--green-deep); flex-shrink: 0; margin-top: 3px; }

/* billing toggle */
.billing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
  margin-top: 28px;
}
.billing button {
  position: relative;
  z-index: 1;
  padding: 8px 20px;
  border: 0;
  border-radius: var(--r-pill);
  background: transparent;
  color: var(--text-3);
  font-size: 14px;
  font-weight: 550;
  cursor: pointer;
  transition: color 0.25s var(--ease);
}
.billing button.is-active { color: #FFFFFF; }
.billing__thumb {
  position: absolute;
  border-radius: var(--r-pill);
  background: var(--grad-solid);
  transition: transform 0.38s var(--ease-out), width 0.38s var(--ease-out);
}
.billing { position: relative; }

.vatline { margin-top: 14px; font-size: 13.5px; color: var(--text-3); }
.vatline strong { color: var(--text-2); font-weight: 600; }

/* Monthly equivalent under a yearly price — the number a buyer actually
   compares against their current spend. */
.plan__equiv {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal-deep);
}

/* Multi-premises router under the homepage plans. */
.morepricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 32px;
  margin-top: 22px;
  padding: 26px 30px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.morepricing h3 { font-size: 17px; margin-bottom: 6px; }
.morepricing p { color: var(--text-2); font-size: 14.5px; max-width: 62ch; }
.morepricing .btn { flex-shrink: 0; }

/* ------------------------------------------------------ comparison table */

/*
 * A dark band. The positioning argument deserves the most authoritative
 * surface on the page, and it breaks up a long run of white sections.
 */
.compare {
  --text: #EAF4F1;
  --text-2: #A9C4BE;
  --text-3: #8AA8A2;
  --line: rgba(190, 240, 228, 0.12);
  --line-2: rgba(190, 240, 228, 0.22);

  color: var(--text);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(ellipse 80% 100% at 12% 0%, rgba(16, 122, 112, 0.34), transparent 60%),
    linear-gradient(150deg, #0A2F2B 0%, #07211F 55%, #061A1E 100%);
  border: 1px solid rgba(190, 240, 228, 0.12);
  box-shadow: 0 4px 12px rgba(7, 35, 32, 0.10), 0 34px 70px -26px rgba(7, 35, 32, 0.42);
  overflow: hidden;
}
.compare .eyebrow {
  background: rgba(240, 185, 104, 0.14);
  border-color: rgba(240, 185, 104, 0.3);
  color: var(--warm-bright);
}
.compare .eyebrow::before { background: var(--warm-bright); }
.compare > h2 { margin-bottom: 10px; }
.compare > p { color: var(--text-2); max-width: 60ch; margin-bottom: 30px; }

.comparewrap { overflow-x: auto; }

.comparetable {
  width: 100%;
  min-width: 640px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15.5px;
}
.comparetable th, .comparetable td {
  padding: 17px 20px;
  text-align: left;
  vertical-align: middle;
}
.comparetable thead th {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
  padding-bottom: 14px;
}

/* The column that's meant to win is built as a raised panel, not just a
   differently-coloured cell — it reads as the answer before anything is read. */
.comparetable thead th:last-child {
  color: #0C1F1C;
  background: linear-gradient(160deg, #7BE3C6, #5FD9A8);
  border-radius: 14px 14px 0 0;
  text-align: center;
}
.comparetable tbody td:last-child {
  background: rgba(123, 227, 198, 0.10);
  color: #DCF6EE;
  font-weight: 550;
  text-align: center;
}
.comparetable tbody tr:last-child td:last-child { border-radius: 0 0 14px 14px; }

.comparetable td:first-child {
  color: var(--text);
  font-weight: 550;
  width: 36%;
}
.comparetable td:nth-child(2) { color: var(--text-3); width: 30%; }
.comparetable tbody tr td { border-top: 1px solid rgba(190, 240, 228, 0.09); }
.comparetable tbody tr:first-child td { border-top: 0; }
.comparetable tbody tr td:last-child { border-top-color: rgba(123, 227, 198, 0.16); }

.mark { display: inline-flex; align-items: center; gap: 9px; }
.comparetable td:last-child .mark { justify-content: center; }
.mark svg { width: 19px; height: 19px; flex-shrink: 0; }
/* Light, because the winner column's BODY cells are dark-tinted. The dark
   green here previously came out at 1.06:1 — invisible. Header ticks are a
   separate case: they sit on the bright gradient and stay dark. */
.mark--yes { color: #8BEDD0; font-weight: 650; }
.mark--no { color: #C69A94; }

.compare__note { margin-top: 20px; font-size: 13px; color: var(--text-3); }

/* ------------------------------------------------------------- calculator */

.calc {
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: clamp(26px, 3.6vw, 46px);
}

.calcstep + .calcstep {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
/* Later steps stay out of the way until the previous one is answered. */
.calcstep[hidden] { display: none; }

.calcstep__q {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.016em;
  margin-bottom: 16px;
}
.calcstep__n {
  display: grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--warm-soft);
  color: var(--warm);
  font-size: 12.5px;
  font-weight: 700;
  flex-shrink: 0;
}

.calcopts { display: flex; flex-wrap: wrap; gap: 10px; }

.calcopt {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--line-2);
  background: var(--surface);
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.24s var(--ease);
}
.calcopt:hover { border-color: var(--teal); color: var(--teal-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.calcopt.is-picked {
  background: var(--grad-solid);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 6px 16px -6px rgba(10, 122, 114, 0.55);
}


.calcresult {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px 30px;
  margin-top: 26px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--r-lg);
  background:
    radial-gradient(ellipse 80% 120% at 8% 0%, rgba(12, 143, 132, 0.10), transparent 62%),
    var(--surface-3);
  border: 1px solid rgba(12, 143, 132, 0.22);
  animation: panel-in 0.45s var(--ease-out);
}
.calcresult__label {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.calcresult__plan {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.calcresult__plan b { color: var(--teal-deep); font-weight: 700; }
.calcresult__sub { margin-top: 8px; color: var(--text-2); font-size: 14.5px; }

@media (max-width: 720px) {
  .calcresult { grid-template-columns: 1fr; }
  .calcresult .btn { width: 100%; }
}



/* ---------------------------------------------------------- legal docs */

.doc {
  max-width: 780px;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 4.5vw, 60px);
}
.doc__head { margin-bottom: 34px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.doc__head h1 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-top: 4px; }
.doc__meta { margin-top: 14px; font-size: 14px; color: var(--text-3); }
.doc__meta a { color: var(--teal-deep); font-weight: 550; text-decoration: underline; text-underline-offset: 3px; }

.doc__body h2 {
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 34px 0 12px;
  color: var(--ink);
}
.doc__body h2:first-child { margin-top: 0; }
.doc__body p { color: var(--text-2); margin-bottom: 14px; max-width: 68ch; line-height: 1.7; }
.doc__body ul { margin: 0 0 18px; padding-left: 22px; max-width: 68ch; }
.doc__body li { color: var(--text-2); margin-bottom: 9px; line-height: 1.65; }
.doc__body strong { color: var(--ink); font-weight: 600; }
.doc__body a { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 3px; }

/* ------------------------------------------------------------ doc modal */

/*
 * Footer legal links open the document in an overlay so a reader never loses
 * their place on the page. Progressive enhancement: the links are real hrefs
 * to real pages, and JS only intercepts them when it can do a better job.
 */
.docmodal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(6, 20, 18, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: docmodal-in 0.28s var(--ease-out);
}
.docmodal[hidden] { display: none; }
@keyframes docmodal-in { from { opacity: 0; } to { opacity: 1; } }

.docmodal__panel {
  position: relative;
  width: min(820px, 100%);
  max-height: min(84vh, 900px);
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-xl);
  box-shadow: 0 40px 90px -24px rgba(7, 35, 32, 0.5);
  overflow: hidden;
  animation: docpanel-in 0.34s var(--ease-out);
}
@keyframes docpanel-in {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}

.docmodal__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px clamp(20px, 3vw, 32px);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  flex-shrink: 0;
}
.docmodal__bar h2 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.018em;
  margin-right: auto;
}
.docmodal__close {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--surface-3);
  cursor: pointer;
  transition: all 0.22s var(--ease);
}
.docmodal__close:hover { background: var(--surface-4); transform: rotate(90deg); }
.docmodal__close svg { width: 17px; height: 17px; }

/* The scrollable region. */
.docmodal__scroll {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(24px, 3.4vw, 38px);
  -webkit-overflow-scrolling: touch;
}
.docmodal__scroll .doc {
  border: 0;
  box-shadow: none;
  padding: 0;
  background: transparent;
  max-width: none;
}
.docmodal__scroll .doc__head { padding-bottom: 20px; margin-bottom: 26px; }
.docmodal__scroll .doc__head h1 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); }
.docmodal__scroll .eyebrow { display: none; }

.docmodal__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--line);
  background: var(--surface-3);
  font-size: 13.5px;
  color: var(--text-3);
  flex-shrink: 0;
}

.docmodal__loading { padding: 60px 0; text-align: center; color: var(--text-3); font-size: 15px; }

@media (prefers-reduced-motion: reduce) {
  .docmodal, .docmodal__panel { animation: none; }
  .docmodal__close:hover { transform: none; }
}

/* ------------------------------------------------------- app showcase */

/*
 * Three device shots that straighten toward flat as you scroll past them.
 * Deliberately a shallow tilt (~14deg, not 30) — a screenshot rotated hard in
 * perspective is a screenshot nobody can read, which defeats the point of
 * showing the real product. --p is scroll progress 0-1, written by main.js.
 */
.appshow { --p: 0; perspective: 1700px; perspective-origin: 50% 42%; }

.appshow__stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.6vw, 44px);
  align-items: end;
  transform-style: preserve-3d;
  max-width: 940px;
  margin-inline: auto;
}

.phone {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  /* Each device carries its own tilt, depth and drift; the shared formula
     below resolves them against scroll progress. */
  transform:
    translateY(calc((1 - var(--p)) * var(--drift, 40px)))
    translateZ(var(--depth, 0px))
    rotateY(calc((1 - var(--p)) * var(--tilt, 0deg)))
    rotateX(calc((1 - var(--p)) * 7deg))
    scale(var(--scale, 1));
}
.phone--left  { --tilt: 17deg;  --depth: -70px; --drift: 54px; --scale: 0.94; }
.phone--mid   { --tilt: 0deg;   --depth: 40px;  --drift: 22px; --scale: 1.06; }
.phone--right { --tilt: -17deg; --depth: -70px; --drift: 70px; --scale: 0.94; }

/* Light pooling on the floor beneath each device. */
.phone::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -6%;
  width: 150%; height: 22%;
  transform: translateX(-50%) translateZ(-40px);
  background: radial-gradient(ellipse at center, rgba(12, 143, 132, 0.34), transparent 70%);
  filter: blur(26px);
  opacity: calc(0.25 + var(--p) * 0.75);
  pointer-events: none;
}

.phone__frame {
  position: relative;
  border-radius: 38px;
  padding: 7px;
  /* A lit edge along the top-left, as if the key light is up and to the left. */
  background: linear-gradient(150deg, #3D4B49 0%, #12191B 34%, #0A1012 70%, #26312F 100%);
  box-shadow:
    0 2px 6px rgba(7, 35, 32, 0.18),
    0 30px 60px -18px rgba(7, 35, 32, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.phone__screen {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 1168 / 2528;
  background: #0A0F10;
}
.phone__screen img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* The dynamic island. Small, but its absence is what makes a framed
   screenshot look like a picture of a phone rather than a phone. */
.phone__island {
  position: absolute;
  top: 2.2%; left: 50%;
  transform: translateX(-50%);
  width: 30%; height: 2.4%;
  min-height: 9px;
  border-radius: var(--r-pill);
  background: #05090A;
  z-index: 2;
}

/* Sheen sweeping the glass as the section resolves. */
.phone__screen::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(104deg, transparent 34%, rgba(255, 255, 255, 0.16) 48%, transparent 62%);
  transform: translateX(calc(-60% + var(--p) * 150%));
  opacity: calc(0.9 - var(--p) * 0.55);
}

.phone__label {
  margin-top: 20px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--text);
}
.phone__label span {
  display: block;
  margin-top: 3px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 450;
  color: var(--text-3);
}

@media (max-width: 760px) {
  /* Three tilted phones at phone width is unreadable — show the hero screen
     large and let the other two sit flat behind it. */
  .appshow__stage { grid-template-columns: 1fr; gap: 40px; max-width: 300px; }
  .phone { --tilt: 0deg; --depth: 0px; --drift: 24px; --scale: 1; }
  .phone--left, .phone--right { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .phone { transform: none; }
  .phone__screen::after { display: none; }
  .phone::after { opacity: 0.8; }
}

/* ------------------------------------------------------------- app links */

.getapp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(30px, 4vw, 44px) clamp(26px, 4vw, 48px);
  border-radius: var(--r-xl);
  background:
    linear-gradient(140deg, rgba(12, 143, 132, 0.07), transparent 52%),
    var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.getapp h2 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
.getapp p { color: var(--text-2); margin-top: 12px; max-width: 52ch; font-size: 15.5px; }

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

/*
 * Our own badge styling, not a reproduction of Apple's or Google's artwork —
 * both require their official assets, which can only be added once the listings
 * are approved. Until then these read honestly as "not out yet".
 */
.storebadge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-2);
  background: var(--surface-3);
  color: var(--text-3);
  min-width: 186px;
  cursor: default;
  transition: all 0.28s var(--ease);
}
.storebadge svg { width: 22px; height: 22px; flex-shrink: 0; }
.storebadge span { display: block; line-height: 1.25; }
.storebadge small {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.85;
}
.storebadge b { font-family: var(--font-display); font-size: 15.5px; font-weight: 600; letter-spacing: -0.015em; }

/* The live route — the web app works today, with no store approval needed. */
.storebadge--live {
  background: var(--grad-solid);
  border-color: transparent;
  color: #FFFFFF;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(7, 35, 32, 0.10), 0 8px 20px -8px rgba(10, 122, 114, 0.55);
}
.storebadge--live:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(7, 35, 32, 0.10), 0 16px 30px -10px rgba(10, 122, 114, 0.55);
}

@media (max-width: 860px) {
  .getapp { grid-template-columns: 1fr; }
  .morepricing { flex-direction: column; align-items: flex-start; }
}

/* -------------------------------------------------------------------- faq */

.faq { max-width: 780px; margin-inline: auto; display: grid; gap: 10px; }

.faq__item {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.faq__item:hover { border-color: var(--line-2); }
.faq__item[open] { border-color: var(--line-2); box-shadow: var(--shadow-sm); }

.faq__item summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px 22px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 550;
  letter-spacing: -0.014em;
}
.faq__item summary::-webkit-details-marker { display: none; }

/* Plus that rotates into a minus. */
.faq__item summary::after {
  content: '';
  margin-left: auto;
  flex-shrink: 0;
  width: 13px; height: 13px;
  background:
    linear-gradient(var(--teal-deep), var(--teal-deep)) center / 100% 1.6px no-repeat,
    linear-gradient(var(--teal-deep), var(--teal-deep)) center / 1.6px 100% no-repeat;
  transition: transform 0.32s var(--ease-out);
}
.faq__item[open] summary::after { transform: rotate(90deg); background-size: 100% 1.6px, 0 100%; }

.faq__body { padding: 0 22px 21px; animation: panel-in 0.35s var(--ease-out); }
.faq__body p { color: var(--text-2); font-size: 15px; max-width: 66ch; }
.faq__body a { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 3px; }



/* ------------------------------------------------------------------- cta */

/*
 * The closing CTA is a deep band on the light page. A light page needs one or
 * two heavy anchors or it floats away; this and the footer are those anchors.
 * Tokens are redefined locally so nested type and buttons follow along.
 */
.ctaband {
  --text: #EAF4F1;
  --text-2: #A9C4BE;
  --text-3: #8AA8A2;
  --teal: #4FD8C4;
  --line-2: rgba(190, 240, 228, 0.22);

  position: relative;
  padding: clamp(48px, 6.5vw, 84px) clamp(28px, 5vw, 72px);
  border-radius: var(--r-xl);
  color: var(--text);
  background:
    radial-gradient(ellipse 90% 130% at 50% 118%, rgba(28, 168, 150, 0.42), transparent 62%),
    linear-gradient(150deg, #0A2F2B 0%, #07211F 52%, #061A1E 100%);
  border: 1px solid rgba(190, 240, 228, 0.12);
  box-shadow: 0 4px 12px rgba(7, 35, 32, 0.10), 0 34px 70px -26px rgba(7, 35, 32, 0.42);
  text-align: center;
  overflow: hidden;
}
.ctaband::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -60%;
  width: 120%; aspect-ratio: 2 / 1;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(78, 209, 106, 0.30), transparent 62%);
  filter: blur(60px);
  opacity: 0.6;
  pointer-events: none;
}
.ctaband > * { position: relative; z-index: 1; }
.ctaband .lede { margin-inline: auto; }
.ctaband__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 34px; }

/* On the dark band the primary button inverts to solid white — the highest
   contrast available, and it stops two gradients competing. */
.ctaband .btn--primary {
  background: #FFFFFF;
  color: #07302B;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.22), 0 10px 24px -10px rgba(0, 0, 0, 0.5);
}
.ctaband .btn--primary::after {
  background: linear-gradient(100deg, transparent 20%, rgba(7, 48, 43, 0.10) 50%, transparent 80%);
}
.ctaband .btn--primary:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.24), 0 18px 34px -12px rgba(0, 0, 0, 0.5);
}
.ctaband .btn--ghost {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(190, 240, 228, 0.26);
  color: #EAF4F1;
  box-shadow: none;
}
.ctaband .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(190, 240, 228, 0.4);
  box-shadow: none;
}

/* ----------------------------------------------------------------- footer */

/* Deep footer grounds the page — the second heavy anchor after the CTA band,
   and it lets the logo mark sit on the dark ground it was drawn for. */
.footer {
  --text: #E4F0ED;
  --text-2: #9FBAB4;
  --text-3: #7A9A94;
  --teal: #4FD8C4;
  --line: rgba(190, 240, 228, 0.10);

  position: relative;
  z-index: 1;
  margin-top: clamp(44px, 5vw, 72px);
  color: var(--text);
  background:
    radial-gradient(120% 80% at 18% 0%, rgba(16, 122, 112, 0.30), transparent 58%),
    linear-gradient(180deg, #07211F 0%, #051715 100%);
  padding-block: clamp(44px, 4.5vw, 62px) 30px;
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: clamp(36px, 5vw, 72px);
}
.footer__pitch { margin-top: 20px; color: var(--text-3); font-size: 14.5px; max-width: 40ch; }

/* Contact gets extra room: the email address is one long unbreakable token and
   an equal-width column forces it onto two lines. */
.footer__cols { display: grid; grid-template-columns: 1fr 1fr 1fr 1.4fr; gap: 32px 26px; }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col h2 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 3px;
  font-family: var(--font-body);
}
.footer__email { font-size: 13.5px; letter-spacing: -0.01em; }
.footer__col a { font-size: 14.5px; color: var(--text-2); transition: color 0.2s var(--ease); width: fit-content; max-width: 100%; overflow-wrap: anywhere; }
.footer__col a:hover { color: var(--teal); }
.footer__note { font-size: 13px; color: var(--text-3); }

.footer__bottom {
  margin-top: clamp(40px, 5vw, 60px);
  padding-top: 26px;
  border-top: 1px solid rgba(190, 240, 228, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 32px;
  font-size: 13px;
  color: var(--text-3);
}
.footer__legal { max-width: 62ch; }

/* -------------------------------------------------------- scroll reveal */

/* Scoped to .js so a failed script load can never leave the page invisible. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(5px);
  transition:
    opacity 0.75s var(--ease-out) var(--reveal-delay, 0s),
    transform 0.75s var(--ease-out) var(--reveal-delay, 0s),
    filter 0.75s var(--ease-out) var(--reveal-delay, 0s);
}
.js [data-reveal].is-in { opacity: 1; transform: none; filter: none; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 52px; }
  .hero__copy { max-width: 640px; }
  .console { max-width: 520px; }
  .console__float { left: auto; right: -14px; }
  .venues__layout { grid-template-columns: 1fr; }
  .venuetabs { flex-direction: row; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
  .venuetabs::-webkit-scrollbar { display: none; }
  .venuetab { white-space: nowrap; border: 1px solid var(--line); }
  .venuetab.is-active::before { display: none; }
}

@media (max-width: 900px) {
  .nav, .header__actions { display: none; }
  .burger { display: grid; margin-left: auto; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Phones carry the same colour field with cheaper compositing: smaller blur
   radii, and the two auroras that only matter on tall desktop scrolls dropped. */
@media (max-width: 700px) {
  .fx__aurora { filter: blur(56px); }
  .fx__aurora--d { display: none; }
  .section--lit::before { inset: -4% -30%; }
}

@media (max-width: 560px) {
  :root { --header-h: 64px; }
  .console { padding: 14px; }
  .console__float { display: none; }
  .player { grid-template-columns: 72px 1fr; gap: 13px; }
  .hero__cta .btn { width: 100%; }
  .plan__amt { font-size: 42px; }
  .callout { flex-direction: column; gap: 14px; padding: 22px; }
}

/* -------------------------------------------------------- reduced motion */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; filter: none; }
  .fx__aurora { opacity: 0.8; }
  /* The scroll-linked field is parallax — pin it rather than let it track. */
  .fx__aurora { translate: none !important; }
  .fx__beam { opacity: 0.7 !important; }
}


/* ---------------------------------------------------------- mobile CTA */

/*
 * A persistent action bar on small screens. The page is long and the header
 * CTA scrolls away, so on a phone there is otherwise no way to act without
 * scrolling back. Appears only after the hero, so it never covers it.
 */
.stickycta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  align-items: center;
  gap: 14px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(252, 254, 253, 0.92);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-top: 1px solid var(--line-2);
  box-shadow: 0 -6px 24px -10px rgba(7, 35, 32, 0.22);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease-out);
}
.stickycta.is-shown { transform: none; }
.stickycta__price { font-size: 13px; line-height: 1.3; color: var(--text-3); }
.stickycta__price b {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}
.stickycta .btn { margin-left: auto; flex-shrink: 0; }

@media (max-width: 760px) { .stickycta { display: flex; } }
@media (prefers-reduced-motion: reduce) {
  .stickycta { transition: none; }
}
