/* ─────────────────────────────────────────────────────────────────────────
   Breakpoint convention — match these values in @media queries instead
   of inventing new ones. CSS custom properties can't be used inside
   @media, so this is doc-only; please grep before adding a new one.

     640px   "sm"   small + large phones (section gutter shrinks to 16px)
     1100px  "md"   tablet → desktop nav switch (burger threshold)
     1180px  "lg"   --max threshold (container stops growing with viewport)
     2200px  "xl"   ultra-wide rescale #1 (--mrb-container-max → 1540)
     3200px  "2xl"  ultra-wide rescale #2 (--mrb-container-max → 2400)

   Legacy breakpoints still in use elsewhere (520, 620, 720, 760, 780,
   820, 860, 980, 1080, 1120, 1200) should migrate to the nearest token
   above when their owner files are next refactored.
   ───────────────────────────────────────────────────────────────────────── */
:root {
  --mrb-ink-950: #07090d;
  --mrb-surface-900: #11161e;
  --mrb-surface-line: #232b36;
  --text-high: rgba(255, 255, 255, 0.87);
  --text-medium: rgba(255, 255, 255, 0.60);
  --text-disabled: rgba(255, 255, 255, 0.38);
  --state-hover: rgba(255, 255, 255, 0.08);
  --state-focus: rgba(255, 255, 255, 0.10);
  --state-pressed: rgba(255, 255, 255, 0.10);
  --state-dragged: rgba(255, 255, 255, 0.16);
  --divider-subtle: rgba(255, 255, 255, 0.12);
  --mrb-cloud-50: var(--text-high);
  --mrb-cloud-300: var(--text-medium);
  --mrb-signal-cyan: #3db7ff;
  --mrb-hook-lime: #a3e635;
  --mrb-sakura-magenta: #ff4fa3;
  --mrb-gold-400: #ffc857;
  --mrb-radius-sm: 12px;
  --mrb-radius-lg: 20px;
  --mrb-radius-xl: 28px;
  --mrb-radius-pill: 999px;
  --mrb-ease-out: cubic-bezier(.22, 1, .36, 1);
  --mrb-ease-press: cubic-bezier(.2, 0, .2, 1);
  --mrb-duration-micro: 160ms;
  --mrb-duration-press: 90ms;
  --mrb-duration-card: 220ms;
  --mrb-duration-section: 300ms;
  --mrb-shadow-soft: 0 20px 64px rgba(0, 0, 0, 0.36);
  --mrb-shadow-lime: 0 12px 34px rgba(163, 230, 53, 0.14);
  --mrb-shadow-cyan: 0 14px 40px rgba(61, 183, 255, 0.12);
  --mrb-container-max: 1180px;
  --mrb-gutter: 24px;
  --bg: var(--mrb-ink-950);
  --bg-2: #0f141b;
  --surface: rgba(245, 247, 250, 0.045);
  --surface-strong: rgba(245, 247, 250, 0.09);
  --glass-blue: rgba(61, 183, 255, 0.08);
  --line: var(--divider-subtle);
  --blue-line: rgba(61, 183, 255, 0.22);
  --tone-cyan: 0.08;
  --tone-violet: 0.02;
  --tone-amber: 0.018;
  --tone-shift: 0px;
  --text: var(--mrb-cloud-50);
  --muted: var(--mrb-cloud-300);
  --muted-2: var(--text-medium);
  --cyan: var(--mrb-signal-cyan);
  --lime: var(--mrb-hook-lime);
  --gold: var(--mrb-gold-400);
  --ink: var(--mrb-ink-950);
  --color-on-accent: var(--mrb-ink-950);
  --radius: var(--mrb-radius-lg);
  --max: var(--mrb-container-max);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.44);
  --surface-page: var(--mrb-ink-950);
  --surface-card: var(--mrb-surface-900);
  --surface-proof: #171e27;
  --surface-proof-raise: rgba(245, 247, 250, 0.08);
  --border-subtle: var(--divider-subtle);
  --border-strong: rgba(61, 183, 255, 0.32);
  --accent-cool: var(--mrb-signal-cyan);
  --accent-glow-soft: rgba(61, 183, 255, 0.14);
  --accent-glow-strong: rgba(61, 183, 255, 0.28);
  --accent-line: linear-gradient(90deg, rgba(61, 183, 255, 0), rgba(61, 183, 255, 0.92), rgba(61, 183, 255, 0));
  --accent-blue: var(--mrb-signal-cyan);
  --accent-blue-soft: rgba(61, 183, 255, 0.16);
  --accent-blue-glow: rgba(61, 183, 255, 0.28);
  --accent-blue-line: linear-gradient(90deg, rgba(61, 183, 255, 0), rgba(61, 183, 255, 0.92), rgba(61, 183, 255, 0));
  --type-h1: clamp(48px, 7vw, 80px);
  --type-h2: clamp(34px, 4vw, 52px);
  --type-h3: clamp(24px, 2.4vw, 32px);
  --type-body-lg: 19px;
  --type-body: 17px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 72px;
  --space-9: 104px;
  --space-10: 144px;
  --radius-sm: var(--mrb-radius-sm);
  --radius-lg: var(--mrb-radius-xl);
  --radius-pill: var(--mrb-radius-pill);
  --motion-fast: var(--mrb-duration-micro) var(--mrb-ease-out);
  --motion-surface: var(--mrb-duration-card) var(--mrb-ease-out);
  --motion-glow: 360ms var(--mrb-ease-out);
  --motion-reveal: 760ms cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  touch-action: pan-y;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(110deg, rgba(61, 183, 255, var(--tone-cyan)) 0%, transparent 38%),
    linear-gradient(252deg, rgba(255, 79, 163, var(--tone-violet)) 0%, transparent 44%),
    linear-gradient(35deg, transparent 0%, transparent 64%, rgba(255, 200, 87, var(--tone-amber)) 100%),
    linear-gradient(180deg, var(--surface-page) 0%, #0b0f14 46%, var(--surface-page) 100%);
  background-attachment: fixed;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  touch-action: pan-y;
  -webkit-text-size-adjust: 100%;
}

.home-page {
  --mrb-home-header-space: 128px;
}

.home-page main {
  padding-top: var(--mrb-home-header-space);
}

main,
section,
header,
footer {
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.38;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, transparent 0 14%, rgba(255, 255, 255, 0.032) 14% 15%, transparent 15% 48%, rgba(130, 150, 180, 0.028) 48% 49%, transparent 49% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 30%, transparent 78%, rgba(255, 255, 255, 0.014));
  opacity: 0.55;
  transform: translateX(var(--tone-shift));
}

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

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

p {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.65;
}

ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.65;
}

li + li {
  margin-top: 8px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--mrb-cloud-50);
  font-family: "Sora", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: var(--type-h1);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  font-size: var(--type-h2);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h3 {
  font-size: var(--type-h3);
  font-weight: 700;
  line-height: 1.12;
}

h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

h6 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

input,
select,
textarea,
button {
  font: inherit;
}

.section-shell {
  width: min(var(--max), calc(100% - (var(--mrb-gutter) * 2)));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  /* Header chrome overhangs the section column by 16px total (8px each side).
     Combined with padding-x: 8px, the brand lands at section-x at every
     viewport. See note in CLAUDE.md / docs/conventions.md if reorganized. */
  width: min(calc(var(--max) + 16px), calc(100% - var(--mrb-gutter) * 2 + 16px));
  max-width: calc(var(--max) + 16px);
  margin: 12px auto 0;
  padding: 18px 8px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(10, 13, 16, 0.94), rgba(4, 5, 6, 0.8)),
    rgba(2, 3, 4, 0.88);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.home-page .site-header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
}

.site-header__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex: 1 1 auto;
  min-width: 0;
}

.site-header__panel[hidden] {
  display: none !important;
}

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

.brand img {
  aspect-ratio: 16 / 9;
  width: 138px;
  height: auto;
}

.brand-text {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
  color: rgba(247, 247, 242, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 auto;
  gap: 5px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: rgba(12, 16, 23, 0.88);
  color: var(--mrb-cloud-50);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition:
    transform var(--motion-fast),
    border-color var(--motion-fast),
    box-shadow var(--motion-fast),
    background var(--motion-fast);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(61, 183, 255, 0.42);
  box-shadow:
    0 0 0 1px rgba(61, 183, 255, 0.28),
    0 18px 42px rgba(0, 0, 0, 0.3);
}

.nav-toggle:focus-visible {
  outline: none;
}

.nav-toggle__line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform var(--motion-fast),
    opacity var(--motion-fast),
    width var(--motion-fast);
}

.nav a:hover,
.nav a[aria-current="page"],
.footer a:hover,
.text-link:hover {
  color: var(--text);
}

.nav a[aria-current="page"] {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.28);
}

.nav a,
.footer a,
.text-link,
.button,
.small-button,
.nav-cta {
  transition:
    color var(--motion-fast),
    background var(--motion-fast),
    border-color var(--motion-fast),
    transform var(--motion-fast),
    box-shadow var(--motion-fast);
}

.nav-cta,
.button,
.small-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 800;
  isolation: isolate;
  overflow: hidden;
  white-space: nowrap;
}

.nav-cta {
  min-height: 56px;
  padding: 0 30px;
  border-color: var(--border-strong);
  background:
    linear-gradient(135deg, #ffffff 0%, #edf2f6 58%, #d9e2ed 100%);
  color: var(--ink);
  font-size: 16px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 42px var(--accent-glow-soft),
    0 20px 54px rgba(0, 0, 0, 0.38);
}

.cta-icon,
.cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.cta-icon {
  width: 18px;
  height: 18px;
}

.cta-arrow {
  width: 16px;
  height: 16px;
}

.cta-icon svg,
.cta-arrow svg,
.console-feature-icon svg,
.metric-icon svg,
.selected-work-arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cta:hover,
.button:hover,
.small-button:hover {
  border-color: var(--border-strong);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.03),
    0 0 58px var(--accent-glow-soft),
    0 24px 74px rgba(0, 0, 0, 0.42);
}

.nav-cta::before,
.button.primary::before,
.floating-book::before,
.segment-divider a::before,
.inline-cta .small-button::before,
.quick-book-bar .small-button::before {
  content: "";
  position: absolute;
  inset: -32% auto -32% -18%;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
  opacity: 0;
  transform: translateX(-165%) skewX(-18deg);
  transition: transform var(--motion-glow), opacity var(--motion-fast);
  pointer-events: none;
}

.nav-cta:hover::before,
.button.primary:hover::before,
.floating-book:hover::before,
.segment-divider a:hover::before,
.inline-cta .small-button:hover::before,
.quick-book-bar .small-button:hover::before {
  opacity: 0.9;
  transform: translateX(360%) skewX(-18deg);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(170, 190, 210, 0.62));
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.floating-book {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  padding: 0 36px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.022)),
    rgba(10, 13, 16, 0.92);
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 18px 56px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(189, 208, 226, 0.08);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  transition: opacity var(--motion-fast), transform var(--motion-fast), border-color var(--motion-fast);
}

.floating-book:hover {
  border-color: var(--border-strong);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.98) 0%, rgba(4, 6, 8, 0.9) 44%, rgba(2, 3, 4, 0.34) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024) 0%, rgba(0, 0, 0, 0.68) 100%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 8% 0 0 44%;
  z-index: 1;
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(255, 255, 255, 0.055) 18% 19%, transparent 19% 46%, rgba(255, 255, 255, 0.036) 46% 47%, transparent 47% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 64%);
  transform: skewX(-8deg);
  opacity: 0.76;
}

.hero-mark {
  position: absolute;
  right: -4%;
  bottom: 10%;
  width: 66%;
  max-width: 980px;
  opacity: 0.52;
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.65));
  animation: logo-drift 12s ease-in-out infinite alternate;
}

.hero-mark::before,
.hero-mark::after {
  content: "";
  position: absolute;
  inset: -4%;
  background: linear-gradient(90deg, #f7f7f2 0%, #9bb7c9 40%, #d8d0e6 72%, #f7f7f2 100%);
  mask: url("assets/mrb-logo-white.png") center / contain no-repeat;
  -webkit-mask: url("assets/mrb-logo-white.png") center / contain no-repeat;
  pointer-events: none;
}

.hero-mark::before {
  opacity: 0.18;
  filter: blur(1px);
}

.hero-mark::after {
  opacity: 0.12;
  filter: blur(24px);
}

.hero-mark img {
  aspect-ratio: 16 / 9;
  position: relative;
  z-index: 1;
  opacity: 0.2;
  filter: grayscale(1) contrast(1.15);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
  padding: 138px 0 82px;
}

.hero-cinematic {
  min-height: 100vh;
  min-height: 100svh;
}

.hero-stage {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(380px, 0.64fr);
  gap: 44px;
  align-items: start;
  padding: 54px 0 78px;
}

.hero-copy {
  max-width: 740px;
}

.hero-headline {
  max-width: 900px;
  font-size: 82px;
  line-height: 0.96;
}

.hero-headline span {
  display: block;
}

.hero-headline-home {
  max-width: 740px;
  font-size: clamp(68px, 6.6vw, 92px);
  line-height: 0.93;
}

.hero-line-third,
.hero-line-last {
  white-space: nowrap;
}

.hero-headline .hero-go {
  display: inline-block;
  color: #8da9ff;
  text-shadow:
    0 0 26px rgba(141, 169, 255, 0.28),
    0 0 54px rgba(141, 169, 255, 0.12);
}

.hero-console {
  width: 100%;
  max-width: 414px;
  justify-self: end;
  margin-top: 54px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.028)),
    rgba(10, 13, 16, 0.86);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 48px rgba(11, 15, 20, 0.42);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.console-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.console-topline strong {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--text);
  font-size: 12px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.08),
    0 0 16px rgba(255, 255, 255, 0.24);
}

.console-screen {
  position: relative;
  min-height: 228px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(225deg, rgba(189, 208, 226, 0.14), transparent 46%),
    var(--surface-card);
}

.console-screen::before {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: skewX(-10deg);
}

.console-screen::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
}

.hero-media-shell {
  position: absolute;
  inset: 18px;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(2, 3, 4, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 54px rgba(0, 0, 0, 0.22);
}

.hero-media-loop {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04);
  background: #040506;
}

.hero-still {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04);
}

.hero-media-shell.is-hydrated {
  background: rgba(2, 3, 4, 0.72);
}

.hero-media-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 4, 5, 0.08) 0%, rgba(3, 4, 5, 0.16) 36%, rgba(3, 4, 5, 0.72) 100%),
    linear-gradient(135deg, rgba(189, 208, 226, 0.08), transparent 34%);
}

.hero-media-overlay {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 1;
  display: grid;
  gap: 0;
  max-width: 320px;
}

.hero-media-overlay strong {
  position: relative;
  z-index: 1;
}

.hero-media-overlay strong {
  color: var(--text);
  font-size: 28px;
  line-height: 1.08;
}

.console-orbit,
.console-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.console-orbit {
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(255, 255, 255, 0.09) 44% 45%, transparent 45% 100%),
    linear-gradient(0deg, transparent 0 64%, rgba(255, 255, 255, 0.08) 64% 65%, transparent 65% 100%);
}

.console-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.55;
}

.console-stack {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.console-stack article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    rgba(4, 6, 9, 0.82);
}

.console-feature-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.016)),
    rgba(9, 12, 16, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 30px rgba(189, 208, 226, 0.06);
}

.console-feature-icon svg {
  width: 18px;
  height: 18px;
}

.console-feature-copy {
  min-width: 0;
}

.console-feature-copy strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 15px;
}

.console-feature-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.38;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--text-medium);
  font-size: 20px;
}

.hero-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--text-medium);
  font-size: 13px;
  line-height: 1.6;
}

.hero-proof-pills {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.18fr) minmax(0, 1.12fr);
  gap: 12px;
  max-width: 760px;
  margin-top: 24px;
}

.proof-pill {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 82px;
  padding: 14px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(10, 13, 16, 0.82);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.proof-pill span {
  color: var(--text-medium);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-pill strong {
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

.hero-proof-pills + .hero-actions {
  margin-top: 28px;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
}

.action-row.center,
.hero-actions.center {
  justify-content: center;
}

.button {
  min-height: 74px;
  padding: 0 46px;
  font-size: 17px;
}

.button.primary {
  border-color: var(--border-strong);
  background:
    linear-gradient(135deg, #ffffff 0%, #edf2f6 60%, #dbe4ee 100%);
  color: var(--ink);
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.03),
    0 0 70px var(--accent-glow-soft),
    0 28px 86px rgba(0, 0, 0, 0.48);
}

.home-page .nav-cta,
.home-page .hero-cta {
  animation: cta-breathe 4.8s ease-in-out infinite;
}

.home-page .segment-divider a,
.home-page .inline-cta .small-button {
  border-color: var(--border-subtle);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 13, 16, 0.9);
  color: var(--text);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 18px 56px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(189, 208, 226, 0.05);
}

.home-page .segment-divider a:hover,
.home-page .inline-cta .small-button:hover {
  border-color: var(--border-strong);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.025),
    0 22px 68px rgba(0, 0, 0, 0.4),
    0 0 42px rgba(189, 208, 226, 0.08);
}

.pulse-cta {
  animation: cta-breathe 3.4s ease-in-out infinite;
}

.calm-submit {
  animation: cta-calm 7.2s ease-in-out infinite;
}

.button.secondary {
  border-color: var(--border-subtle);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.small-button {
  min-height: 58px;
  padding: 0 30px;
  border-color: var(--border-subtle);
  background: rgba(255, 255, 255, 0.026);
  color: var(--text);
  font-size: 15px;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.014),
    0 0 36px rgba(189, 208, 226, 0.08),
    0 22px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.small-button:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 18px 44px rgba(0, 0, 0, 0.32);
}

.inline-cta .small-button,
.quick-book-bar .small-button {
  border-color: var(--border-strong);
  background:
    linear-gradient(135deg, #ffffff 0%, #edf2f6 60%, #dbe4ee 100%);
  color: var(--ink);
  box-shadow:
    0 0 0 9px rgba(255, 255, 255, 0.028),
    0 0 54px var(--accent-glow-soft),
    0 24px 72px rgba(0, 0, 0, 0.42);
}

.inline-cta .small-button:hover,
.quick-book-bar .small-button:hover {
  box-shadow:
    0 0 0 9px rgba(255, 255, 255, 0.03),
    0 0 58px var(--accent-glow-soft),
    0 24px 76px rgba(0, 0, 0, 0.44);
}

.form-panel .button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #ffffff, #e4e4df);
  color: var(--ink);
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.04),
    0 0 70px rgba(255, 255, 255, 0.22),
    0 28px 86px rgba(0, 0, 0, 0.48);
}

.form-panel .button.primary::before {
  content: none;
}

.form-panel .button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  box-shadow: none;
}

.form-panel .button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100% - 48px));
  margin: -114px auto 0;
  position: relative;
  z-index: 3;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border-subtle);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 255, 255, 0.018);
}

.hero-metrics.trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.launch-proof-band {
  margin: 28px auto 0;
}

.metric {
  min-height: 110px;
  padding: 18px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.022)),
    rgba(10, 13, 16, 0.92);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.hero-metrics.trust-strip .metric {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.metric-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid var(--divider-subtle);
  border-radius: 14px;
  color: var(--text-high);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.016)),
    rgba(8, 11, 15, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 24px rgba(189, 208, 226, 0.05);
}

.metric-icon svg {
  width: 14px;
  height: 14px;
}

.metric-copy {
  min-width: 0;
}

.metric-copy span,
.metric-copy strong {
  display: block;
}

.metric-copy span {
  margin-bottom: 6px;
}

.hero-metrics.trust-strip .metric-copy span {
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.01em;
}

.hero-metrics.trust-strip .metric-copy strong {
  font-size: 15px;
  line-height: 1.2;
}

.quick-book-bar,
.inline-cta {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 30px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.028)),
    rgba(20, 26, 34, 0.88);
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.018),
    0 0 36px rgba(189, 208, 226, 0.08);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  transition:
    background var(--motion-glow),
    border-color var(--motion-glow),
    box-shadow var(--motion-glow),
    color var(--motion-glow),
    transform var(--motion-glow);
}

.quick-book-bar {
  margin-top: 18px;
}

.segment-divider {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 46px;
  margin-bottom: 8px;
  z-index: 4;
}

.segment-divider span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), rgba(189, 208, 226, 0.2), transparent);
}

.segment-divider a {
  min-height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background:
    linear-gradient(135deg, #ffffff 0%, #edf2f6 58%, #d9e2ed 100%);
  color: var(--ink);
  font-weight: 950;
  font-size: 17px;
  box-shadow:
    0 0 0 11px rgba(255, 255, 255, 0.032),
    0 0 78px var(--accent-glow-soft),
    0 30px 92px rgba(0, 0, 0, 0.54);
  white-space: nowrap;
}

.segment-divider.mega-divider {
  margin-top: 74px;
  margin-bottom: 44px;
}

.segment-divider.mega-divider span {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), rgba(184, 199, 217, 0.28), transparent);
  box-shadow: 0 0 34px rgba(255, 255, 255, 0.12);
}

.segment-divider.mega-divider a {
  min-height: 96px;
  padding: 0 68px;
  font-size: 20px;
  letter-spacing: 0;
  box-shadow:
    0 0 0 14px rgba(255, 255, 255, 0.052),
    0 0 96px rgba(255, 255, 255, 0.32),
    0 36px 110px rgba(0, 0, 0, 0.6);
}

.inline-cta {
  margin-top: 26px;
}

.process-cta {
  margin-top: 18px;
}

.process-cta.is-inverted {
  border-color: rgba(255, 255, 255, 0.96);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(238, 238, 232, 0.96));
  color: var(--ink);
  box-shadow:
    0 0 0 12px rgba(255, 255, 255, 0.055),
    0 0 86px rgba(255, 255, 255, 0.32),
    0 30px 96px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
  animation: scope-invert-pop 560ms ease-out both;
}

.process-cta.is-inverted span {
  color: #4d5b68;
}

.process-cta.is-inverted strong {
  color: var(--ink);
}

.process-cta.is-inverted .small-button {
  border-color: rgba(0, 0, 0, 0.78);
  background: #050608;
  color: #f7f7f2;
  box-shadow:
    0 0 0 7px rgba(0, 0, 0, 0.045),
    0 18px 54px rgba(0, 0, 0, 0.28);
}

.list-panel.package-panel article:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.052) 48%, rgba(255, 255, 255, 0.11)),
    rgba(8, 8, 9, 0.86);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 54px rgba(255, 255, 255, 0.22),
    0 24px 76px rgba(0, 0, 0, 0.44);
}

.list-panel.package-panel article::after {
  content: "";
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -48%;
  z-index: 1;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  opacity: 0;
  transform: translateX(-120%) skewX(-18deg);
  pointer-events: none;
}

.list-panel.package-panel article:hover::after {
  animation: package-shine 900ms ease-out forwards;
}

.list-panel.package-panel article h3,
.list-panel.package-panel article p {
  position: relative;
  z-index: 2;
}

.quick-book-bar span,
.inline-cta span {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-book-bar strong,
.inline-cta strong {
  display: block;
  font-size: 21px;
}

.metric span,
.meta-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.metric strong {
  display: block;
  font-size: 22px;
}

.hero-metrics.trust-strip .metric strong {
  font-size: 18px;
  line-height: 1.25;
}

.section {
  padding: 128px 0;
}

.section.tight {
  padding: 90px 0;
}

.shop-page .page-hero {
  padding-bottom: 28px;
}

.shop-grid-section {
  padding-top: 22px;
}

.shop-route-section--top {
  padding-top: 122px;
}

.section-heading.shop-route-section__heading {
  display: block;
  max-width: 980px;
}

.section-heading.shop-route-section__heading > div {
  display: grid;
  gap: 16px;
  max-width: 920px;
  text-align: left;
}

.section-heading.shop-route-section__heading h1 {
  max-width: 19ch;
  margin: 0;
  font-size: clamp(42px, 4.9vw, 64px);
  line-height: 0.94;
  text-wrap: balance;
  text-align: left;
}

.section-heading.shop-route-section__heading h1 > span {
  display: block;
  white-space: nowrap;
}

.section-heading.shop-route-section__heading .shop-route-section__copy {
  width: min(100%, 62ch);
  max-width: 62ch;
  margin: 0;
  line-height: 1.55;
  text-align: left;
  text-wrap: pretty;
}

.shop-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.shop-route-card {
  --shop-route-accent: 163, 230, 53;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 30px;
  border-color: var(--divider-subtle);
  background:
    radial-gradient(circle at 100% 0, rgba(var(--shop-route-accent), 0.16), transparent 34%),
    linear-gradient(180deg, rgba(245, 247, 250, 0.07), rgba(245, 247, 250, 0.02)),
    rgba(9, 12, 16, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.05),
    0 24px 80px rgba(0, 0, 0, 0.24);
}

.shop-route-card--services {
  --shop-route-accent: 61, 183, 255;
}

.shop-route-card .icon-frame {
  color: rgba(var(--shop-route-accent), 0.94);
  border-color: rgba(var(--shop-route-accent), 0.22);
  background:
    radial-gradient(circle at 50% 28%, rgba(245, 247, 250, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(var(--shop-route-accent), 0.16), rgba(var(--shop-route-accent), 0.03)),
    rgba(8, 11, 15, 0.92);
  box-shadow: 0 0 24px rgba(var(--shop-route-accent), 0.12);
}

.shop-route-card .icon-title-row {
  align-items: center;
  margin-bottom: 0;
}

.shop-route-card .icon-title-row h3 {
  margin: 0;
}

.shop-route-card p,
.shop-route-card .text-link {
  margin-top: 0;
}

.shop-route-points,
.shop-featured-card__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-route-points li,
.shop-featured-card__list li {
  position: relative;
  padding-left: 20px;
}

.shop-route-points li {
  color: var(--muted);
}

.shop-route-points li::before,
.shop-featured-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.shop-route-points li::before {
  background: rgba(var(--shop-route-accent), 0.94);
  box-shadow: 0 0 18px rgba(var(--shop-route-accent), 0.24);
}

.shop-route-track {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.shop-route-track span,
.shop-route-brief span,
.shop-card-badges span,
.shop-shelf-tags span,
.shop-access-step span,
.shop-page .product-meta span {
  display: inline-grid;
  place-items: center;
  text-align: center;
  line-height: 1;
}

.shop-route-track span,
.shop-route-brief span {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(var(--shop-route-accent), 0.22);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(var(--shop-route-accent), 0.16), rgba(var(--shop-route-accent), 0.04)),
    rgba(10, 13, 16, 0.92);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-route-card .shop-route-track span,
.shop-route-card .shop-route-brief span {
  display: inline-grid;
  place-items: center;
  margin-bottom: 0;
  color: var(--text);
}

.shop-route-brief {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
}

.shop-route-card .action-row {
  align-items: center;
  margin-top: 24px;
  gap: 12px;
}

.shop-route-card .action-row .mrb-btn {
  min-width: 190px;
}

.shop-route-card .mrb-btn {
  align-self: flex-start;
}

.shop-route-card .action-row .text-link {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  margin-top: 0;
}

.shop-route-card:focus-within {
  border-color: rgba(var(--shop-route-accent), 0.46);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.06),
    0 0 0 1px rgba(var(--shop-route-accent), 0.14),
    0 24px 80px rgba(0, 0, 0, 0.24);
}

.shop-catalog {
  padding-top: 28px;
}

.shop-shelf-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 22px;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(185, 194, 207, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.04), rgba(245, 247, 250, 0.014)),
    rgba(7, 10, 14, 0.72);
}

.shop-shelf-bar p {
  flex: 1 1 360px;
  max-width: 760px;
  margin: 0;
}

.shop-shelf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-shelf-tags span {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(245, 247, 250, 0.12);
  border-radius: 999px;
  background: rgba(245, 247, 250, 0.035);
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-featured-card,
.shop-product-card {
  overflow: hidden;
}

.shop-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  border: 1px solid var(--divider-subtle);
  border-radius: var(--mrb-radius-xl);
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.05), rgba(245, 247, 250, 0.015)),
    rgba(11, 15, 20, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.04),
    0 24px 72px rgba(0, 0, 0, 0.24);
}

.shop-featured-card__media,
.shop-product-card__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #06080b;
}

.shop-featured-card__media {
  min-height: 420px;
}

.shop-product-card__media {
  min-height: 248px;
  border-bottom: 1px solid rgba(245, 247, 250, 0.08);
}

.shop-featured-card__media::after,
.shop-product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.04), rgba(7, 9, 13, 0.52) 100%),
    linear-gradient(135deg, rgba(163, 230, 53, 0.08), transparent 36%, transparent 62%, rgba(61, 183, 255, 0.08));
  pointer-events: none;
}

.shop-featured-card__media img,
.shop-product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-card-badges {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  pointer-events: none;
}

.shop-card-badges span {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(245, 247, 250, 0.14);
  border-radius: 999px;
  background: rgba(7, 9, 13, 0.68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-featured-card__body {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px 32px;
}

.shop-page .icon-frame {
  display: grid;
  place-items: center;
}

.shop-page .icon-frame svg {
  width: 22px;
  height: 22px;
}

.shop-page .icon-title-row,
.shop-page .product-type-row {
  align-items: center;
}

.shop-featured-card__label {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-featured-card__body h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.02;
}

.shop-featured-card__body p:last-of-type {
  margin: 0;
}

.shop-featured-card__list li {
  color: var(--muted);
}

.shop-featured-card__list li::before {
  background: rgba(163, 230, 53, 0.92);
  box-shadow: 0 0 16px rgba(163, 230, 53, 0.22);
}

.shop-featured-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.shop-featured-card__actions .mrb-btn {
  min-width: 214px;
}

.grid-3.shop-catalog-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.shop-product-card {
  min-height: 100%;
}

.shop-catalog-grid > .shop-product-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-rows: none;
}

.shop-catalog-grid > .shop-product-card:last-child:nth-child(odd) .shop-product-card__media {
  min-height: 100%;
  border-right: 1px solid rgba(245, 247, 250, 0.08);
  border-bottom: 0;
}

.shop-product-card h3 {
  margin: 0 0 12px;
  font-size: clamp(26px, 2.4vw, 30px);
  line-height: 1.04;
}

.shop-product-card .product-body {
  padding: 24px;
  gap: 14px;
}

.shop-product-card .product-type-row {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 8px;
  margin-bottom: 0;
}

.shop-product-card .product-meta {
  margin-bottom: 0;
}

.shop-product-card__footer {
  display: grid;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
}

.shop-product-card__price {
  display: grid;
  gap: 6px;
}

.shop-product-card__price span {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-product-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.shop-product-card__actions .mrb-btn {
  width: auto;
  min-width: 176px;
}

.shop-product-card__link {
  margin-top: 0;
}

.shop-product-card:hover .shop-product-card__media img,
.shop-product-card:focus-within .shop-product-card__media img {
  transform: scale(1.03);
}

.shop-featured-card__media img,
.shop-product-card__media img {
  transition: transform 240ms ease;
}

.shop-product-card:focus-within {
  border-color: rgba(61, 183, 255, 0.44);
  box-shadow:
    0 0 0 1px rgba(61, 183, 255, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.32);
  transform: translateY(-1px);
}

.shop-request-access {
  position: relative;
  overflow: hidden;
}

.shop-request-access__spinner {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 2px solid rgba(7, 9, 13, 0.22);
  border-top-color: rgba(7, 9, 13, 0.78);
  border-radius: 999px;
  opacity: 0;
  transition: opacity var(--mrb-duration-micro) var(--mrb-ease-out);
}

.shop-request-access.is-routing {
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(163, 230, 53, 0.42),
    0 12px 32px rgba(163, 230, 53, 0.14);
}

.shop-request-access.is-routing .shop-request-access__spinner {
  opacity: 1;
  animation: shop-request-spin 720ms linear infinite;
}

.shop-request-access--wide {
  width: min(100%, 264px);
}

.shop-access__layout {
  gap: 30px 42px;
}

.shop-access__intro {
  display: grid;
  gap: 22px;
}

.shop-access__intro .action-row {
  margin-top: 6px;
}

.shop-access-steps {
  display: grid;
  gap: 12px;
}

.shop-access-step {
  padding: 18px 18px 20px;
  border: 1px solid var(--divider-subtle);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.045), rgba(245, 247, 250, 0.014)),
    rgba(7, 10, 14, 0.72);
}

.shop-access-step span {
  min-width: 44px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(163, 230, 53, 0.24);
  border-radius: 999px;
  background: rgba(163, 230, 53, 0.1);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-access .buyer-confidence-grid .icon-title-row {
  align-items: center;
}

.shop-access-step h3 {
  margin-top: 12px;
  margin-bottom: 6px;
}

.shop-reply-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 11px 16px;
  border: 1px solid rgba(163, 230, 53, 0.42);
  border-radius: 999px;
  background: rgba(163, 230, 53, 0.12);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.shop-access .buyer-confidence-grid {
  align-content: start;
}

.shop-final-cta {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--divider-subtle);
  border-radius: var(--mrb-radius-xl);
  background:
    radial-gradient(circle at 18% 0, rgba(163, 230, 53, 0.14), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(61, 183, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(245, 247, 250, 0.06), rgba(245, 247, 250, 0.016)),
    rgba(9, 12, 16, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.05),
    0 24px 80px rgba(0, 0, 0, 0.28);
}

.shop-final-cta::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(245, 247, 250, 0.08);
  border-radius: calc(var(--mrb-radius-xl) - 10px);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  pointer-events: none;
}

.shop-final-cta > * {
  position: relative;
  z-index: 1;
}

.shop-final-cta .action-row {
  margin-top: 34px;
}

.shop-final-cta .mrb-btn {
  min-width: 220px;
}

@keyframes shop-request-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .shop-route-grid,
  .shop-featured-card {
    grid-template-columns: 1fr;
  }

  .shop-catalog-grid > .shop-product-card:last-child:nth-child(odd) {
    grid-template-columns: 1fr;
  }

  .shop-catalog-grid > .shop-product-card:last-child:nth-child(odd) .shop-product-card__media {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 247, 250, 0.08);
  }
}

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

  .section-heading.shop-route-section__heading {
    margin-bottom: 32px;
  }

  .section-heading.shop-route-section__heading .shop-route-section__copy {
    width: min(100%, 48ch);
    max-width: 48ch;
  }
}

@media (max-width: 820px) {
  .shop-featured-card__media {
    min-height: 320px;
  }

  .shop-featured-card__body,
  .shop-product-card .product-body {
    padding: 24px 22px;
  }

  .shop-route-section--top {
    padding-top: 108px;
  }
}

@media (max-width: 640px) {
  .shop-route-section--top {
    padding-top: 92px;
  }

  .section-heading.shop-route-section__heading h1 {
    font-size: clamp(26px, 6.8vw, 40px);
  }

  .section-heading.shop-route-section__heading .shop-route-section__copy {
    max-width: 100%;
    width: 100%;
  }

  .shop-route-card,
  .shop-shelf-bar,
  .shop-featured-card__body,
  .shop-access-step {
    padding: 20px;
  }

  .shop-featured-card__media,
  .shop-product-card__media {
    min-height: 240px;
  }

  .shop-route-card .action-row,
  .shop-featured-card__actions {
    align-items: stretch;
  }

  .shop-route-card .action-row .mrb-btn,
  .shop-route-card .mrb-btn,
  .shop-featured-card__actions .mrb-btn,
  .shop-final-cta .mrb-btn,
  .shop-request-access--wide {
    width: 100%;
    min-width: 0;
  }

  .shop-route-brief {
    grid-template-columns: 1fr;
  }

  .shop-card-badges {
    top: 14px;
    left: 14px;
    right: 14px;
  }

  .shop-card-badges span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 11px;
  }

  .shop-product-card h3 {
    font-size: 27px;
  }

  .shop-product-card__actions {
    display: grid;
  }

  .shop-product-card__actions .mrb-btn {
    width: 100%;
    min-width: 0;
  }

  .shop-reply-chip {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-page [data-reveal],
  .shop-page .reveal-sequence > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .shop-request-access.is-routing .shop-request-access__spinner {
    animation: none;
  }

  .shop-product-card:hover .shop-product-card__media img,
  .shop-product-card:focus-within .shop-product-card__media img,
  .shop-product-card:focus-within {
    transform: none;
  }
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  margin-bottom: 40px;
}

.section-heading p:not(.eyebrow) {
  max-width: 420px;
  margin: 0;
}

.section-heading.stack {
  display: block;
  max-width: 760px;
}

.section-heading.stack p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 18px;
}

@media (min-width: 981px) {
  .home-page .hero {
    min-height: 100svh;
  }

  .home-page main > .section {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .home-page .storyline-section,
  .home-page .tone-split-section {
    min-height: auto;
  }

  .home-page .feature-row {
    min-height: 92svh;
  }

  .home-page .section-heading {
    margin-bottom: 64px;
  }
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.project-card,
.product-card,
.legal-card,
.form-panel,
.feature-panel,
.process-list,
.footer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.076), rgba(255, 255, 255, 0.034)),
    rgba(5, 5, 6, 0.68);
  backdrop-filter: blur(16px) saturate(138%);
  -webkit-backdrop-filter: blur(16px) saturate(138%);
}

.card,
.project-card,
.product-card,
.feature-panel,
.process-list article,
.metric,
.list-panel article,
.legal-card,
.form-panel,
.footer,
.faq-list details {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, opacity 420ms ease;
}

.card::before,
.project-card::before,
.product-card::before,
.feature-panel::before,
.process-list article::before,
.metric::before,
.list-panel article::before,
.legal-card::before,
.form-panel::before,
.faq-list details::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 46%, transparent 72%);
  opacity: 0;
  transform: translateX(0);
  transition: opacity 220ms ease;
  pointer-events: none;
}

.card:hover,
.project-card:hover,
.product-card:hover,
.feature-panel:hover,
.metric:hover,
.list-panel article:hover,
.faq-list details:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.card:hover::before,
.project-card:hover::before,
.product-card:hover::before,
.feature-panel:hover::before,
.process-list article:hover::before,
.metric:hover::before,
.list-panel article:hover::before,
.legal-card:hover::before,
.form-panel:hover::before,
.faq-list details:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.card {
  min-height: 260px;
  padding: 28px;
}

.card.compact {
  min-height: auto;
}

.card-number,
.step-number,
.product-type {
  display: block;
  margin-bottom: 40px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.card h2,
.card h3,
.product-card h2,
.project-card h2 {
  margin-bottom: 14px;
}

.card p,
.project-card p,
.product-card p {
  margin-bottom: 0;
}

.feature-panel {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 44px;
  align-items: center;
  padding: 18px;
  box-shadow: var(--shadow);
}

.feature-switch {
  display: grid;
  gap: 0;
}

.tone-split-section {
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  overflow: hidden;
  color-scheme: only light;
  background:
    radial-gradient(ellipse at 78% 72%, rgba(255, 255, 255, 0.82), transparent 38%),
    radial-gradient(ellipse at 24% 86%, rgba(255, 255, 255, 0.48), transparent 32%),
    linear-gradient(180deg, #000 0%, #000 28%, #111 43%, #d9d9d3 66%, #f7f7f2 100%);
}

.tone-split-section::before,
.tone-split-section::after {
  content: "";
  display: block;
  height: 104px;
}

.tone-split-section::before {
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.74) 38%, transparent 100%);
}

.tone-split-section::after {
  background: linear-gradient(180deg, transparent 0%, rgba(247, 247, 242, 0.72) 54%, #f7f7f2 100%);
}

.tone-split-section .feature-switch {
  padding: 30px 0 94px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: center;
  min-height: 560px;
  padding: 46px 0;
}

.feature-row.reverse {
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, 0.9fr);
}

.feature-row.reverse .feature-copy {
  grid-column: 2;
}

.feature-row.reverse > :last-child {
  grid-column: 1;
  grid-row: 1;
}

.feature-row.light-row {
  color: #080808;
  color-scheme: only light;
  forced-color-adjust: none;
}

.feature-row.light-row .eyebrow,
.feature-row.light-row .text-link {
  color: #3c4b5d;
}

.feature-row.light-row p {
  color: #3f4248;
}

.feature-row.light-row .system-board,
.feature-row.light-row .system-board article {
  color: #080808;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5)),
    #f7f7f2;
}

.feature-row.light-row .system-board {
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.14);
}

.feature-row.light-row .system-board article + article {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-row.light-row .system-board span {
  color: #777b82;
}

.white-fade-section {
  position: relative;
  padding: 150px 0;
  color: #090909;
  color-scheme: only light;
  forced-color-adjust: none;
  overflow: hidden;
  background-color: #f7f7f2;
  background:
    radial-gradient(ellipse at 76% 14%, rgba(255, 255, 255, 0.95), transparent 34%),
    radial-gradient(ellipse at 14% 82%, rgba(255, 255, 255, 0.64), transparent 30%),
    linear-gradient(180deg, #f2f2ed 0%, #f9f9f4 42%, #eeeeea 100%);
}

.white-fade-section::before,
.white-fade-section::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 0;
  height: 86px;
  width: 100%;
  pointer-events: none;
}

.white-fade-section::before {
  top: 0;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.5) 42%, rgba(247, 247, 242, 0) 100%);
}

.white-fade-section::after {
  bottom: 0;
  background: linear-gradient(180deg, rgba(247, 247, 242, 0) 0%, rgba(0, 0, 0, 0.44) 62%, #000 100%);
}

.white-fade-section .section-shell {
  position: relative;
  z-index: 1;
}

.white-fade-section p {
  color: #42454a;
}

.white-fade-section .eyebrow,
.white-fade-section .text-link {
  color: #3d5064;
}

.white-fade-section .route-card {
  border-color: rgba(0, 0, 0, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.84);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.white-fade-section .route-card span {
  color: #777b82;
}

@media (prefers-color-scheme: dark) {
  .tone-split-section,
  .feature-row.light-row,
  .white-fade-section {
    color-scheme: dark;
  }

  .feature-row.light-row {
    color: var(--text);
  }

  .feature-row.light-row p,
  .white-fade-section p {
    color: var(--muted);
  }

  .white-fade-section {
    background-color: var(--surface-proof);
  }
}

.cinema-frame,
.system-board,
.route-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(5, 5, 6, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(128%);
  -webkit-backdrop-filter: blur(16px) saturate(128%);
}

.cinema-frame {
  min-height: 480px;
  display: grid;
  align-content: end;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.12), transparent 26%),
    linear-gradient(35deg, transparent 0 58%, rgba(170, 190, 210, 0.11)),
    #050506;
}

.cinema-frame::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: skewX(-8deg);
}

.cinema-meta {
  position: relative;
  z-index: 1;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cinema-title {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin-top: 8px;
  color: var(--text);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.05;
}

.launch-dossier {
  min-height: auto;
  align-content: start;
  gap: 18px;
}

.launch-dossier .cinema-title {
  max-width: 520px;
}

.dossier-lead,
.dossier-hook {
  margin: 0;
  max-width: 520px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
}

.dossier-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.dossier-grid article {
  padding: 18px 20px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(10, 13, 16, 0.66);
}

.dossier-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--text-medium);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.dossier-grid p {
  margin: 0;
}

.system-board {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.system-board article {
  padding: 30px;
  background: rgba(5, 5, 6, 0.86);
}

.system-board span,
.route-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.media-frame {
  min-height: 420px;
  display: grid;
  align-content: end;
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 82px);
}

.media-frame.alt {
  background:
    linear-gradient(135deg, rgba(216, 248, 154, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 70px);
}

.media-label {
  max-width: 420px;
}

.media-label p {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.media-label h3 {
  font-size: 40px;
}

.dossier-media {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  align-content: start;
}

.dossier-media img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.04) contrast(1.03);
}

.dossier-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 5, 8, 0.06) 0%, rgba(4, 5, 8, 0.26) 42%, rgba(4, 5, 8, 0.82) 100%),
    linear-gradient(135deg, rgba(189, 208, 226, 0.08), transparent 38%);
  pointer-events: none;
}

.dossier-media .media-label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.dossier-media .media-label p:last-child {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  text-transform: none;
}

.feature-copy {
  padding: 28px 28px 28px 0;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 900;
}

.process-list {
  overflow: hidden;
  background: var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: 86px 250px 1fr;
  gap: 22px;
  padding: 32px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.052), transparent 38%),
    rgba(5, 5, 6, 0.86);
}

.process-list article:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.075), transparent 42%),
    rgba(8, 8, 9, 0.9);
}

.process-list article + article {
  border-top: 1px solid var(--line);
}

.process-list p {
  margin: 0;
}

.storyline-section {
  --story-shift: 0%;
  --story-cyan-alpha: 0.045;
  --story-lime-alpha: 0.03;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at calc(50% + var(--story-shift)) 42%, rgba(184, 199, 217, var(--story-cyan-alpha)), transparent 36%),
    radial-gradient(ellipse at calc(18% + var(--story-shift)) 74%, rgba(216, 248, 154, var(--story-lime-alpha)), transparent 30%),
    radial-gradient(ellipse at calc(82% + var(--story-shift)) 18%, rgba(150, 120, 190, 0.04), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 18%, rgba(255, 255, 255, 0.026) 52%, transparent 82%),
    #030304;
}

.storyline {
  --story-progress: 0%;
  position: relative;
  display: grid;
  gap: 340px;
  max-width: 1100px;
  min-height: 2180px;
  margin: 92px auto 0;
  padding: 210px 0;
  isolation: isolate;
}

.storyline::before,
.storyline::after {
  display: none;
}

.story-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 4px;
  height: auto;
  overflow: visible;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.09)),
    rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 36px rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
  pointer-events: none;
}

.story-spine span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: var(--story-progress);
  max-height: 100%;
  border-radius: inherit;
  background: linear-gradient(180deg, #ffffff 0%, #f5fff0 44%, #b8c7d9 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.62),
    0 0 22px rgba(255, 255, 255, 0.78),
    0 0 62px rgba(216, 248, 154, 0.34),
    0 0 96px rgba(184, 199, 217, 0.28);
}

.story-spine span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.9),
    0 0 48px rgba(216, 248, 154, 0.48),
    0 0 78px rgba(184, 199, 217, 0.38);
  transform: translate(-50%, 50%);
}

.timeline-item {
  position: relative;
  width: min(440px, calc(50% - 76px));
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.145), rgba(255, 255, 255, 0.038) 44%, rgba(255, 255, 255, 0.082)),
    rgba(8, 10, 12, 0.52);
  box-shadow:
    0 22px 78px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(30px) saturate(168%);
  -webkit-backdrop-filter: blur(30px) saturate(168%);
  transition:
    border-color 380ms ease,
    background 380ms ease,
    box-shadow 380ms ease,
    filter 380ms ease,
    opacity 420ms ease;
  z-index: 3;
}

.timeline-item.is-passed {
  border-color: rgba(255, 255, 255, 0.44);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.075) 46%, rgba(245, 255, 240, 0.14)),
    rgba(14, 16, 18, 0.62);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.09),
    0 0 58px rgba(255, 255, 255, 0.2),
    0 0 86px rgba(216, 248, 154, 0.12),
    0 26px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  filter: brightness(1.04);
}

.timeline-item.left {
  justify-self: start;
}

.timeline-item.right {
  justify-self: end;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 34px;
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.38));
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.16);
  transition: background 380ms ease, box-shadow 380ms ease, opacity 380ms ease;
}

.timeline-item.is-passed::before {
  background: #ffffff;
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.72),
    0 0 36px rgba(216, 248, 154, 0.22);
}

.timeline-item.left::before {
  right: -76px;
}

.timeline-item.right::before {
  left: -76px;
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 29px;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: #f7f7f2;
  box-shadow:
    0 0 14px rgba(255, 255, 255, 0.62),
    0 0 34px rgba(216, 248, 154, 0.22);
  transition: box-shadow 380ms ease, background 380ms ease;
}

.timeline-item.is-passed::after {
  background: #ffffff;
  box-shadow:
    0 0 16px rgba(255, 255, 255, 0.9),
    0 0 44px rgba(216, 248, 154, 0.42),
    0 0 72px rgba(184, 199, 217, 0.3);
}

.timeline-item.left::after {
  right: -83px;
}

.timeline-item.right::after {
  left: -83px;
}

.timeline-item span {
  display: block;
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.timeline-item p {
  margin-bottom: 0;
}

.story-visual {
  --float-y: 0px;
  position: absolute;
  width: min(230px, 23vw);
  min-height: 160px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(7, 10, 13, 0.5);
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(28px) saturate(158%);
  -webkit-backdrop-filter: blur(28px) saturate(158%);
  transform: translateY(var(--float-y));
  transition: transform 280ms ease-out;
  pointer-events: none;
  z-index: 1;
}

.story-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transform: skewX(-8deg);
}

.story-visual span,
.story-visual strong {
  position: relative;
  z-index: 1;
}

.story-visual span {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.story-visual strong {
  color: var(--text);
  font-size: 19px;
  line-height: 1.15;
}

.visual-one {
  top: 7%;
  right: 8%;
}

.visual-two {
  top: 30%;
  left: 7%;
}

.visual-three {
  top: 55%;
  right: 6%;
}

.visual-four {
  top: 78%;
  left: 9%;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.route-card {
  min-height: 290px;
  padding: 28px;
}

.route-card p {
  margin-bottom: 0;
}

.selected-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 22px;
}

.selected-work-card {
  min-height: 100%;
  color: inherit;
  transition:
    transform var(--motion-surface),
    border-color var(--motion-surface),
    box-shadow var(--motion-surface);
}

.selected-work-card:hover {
  transform: translateY(-4px);
}

.selected-work-card--featured {
  grid-row: span 2;
}

.selected-work-thumb {
  min-height: 286px;
  background: #06080b;
}

.selected-work-card--featured .selected-work-thumb {
  min-height: 418px;
}

.selected-work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
}

.selected-work-body {
  position: relative;
  min-height: 220px;
  padding-right: 58px;
}

.selected-work-card--featured .selected-work-body {
  min-height: 240px;
}

.selected-work-body h3 {
  margin-bottom: 10px;
  font-size: 28px;
}

.selected-work-arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 18px;
  height: 18px;
  color: var(--text-high);
}

.project-thumb.real-shot {
  background: #06080b;
}

.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.04) contrast(1.03);
}

.page-hero {
  padding: 118px 0 72px;
}

.page-hero h1 {
  max-width: 920px;
  font-size: 64px;
  line-height: 1;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  font-size: 19px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.filter-row span,
.filter-row a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.filter-row .active {
  background: var(--text);
  color: var(--ink);
}

.project-card,
.product-card {
  overflow: hidden;
}

.project-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.project-thumb,
.product-thumb {
  min-height: 260px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 28px);
}

.project-thumb.green,
.product-thumb.green {
  background:
    linear-gradient(135deg, rgba(216, 248, 154, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 34px);
}

.project-thumb.flagship {
  background:
    linear-gradient(135deg, rgba(189, 208, 226, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
    url("assets/attack-the-brainrot-logo.png") center / min(82%, 360px) auto no-repeat,
    #06080b;
}

.project-thumb.gold,
.product-thumb.gold {
  background:
    linear-gradient(135deg, rgba(255, 211, 122, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.025)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 36px);
}

.project-body,
.product-body {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.case-study-gallery {
  margin-top: 18px;
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.case-gallery__item {
  min-width: 0;
}

.case-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(10, 13, 16, 0.9);
}

.case-proof__item {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.02)),
    rgba(20, 26, 34, 0.72);
}

.work-page .accent-word {
  color: #a8c8ff;
  text-shadow:
    0 0 18px rgba(168, 200, 255, 0.22),
    0 0 44px rgba(168, 200, 255, 0.1);
}

.work-page .work-hero {
  position: relative;
  overflow: clip;
  padding-bottom: 86px;
}

.work-page .work-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(61, 183, 255, 0), rgba(61, 183, 255, 0.52), rgba(255, 79, 163, 0.38), rgba(61, 183, 255, 0));
  opacity: 0.82;
  pointer-events: none;
}

.work-page .work-hero__copy {
  position: relative;
  max-width: 940px;
}

.work-page .work-hero__copy::after {
  content: "";
  position: absolute;
  top: 18px;
  right: clamp(-72px, -6vw, -22px);
  width: clamp(132px, 16vw, 220px);
  aspect-ratio: 1;
  border: 1px solid rgba(61, 183, 255, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(61, 183, 255, 0.08), rgba(61, 183, 255, 0.015)),
    radial-gradient(circle at 30% 30%, rgba(255, 79, 163, 0.12), transparent 58%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 28px rgba(61, 183, 255, 0.08);
  transform: rotate(8deg);
  opacity: 0.72;
  pointer-events: none;
}

.work-page .work-filter-row {
  gap: 12px;
  margin-top: 34px;
}

.work-page .work-filter-row span {
  border-color: var(--divider-subtle);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(10, 13, 16, 0.88);
  color: var(--text-medium);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.work-page .work-filter-row .active {
  border-color: rgba(61, 183, 255, 0.36);
  background:
    linear-gradient(180deg, rgba(61, 183, 255, 0.18), rgba(61, 183, 255, 0.06)),
    rgba(10, 13, 16, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 22px rgba(61, 183, 255, 0.12);
}

.work-page .work-project-grid {
  grid-template-columns: 1.22fr 0.89fr 0.89fr;
  align-items: stretch;
}

.work-page [data-reveal] {
  transition:
    opacity 240ms var(--mrb-ease-out),
    transform 240ms var(--mrb-ease-out),
    filter 240ms var(--mrb-ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.work-page .work-project-grid > [data-reveal]:nth-child(2) {
  --reveal-delay: 60ms;
}

.work-page .work-project-grid > [data-reveal]:nth-child(3) {
  --reveal-delay: 120ms;
}

.work-page .project-preview-card {
  --work-card-accent: rgba(61, 183, 255, 0.42);
  --work-card-accent-solid: var(--mrb-signal-cyan);
  min-height: 100%;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
    rgba(8, 11, 15, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 54px rgba(0, 0, 0, 0.24);
}

.work-page .project-preview-card::after {
  left: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), var(--work-card-accent-solid), rgba(0, 0, 0, 0));
  opacity: 0.34;
  transform: scaleX(0.22);
  box-shadow: 0 0 0 transparent;
}

.work-page .project-preview-card--magenta {
  --work-card-accent: rgba(255, 79, 163, 0.42);
  --work-card-accent-solid: var(--mrb-sakura-magenta);
}

.work-page .project-preview-card .project-card__link {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  transition:
    transform var(--mrb-duration-card) var(--mrb-ease-out),
    opacity var(--mrb-duration-card) var(--mrb-ease-out);
}

.work-page .project-preview-card .project-card__link:focus-visible {
  outline: none;
}

.work-page .project-preview-card .project-thumb {
  position: relative;
  min-height: clamp(272px, 28vw, 364px);
  overflow: hidden;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.work-page .project-preview-card .project-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 10, 13, 0.08) 0%, rgba(7, 10, 13, 0.18) 40%, rgba(7, 10, 13, 0.88) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 32%);
  pointer-events: none;
}

.work-page .project-preview-card .project-thumb::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}

.work-page .project-preview-card .project-thumb img {
  height: 100%;
  transform: scale(1);
  transition:
    transform var(--mrb-duration-card) var(--mrb-ease-out),
    filter var(--mrb-duration-card) var(--mrb-ease-out);
}

.work-page .project-preview-card .project-body {
  position: relative;
  gap: 16px;
  padding: 24px;
}

.work-page .project-preview-card .project-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.work-page .project-preview-card .project-meta span,
.work-page .work-shot-card .project-meta span {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 13, 0.56);
  color: rgba(245, 247, 250, 0.82);
}

.work-page .project-preview-card h2,
.work-page .work-shot-card h2 {
  overflow-wrap: anywhere;
}

.work-page .project-card__overlay-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(245, 247, 250, 0.16);
  border-radius: 999px;
  background: rgba(7, 10, 13, 0.86);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--mrb-duration-card) var(--mrb-ease-out),
    transform var(--mrb-duration-card) var(--mrb-ease-out),
    border-color var(--mrb-duration-card) var(--mrb-ease-out),
    box-shadow var(--mrb-duration-card) var(--mrb-ease-out);
  pointer-events: none;
}

.work-page .project-card__overlay-label::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--work-card-accent-solid);
  box-shadow: 0 0 14px color-mix(in srgb, var(--work-card-accent-solid) 70%, transparent);
}

.work-page .project-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: rgba(245, 247, 250, 0.88);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-page .project-card__cta::after {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--work-card-accent-solid), rgba(0, 0, 0, 0));
}

.work-page .project-preview-card:hover,
.work-page .project-preview-card:focus-within {
  border-color: var(--work-card-accent);
  box-shadow:
    0 24px 74px rgba(0, 0, 0, 0.36),
    0 0 0 1px color-mix(in srgb, var(--work-card-accent-solid) 28%, transparent),
    0 0 40px color-mix(in srgb, var(--work-card-accent-solid) 16%, transparent);
}

.work-page .project-preview-card:hover::after,
.work-page .project-preview-card:focus-within::after {
  opacity: 0.94;
  transform: scaleX(1);
  box-shadow: 0 0 22px color-mix(in srgb, var(--work-card-accent-solid) 38%, transparent);
}

.work-page .project-preview-card:hover .project-thumb img,
.work-page .project-preview-card:focus-within .project-thumb img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.04);
}

.work-page .project-preview-card:hover .project-card__overlay-label,
.work-page .project-preview-card:focus-within .project-card__overlay-label {
  opacity: 1;
  transform: translateY(0);
  border-color: var(--work-card-accent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 20px color-mix(in srgb, var(--work-card-accent-solid) 18%, transparent);
}

.work-page .project-preview-card .project-card__link:active {
  transform: scale(0.995);
  transition-duration: var(--mrb-duration-press);
  transition-timing-function: var(--mrb-ease-press);
}

.work-page .work-case-section {
  scroll-margin-top: 124px;
}

.work-page .work-case-card {
  --work-section-accent: var(--mrb-signal-cyan);
  --work-section-accent-soft: rgba(61, 183, 255, 0.16);
  min-height: auto;
  padding: 34px;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 84% 18%, color-mix(in srgb, var(--work-section-accent) 14%, transparent), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.024)),
    rgba(8, 11, 15, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 68px rgba(0, 0, 0, 0.24);
}

.work-page .work-case-card::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), var(--work-section-accent), rgba(0, 0, 0, 0));
  opacity: 0.58;
  transform: scaleX(0.42);
}

.work-page .work-case-section--lime .work-case-card {
  --work-section-accent: var(--mrb-hook-lime);
  --work-section-accent-soft: rgba(163, 230, 53, 0.16);
}

.work-page .work-case-section--magenta .work-case-card {
  --work-section-accent: var(--mrb-sakura-magenta);
  --work-section-accent-soft: rgba(255, 79, 163, 0.16);
}

.work-page .work-case-section:target .work-case-card {
  border-color: color-mix(in srgb, var(--work-section-accent) 44%, rgba(255, 255, 255, 0.08));
  box-shadow:
    0 24px 74px rgba(0, 0, 0, 0.36),
    0 0 0 1px color-mix(in srgb, var(--work-section-accent) 28%, transparent),
    0 0 44px color-mix(in srgb, var(--work-section-accent) 18%, transparent);
}

.work-page .work-case-section:target .work-case-card::after {
  opacity: 0.96;
  transform: scaleX(1);
  box-shadow: 0 0 22px color-mix(in srgb, var(--work-section-accent) 34%, transparent);
}

.work-page .work-case-card:hover {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 68px rgba(0, 0, 0, 0.24);
}

.work-page .work-case-card:hover::before {
  opacity: 0;
}

.work-page .work-case-card:hover::after {
  opacity: 0.58;
  transform: scaleX(0.42);
  box-shadow: none;
}

.work-page .case-gallery {
  counter-reset: gallery-shot;
}

.work-page .work-shot-card {
  counter-increment: gallery-shot;
  min-height: 100%;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(10, 13, 16, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.work-page .work-shot-card::after {
  left: 18px;
  right: 18px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), var(--work-section-accent), rgba(0, 0, 0, 0));
  opacity: 0.4;
  transform: scaleX(0.58);
}

.work-page .work-shot-card:hover {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.work-page .work-shot-card:hover::before {
  opacity: 0;
}

.work-page .work-shot-card:hover::after {
  opacity: 0.4;
  transform: scaleX(0.58);
  box-shadow: none;
}

.work-page .work-shot-card .project-thumb {
  min-height: 228px;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.work-page .work-shot-card .project-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 13, 0.02) 0%, rgba(7, 10, 13, 0.12) 55%, rgba(7, 10, 13, 0.52) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%);
  pointer-events: none;
}

.work-page .work-shot-card .project-body {
  gap: 12px;
  padding: 22px;
}

.work-page .work-shot-card .project-body::before {
  content: "Frame " counter(gallery-shot, decimal-leading-zero);
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0 10px;
  min-height: 24px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--work-section-accent) 38%, rgba(255, 255, 255, 0.08));
  background: color-mix(in srgb, var(--work-section-accent) 10%, rgba(7, 10, 13, 0.86));
  color: rgba(245, 247, 250, 0.84);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-page .case-proof {
  gap: 16px;
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(12, 16, 22, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.work-page .case-proof__item {
  border-color: rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(18, 24, 31, 0.88);
}

.work-page .case-proof__item .icon-frame {
  border-color: color-mix(in srgb, var(--work-section-accent) 34%, rgba(255, 255, 255, 0.12));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 24px color-mix(in srgb, var(--work-section-accent) 16%, transparent);
}

.work-page .case-proof__item p {
  color: rgba(245, 247, 250, 0.72);
}

.work-page .work-final-cta {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 18%, rgba(61, 183, 255, 0.12), transparent 30%),
    radial-gradient(circle at 82% 76%, rgba(163, 230, 53, 0.11), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(9, 12, 16, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 80px rgba(0, 0, 0, 0.22);
}

.work-page .work-final-cta::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(32vw, 280px);
  background:
    linear-gradient(180deg, rgba(61, 183, 255, 0.12), rgba(61, 183, 255, 0)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 24px);
  opacity: 0.7;
  pointer-events: none;
}

.work-page .work-final-cta .action-row {
  margin-top: 34px;
}

@media (max-width: 1200px) {
  .work-page .work-project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-page .work-hero__copy::after {
    right: 0;
  }
}

@media (max-width: 860px) {
  .case-gallery,
  .case-proof {
    grid-template-columns: 1fr;
  }

  .work-page .work-project-grid {
    grid-template-columns: 1fr;
  }

  .work-page .work-hero {
    padding-bottom: 72px;
  }

  .work-page .work-hero__copy::after {
    display: none;
  }

  .work-page .project-preview-card .project-thumb {
    min-height: 288px;
  }

  .work-page .work-case-card {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .work-page .work-final-cta .mrb-btn {
    width: 100%;
  }

  .work-page .project-preview-card h2 {
    font-size: clamp(28px, 10vw, 40px);
    line-height: 1.02;
  }

  .work-page .work-shot-card h2 {
    font-size: clamp(20px, 9vw, 32px);
  }

  .work-page .project-preview-card .project-body,
  .work-page .work-shot-card .project-body {
    padding: 20px;
  }

  .work-page .project-card__cta::after {
    width: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-page .project-preview-card:hover .project-thumb img,
  .work-page .project-preview-card:focus-within .project-thumb img,
  .work-page .project-preview-card .project-card__link:active,
  .work-page .project-preview-card:hover .project-card__overlay-label,
  .work-page .project-preview-card:focus-within .project-card__overlay-label {
    transform: none;
  }
}

.project-meta,
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.project-meta span,
.product-meta span,
.badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-details {
  margin-top: 6px;
  border-top: 1px solid var(--divider-subtle);
  border-bottom: 1px solid var(--divider-subtle);
}

.product-details summary {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  list-style: none;
}

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

.product-details summary::after {
  content: "+";
  color: var(--cyan);
  font-size: 18px;
  line-height: 1;
}

.product-details[open] summary::after {
  content: "-";
}

.product-details ul {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 28px;
}

.price {
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
}

.product-detail-hero {
  max-width: 1060px;
  padding-bottom: 28px;
}

.product-detail-hero .text-link {
  margin: 0 0 34px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
  padding-top: 18px;
}

.product-detail-main {
  display: grid;
  gap: 54px;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.076), rgba(255, 255, 255, 0.034)),
    rgba(5, 5, 6, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px) saturate(138%);
  -webkit-backdrop-filter: blur(16px) saturate(138%);
}

.product-showcase .product-thumb {
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.product-showcase h2 {
  margin-bottom: 18px;
}

.product-section {
  display: grid;
  gap: 24px;
}

.product-section > h2 {
  font-size: 34px;
}

.product-buy-panel {
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035) 46%, rgba(255, 255, 255, 0.07)),
    rgba(5, 5, 6, 0.88);
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.028),
    0 28px 96px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px) saturate(138%);
  -webkit-backdrop-filter: blur(18px) saturate(138%);
}

.product-buy-panel .price {
  font-size: 40px;
}

.product-buy-panel .button {
  width: 100%;
}

.product-spec-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.product-spec-list div {
  display: grid;
  gap: 5px;
  padding-top: 12px;
  border-top: 1px solid var(--divider-subtle);
}

.product-spec-list dt,
.related-products h2 {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-spec-list dd {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.related-products {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}

.related-products a {
  display: flex;
  min-height: 46px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--divider-subtle);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 800;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.related-products a:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background:
    linear-gradient(var(--state-hover), var(--state-hover)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 38px rgba(255, 255, 255, 0.12);
}

.contact-scroll {
  display: flex;
  justify-content: center;
  margin: -38px auto 18px;
}

.contact-scroll-button {
  position: relative;
  display: inline-flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.042)),
    rgba(5, 5, 6, 0.78);
  box-shadow:
    0 0 0 9px rgba(255, 255, 255, 0.028),
    0 0 54px rgba(184, 199, 217, 0.18);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.contact-scroll-button span {
  position: relative;
  display: block;
  width: 2px;
  height: 24px;
  border-radius: 999px;
  background: var(--text);
}

.contact-scroll-button span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: translate(-50%, 1px) rotate(45deg);
}

.contact-scroll-button:hover {
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.035),
    0 0 70px rgba(255, 255, 255, 0.2);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.split.reverse > :first-child {
  grid-column: 2;
}

.split.reverse > :last-child {
  grid-column: 1;
  grid-row: 1;
}

.sticky-note {
  position: sticky;
  top: 100px;
}

.list-panel {
  display: grid;
  gap: 12px;
}

.list-panel article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 6, 0.64);
}

.list-panel h3 {
  margin-bottom: 8px;
}

.list-panel p {
  margin: 0;
}

.form-panel {
  padding: 28px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  background: rgba(5, 5, 6, 0.58);
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 9, 0.76);
}

.form-note {
  margin-top: 16px;
  color: var(--muted-2);
  font-size: 13px;
}

.form-note .text-link,
.faq-list p .text-link {
  margin-top: 0;
}

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 38%, rgba(184, 199, 217, 0.16), transparent 34%),
    rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity 220ms ease, visibility 220ms ease;
}

.inquiry-modal[hidden] {
  display: none;
}

.inquiry-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.inquiry-modal__panel {
  position: relative;
  width: min(640px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.038) 46%, rgba(255, 255, 255, 0.075)),
    rgba(5, 5, 6, 0.9);
  box-shadow:
    0 0 0 12px rgba(255, 255, 255, 0.035),
    0 0 86px rgba(255, 255, 255, 0.16),
    0 32px 120px rgba(0, 0, 0, 0.72);
  transform: translateY(18px) scale(0.98);
  transition: transform 240ms ease;
}

.inquiry-modal.is-open .inquiry-modal__panel {
  transform: translateY(0) scale(1);
}

.inquiry-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
  cursor: pointer;
}

.inquiry-modal__message {
  margin: 16px 0 0;
  font-size: 17px;
}

.inquiry-summary {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.inquiry-summary div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.inquiry-summary dt {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.inquiry-summary dd {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

@media (max-width: 620px) {
  .inquiry-modal__panel {
    padding: 30px 22px;
  }

  .inquiry-summary div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.confetti-layer {
  position: fixed;
  inset: 0;
  z-index: 140;
  overflow: hidden;
  pointer-events: none;
}

.confetti-layer span {
  position: absolute;
  top: -18px;
  left: var(--x);
  width: 8px;
  height: 14px;
  border-radius: 2px;
  opacity: 0;
  box-shadow: 0 0 18px currentColor;
  animation: confetti-fall var(--fall) cubic-bezier(0.16, 0.82, 0.38, 1) var(--delay) forwards;
}

.quiet-link-row {
  margin: 18px 0 0;
  text-align: center;
}

.quiet-link-row .text-link {
  margin-top: 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: start;
}

.legal-card {
  padding: 26px;
}

.legal-card h2 {
  margin-top: 34px;
  font-size: 28px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card h3 {
  margin-top: 24px;
  font-size: 19px;
}

.legal-card p {
  margin: 12px 0 0;
}

.legal-card :is(p, li) {
  color: var(--text-high);
}

.legal-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 5, 6, 0.68);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.legal-nav a {
  color: var(--muted);
  font-weight: 800;
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta p:not(.eyebrow) {
  max-width: 690px;
  margin: 20px auto 0;
  font-size: 18px;
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr 1.5fr;
  gap: 38px;
  margin-bottom: 36px;
  padding: 32px;
}

.footer-brand img {
  width: 150px;
}

.footer p {
  max-width: 350px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.footer h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 14px;
}

.footer a {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.subtle-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 34%, rgba(255, 255, 255, 0.03)),
    rgba(5, 5, 6, 0.32);
}

.table-list {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.table-list article {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(5, 5, 6, 0.66);
}

.reveal-item {
  opacity: 0;
  transform: translateY(6px);
}

.reveal-item.is-visible {
  opacity: 1;
}

.reveal-item.is-visible:not(:hover) {
  transform: translateY(0);
}

@keyframes logo-drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(-18px, -10px, 0) scale(1.015);
  }
}

@keyframes cta-breathe {
  0%,
  100% {
    filter: brightness(1) drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }

  50% {
    filter: brightness(1.05) drop-shadow(0 0 18px rgba(255, 255, 255, 0.2));
  }
}

@keyframes cta-calm {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.025) drop-shadow(0 0 8px rgba(255, 255, 255, 0.12));
  }
}

@keyframes package-shine {
  0% {
    opacity: 0;
    transform: translateX(-120%) skewX(-18deg);
  }

  20%,
  74% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(470%) skewX(-18deg);
  }
}

@keyframes scope-invert-pop {
  0% {
    filter: brightness(1);
  }

  45% {
    filter: brightness(1.14);
  }

  100% {
    filter: brightness(1);
  }
}

@keyframes confetti-fall {
  0% {
    opacity: 0;
    transform: translate3d(0, -20px, 0) rotate(0deg) scale(0.86);
  }

  12% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--drift), 110vh, 0) rotate(var(--spin)) scale(1);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero-media-shell.is-static .hero-media-overlay p::after {
    content: " Poster shown for reduced motion.";
  }
}

.table-list article + article {
  border-top: 1px solid var(--line);
}

.table-list h3,
.table-list p {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-batches {
  display: grid;
  gap: 74px;
  margin-top: 42px;
}

.faq-batch {
  align-items: start;
}

.faq-batch h3 {
  max-width: 420px;
  font-size: 36px;
  line-height: 1.05;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.03)),
    rgba(5, 12, 19, 0.72);
  overflow: hidden;
  backdrop-filter: blur(16px) saturate(132%);
  -webkit-backdrop-filter: blur(16px) saturate(132%);
}

.faq-list summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: var(--text);
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--cyan);
  font-size: 22px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
}

.faq-switch {
  display: grid;
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.faq-row {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1px;
  background: var(--line);
}

.faq-row.reverse {
  grid-template-columns: 1.18fr 0.82fr;
}

.faq-row h3,
.faq-row p {
  margin: 0;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.026)),
    rgba(5, 5, 6, 0.78);
}

.faq-row.reverse h3 {
  grid-column: 2;
}

.faq-row.reverse p {
  grid-column: 1;
  grid-row: 1;
}

.final-stage {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.09), transparent 36%),
    rgba(5, 5, 6, 0.66);
  box-shadow: var(--shadow);
}

/* Phase 3 visual-system pass: consume approved tokens without changing page structure. */
.card,
.project-card,
.product-card,
.legal-card,
.feature-panel,
.process-list,
.footer,
.faq-list details,
.cinema-frame,
.system-board,
.route-card,
.list-panel article,
.table-list article,
.final-stage {
  border-color: var(--border-subtle);
}

.card,
.project-card,
.product-card,
.legal-card,
.feature-panel,
.process-list,
.footer,
.faq-list details,
.list-panel article,
.table-list article,
.final-stage {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.024)),
    rgba(10, 13, 16, 0.9);
}

.feature-panel,
.cinema-frame,
.system-board,
.route-card,
.quick-book-bar,
.inline-cta,
.final-stage {
  border-radius: var(--radius-lg);
}

.card:hover,
.project-card:hover,
.product-card:hover,
.feature-panel:hover,
.metric:hover,
.list-panel article:hover,
.faq-list details:hover,
.route-card:hover,
.legal-card:hover {
  border-color: var(--border-strong);
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.028),
    0 0 36px rgba(189, 208, 226, 0.08);
}

.project-card::after,
.feature-panel::after,
.route-card::after,
.metric::after,
.cinema-frame::after,
.list-panel article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: var(--accent-line);
  opacity: 0.2;
  transform: scaleX(0.28);
  transform-origin: left;
  box-shadow: 0 0 0 transparent;
  transition:
    opacity var(--motion-glow),
    transform var(--motion-glow),
    box-shadow var(--motion-glow);
  pointer-events: none;
}

.project-card:hover::after,
.feature-panel:hover::after,
.route-card:hover::after,
.metric:hover::after,
.cinema-frame:hover::after,
.list-panel article:hover::after {
  opacity: 0.82;
  transform: scaleX(1);
  box-shadow: 0 0 18px rgba(189, 208, 226, 0.2);
}

.project-thumb,
.product-thumb {
  border-bottom-color: var(--border-subtle);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(189, 208, 226, 0.06), transparent 58%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 28px),
    var(--surface-card);
}

.project-meta span,
.product-meta span,
.badge,
.metric span,
.meta-label,
.system-board span,
.route-card span,
.quick-book-bar span,
.inline-cta span {
  color: var(--text-medium);
}

.subtle-band {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 28%, rgba(189, 208, 226, 0.05) 68%, transparent 100%),
    rgba(7, 10, 13, 0.76);
}

.tone-split-section {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  color-scheme: dark;
  color: var(--text);
  background:
    radial-gradient(ellipse at 74% 68%, rgba(189, 208, 226, 0.13), transparent 38%),
    radial-gradient(ellipse at 24% 14%, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(180deg, var(--surface-page) 0%, #090c0f 16%, var(--surface-proof) 54%, #10161d 100%);
}

.tone-split-section::before,
.tone-split-section::after {
  height: 90px;
}

.tone-split-section::before {
  background: linear-gradient(180deg, rgba(2, 3, 4, 0.98) 0%, rgba(2, 3, 4, 0.54) 44%, transparent 100%);
}

.tone-split-section::after {
  background: linear-gradient(180deg, transparent 0%, rgba(20, 26, 34, 0.68) 56%, rgba(2, 3, 4, 0.94) 100%);
}

.tone-split-section .feature-switch {
  padding: 24px 0 78px;
}

.feature-row {
  gap: 42px;
  min-height: 540px;
  padding: 54px 0;
}

.feature-row.dark-row {
  min-height: 610px;
  padding: 72px 0 88px;
}

.feature-row.light-row {
  min-height: 500px;
  padding: 34px 0 46px;
  color-scheme: dark;
  forced-color-adjust: auto;
  color: var(--text);
}

.feature-row.light-row .eyebrow,
.feature-row.light-row .text-link {
  color: var(--text-medium);
}

.feature-row.light-row p {
  color: var(--muted);
}

.feature-row.light-row .system-board,
.feature-row.light-row .system-board article {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.024)),
    rgba(20, 26, 34, 0.94);
}

.feature-row.light-row .system-board {
  border-color: var(--border-subtle);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  background: var(--border-subtle);
}

.feature-row.light-row .system-board article + article {
  border-top: 1px solid var(--border-subtle);
}

.white-fade-section {
  color: var(--text);
  color-scheme: dark;
  forced-color-adjust: auto;
  background-color: var(--surface-proof);
  background:
    radial-gradient(ellipse at 76% 16%, rgba(189, 208, 226, 0.16), transparent 34%),
    radial-gradient(ellipse at 14% 82%, rgba(255, 255, 255, 0.05), transparent 30%),
    linear-gradient(180deg, var(--surface-proof) 0%, #18202b 42%, #10161d 100%);
}

.white-fade-section::before {
  background: linear-gradient(180deg, rgba(2, 3, 4, 0.92) 0%, rgba(2, 3, 4, 0.44) 42%, rgba(20, 26, 34, 0) 100%);
}

.white-fade-section::after {
  background: linear-gradient(180deg, rgba(20, 26, 34, 0) 0%, rgba(2, 3, 4, 0.42) 62%, rgba(2, 3, 4, 0.94) 100%);
}

.white-fade-section p {
  color: var(--muted);
}

.white-fade-section .eyebrow,
.white-fade-section .text-link {
  color: var(--text-medium);
}

.white-fade-section .route-card {
  border-color: var(--border-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.028)),
    rgba(20, 26, 34, 0.94);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.white-fade-section .route-card span {
  color: var(--text-medium);
}

.route-grid {
  gap: 22px;
}

.final-cta {
  padding-top: 112px;
  padding-bottom: 108px;
}

[data-reveal],
.reveal-sequence > *,
.timeline-item {
  opacity: 0;
  transition:
    opacity 640ms ease,
    transform 760ms cubic-bezier(0.19, 1, 0.22, 1),
    filter 760ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="drop"] {
  transform: translateY(-18px);
  filter: blur(3px);
}

[data-reveal="left"],
.timeline-item.left,
[data-reveal="right"],
.timeline-item.right {
  /* Mobile fallback: a vertical drop avoids bleeding past the 16px gutter
     during the reveal transition (body has overflow-x: hidden, so an X
     translate would be silently clipped on phones). */
  transform: translateY(12px);
}

@media (min-width: 700px) {
  [data-reveal="left"],
  .timeline-item.left {
    transform: translateX(-24px);
  }

  [data-reveal="right"],
  .timeline-item.right {
    transform: translateX(24px);
  }
}

[data-reveal="scale"] {
  transform: scale(0.985);
}

[data-reveal="panel"],
.reveal-sequence > * {
  transform: translateY(12px);
}

[data-reveal].is-visible,
.reveal-sequence > .is-visible,
.timeline-item.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: blur(0);
}

/* Mobile nav (burger) — engaged at <=1100px so the awkward "nav wraps to a
   second row" tablet band (981-1100) collapses straight into the burger.
   Keep this breakpoint in sync with mobileNavQuery in script.js. */
@media (max-width: 1100px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px 18px;
    padding: 14px 8px;
  }

  /* Pre-JS fallback: until script.js wraps the loose nav links into a
     panel and inserts the burger toggle, hide the loose links so users
     don't briefly see a full-width unwrapped nav before the burger renders. */
  .site-header:not(.is-mobile-nav-ready) > .nav,
  .site-header:not(.is-mobile-nav-ready) > .nav-cta {
    display: none;
  }

  .nav {
    order: 3;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 18px;
    padding: 10px 2px 2px;
    white-space: normal;
  }

  .nav a {
    flex: 0 0 auto;
  }

  .site-header.is-mobile-nav-ready {
    flex-wrap: nowrap;
    align-items: center;
  }

  .site-header.is-mobile-nav-ready .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-header.is-mobile-nav-ready .site-header__panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    background:
      linear-gradient(180deg, rgba(17, 22, 30, 0.98), rgba(9, 12, 18, 0.94)),
      rgba(6, 8, 12, 0.92);
    box-shadow:
      0 22px 64px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    max-height: min(calc(100svh - 120px), 520px);
    overflow-y: auto;
  }

  .site-header.is-mobile-nav-ready .nav {
    order: 0;
    display: grid;
    width: 100%;
    gap: 8px;
    padding: 0;
  }

  .site-header.is-mobile-nav-ready .nav a {
    width: 100%;
    padding: 12px 14px;
    margin: 0;
    border: 1px solid var(--divider-subtle);
    border-radius: 16px;
    background: rgba(245, 247, 250, 0.02);
  }

  .site-header.is-mobile-nav-ready .nav a::before {
    inset: 0;
  }

  .site-header.is-mobile-nav-ready .nav a:hover,
  .site-header.is-mobile-nav-ready .nav a:focus-visible {
    border-color: var(--divider-subtle);
  }

  .site-header.is-mobile-nav-ready .nav a[aria-current="page"] {
    border-color: rgba(61, 183, 255, 0.32);
    color: var(--text-high);
  }

  .site-header.is-mobile-nav-ready .nav a:hover::before {
    background-color: var(--state-hover);
  }

  .site-header.is-mobile-nav-ready .nav a:focus-visible::before {
    background-color: var(--state-focus);
  }

  .site-header.is-mobile-nav-ready .nav a:active::before {
    background-color: var(--state-pressed);
  }

  .site-header.is-mobile-nav-ready .nav a[aria-current="page"]::before {
    background-color: rgba(61, 183, 255, 0.1);
  }

  .site-header.is-mobile-nav-ready .nav-cta {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    padding-inline: 18px;
  }

  .site-header[data-mobile-nav-open="true"] .nav-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header[data-mobile-nav-open="true"] .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .site-header[data-mobile-nav-open="true"] .nav-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 980px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    background-attachment: scroll;
  }

  body::before,
  body::after {
    width: 100%;
    max-width: 100%;
  }

  h1,
  .page-hero h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-mark {
    width: min(760px, 120%);
    right: -48%;
    opacity: 0.18;
  }

  .hero-metrics,
  .grid-3,
  .grid-4,
  .feature-panel,
  .hero-stage,
  .feature-row,
  .feature-row.reverse,
  .selected-work-grid,
  .route-grid,
  .split,
  .product-detail-layout,
  .product-showcase,
  .footer,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    gap: 44px;
    padding-top: 148px;
  }

  .hero-headline {
    font-size: 58px;
  }

  .hero-headline-home {
    font-size: clamp(58px, 9vw, 76px);
    max-width: 680px;
  }

  .hero-line-third,
  .hero-line-last {
    white-space: normal;
  }

  .hero-proof-pills {
    grid-template-columns: 1fr;
  }

  .hero-metrics.trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics {
    margin-top: -42px;
  }

  .hero-metrics.trust-strip .metric {
    align-items: flex-start;
  }

  .selected-work-card--featured {
    grid-row: auto;
  }

  .selected-work-card--featured .selected-work-thumb,
  .selected-work-thumb {
    min-height: 320px;
  }

  .selected-work-body {
    min-height: auto;
  }

  .launch-dossier {
    min-height: auto;
  }

  .launch-dossier .cinema-title,
  .dossier-media .media-label h3 {
    font-size: 32px;
  }

  .dossier-lead,
  .dossier-hook {
    font-size: 16px;
  }

  .card,
  .project-card,
  .product-card,
  .legal-card,
  .form-panel,
  .feature-panel,
  .process-list,
  .footer,
  .cinema-frame,
  .system-board,
  .route-card,
  .faq-list details {
    backdrop-filter: blur(12px) saturate(126%);
    -webkit-backdrop-filter: blur(12px) saturate(126%);
  }

  .feature-row.reverse .feature-copy,
  .feature-row.reverse > :last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .split.reverse > :first-child,
  .split.reverse > :last-child {
    grid-column: auto;
    grid-row: auto;
  }

  .product-buy-panel.sticky-note {
    position: relative;
    top: auto;
  }

  .tone-split-section {
    background:
      radial-gradient(ellipse at 76% 22%, rgba(189, 208, 226, 0.12), transparent 36%),
      linear-gradient(180deg, var(--surface-page) 0%, #0a0d10 22%, var(--surface-proof) 58%, #111820 100%);
  }

  .feature-row {
    min-height: auto;
    padding: 34px 0;
  }

  .storyline::before,
  .storyline::after {
    left: 18px;
  }

  .storyline {
    min-height: auto;
    gap: 96px;
    padding: 58px 0;
  }

  .story-spine {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 18px;
    height: auto;
    transform: translateX(-50%);
  }

  .story-visual {
    display: none;
  }

  .timeline-item {
    width: calc(100% - 54px);
    justify-self: end;
  }

  .timeline-item.left,
  .timeline-item.right {
    justify-self: end;
  }

  .timeline-item.left::before,
  .timeline-item.right::before {
    left: -36px;
    right: auto;
    width: 36px;
  }

  .timeline-item.left::after,
  .timeline-item.right::after {
    left: -42px;
    right: auto;
  }

  .faq-row,
  .faq-row.reverse {
    grid-template-columns: 1fr;
  }

  .faq-row.reverse h3,
  .faq-row.reverse p {
    grid-column: auto;
    grid-row: auto;
  }

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

  .feature-copy {
    padding: 8px 10px 18px;
  }

  .process-list article,
  .table-list article {
    grid-template-columns: 1fr;
  }

  .sticky-note,
  .legal-nav {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1120px) and (min-width: 861px) {
  .hero {
    align-items: flex-start;
    min-height: auto;
  }

  .hero-stage {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
    gap: 28px;
    padding: 136px 0 60px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-headline {
    font-size: 66px;
  }

  .hero-headline-home {
    max-width: 620px;
    font-size: clamp(52px, 6.2vw, 74px);
    line-height: 0.94;
  }

  .hero-line-third,
  .hero-line-last {
    white-space: nowrap;
  }

  .hero-text {
    max-width: 560px;
    margin-top: 22px;
    font-size: 18px;
  }

  .hero-actions {
    gap: 14px;
    margin-top: 32px;
  }

  .hero-actions .button {
    min-height: 66px;
    padding: 0 32px;
    font-size: 16px;
  }

  .hero-note {
    margin-top: 14px;
  }

  .hero-console {
    max-width: 356px;
    margin-top: 6px;
    padding: 12px;
  }

  .console-screen {
    min-height: 210px;
  }

  .console-stack article {
    padding: 12px 14px;
  }

  .hero-metrics {
    margin-top: 12px;
  }

  .hero-metrics.trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-book {
    right: 18px;
    bottom: 18px;
    min-height: 62px;
    padding: 0 28px;
  }
}

@media (max-height: 860px) and (min-width: 861px) {
  .hero {
    align-items: flex-start;
    min-height: auto;
  }

  .hero-stage {
    padding-top: 148px;
    padding-bottom: 56px;
  }

  .hero-metrics {
    margin-top: 10px;
  }
}

@media (max-width: 620px) {
  body {
    min-width: 0;
  }

  .section-shell {
    width: min(var(--max), calc(100% - 32px));
  }

  .site-header {
    top: 8px;
    /* Section gutter at <=620px is 16px (calc(100% - 32px) / 2),
       so header overhangs by 16 total → width = 100% - 16px, padding 8. */
    width: calc(100% - 16px);
    padding: 12px 8px 10px;
    border-radius: var(--radius-lg);
  }

  .site-header.is-mobile-nav-ready .site-header__panel {
    top: calc(100% + 8px);
    padding: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 110px;
  }

  .brand-text {
    display: none;
  }

  .nav-cta {
    min-height: 46px;
    padding: 0 16px;
    font-size: 13px;
  }

  .nav {
    gap: 10px 14px;
    font-size: 12px;
  }

  .site-header.is-mobile-nav-ready .nav {
    gap: 8px;
    font-size: 13px;
  }

  .site-header.is-mobile-nav-ready .nav-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .site-header.is-mobile-nav-ready .nav-cta {
    min-height: 48px;
    font-size: 14px;
  }

  .floating-book {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    padding: 154px 0 64px;
  }

  .hero-headline {
    font-size: clamp(36px, 11vw, 42px);
  }

  .hero-headline-home {
    font-size: clamp(42px, 11.8vw, 56px);
    max-width: 100%;
    line-height: 0.96;
  }

  .hero-proof-pills {
    grid-template-columns: 1fr;
  }

  .hero-metrics.trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    margin-top: -18px;
  }

  .selected-work-thumb,
  .selected-work-card--featured .selected-work-thumb {
    min-height: 240px;
  }

  .hero-media-shell {
    inset: 16px;
  }

  .hero-media-overlay {
    inset: auto 14px 14px;
    max-width: none;
  }

  .hero-media-overlay strong {
    font-size: 22px;
  }

  .hero-media-overlay p {
    font-size: 13px;
  }

  .dossier-grid article {
    padding: 16px;
  }

  .launch-dossier .cinema-title,
  .dossier-media .media-label h3 {
    font-size: 26px;
  }

  .dossier-lead,
  .dossier-hook {
    font-size: 15px;
  }

  .hero-console {
    padding: 14px;
  }

  .console-stack article {
    grid-template-columns: 52px minmax(0, 1fr);
    padding: 16px;
  }

  .selected-work-body {
    padding-right: 26px;
  }

  .selected-work-body h3 {
    font-size: 24px;
  }

  .selected-work-arrow {
    right: 20px;
    bottom: 22px;
  }

  .console-screen,
  .cinema-frame {
    min-height: 280px;
  }

  .hero-content {
    padding: 108px 0 72px;
  }

  h1,
  .page-hero h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 21px;
  }

  .hero-text,
  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-media-placeholder {
    inset: 14px;
    padding: 16px;
  }

  .hero-media-placeholder strong {
    font-size: 22px;
  }

  .hero-actions,
  .action-row {
    flex-direction: column;
  }

  .button {
    min-height: 68px;
    width: 100%;
  }

  .small-button {
    min-height: 56px;
    width: 100%;
  }

  .hero-metrics {
    margin-top: 0;
    width: min(var(--max), calc(100% - 32px));
  }

  .quick-book-bar,
  .inline-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .section,
  .page-hero {
    padding: 72px 0;
  }

  .white-fade-section {
    padding: 96px 0;
    background:
      radial-gradient(ellipse at 74% 18%, rgba(189, 208, 226, 0.14), transparent 36%),
      linear-gradient(180deg, var(--surface-proof) 0%, #18202b 44%, #10161d 100%);
  }

  .white-fade-section::before,
  .white-fade-section::after {
    height: 58px;
  }

  .tone-split-section::before,
  .tone-split-section::after {
    height: 70px;
  }

  .section-heading {
    display: block;
  }

  .card,
  .project-body,
  .product-body,
  .form-panel,
  .legal-card {
    padding: 22px;
  }

  .card-number,
  .step-number,
  .product-type {
    margin-bottom: 28px;
  }

  .media-frame,
  .project-thumb,
  .product-thumb {
    min-height: 250px;
  }

  .storyline {
    gap: 70px;
  }

  .segment-divider {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .segment-divider span {
    display: none;
  }

  .timeline-item {
    width: calc(100% - 42px);
    padding: 22px;
  }

  .faq-row h3,
  .faq-row p {
    padding: 22px;
  }

  .media-label h3 {
    font-size: 30px;
  }

  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Round 2 optimization pass: restrained accent propagation, proof modules, and icon utilities. */

h1,
h2,
.hero-headline,
.faq-batch h3,
.media-label h3 {
  text-wrap: balance;
}

.accent-word {
  color: var(--accent-blue);
  text-shadow:
    0 0 18px rgba(168, 200, 255, 0.22),
    0 0 44px rgba(168, 200, 255, 0.1);
}

.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;
}

.motion-safe-transition {
  transition:
    transform var(--motion-surface),
    border-color var(--motion-fast),
    background var(--motion-fast),
    color var(--motion-fast),
    box-shadow var(--motion-fast);
}

.icon--xs {
  width: 16px;
  height: 16px;
}

.icon--s {
  width: 24px;
  height: 24px;
}

.icon--m {
  width: 38px;
  height: 38px;
}

.icon--l {
  width: 60px;
  height: 60px;
}

.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.svg-icon svg,
.icon-frame svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-frame {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid var(--divider-subtle);
  border-radius: 15px;
  color: var(--text-high);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(8, 11, 15, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 24px rgba(189, 208, 226, 0.06);
}

.icon-frame--tight {
  width: 40px;
  height: 40px;
  border-radius: 13px;
}

.icon-frame--large {
  width: 58px;
  height: 58px;
  border-radius: 18px;
}

.icon-title-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.icon-title-row--compact {
  gap: 12px;
  margin-bottom: 12px;
}

.icon-title-row + p {
  margin-top: 0;
}

.title-stack {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.title-stack p,
.title-stack h3,
.title-stack strong,
.title-stack span {
  margin: 0;
}

.title-kicker {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav a,
.button.secondary,
.text-link,
.contact-scroll-button,
.filter-row a {
  position: relative;
}

.nav a {
  padding-bottom: 8px;
}

.nav a::after,
.button.secondary::after,
.text-link::after,
.filter-row a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent-blue-line);
  opacity: 0;
  transform: scaleX(0.24);
  transform-origin: left;
  transition:
    opacity var(--motion-fast),
    transform var(--motion-fast),
    box-shadow var(--motion-fast);
  pointer-events: none;
}

.nav a::after {
  bottom: -3px;
}

.button.secondary::after {
  left: 18px;
  right: 18px;
  bottom: 9px;
}

.text-link::after {
  bottom: -3px;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after,
.nav a:focus-visible::after,
.button.secondary:hover::after,
.button.secondary:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after,
.filter-row a:hover::after,
.filter-row a:focus-visible::after,
.filter-row a.active::after {
  opacity: 1;
  transform: scaleX(1);
  box-shadow: 0 0 14px rgba(168, 200, 255, 0.26);
}

.nav a[aria-current="page"] {
  color: var(--text);
  text-shadow: none;
}

.nav a:hover,
.footer a:hover,
.text-link:hover {
  color: var(--text);
}

.filter-row a,
.filter-row span {
  gap: 8px;
  transition:
    color var(--motion-fast),
    border-color var(--motion-fast),
    background var(--motion-fast),
    box-shadow var(--motion-fast);
}

.filter-row a:hover,
.filter-row a:focus-visible {
  border-color: rgba(168, 200, 255, 0.34);
  color: var(--text);
}

.filter-row .active {
  border-color: rgba(168, 200, 255, 0.36);
  background: rgba(168, 200, 255, 0.1);
  color: var(--text);
  box-shadow:
    inset 0 0 0 1px rgba(168, 200, 255, 0.08),
    0 0 18px rgba(168, 200, 255, 0.08);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(168, 200, 255, 0.9);
  outline-offset: 3px;
}

.button:focus:not(:focus-visible),
.nav-cta:focus:not(:focus-visible),
.small-button:focus:not(:focus-visible),
.topic-chip:focus:not(:focus-visible),
.filter-row a:focus:not(:focus-visible),
.contact-scroll-button:focus:not(:focus-visible),
.nav a:focus:not(:focus-visible) {
  outline: none;
}

.nav-cta,
.button.primary,
.form-panel .button.primary,
.inline-cta .small-button,
.quick-book-bar .small-button {
  position: relative;
}

.nav-cta::after,
.button.primary::after,
.form-panel .button.primary::after,
.inline-cta .small-button::after,
.quick-book-bar .small-button::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-blue-line);
  opacity: 0.55;
  transform: scaleX(0.42);
  transform-origin: center;
  transition:
    opacity var(--motion-fast),
    transform var(--motion-fast),
    box-shadow var(--motion-fast);
  pointer-events: none;
}

.nav-cta:hover::after,
.nav-cta:focus-visible::after,
.button.primary:hover::after,
.button.primary:focus-visible::after,
.form-panel .button.primary:hover::after,
.form-panel .button.primary:focus-visible::after,
.inline-cta .small-button:hover::after,
.inline-cta .small-button:focus-visible::after,
.quick-book-bar .small-button:hover::after,
.quick-book-bar .small-button:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
  box-shadow: 0 0 18px rgba(168, 200, 255, 0.32);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button.primary:hover,
.button.primary:focus-visible,
.form-panel .button.primary:hover,
.form-panel .button.primary:focus-visible {
  border-color: rgba(168, 200, 255, 0.32);
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.03),
    0 0 64px rgba(168, 200, 255, 0.18),
    0 28px 78px rgba(0, 0, 0, 0.44);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(168, 200, 255, 0.26);
}

.text-link {
  display: inline-flex;
  align-items: center;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(168, 200, 255, 0.82);
  box-shadow:
    0 0 0 1px rgba(168, 200, 255, 0.28),
    0 0 0 4px rgba(168, 200, 255, 0.12);
  background: rgba(8, 10, 14, 0.82);
}

.contact-scroll-button:focus-visible,
.filter-row a:focus-visible,
.topic-chip:focus-visible {
  box-shadow:
    0 0 0 1px rgba(168, 200, 255, 0.3),
    0 0 0 5px rgba(168, 200, 255, 0.12);
}

.launch-receipt-copy p:last-of-type,
.feature-copy p:last-of-type,
.page-hero p:last-of-type,
.section-heading p:last-of-type,
.final-cta p:last-of-type {
  text-wrap: pretty;
}

.launch-receipt-copy {
  display: grid;
  gap: 18px;
}

.launch-receipt-copy p,
.launch-receipt-copy .action-row {
  margin: 0;
}

.launch-receipt-copy .action-row {
  margin-top: 6px;
}

.receipt-claim {
  color: var(--text);
  font-size: 23px;
  line-height: 1.28;
}

.receipt-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(10, 13, 16, 0.96);
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.receipt-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto;
  height: 1px;
  background: var(--accent-blue-line);
  opacity: 0.7;
}

.receipt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.receipt-head p,
.receipt-head strong {
  margin: 0;
}

.receipt-tag {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.receipt-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(168, 200, 255, 0.24);
  border-radius: 999px;
  color: var(--accent-blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(168, 200, 255, 0.08);
}

.receipt-stamp::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 16px rgba(168, 200, 255, 0.28);
}

.receipt-title {
  margin: 0;
  font-size: 30px;
}

.receipt-subtitle {
  margin: 10px 0 0;
  color: var(--muted);
}

.receipt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.receipt-item {
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    rgba(7, 10, 13, 0.92);
}

.receipt-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.receipt-item .title-stack strong {
  color: var(--text);
  font-size: 15px;
}

.system-board {
  display: grid;
  gap: 1px;
}

.system-board article {
  display: grid;
  gap: 14px;
  padding: 22px 24px;
}

.system-board article strong {
  font-size: 20px;
  line-height: 1.18;
}

.system-board article p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.route-card > span,
.timeline-step-label {
  color: var(--muted-2);
}

.route-card .icon-title-row,
.card .icon-title-row,
.list-panel .icon-title-row,
.table-list .icon-title-row {
  margin-bottom: 12px;
}

.route-card .icon-title-row h3,
.card .icon-title-row h3,
.list-panel .icon-title-row h3,
.table-list .icon-title-row h3 {
  margin: 0;
}

.route-card .icon-title-row + p,
.card .icon-title-row + p,
.list-panel .icon-title-row + p {
  margin-top: 0;
}

.route-card .text-link,
.card .text-link,
.list-panel .text-link {
  margin-top: 18px;
}

.storyline-section {
  --story-shift: 0%;
  --story-cyan-alpha: 0.045;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at calc(50% + var(--story-shift)) 42%, rgba(168, 200, 255, var(--story-cyan-alpha)), transparent 36%),
    radial-gradient(ellipse at calc(82% + var(--story-shift)) 18%, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 18%, rgba(255, 255, 255, 0.026) 52%, transparent 82%),
    #030304;
}

.storyline {
  max-width: 1100px;
  min-height: auto;
  margin: 72px auto 0;
  padding: 32px 0 56px;
  gap: 118px;
}

.story-spine {
  width: 3px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 28px rgba(255, 255, 255, 0.12);
}

.story-spine span {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(215, 229, 255, 0.92) 46%, rgba(168, 200, 255, 0.92) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.56),
    0 0 18px rgba(255, 255, 255, 0.28),
    0 0 44px rgba(168, 200, 255, 0.24);
}

.story-spine span::after {
  width: 20px;
  height: 20px;
  background: var(--accent-blue);
  box-shadow:
    0 0 18px rgba(168, 200, 255, 0.44),
    0 0 42px rgba(168, 200, 255, 0.32);
}

.timeline-item {
  width: min(440px, calc(50% - 88px));
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03) 44%, rgba(255, 255, 255, 0.06)),
    rgba(8, 10, 12, 0.72);
}

.timeline-item h3 {
  margin-bottom: 10px;
}

.timeline-item p {
  margin: 0;
  line-height: 1.6;
}

.timeline-item::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.26));
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.08);
}

.timeline-item::after {
  width: 12px;
  height: 12px;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(247, 247, 242, 0.88);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.22);
}

.timeline-item.is-passed {
  border-color: rgba(168, 200, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045) 44%, rgba(168, 200, 255, 0.11)),
    rgba(12, 16, 20, 0.82);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 52px rgba(168, 200, 255, 0.12),
    0 24px 86px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  filter: brightness(1.03);
}

.timeline-item.is-passed::before {
  background: linear-gradient(90deg, rgba(168, 200, 255, 0.24), rgba(168, 200, 255, 0.96));
  box-shadow:
    0 0 12px rgba(168, 200, 255, 0.32),
    0 0 24px rgba(168, 200, 255, 0.18);
}

.timeline-item.is-passed::after {
  background: var(--accent-blue);
  border-color: rgba(168, 200, 255, 0.84);
  box-shadow:
    0 0 16px rgba(168, 200, 255, 0.42),
    0 0 40px rgba(168, 200, 255, 0.22);
}

.timeline-step-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.timeline-step-label {
  margin: 0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.timeline-step-top .icon-frame {
  width: 42px;
  height: 42px;
  border-radius: 14px;
}

.story-visual {
  display: none;
}

.project-hover-note {
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  color: var(--text-medium);
  font-size: 13px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(8px);
  transition:
    max-height var(--motion-surface),
    margin-top var(--motion-surface),
    opacity var(--motion-surface),
    transform var(--motion-surface);
}

.project-card:hover .project-hover-note,
.project-card:focus-within .project-hover-note {
  max-height: 80px;
  margin-top: 14px;
  opacity: 1;
  transform: translateY(0);
}

.product-type-row,
.faq-filter-label,
.faq-group-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-type-row {
  margin-bottom: 12px;
}

.product-type-row .product-type {
  margin: 0;
}

.product-type-row .svg-icon,
.faq-filter-label .svg-icon,
.faq-group-label .svg-icon {
  color: var(--text-high);
}

.faq-group-label {
  margin-bottom: 14px;
}

.faq-group-label .eyebrow {
  margin: 0;
}

.faq-group-label .title-kicker {
  color: var(--muted);
}

.proof-field-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.proof-field-head h3 {
  margin: 0;
}

.proof-field-head + p {
  margin-top: 0;
}

.buyer-confidence-grid,
.contact-card-grid,
.platform-card-grid {
  display: grid;
  gap: 12px;
}

.topic-field {
  display: grid;
  gap: 12px;
}

.topic-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topic-chip {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.topic-chip.is-selected {
  border-color: rgba(168, 200, 255, 0.42);
  background: rgba(168, 200, 255, 0.1);
  color: var(--text);
  box-shadow:
    inset 0 0 0 1px rgba(168, 200, 255, 0.08),
    0 0 20px rgba(168, 200, 255, 0.08);
}

.topic-chip .svg-icon {
  color: var(--text-high);
}

.topic-chip.is-selected .svg-icon {
  color: var(--accent-blue);
}

.topic-select-note {
  margin: 0;
  color: var(--muted-2);
  font-size: 12px;
}

.topic-field select {
  margin-top: 2px;
}

.contact-methods article,
.buyer-confidence-grid article,
.platform-card-grid article {
  min-height: auto;
}

.contact-methods p,
.buyer-confidence-grid p,
.platform-card-grid p {
  margin: 0;
}

.service-grid .card,
.values-grid .card,
.shop-grid-section .product-card {
  min-height: 100%;
}

.service-grid .card h3,
.values-grid .card h3,
.contact-methods h3 {
  margin: 0;
}

.contact-methods .text-link {
  margin-top: 14px;
}

.legal-link-grid .card h3 {
  margin-bottom: 8px;
}

.contact-scroll-button:hover,
.contact-scroll-button:focus-visible {
  border-color: rgba(168, 200, 255, 0.32);
}

@media (prefers-reduced-motion: reduce) {
  .motion-safe-transition,
  .topic-chip,
  .project-hover-note {
    transition: none !important;
  }

  .project-hover-note {
    transform: none;
  }

  .home-page .nav-cta,
  .home-page .hero-cta,
  .pulse-cta,
  .calm-submit {
    animation: none !important;
  }
}

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

  .storyline {
    gap: 84px;
    margin-top: 56px;
    padding: 18px 0 48px;
  }

  .timeline-item {
    width: calc(100% - 58px);
  }
}

@media (max-width: 620px) {
  .receipt-card {
    padding: 20px;
  }

  .receipt-title {
    font-size: 24px;
  }

  .receipt-grid,
  .buyer-confidence-grid,
  .contact-card-grid,
  .platform-card-grid {
    grid-template-columns: 1fr;
  }

  .receipt-item {
    padding: 16px;
  }

  .receipt-claim {
    font-size: 20px;
  }

  .icon-title-row,
  .timeline-step-top {
    gap: 12px;
  }

  .icon-frame {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .storyline {
    gap: 32px;
    margin-top: 44px;
  }

  .timeline-item {
    width: calc(100% - 42px);
  }

  .timeline-item::before {
    width: 30px;
  }

  .timeline-item.left::before,
  .timeline-item.right::before {
    left: -30px;
  }

  .timeline-item.left::after,
  .timeline-item.right::after {
    left: -36px;
  }

  .topic-chip-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .topic-chip {
    justify-content: flex-start;
  }
}

/* Services page redesign: launch-first intro, tactical proof panel, and creator-facing service flow. */
.services-page {
  --services-bg: var(--surface-page);
  --services-surface: color-mix(in srgb, var(--surface-card) 88%, #05070b 12%);
  --services-surface-blue: var(--surface-proof);
  --services-border: rgba(185, 194, 207, 0.18);
  --services-accent: var(--accent-blue);
  --services-accent-soft: color-mix(in srgb, var(--services-accent) 10%, transparent);
  --services-accent-panel: color-mix(in srgb, var(--services-accent) 18%, transparent);
  --services-accent-line: color-mix(in srgb, var(--services-accent) 32%, transparent);
  --services-accent-strong: color-mix(in srgb, var(--services-accent) 46%, transparent);
  --services-chip: var(--mrb-hook-lime);
  --services-chip-soft: color-mix(in srgb, var(--services-chip) 18%, transparent);
  --services-chip-line: color-mix(in srgb, var(--services-chip) 44%, transparent);
}

.services-page [data-reveal],
.services-page .reveal-sequence > * {
  transition-duration: 240ms, 240ms, 240ms;
  transition-timing-function: ease, ease, ease;
}

.services-page .launch-readiness-map,
.services-page .service-grid,
.services-page .package-panel,
.services-page .services-process__brief,
.services-page .services-final-cta {
  --reveal-delay: 60ms;
}

.services-page .services-process .process-list {
  --reveal-delay: 120ms;
}

.services-page .services-hero {
  position: relative;
  isolation: isolate;
  padding-top: clamp(84px, 7vw, 112px);
  padding-bottom: clamp(22px, 3vw, 36px);
}

.services-page .services-hero::before {
  content: "";
  position: absolute;
  inset: -40px 16% 12px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 28%, var(--services-accent-panel), transparent 34%),
    radial-gradient(circle at 62% 72%, rgba(163, 230, 53, 0.06), transparent 22%);
  filter: blur(18px);
  opacity: 0.82;
}

.services-page .services-hero__simple {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.services-page .services-hero h1 {
  max-width: 18ch;
  margin: 0 auto;
  font-size: clamp(46px, 5.1vw, 68px);
  line-height: 0.98;
}

.services-page .services-hero__headline-line {
  display: block;
}

.services-page .services-hero__lead {
  max-width: 42rem;
  margin: 0 auto;
}

.services-page .launch-readiness-map {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 420px;
  padding: 24px;
  border: 1px solid rgba(61, 183, 255, 0.16);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(61, 183, 255, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(14, 19, 28, 0.96), rgba(6, 8, 11, 0.98));
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(245, 247, 250, 0.08);
}

.services-page .services-readiness {
  display: grid;
  gap: 28px;
}

.services-page .services-readiness__heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.services-page .services-readiness__heading p:not(.eyebrow) {
  max-width: none;
}

.services-page .services-readiness__map {
  width: min(100%, 980px);
  margin: 0 auto;
}

.services-page .launch-readiness-map::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(61, 183, 255, 0.24);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  opacity: 0.8;
  pointer-events: none;
}

.services-page .launch-readiness-map::after {
  content: "";
  position: absolute;
  inset: auto 24px 112px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61, 183, 255, 0.7), transparent);
  opacity: 0.8;
  pointer-events: none;
}

.services-page .launch-readiness-map__head,
.services-page .launch-readiness-map__board {
  position: relative;
  z-index: 1;
}

.services-page .launch-readiness-map__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.services-page .launch-readiness-map__eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-page .launch-readiness-map__status,
.services-page .launch-readiness-map__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--services-chip-line);
  border-radius: var(--radius-pill);
  background: var(--services-chip-soft);
  color: var(--services-chip);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-page .launch-readiness-map__status {
  max-width: 100%;
}

.services-page .launch-readiness-map__status::before,
.services-page .launch-readiness-map__chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 16px rgba(163, 230, 53, 0.4);
}

.services-page .launch-readiness-map h2 {
  position: relative;
  z-index: 1;
  max-width: 10ch;
  margin: 0;
  font-size: clamp(32px, 3.1vw, 42px);
  line-height: 1;
}

.services-page .launch-readiness-map__board {
  display: grid;
  gap: 18px;
  min-height: 0;
}

.services-page .launch-readiness-map__nodes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-page .launch-readiness-map__nodes::before,
.services-page .launch-readiness-map__nodes::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(61, 183, 255, 0.7), transparent);
  pointer-events: none;
}

.services-page .launch-readiness-map__nodes::before {
  left: 11%;
  right: 11%;
  top: calc(50% - 0.5px);
  height: 1px;
}

.services-page .launch-readiness-map__nodes::after {
  top: 11%;
  bottom: 11%;
  left: calc(50% - 0.5px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(61, 183, 255, 0.7), transparent);
}

.services-page .launch-readiness-map__node {
  position: relative;
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 128px;
  padding: 18px;
  border: 1px solid var(--services-accent-line);
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.014)),
    rgba(7, 10, 13, 0.9);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.services-page .launch-readiness-map__node::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(61, 183, 255, 0.7), transparent);
  opacity: 0.6;
}

.services-page .launch-readiness-map__node h3 {
  max-width: 8ch;
  margin: 0;
  font-size: 23px;
  line-height: 1.08;
}

.services-page .launch-readiness-map__criteria {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 0;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px solid rgba(61, 183, 255, 0.18);
}

.services-page .launch-readiness-map__criteria li {
  position: relative;
  margin: 0;
  padding-left: 18px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.services-page .launch-readiness-map__criteria li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 9px;
  height: 1px;
  background: var(--services-accent);
  box-shadow: 0 0 12px rgba(61, 183, 255, 0.28);
}

.services-page .services-capabilities {
  position: relative;
  display: grid;
  gap: 28px;
}

.services-page .services-capabilities::after {
  content: "";
  display: block;
  width: min(100%, 960px);
  height: 1px;
  margin: 34px auto 0;
  background: linear-gradient(90deg, transparent, var(--services-accent), transparent);
  opacity: 0.28;
}

.services-page .services-capabilities__heading {
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}

.services-page .services-capabilities__heading > div {
  flex: 1 1 520px;
  min-width: 0;
}

.services-page .services-capabilities__heading h2 {
  max-width: 16ch;
  font-size: clamp(34px, 3.6vw, 46px);
}

.services-page .services-capabilities__heading > p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 420px;
  flex: 0 1 320px;
  padding: 12px 16px;
  border: 1px solid var(--services-accent-line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(8, 11, 15, 0.8);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.services-page .services-capabilities__heading > p::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--services-chip);
  box-shadow: 0 0 18px rgba(163, 230, 53, 0.3);
}

.services-page .service-grid {
  gap: 16px;
}

.services-page .services-capabilities .card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: 28px;
  border-color: var(--services-border);
  border-top: 2px solid var(--services-accent-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    var(--services-surface);
}

.services-page .services-capabilities .card::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 14px;
  height: 14px;
  border-top: 1px solid var(--services-accent);
  border-right: 1px solid var(--services-accent);
  opacity: 0.55;
}

.services-page .services-capabilities .card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  margin: 0;
  padding: 6px 12px;
  border: 1px solid var(--services-accent-line);
  border-radius: var(--radius-pill);
  background: var(--services-accent-soft);
  color: var(--services-accent);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.services-page .services-capabilities .icon-title-row {
  align-items: start;
  margin: 0;
}

.services-page .services-capabilities .icon-frame,
.services-page .package-card .icon-frame {
  color: var(--services-accent);
  border-color: var(--services-accent-line);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.12), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    color-mix(in srgb, var(--services-surface) 88%, var(--services-accent) 12%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 24px var(--services-accent-soft);
}

.services-page .services-capabilities .card p,
.services-page .package-card h3,
.services-page .package-card p {
  margin: 0;
}

.services-page .services-capabilities .card:hover {
  border-color: var(--services-accent-strong);
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.36),
    0 0 0 1px var(--services-accent-soft);
}

.services-page .services-packages {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--services-border);
  border-bottom: 1px solid var(--services-border);
  background:
    radial-gradient(circle at 82% 18%, var(--services-accent-soft), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, var(--services-surface-blue) 0%, color-mix(in srgb, var(--services-surface-blue) 62%, var(--services-bg)) 100%);
  box-shadow: inset 0 1px 0 var(--services-accent-soft);
}

.services-page .services-packages__layout {
  gap: clamp(24px, 4vw, 42px);
}

.services-page .services-packages .sticky-note {
  z-index: 1;
  display: grid;
  gap: 18px;
}

.services-page .services-packages .sticky-note h2,
.services-page .services-packages .sticky-note p {
  margin: 0;
}

.services-page .services-packages .sticky-note p:last-of-type {
  color: var(--muted);
  font-size: 14px;
}

.services-page .services-cta {
  width: fit-content;
  animation: none;
}

.services-page .package-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.services-page .package-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--services-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022)),
    var(--services-surface);
}

.services-page .package-card .icon-title-row {
  align-items: start;
  margin-bottom: 0;
}

.services-page .package-card:hover {
  border-color: var(--services-accent-strong);
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.38),
    0 0 0 1px var(--services-accent-soft),
    0 0 32px var(--services-accent-soft);
}

.services-page .package-card--starter {
  border-top: 2px solid var(--services-accent-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    var(--services-bg);
}

.services-page .package-card--system {
  border-left: 4px solid var(--services-accent);
  padding-left: 25px;
}

.services-page .package-card--launch {
  border-color: var(--services-accent-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.024)),
    color-mix(in srgb, var(--services-surface-blue) 70%, var(--services-surface) 30%);
  box-shadow:
    0 24px 70px var(--services-accent-panel),
    0 20px 70px rgba(0, 0, 0, 0.34);
}

.services-page .package-card--full {
  border-style: dashed;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--services-bg);
}

.services-page .package-card--full::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--services-accent);
  border-right: 1px solid var(--services-accent);
  opacity: 0.85;
}

.services-page .services-packages .button:focus-visible,
.services-page .services-final-cta .button:focus-visible {
  outline: 2px solid var(--services-accent);
  outline-offset: 4px;
  border-color: var(--services-accent-strong);
}

.services-page .services-process {
  position: relative;
  overflow: hidden;
  padding: 104px 32px 96px;
  border: 1px solid var(--services-border);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 84% 18%, var(--services-accent-soft), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    var(--services-bg);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 76px rgba(0, 0, 0, 0.34);
}

.services-page .services-process .section-heading,
.services-page .services-process__brief,
.services-page .services-process .process-list {
  position: relative;
  z-index: 1;
}

.services-page .services-process__heading {
  margin-bottom: 24px;
}

.services-page .services-process__brief {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.services-page .services-process__brief li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--services-accent-line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    rgba(7, 10, 13, 0.84);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services-page .services-process__brief li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--services-chip);
  box-shadow: 0 0 18px rgba(163, 230, 53, 0.35);
}

.services-page .services-process .process-list {
  position: relative;
  overflow: hidden;
  border-color: var(--services-border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.016)),
    color-mix(in srgb, var(--services-surface) 82%, var(--services-bg) 18%);
}

.services-page .services-process .process-list::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--services-accent-strong) 12%, var(--services-accent-strong) 88%, transparent);
}

.services-page .services-process .process-list article {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px 28px;
  background:
    linear-gradient(90deg, var(--services-accent-soft), transparent 34%),
    rgba(5, 5, 6, 0.78);
}

.services-page .services-process .process-list article::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 12px;
  height: 12px;
  border-top: 1px solid rgba(61, 183, 255, 0.5);
  border-right: 1px solid rgba(61, 183, 255, 0.5);
  opacity: 0.75;
}

.services-page .services-process .process-list article + article {
  border-top: 1px solid var(--services-border);
}

.services-page .services-process .process-list article:hover {
  background:
    linear-gradient(90deg, var(--services-accent-panel), transparent 36%),
    rgba(8, 8, 10, 0.88);
}

.services-page .process-step__marker {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--services-accent-strong);
  border-radius: var(--radius-pill);
  background: var(--services-accent-soft);
  color: var(--services-accent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 24px var(--services-accent-soft);
}

.services-page .process-step__marker svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-page .process-step__body {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.services-page .process-step__body .step-number {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 52px;
  margin: 0;
  padding: 4px 10px;
  border: 1px solid var(--services-accent-line);
  border-radius: var(--radius-pill);
  background: var(--services-accent-soft);
  color: var(--services-accent);
}

.services-page .process-step__body h3,
.services-page .process-step__body p {
  margin: 0;
}

.services-page .process-step__body p {
  max-width: 56ch;
}

.services-page .process-step__deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.services-page .process-step__deliverables span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid var(--services-accent-line);
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, var(--services-accent-soft) 84%, rgba(255, 255, 255, 0.02));
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-page .services-faq .grid-2 {
  gap: 14px;
}

.services-page .services-faq .card.compact {
  min-height: 100%;
  border-color: var(--services-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    color-mix(in srgb, var(--services-surface) 92%, var(--services-bg) 8%);
}

.services-page .services-faq .card.compact::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--services-accent), transparent);
  opacity: 0.16;
}

.services-page .services-final-cta {
  position: relative;
  overflow: hidden;
  padding: 88px 40px;
  border: 1px solid var(--services-accent-line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 18%, var(--services-accent-panel), transparent 30%),
    linear-gradient(135deg, color-mix(in srgb, var(--services-surface-blue) 54%, var(--services-surface) 46%), var(--services-bg));
  box-shadow:
    0 28px 90px var(--services-accent-soft),
    0 24px 80px rgba(0, 0, 0, 0.4);
}

.services-page .services-final-cta::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(61, 183, 255, 0.16);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  pointer-events: none;
}

.services-page .services-final-cta h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  margin: 18px auto 0;
  background: var(--services-accent);
  opacity: 0.8;
}

.services-page .services-final-cta .button.secondary {
  border-color: var(--services-accent-line);
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 1080px) {
  .services-page .services-packages__layout {
    grid-template-columns: 1fr;
  }

  .services-page .launch-readiness-map {
    min-height: 0;
  }

  .services-page .services-packages .sticky-note {
    position: static;
  }
}

@media (max-width: 980px) {
  .services-page .services-process {
    padding: 88px 24px 80px;
  }

  .services-page .services-process__brief {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .services-page .launch-readiness-map__criteria {
    grid-template-columns: 1fr;
  }

  .services-page .launch-readiness-map__nodes,
  .services-page .package-panel {
    grid-template-columns: 1fr;
  }

  .services-page .launch-readiness-map__nodes::before {
    left: 16px;
    right: auto;
    top: 18px;
    bottom: 18px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(61, 183, 255, 0.7), transparent);
  }

  .services-page .launch-readiness-map__nodes::after {
    content: none;
  }

  .services-page .launch-readiness-map__node {
    padding-left: 22px;
  }

  .services-page .launch-readiness-map__head {
    align-items: flex-start;
  }

  .services-page .launch-readiness-map__status {
    align-self: flex-start;
  }
}

@media (max-width: 620px) {
  .services-page .services-hero h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.2vw, 34px);
  }

  .services-page .services-hero__headline-line {
    display: inline;
  }

  .services-page .services-capabilities::after {
    margin-top: 20px;
  }

  .services-page .services-process,
  .services-page .services-final-cta {
    padding: 72px 20px;
  }

  .services-page .services-final-cta .action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .services-page .services-final-cta .button,
  .services-page .services-cta {
    width: 100%;
  }

  .services-page .services-capabilities__heading h2 {
    max-width: 9ch;
    font-size: clamp(28px, 8vw, 36px);
  }

  .services-page .services-capabilities__heading > p {
    max-width: none;
  }

  .services-page .services-process__brief {
    grid-template-columns: 1fr;
  }

  .services-page .services-process .process-list::before {
    left: 38px;
    top: 22px;
    bottom: 22px;
  }

  .services-page .services-process .process-list article {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 22px 18px;
  }

  .services-page .process-step__marker {
    width: 40px;
    height: 40px;
  }

  .services-page .package-card,
  .services-page .services-capabilities .card,
  .services-page .launch-readiness-map {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-page [data-reveal],
  .services-page .reveal-sequence > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .services-page .services-capabilities .card:hover,
  .services-page .package-card:hover,
  .services-page .services-process .process-list article:hover {
    transform: none;
  }
}

.turnstile-field[hidden] {
  display: none;
}

.turnstile-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(168, 200, 255, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(168, 200, 255, 0.1), transparent 36%),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.turnstile-card__head {
  display: grid;
  gap: 6px;
}

.turnstile-card__head label,
.turnstile-card__head p,
.turnstile-card__note {
  margin: 0;
}

.turnstile-card__head p {
  color: var(--muted-2);
  font-size: 12px;
}

.turnstile-card__note {
  color: var(--muted-2);
  font-size: 12px;
}

.turnstile-card__note[hidden] {
  display: none;
}

.turnstile-widget {
  min-height: 70px;
}

.cookie-banner {
  /* Anchored to bottom-LEFT (not centered) so it never overlaps the
     homepage .hero-panel — the floating "Creator launch readout" card
     sits at the bottom-center of the viewport on desktop and was getting
     covered by the previous bottom-center banner. Width is capped so the
     banner stays out of the hero column on every viewport. */
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 90;
  display: grid;
  gap: 16px;
  width: min(420px, calc(100vw - 48px));
  padding: 20px 20px 18px;
  border: 1px solid var(--divider-subtle);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(168, 200, 255, 0.18), transparent 42%),
    linear-gradient(160deg, rgba(14, 18, 24, 0.98), rgba(8, 10, 15, 0.96));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity var(--motion-surface),
    transform var(--motion-surface);
}

.cookie-banner[hidden] {
  display: none;
}

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

.cookie-banner__copy {
  display: grid;
  gap: 8px;
}

.cookie-banner__copy h2 {
  margin: 0;
  font-size: 1.05rem;
}

.cookie-banner__copy p {
  margin: 0;
  color: var(--text-medium);
  font-size: 0.92rem;
}

.cookie-banner__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

.cookie-banner__button {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  justify-content: center;
}

.cookie-banner__link {
  grid-column: 1 / -1;
  justify-self: center;
  text-align: center;
  color: var(--text-medium);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  font-size: 0.9rem;
}

.has-cookie-panel {
  overflow: hidden;
}

.cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-panel[hidden] {
  display: none;
}

.cookie-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 8, 0.64);
  opacity: 0;
  transition: opacity var(--motion-surface);
}

.cookie-panel__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  width: min(520px, 100%);
  padding: 22px;
  border: 1px solid var(--divider-subtle);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(168, 200, 255, 0.22), transparent 38%),
    linear-gradient(160deg, rgba(14, 18, 24, 0.99), rgba(8, 10, 15, 0.98));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition:
    opacity var(--motion-surface),
    transform var(--motion-surface);
}

.cookie-panel.is-open .cookie-panel__backdrop,
.cookie-panel.is-open .cookie-panel__dialog {
  opacity: 1;
}

.cookie-panel.is-open .cookie-panel__dialog {
  transform: translateY(0) scale(1);
}

.cookie-panel__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--divider-subtle);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-high);
}

.cookie-panel__intro {
  margin: -4px 0 0;
  color: var(--text-medium);
  font-size: 0.95rem;
}

.cookie-panel__groups {
  display: grid;
  gap: 12px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 15px;
  border: 1px solid var(--divider-subtle);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.cookie-option--locked {
  background: rgba(255, 255, 255, 0.045);
}

.cookie-option__copy {
  display: grid;
  gap: 4px;
}

.cookie-option__copy strong,
.cookie-option__copy span {
  display: block;
}

.cookie-option__copy span {
  color: var(--text-medium);
  font-size: 0.9rem;
}

.cookie-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cookie-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-toggle span {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 52px;
  height: 31px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  transition: background var(--motion-fast);
}

.cookie-toggle span::after {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform var(--motion-fast);
}

.cookie-toggle input:checked + span {
  background: rgba(168, 200, 255, 0.9);
}

.cookie-toggle input:checked + span::after {
  transform: translateX(21px);
}

.cookie-toggle input:disabled + span {
  background: var(--divider-subtle);
}

.cookie-panel__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-panel__button {
  min-width: 138px;
  min-height: 44px;
}

@media (min-width: 860px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: center;
  }
}

@media (max-width: 720px) {
  .cookie-banner__actions {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions > * {
    width: 100%;
  }

  .cookie-panel {
    padding: 16px;
    place-items: center stretch;
  }

  .cookie-panel__dialog {
    width: 100%;
    padding: 20px 18px 18px;
  }

  .cookie-panel__actions > * {
    width: 100%;
  }
}

/* Foundation refresh: shared shell, navigation, footer, and CTA language. */
body::before {
  background-image:
    linear-gradient(rgba(61, 183, 255, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 247, 250, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.34;
}

body::after {
  background:
    radial-gradient(circle at 18% 12%, rgba(61, 183, 255, 0.16), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(255, 79, 163, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(245, 247, 250, 0.02), transparent 30%, transparent 75%, rgba(245, 247, 250, 0.01));
  opacity: 0.72;
}

::selection {
  color: var(--mrb-cloud-50);
  background: rgba(163, 230, 53, 0.26);
}

ol {
  color: var(--muted);
  font-size: var(--type-body);
  line-height: 1.65;
}

:where(p, li) a:not(.button):not(.small-button):not(.nav-cta):not(.mrb-btn) {
  color: var(--mrb-signal-cyan);
  text-decoration: underline;
  text-decoration-color: rgba(61, 183, 255, 0.46);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

:where(p, li) a:not(.button):not(.small-button):not(.nav-cta):not(.mrb-btn):hover,
:where(p, li) a:not(.button):not(.small-button):not(.nav-cta):not(.mrb-btn):focus-visible {
  color: var(--mrb-cloud-50);
  text-decoration-color: rgba(255, 79, 163, 0.7);
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--mrb-signal-cyan);
  outline-offset: 4px;
}

.eyebrow,
.card-number,
.step-number,
.product-type,
.footer-heading,
.brand-text {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header {
  gap: 20px 24px;
  padding: 18px 8px;
  border: 1px solid var(--divider-subtle);
  border-radius: var(--mrb-radius-xl);
  background:
    linear-gradient(135deg, rgba(17, 22, 30, 0.96), rgba(7, 9, 13, 0.92)),
    rgba(7, 9, 13, 0.92);
  box-shadow:
    var(--mrb-shadow-soft),
    0 0 0 1px rgba(245, 247, 250, 0.03);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.brand {
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(245, 247, 250, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.05), rgba(245, 247, 250, 0.015)),
    rgba(7, 9, 13, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.04),
    0 12px 30px rgba(0, 0, 0, 0.18);
}

.brand img {
  width: 128px;
  max-width: none;
}

.brand-lockup {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-wordmark {
  color: var(--mrb-cloud-50);
  font-family: "Sora", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand-text {
  display: block;
  color: var(--mrb-cloud-300);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.nav {
  gap: 22px;
  color: var(--text-medium);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--text-medium);
  z-index: 0;
}

.nav a::before {
  content: "";
  position: absolute;
  inset: -6px -10px;
  border-radius: var(--mrb-radius-pill);
  background-color: transparent;
  transition: background-color var(--motion-fast);
  pointer-events: none;
  z-index: -1;
}

.nav a::after {
  background: linear-gradient(90deg, rgba(61, 183, 255, 0), rgba(61, 183, 255, 0.94), rgba(61, 183, 255, 0));
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--text-high);
  text-shadow: none;
}

.nav a:hover::before {
  background-color: var(--state-hover);
}

.nav a:focus-visible::before {
  background-color: var(--state-focus);
}

.nav a:active::before {
  background-color: var(--state-pressed);
}

@media (min-width: 1101px) {
  .site-header {
    position: relative;
  }

  .site-header .nav {
    position: absolute;
    top: 50%;
    left: 50%;
    width: max-content;
    transform: translate(-50%, -50%);
  }

  .site-header .brand,
  .site-header .nav-cta {
    position: relative;
    z-index: 1;
  }

  .site-header .nav-cta {
    margin-left: auto;
  }

  .site-header .site-header__panel {
    justify-content: flex-end;
  }
}

.mrb-btn,
.nav-cta,
.button,
.small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--mrb-radius-pill);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--mrb-duration-micro) var(--mrb-ease-out),
    border-color var(--mrb-duration-micro) var(--mrb-ease-out),
    background-color var(--mrb-duration-micro) var(--mrb-ease-out),
    box-shadow var(--mrb-duration-micro) var(--mrb-ease-out),
    color var(--mrb-duration-micro) var(--mrb-ease-out);
}

.nav-cta,
.mrb-btn--primary,
.button.primary,
.form-panel .button.primary {
  background: var(--mrb-hook-lime);
  color: var(--color-on-accent);
  border-color: rgba(163, 230, 53, 0.42);
  box-shadow: var(--mrb-shadow-lime);
}

.mrb-btn--secondary,
.button.secondary,
.small-button {
  border-color: var(--divider-subtle);
  background: rgba(245, 247, 250, 0.035);
  color: var(--text-high);
  box-shadow: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-cta::after,
.mrb-btn--primary::after,
.button.primary::after,
.form-panel .button.primary::after,
.inline-cta .small-button::after,
.quick-book-bar .small-button::after {
  content: none;
}

.mrb-btn:hover,
.nav-cta:hover,
.button:hover,
.small-button:hover {
  transform: translateY(-1px);
}

.nav-cta:hover,
.mrb-btn--primary:hover,
.button.primary:hover,
.form-panel .button.primary:hover {
  background:
    linear-gradient(var(--state-hover), var(--state-hover)),
    var(--mrb-hook-lime);
  border-color: rgba(163, 230, 53, 0.52);
  box-shadow:
    0 0 0 1px rgba(163, 230, 53, 0.42),
    0 16px 44px rgba(163, 230, 53, 0.18);
}

.nav-cta:focus-visible,
.mrb-btn--primary:focus-visible,
.button.primary:focus-visible,
.form-panel .button.primary:focus-visible {
  background:
    linear-gradient(var(--state-focus), var(--state-focus)),
    var(--mrb-hook-lime);
  border-color: rgba(163, 230, 53, 0.52);
  box-shadow:
    0 0 0 1px rgba(163, 230, 53, 0.42),
    0 16px 44px rgba(163, 230, 53, 0.18);
}

.mrb-btn--secondary:hover,
.button.secondary:hover,
.small-button:hover {
  background:
    linear-gradient(var(--state-hover), var(--state-hover)),
    rgba(245, 247, 250, 0.035);
  border-color: rgba(61, 183, 255, 0.56);
  box-shadow: var(--mrb-shadow-cyan);
}

.mrb-btn--secondary:focus-visible,
.button.secondary:focus-visible,
.small-button:focus-visible {
  background:
    linear-gradient(var(--state-focus), var(--state-focus)),
    rgba(245, 247, 250, 0.035);
  border-color: rgba(61, 183, 255, 0.56);
  box-shadow: var(--mrb-shadow-cyan);
}

.nav-cta:active,
.mrb-btn--primary:active,
.button.primary:active,
.form-panel .button.primary:active {
  background:
    linear-gradient(var(--state-pressed), var(--state-pressed)),
    var(--mrb-hook-lime);
}

.mrb-btn--secondary:active,
.button.secondary:active,
.small-button:active {
  background:
    linear-gradient(var(--state-pressed), var(--state-pressed)),
    rgba(245, 247, 250, 0.035);
}

.mrb-btn:active,
.nav-cta:active,
.button:active,
.small-button:active {
  transform: translateY(0) scale(0.99);
  transition-duration: var(--mrb-duration-press);
  transition-timing-function: var(--mrb-ease-press);
}

.home-page .mrb-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: calc(100svh - var(--mrb-home-header-space));
  overflow: hidden;
  padding: clamp(28px, 4vw, 44px) 0 clamp(42px, 5vw, 64px);
  background:
    radial-gradient(circle at 82% 20%, rgba(61, 183, 255, 0.18), transparent 34%),
    radial-gradient(circle at 68% 76%, rgba(255, 79, 163, 0.12), transparent 30%),
    linear-gradient(180deg, #07090d 0%, #0b0f15 100%);
  border-bottom: 1px solid rgba(185, 194, 207, 0.14);
}

.home-page .mrb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(245, 247, 250, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 247, 250, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 78%);
  pointer-events: none;
}

.home-page .mrb-hero::after {
  content: "";
  position: absolute;
  inset: 12% -6% auto 54%;
  height: 52%;
  z-index: -1;
  background: radial-gradient(circle at center, rgba(61, 183, 255, 0.15), transparent 70%);
  filter: blur(16px);
  pointer-events: none;
}

.mrb-hero__inner {
  position: relative;
  width: min(var(--mrb-container-max), calc(100% - (var(--mrb-gutter) * 2)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.mrb-hero__inner > * {
  min-width: 0;
}

.mrb-hero__copy {
  min-width: 0;
  max-width: 680px;
}

.mrb-hero__eyebrow {
  margin: 0 0 18px;
  color: var(--mrb-hook-lime);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.mrb-hero__title {
  margin: 0;
  max-width: 13.4ch;
  color: var(--mrb-cloud-50);
  font-family: "Sora", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(42px, 5.4vw, 64px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.mrb-hero__lead {
  max-width: 52ch;
  margin: 24px 0 0;
  color: var(--text-medium);
  font-size: 17px;
  line-height: 1.6;
}

.mrb-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.mrb-hero__proof li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0;
  padding: 0 13px;
  border: 1px solid rgba(163, 230, 53, 0.28);
  border-radius: var(--mrb-radius-pill);
  background: rgba(163, 230, 53, 0.075);
  color: var(--mrb-cloud-50);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.mrb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.mrb-hero__actions .mrb-btn {
  min-height: 58px;
  padding-inline: 26px;
}

.home-page .mrb-hero__actions .mrb-btn:active {
  transform: translateY(0);
}

.mrb-hero__media {
  min-width: 0;
  margin: 0;
}

.mrb-hero__frame {
  position: relative;
  width: 100%;
  min-height: 330px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--mrb-radius-xl);
  border: 1px solid rgba(245, 247, 250, 0.12);
  background: var(--mrb-surface-900);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(61, 183, 255, 0.08);
}

.mrb-hero__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(61, 183, 255, 0.08), transparent 34%, transparent 64%, rgba(255, 79, 163, 0.1));
  pointer-events: none;
}

.mrb-hero__mediaLabel {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(245, 247, 250, 0.13);
  border-radius: var(--mrb-radius-pill);
  background: rgba(7, 9, 13, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--mrb-cloud-50);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mrb-hero__mediaLabel::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mrb-hook-lime);
  box-shadow: 0 0 0 4px rgba(163, 230, 53, 0.16);
}

.mrb-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.01);
  background: #07090d;
}

.mrb-hero__mediaShade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 32%, rgba(7, 9, 13, 0.76) 100%),
    linear-gradient(90deg, rgba(7, 9, 13, 0.16), transparent 56%);
  pointer-events: none;
}

.mrb-hero__mediaPanel {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(245, 247, 250, 0.13);
  border-radius: 18px;
  background: rgba(7, 9, 13, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--mrb-cloud-50);
}

.mrb-hero__mediaKicker {
  color: var(--mrb-sakura-magenta);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mrb-hero__mediaPanel strong {
  max-width: min(42ch, 100%);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.home-page .mrb-hero [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  filter: none;
  transition:
    opacity 240ms var(--mrb-ease-out),
    transform 240ms var(--mrb-ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.home-page .mrb-hero [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-page .mrb-hero__trust {
  width: min(var(--max), calc(100% - 48px));
  margin: clamp(-34px, -3vw, -18px) auto 0;
  background: linear-gradient(180deg, rgba(17, 22, 30, 0.94), rgba(11, 15, 21, 0.94));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.26);
}

.home-page .mrb-hero__trust .metric {
  background: transparent;
}

@media (min-width: 2200px) {
  :root {
    --mrb-container-max: 1540px;
    --mrb-gutter: 32px;
    --type-h1: clamp(56px, 4.2vw, 92px);
    --type-h2: clamp(40px, 2.8vw, 64px);
    --type-h3: clamp(28px, 1.9vw, 38px);
    --type-body-lg: 21px;
    --type-body: 19px;
  }

  .site-header {
    gap: 24px 32px;
    padding: 22px 8px;
  }

  .brand {
    gap: 16px;
  }

  .brand-mark {
    padding: 10px 14px;
  }

  .brand img {
    width: 148px;
  }

  .brand-wordmark {
    font-size: 22px;
  }

  .brand-text {
    font-size: 12px;
  }

  .nav {
    gap: 28px;
    font-size: 16px;
  }

  .nav a {
    min-height: 36px;
  }

  .nav a::before {
    inset: -8px -12px;
  }

  .mrb-btn,
  .nav-cta,
  .button,
  .small-button {
    min-height: 58px;
    padding: 0 26px;
    font-size: 17px;
  }

  .hero-metrics {
    margin-top: -128px;
  }

  .hero-metrics.trust-strip .metric {
    min-height: 82px;
    gap: 14px;
  }

  .metric {
    min-height: 120px;
    padding: 22px 24px;
  }

  .metric-icon {
    width: 38px;
    height: 38px;
  }

  .metric-icon svg {
    width: 16px;
    height: 16px;
  }

  .hero-metrics.trust-strip .metric-copy span {
    font-size: 12px;
  }

  .hero-metrics.trust-strip .metric-copy strong {
    font-size: 17px;
  }

  .mrb-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(470px, 0.98fr);
    gap: clamp(42px, 4vw, 96px);
  }

  .mrb-hero__copy {
    max-width: 760px;
  }

  .mrb-hero__eyebrow {
    margin-bottom: 20px;
    font-size: 14px;
  }

  .mrb-hero__title {
    max-width: 13.2ch;
    font-size: clamp(56px, 4.8vw, 84px);
  }

  .mrb-hero__lead {
    margin-top: 28px;
    font-size: 20px;
  }

  .mrb-hero__proof {
    gap: 12px;
    margin-top: 26px;
  }

  .mrb-hero__proof li {
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }

  .mrb-hero__actions {
    gap: 16px;
    margin-top: 30px;
  }

  .mrb-hero__actions .mrb-btn {
    min-height: 62px;
    padding-inline: 30px;
  }

  .mrb-hero__frame {
    min-height: 390px;
  }

  .mrb-hero__mediaLabel {
    top: 22px;
    left: 22px;
    gap: 12px;
    padding: 12px 16px;
    font-size: 13px;
  }

  .mrb-hero__mediaPanel {
    left: 22px;
    right: 22px;
    bottom: 22px;
    gap: 8px;
    padding: 16px 18px;
  }

  .mrb-hero__mediaKicker {
    font-size: 13px;
  }

  .mrb-hero__mediaPanel strong {
    font-size: 17px;
  }

  .home-page .mrb-hero__trust {
    margin-top: clamp(-46px, -2.6vw, -26px);
  }
}

@media (min-width: 3200px) {
  :root {
    --mrb-container-max: 2400px;
    --mrb-gutter: 40px;
    --type-h1: clamp(74px, 3.8vw, 136px);
    --type-h2: clamp(52px, 2.4vw, 82px);
    --type-h3: clamp(34px, 1.7vw, 48px);
    --type-body-lg: 26px;
    --type-body: 22px;
  }

  .home-page {
    --mrb-home-header-space: 256px;
  }

  .site-header {
    gap: 28px 40px;
    padding: 28px 8px;
  }

  .brand {
    gap: 18px;
  }

  .brand-mark {
    padding: 14px 18px;
  }

  .brand img {
    width: 178px;
  }

  .brand-wordmark {
    font-size: 30px;
  }

  .brand-text {
    font-size: 15px;
  }

  .nav {
    gap: 36px;
    font-size: 20px;
  }

  .nav a {
    min-height: 44px;
  }

  .nav a::before {
    inset: -10px -14px;
  }

  .mrb-btn,
  .nav-cta,
  .button,
  .small-button {
    min-height: 70px;
    padding: 0 34px;
    font-size: 20px;
  }

  .hero-metrics {
    margin-top: -146px;
  }

  .hero-metrics.trust-strip .metric {
    min-height: 104px;
    gap: 18px;
  }

  .metric {
    min-height: 148px;
    padding: 28px 30px;
  }

  .metric-icon {
    width: 48px;
    height: 48px;
  }

  .metric-icon svg {
    width: 20px;
    height: 20px;
  }

  .hero-metrics.trust-strip .metric-copy span {
    font-size: 14px;
  }

  .hero-metrics.trust-strip .metric-copy strong {
    font-size: 22px;
  }

  .home-page .mrb-hero {
    min-height: min(calc(100svh - var(--mrb-home-header-space)), 1904px);
    padding: clamp(60px, 3vw, 84px) 0 clamp(92px, 4vw, 124px);
  }

  .home-page .mrb-hero::before {
    background-size: 56px 56px;
  }

  .mrb-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(132px, 3.8vw, 148px);
  }

  .mrb-hero__copy {
    max-width: none;
  }

  .mrb-hero__eyebrow {
    margin-bottom: 24px;
    font-size: 18px;
  }

  .mrb-hero__title {
    max-width: 12.7ch;
    font-size: clamp(92px, 3.34vw, 128px);
  }

  .mrb-hero__lead {
    max-width: 40ch;
    margin-top: 34px;
    font-size: 28px;
  }

  .mrb-hero__proof {
    gap: 14px;
    margin-top: 34px;
  }

  .mrb-hero__proof li {
    min-height: 50px;
    padding: 0 22px;
    font-size: 18px;
  }

  .mrb-hero__actions {
    gap: 20px;
    margin-top: 38px;
  }

  .mrb-hero__actions .mrb-btn {
    min-height: 74px;
    padding-inline: 38px;
  }

  .home-page .mrb-hero__trust {
    margin-top: clamp(-24px, -0.7vw, -12px);
  }
}

@media (max-width: 980px) {
  .home-page {
    --mrb-home-header-space: 128px;
  }

  .home-page .mrb-hero {
    min-height: auto;
  }

  .mrb-hero__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  .mrb-hero__title {
    max-width: 12.6ch;
  }

  .mrb-hero__frame {
    min-height: 300px;
  }

  .home-page .mrb-hero__trust {
    margin-top: 24px;
  }
}

@media (max-width: 620px) {
  .home-page {
    --mrb-home-header-space: 112px;
  }

  .home-page .mrb-hero {
    padding: 18px 0 56px;
  }

  .mrb-hero__inner {
    width: min(var(--mrb-container-max), calc(100% - 32px));
    gap: 24px;
  }

  .mrb-hero__eyebrow {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .mrb-hero__title {
    max-width: none;
    font-size: clamp(38px, 11.5vw, 46px);
  }

  .mrb-hero__lead {
    margin-top: 18px;
    font-size: 16px;
  }

  .mrb-hero__proof {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .mrb-hero__proof li {
    width: 100%;
    max-width: none;
    min-width: 0;
    justify-content: center;
    padding: 10px 14px;
    text-align: center;
    white-space: normal;
  }

  .mrb-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mrb-hero__actions .mrb-btn {
    width: 100%;
  }

  .mrb-hero__frame {
    min-height: clamp(240px, 74vw, 280px);
  }

  .mrb-hero__mediaLabel {
    top: 14px;
    left: 14px;
    padding: 9px 12px;
  }

  .mrb-hero__mediaPanel {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .home-page .mrb-hero__trust {
    width: min(var(--max), calc(100% - 32px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .mrb-hero [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .mrb-hero__video {
    transform: none;
  }
}

.card,
.project-card,
.product-card,
.legal-card,
.form-panel,
.feature-panel,
.process-list,
.footer,
.faq-list details {
  border-color: var(--divider-subtle);
  border-radius: var(--mrb-radius-xl);
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.045), rgba(245, 247, 250, 0.015)),
    rgba(17, 22, 30, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.04),
    0 18px 56px rgba(0, 0, 0, 0.24);
}

.footer {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.5fr);
  gap: 32px;
  margin-bottom: 40px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(17, 22, 30, 0.96), rgba(7, 9, 13, 0.94)),
    rgba(7, 9, 13, 0.94);
  box-shadow:
    var(--mrb-shadow-soft),
    inset 0 1px 0 rgba(245, 247, 250, 0.05);
}

.footer-intro {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.footer-kicker {
  margin: 0;
  color: var(--mrb-cloud-50);
  font-family: "Sora", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.footer-copy {
  max-width: 42ch;
  margin: 0;
}

.footer-cta {
  width: fit-content;
  margin-top: 4px;
}

.footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.footer-section {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-heading {
  margin: 0;
  color: var(--text-medium);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.footer a {
  margin-top: 0;
  color: var(--text-medium);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--text-high);
}

@media (max-width: 1100px) {
  /* .site-header / .nav stacking rules previously here were superseded by
     the burger nav (see the dedicated @media (max-width: 1100px) block
     near the [data-reveal] section). Keep only footer collapsing here. */
  .footer {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(var(--max), calc(100% - 32px));
  }

  .site-header {
    width: calc(100% - 16px);
    padding: 14px 8px 12px;
  }

  .brand-mark {
    padding: 6px 10px;
  }

  .brand img {
    width: 108px;
  }

  .brand-wordmark {
    font-size: 18px;
  }

  .brand-text {
    font-size: 10px;
  }

  .nav {
    gap: 14px;
    font-size: 13px;
  }

  .nav-cta {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    font-size: 14px;
  }

  .footer {
    padding: 24px 20px;
  }

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

  .footer-cta {
    width: 100%;
  }
}

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

  .mrb-btn:hover,
  .mrb-btn:active,
  .nav-cta:hover,
  .nav-cta:active,
  .button:hover,
  .button:active,
  .small-button:hover,
  .small-button:active {
    transform: none;
  }
}

.contact-page .contact-hero {
  padding-bottom: 58px;
}

.contact-page .contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 26px;
  align-items: start;
}

.contact-page .contact-hero__copy {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.contact-page .contact-hero__copy .action-row {
  margin-top: 8px;
}

.contact-page .contact-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-page .contact-hero__signals li {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(163, 230, 53, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(163, 230, 53, 0.1), rgba(163, 230, 53, 0.04)),
    rgba(7, 9, 13, 0.86);
  color: var(--mrb-cloud-50);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-page .contact-hero__brief-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(185, 194, 207, 0.18);
  border-radius: var(--mrb-radius-xl);
  background:
    radial-gradient(circle at top right, rgba(163, 230, 53, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(61, 183, 255, 0.12), transparent 40%),
    linear-gradient(180deg, rgba(245, 247, 250, 0.05), rgba(245, 247, 250, 0.015)),
    rgba(17, 22, 30, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.05),
    0 26px 80px rgba(0, 0, 0, 0.28);
}

.contact-page .contact-hero__brief-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(245, 247, 250, 0.08);
  border-radius: calc(var(--mrb-radius-xl) - 12px);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  pointer-events: none;
}

.contact-page .contact-hero__brief-card > * {
  position: relative;
  z-index: 1;
}

.contact-page .contact-hero__brief-card h2 {
  font-size: clamp(30px, 2.7vw, 40px);
  line-height: 1.02;
}

.contact-page .contact-hero__brief-card p {
  margin: 0;
}

.contact-page .contact-hero__brief-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-page .contact-hero__brief-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(245, 247, 250, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.045), rgba(245, 247, 250, 0.015)),
    rgba(7, 9, 13, 0.72);
}

.contact-page .contact-hero__brief-grid span {
  color: var(--mrb-hook-lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.contact-page .contact-hero__brief-grid strong {
  color: var(--mrb-cloud-50);
  font-size: 15px;
  line-height: 1.2;
}

.contact-page .contact-hero__brief-grid p {
  color: var(--mrb-cloud-300);
  font-size: 13px;
  line-height: 1.55;
}

.contact-page .contact-scroll {
  margin: -18px auto 24px;
}

.contact-page .contact-methods {
  gap: 14px;
}

.contact-page .contact-methods__intro {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-color: rgba(163, 230, 53, 0.22);
  background:
    radial-gradient(circle at top right, rgba(163, 230, 53, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(245, 247, 250, 0.06), rgba(245, 247, 250, 0.016)),
    rgba(12, 16, 21, 0.92);
}

.contact-page .contact-methods__intro::before {
  content: "";
  position: absolute;
  inset: auto 20px 0 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(163, 230, 53, 0), rgba(163, 230, 53, 0.9), rgba(163, 230, 53, 0));
}

.contact-page .contact-methods__intro h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 2.7vw, 38px);
  line-height: 1.04;
}

.contact-page .contact-methods article:not(.contact-methods__intro) {
  border-color: var(--divider-subtle);
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.04), rgba(245, 247, 250, 0.012)),
    rgba(17, 22, 30, 0.8);
}

.contact-page .contact-form-panel {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-color: rgba(163, 230, 53, 0.18);
  background:
    radial-gradient(circle at top right, rgba(163, 230, 53, 0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(61, 183, 255, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(245, 247, 250, 0.05), rgba(245, 247, 250, 0.015)),
    rgba(17, 22, 30, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.05),
    0 28px 90px rgba(0, 0, 0, 0.32);
}

.contact-page .contact-form-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(245, 247, 250, 0.08);
  border-radius: calc(var(--mrb-radius-xl) - 12px);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  pointer-events: none;
}

.contact-page .contact-form-panel > * {
  position: relative;
  z-index: 1;
}

.contact-page .contact-form-shell {
  display: grid;
  gap: 24px;
}

.contact-page .contact-form-panel__intro {
  display: grid;
  gap: 12px;
}

.contact-page .contact-form-panel__intro h2 {
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1;
}

.contact-page .contact-form-panel__intro p {
  max-width: 44ch;
  margin: 0;
}

.contact-page .form-grid {
  gap: 18px;
}

.contact-page .field {
  position: relative;
  gap: 10px;
}

.contact-page .field label {
  color: var(--mrb-cloud-50);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page .field--custom-select {
  z-index: 0;
}

.contact-page .field--custom-select.is-open {
  z-index: 12;
}

.contact-page .field input,
.contact-page .field textarea,
.contact-page .contact-select__trigger,
.contact-page .topic-chip-list {
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--divider-subtle);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.02), rgba(245, 247, 250, 0.01)),
    rgba(7, 9, 13, 0.88);
  color: var(--mrb-cloud-50);
  box-shadow: inset 0 1px 0 rgba(245, 247, 250, 0.04);
  transition:
    border-color 180ms var(--mrb-ease-out),
    box-shadow 220ms var(--mrb-ease-out),
    background-color 180ms var(--mrb-ease-out),
    transform 220ms var(--mrb-ease-out);
}

.contact-page .field textarea {
  min-height: 180px;
}

.contact-page .contact-native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.contact-page .field input::placeholder,
.contact-page .field textarea::placeholder {
  color: var(--mrb-cloud-300);
}

.contact-page .contact-select {
  position: relative;
}

.contact-page .field input:focus,
.contact-page .field textarea:focus {
  border-color: rgba(61, 183, 255, 0.72);
  box-shadow:
    0 0 0 1px rgba(61, 183, 255, 0.36),
    0 0 0 4px rgba(61, 183, 255, 0.12);
  background: rgba(7, 9, 13, 0.96);
}

.contact-page .contact-select__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  text-align: left;
}

.contact-page .contact-select__copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.contact-page .contact-select__value {
  color: var(--mrb-cloud-50);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-page .contact-select__hint {
  color: var(--mrb-cloud-300);
  font-size: 12px;
  line-height: 1.4;
}

.contact-page .contact-select__chevron {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-right: 2px solid rgba(245, 247, 250, 0.78);
  border-bottom: 2px solid rgba(245, 247, 250, 0.78);
  transform: rotate(45deg) translateY(-2px);
  transition:
    transform 160ms var(--mrb-ease-out),
    border-color 160ms var(--mrb-ease-out);
}

.contact-page .contact-select.is-open .contact-select__chevron {
  border-color: var(--mrb-cloud-50);
  transform: rotate(-135deg) translateX(-1px);
}

.contact-page .contact-select__trigger:focus-visible,
.contact-page .contact-select.is-open .contact-select__trigger,
.contact-page .topic-chip-list:focus-within {
  border-color: rgba(61, 183, 255, 0.72);
  box-shadow:
    0 0 0 1px rgba(61, 183, 255, 0.36),
    0 0 0 4px rgba(61, 183, 255, 0.12);
  background: rgba(7, 9, 13, 0.96);
}

.contact-page .contact-select__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 20;
  padding: 10px;
  border: 1px solid var(--divider-subtle);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.05), rgba(245, 247, 250, 0.015)),
    rgba(11, 15, 21, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.04),
    0 22px 56px rgba(0, 0, 0, 0.38);
}

.contact-page .contact-select__menu[hidden] {
  display: none;
}

.contact-page .contact-select__list {
  display: grid;
  gap: 8px;
  max-height: 320px;
  overflow: auto;
}

.contact-page .contact-select__option {
  width: 100%;
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--divider-subtle);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.03), rgba(245, 247, 250, 0.01)),
    rgba(7, 9, 13, 0.84);
  color: var(--mrb-cloud-50);
  text-align: left;
  transition:
    border-color 160ms var(--mrb-ease-out),
    box-shadow 160ms var(--mrb-ease-out),
    background-color 160ms var(--mrb-ease-out),
    transform 160ms var(--mrb-ease-out);
}

.contact-page .contact-select__option:hover,
.contact-page .contact-select__option:focus-visible {
  border-color: rgba(61, 183, 255, 0.42);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transform: translateY(-1px);
}

.contact-page .contact-select__option:hover {
  background:
    linear-gradient(var(--state-hover), var(--state-hover)),
    linear-gradient(180deg, rgba(245, 247, 250, 0.03), rgba(245, 247, 250, 0.01)),
    rgba(7, 9, 13, 0.84);
}

.contact-page .contact-select__option:focus-visible {
  background:
    linear-gradient(var(--state-focus), var(--state-focus)),
    linear-gradient(180deg, rgba(245, 247, 250, 0.03), rgba(245, 247, 250, 0.01)),
    rgba(7, 9, 13, 0.84);
}

.contact-page .contact-select__option:active {
  background:
    linear-gradient(var(--state-pressed), var(--state-pressed)),
    linear-gradient(180deg, rgba(245, 247, 250, 0.03), rgba(245, 247, 250, 0.01)),
    rgba(7, 9, 13, 0.84);
}

.contact-page .contact-select__option.is-selected,
.contact-page .contact-select__option[aria-selected="true"] {
  border-color: rgba(163, 230, 53, 0.4);
  background:
    linear-gradient(180deg, rgba(163, 230, 53, 0.18), rgba(163, 230, 53, 0.06)),
    rgba(7, 9, 13, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.05),
    0 0 24px rgba(163, 230, 53, 0.08);
}

.contact-page .contact-select__option-label {
  color: var(--mrb-cloud-50);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.contact-page .contact-select__option-note {
  color: var(--mrb-cloud-300);
  font-size: 12px;
  line-height: 1.45;
}

.contact-page .field.is-complete input,
.contact-page .field.is-complete textarea,
.contact-page .field.is-complete .contact-select__trigger,
.contact-page .field.is-complete .topic-chip-list {
  border-color: rgba(163, 230, 53, 0.72);
  box-shadow:
    0 0 0 1px rgba(163, 230, 53, 0.34),
    0 0 0 4px rgba(163, 230, 53, 0.1),
    0 0 26px rgba(163, 230, 53, 0.08);
  animation: contact-field-complete 220ms cubic-bezier(.22, 1, .36, 1);
}

.contact-page .field.is-invalid input,
.contact-page .field.is-invalid textarea,
.contact-page .field.is-invalid .contact-select__trigger,
.contact-page .field.is-invalid .topic-chip-list,
.contact-page .turnstile-field.is-invalid .turnstile-card {
  border-color: rgba(255, 200, 87, 0.9);
  box-shadow:
    0 0 0 1px rgba(255, 200, 87, 0.4),
    0 0 0 4px rgba(255, 200, 87, 0.12);
}

.contact-page .topic-chip-list {
  padding: 10px;
  align-items: center;
}

.contact-page .topic-chip {
  min-height: 50px;
  border-color: var(--divider-subtle);
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.04), rgba(245, 247, 250, 0.01)),
    rgba(7, 9, 13, 0.8);
  color: var(--mrb-cloud-50);
}

.contact-page .topic-chip:hover {
  background:
    linear-gradient(var(--state-hover), var(--state-hover)),
    linear-gradient(180deg, rgba(245, 247, 250, 0.04), rgba(245, 247, 250, 0.01)),
    rgba(7, 9, 13, 0.8);
}

.contact-page .topic-chip:focus-visible {
  background:
    linear-gradient(var(--state-focus), var(--state-focus)),
    linear-gradient(180deg, rgba(245, 247, 250, 0.04), rgba(245, 247, 250, 0.01)),
    rgba(7, 9, 13, 0.8);
}

.contact-page .topic-chip:active {
  background:
    linear-gradient(var(--state-pressed), var(--state-pressed)),
    linear-gradient(180deg, rgba(245, 247, 250, 0.04), rgba(245, 247, 250, 0.01)),
    rgba(7, 9, 13, 0.8);
}

.contact-page .topic-chip.is-selected {
  border-color: rgba(163, 230, 53, 0.42);
  background:
    linear-gradient(180deg, rgba(163, 230, 53, 0.2), rgba(163, 230, 53, 0.08)),
    rgba(7, 9, 13, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.06),
    0 0 28px rgba(163, 230, 53, 0.08);
}

.contact-page .topic-chip.is-selected .svg-icon {
  color: var(--mrb-hook-lime);
}

.contact-page .contact-form-panel__submit {
  display: grid;
  gap: 14px;
}

.contact-page .contact-form-actions {
  margin-top: 0;
  align-items: stretch;
}

.contact-page .contact-submit {
  position: relative;
  min-height: 52px;
  gap: 10px;
  padding: 0 22px;
  font-size: 16px;
  font-weight: 700;
  transition:
    transform 160ms var(--mrb-ease-out),
    box-shadow 160ms var(--mrb-ease-out),
    border-color 160ms var(--mrb-ease-out),
    opacity 160ms var(--mrb-ease-out);
}

.contact-page .contact-submit [data-button-label] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.contact-page .contact-submit:hover {
  background:
    linear-gradient(var(--state-hover), var(--state-hover)),
    var(--mrb-hook-lime);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(163, 230, 53, 0.45),
    0 14px 38px rgba(163, 230, 53, 0.14);
}

.contact-page .contact-submit:focus-visible {
  background:
    linear-gradient(var(--state-focus), var(--state-focus)),
    var(--mrb-hook-lime);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(163, 230, 53, 0.45),
    0 14px 38px rgba(163, 230, 53, 0.14);
}

.contact-page .contact-submit:active {
  background:
    linear-gradient(var(--state-pressed), var(--state-pressed)),
    var(--mrb-hook-lime);
  transform: translateY(0) scale(0.99);
  transition-duration: 90ms;
  transition-timing-function: var(--mrb-ease-press);
}

.contact-page .contact-submit:disabled:not(.is-loading) {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--divider-subtle);
  box-shadow: none;
  color: var(--text-disabled);
  opacity: 1;
  cursor: not-allowed;
}

.contact-page .contact-submit.is-loading {
  pointer-events: none;
}

.contact-page .contact-submit__progress {
  position: absolute;
  top: 50%;
  right: 18px;
  display: inline-flex;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-50% + 4px));
  transition:
    opacity 160ms var(--mrb-ease-out),
    transform 160ms var(--mrb-ease-out);
}

.contact-page .contact-submit__progress span {
  width: 10px;
  height: 4px;
  border-radius: 999px;
  background: rgba(7, 9, 13, 0.76);
  transform-origin: center;
}

.contact-page .contact-submit.is-loading .contact-submit__progress {
  opacity: 1;
  transform: translateY(-50%);
}

.contact-page .contact-submit.is-loading .contact-submit__progress span {
  animation: contact-routing-pulse 900ms ease-in-out infinite;
}

.contact-page .contact-submit.is-loading .contact-submit__progress span:nth-child(2) {
  animation-delay: 120ms;
}

.contact-page .contact-submit.is-loading .contact-submit__progress span:nth-child(3) {
  animation-delay: 240ms;
}

.contact-page .contact-form-panel__fallback,
.contact-page .contact-form-panel__status {
  margin-top: 0;
}

.contact-page .contact-form-panel__status {
  min-height: 2.9em;
  color: var(--mrb-cloud-300);
}

.contact-page .contact-form-panel__status[data-state="error"] {
  color: var(--mrb-gold-400);
}

.contact-page .contact-form-panel.is-error {
  border-color: rgba(255, 200, 87, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.05),
    0 0 0 1px rgba(255, 200, 87, 0.24),
    0 26px 72px rgba(0, 0, 0, 0.32);
}

.contact-page .contact-success-card {
  display: grid;
  gap: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 220ms cubic-bezier(.22, 1, .36, 1),
    transform 220ms cubic-bezier(.22, 1, .36, 1);
}

.contact-page .contact-success-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-page .contact-success-card h3 {
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1;
}

.contact-page .contact-success-card p {
  margin: 0;
  max-width: 44ch;
}

.contact-page .contact-success-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-page .contact-success-card__chip {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(163, 230, 53, 0.34);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(163, 230, 53, 0.18), rgba(163, 230, 53, 0.08)),
    rgba(7, 9, 13, 0.88);
  color: var(--mrb-cloud-50);
  font-size: 13px;
  font-weight: 800;
}

.contact-page .contact-success-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.contact-page .contact-success-card .text-link {
  min-height: 38px;
}

.contact-page .contact-form-panel[data-form-state="success"] {
  border-color: rgba(163, 230, 53, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.05),
    0 0 0 1px rgba(163, 230, 53, 0.16),
    0 28px 82px rgba(0, 0, 0, 0.28);
}

@keyframes contact-field-complete {
  0% {
    box-shadow:
      0 0 0 0 rgba(163, 230, 53, 0),
      0 0 0 0 rgba(163, 230, 53, 0);
  }

  100% {
    box-shadow:
      0 0 0 1px rgba(163, 230, 53, 0.34),
      0 0 0 4px rgba(163, 230, 53, 0.1),
      0 0 26px rgba(163, 230, 53, 0.08);
  }
}

@keyframes contact-routing-pulse {
  0%,
  100% {
    transform: scaleX(0.7);
    opacity: 0.45;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .contact-page .contact-hero__grid {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-hero__copy {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .contact-page .contact-hero__brief-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-form-panel,
  .contact-page .contact-hero__brief-card {
    padding: 24px;
  }
}

@media (max-width: 620px) {
  .contact-page .contact-hero {
    padding-bottom: 44px;
  }

  .contact-page .contact-hero__signals {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .contact-page .contact-form-actions,
  .contact-page .contact-success-card__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-page .contact-form-actions .button,
  .contact-page .contact-success-card__actions .button {
    width: 100%;
  }

  .contact-page .contact-submit {
    width: 100%;
  }

  .contact-page .contact-select__menu {
    padding: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-page .contact-submit:hover,
  .contact-page .contact-submit:focus-visible,
  .contact-page .contact-submit:active,
  .contact-page .contact-success-card,
  .contact-page .contact-success-card.is-visible {
    transform: none;
  }

  .contact-page .contact-submit.is-loading .contact-submit__progress span {
    animation: none;
  }

  .contact-page .field.is-complete input,
  .contact-page .field.is-complete textarea,
  .contact-page .field.is-complete .contact-select__trigger,
  .contact-page .field.is-complete .topic-chip-list,
  .contact-page .contact-select__option:hover,
  .contact-page .contact-select__option:focus-visible {
    animation: none;
    transform: none;
  }
}

.about-page [data-reveal] {
  transition:
    opacity 240ms var(--mrb-ease-out),
    transform 240ms var(--mrb-ease-out),
    filter 240ms var(--mrb-ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.about-page .about-hero__media {
  --reveal-delay: 60ms;
}

.about-page .about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding-top: 128px;
  padding-bottom: 92px;
}

.about-page .about-hero h1 {
  max-width: 11.4ch;
}

.about-page .about-hero__copy {
  max-width: 640px;
}

.about-page .about-hero__lead {
  max-width: 38ch;
  margin: 24px 0 0;
  color: var(--mrb-cloud-300);
  font-size: 19px;
  line-height: 1.6;
}

.about-page .about-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.about-page .about-hero__proof li {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid rgba(163, 230, 53, 0.26);
  border-radius: var(--mrb-radius-pill);
  background: rgba(163, 230, 53, 0.08);
  color: var(--mrb-cloud-50);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.about-page .about-hero__actions {
  margin-top: 28px;
}

.about-page .about-hero__actions .mrb-btn {
  min-height: 58px;
  padding-inline: 26px;
}

.about-page .about-hero__media {
  display: grid;
  gap: 14px;
}

.about-page .about-hero__frame {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(163, 230, 53, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.05), rgba(245, 247, 250, 0.015)),
    rgba(12, 16, 22, 0.94);
  box-shadow:
    0 28px 92px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(163, 230, 53, 0.08);
}

.about-page .about-hero__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.04), rgba(7, 9, 13, 0.78) 100%),
    linear-gradient(135deg, rgba(163, 230, 53, 0.1), transparent 36%);
  pointer-events: none;
}

.about-page .about-hero__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.about-page .about-hero__caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(163, 230, 53, 0.18);
  border-radius: 22px;
  background: rgba(7, 9, 13, 0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.about-page .about-hero__caption-label,
.about-page .about-positioning__label,
.about-page .about-proof-card__label {
  color: var(--mrb-cloud-50);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-page .about-hero__caption-label {
  color: var(--mrb-hook-lime);
}

.about-page .about-hero__caption strong {
  max-width: 30ch;
  color: var(--mrb-cloud-50);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.about-page .about-hero__notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-page .about-hero__note {
  padding: 18px;
  border: 1px solid rgba(163, 230, 53, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.04), rgba(245, 247, 250, 0.014)),
    rgba(12, 16, 22, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.04),
    0 18px 50px rgba(0, 0, 0, 0.2);
}

.about-page .about-hero__note span {
  display: block;
  margin-bottom: 8px;
  color: var(--mrb-hook-lime);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-page .about-hero__note p {
  margin: 0;
  color: var(--mrb-cloud-50);
  font-size: 15px;
  line-height: 1.5;
}

.about-page .about-positioning {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(61, 183, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(10, 13, 18, 0.98), rgba(8, 11, 16, 0.92));
}

.about-page .about-positioning::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 183, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 247, 250, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.42;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
  pointer-events: none;
}

.about-page .about-positioning .section-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

.about-page .about-positioning__lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 28px;
  align-items: end;
}

.about-page .about-positioning__lead p:not(.eyebrow) {
  max-width: 30ch;
  margin: 0;
  color: var(--mrb-cloud-50);
  font-size: 20px;
  line-height: 1.55;
}

.about-page .about-positioning__identity {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.about-page .about-positioning__card {
  min-height: 100%;
  padding: 24px;
  border-color: rgba(61, 183, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.05), rgba(245, 247, 250, 0.015)),
    rgba(11, 15, 21, 0.9);
}

.about-page .about-positioning__card h3 {
  margin-top: 10px;
  color: var(--mrb-cloud-50);
  font-size: 28px;
  line-height: 1.1;
}

.about-page .about-positioning__card p:last-child {
  margin: 12px 0 0;
}

.about-page .about-positioning__label {
  color: var(--mrb-signal-cyan);
}

.about-page .about-positioning__values {
  display: grid;
  gap: 22px;
  padding-top: 26px;
  border-top: 1px solid rgba(61, 183, 255, 0.14);
}

.about-page .about-positioning__values .section-heading {
  margin-bottom: 0;
}

.about-page .about-positioning .values-grid {
  gap: 14px;
}

.about-page .about-positioning .values-grid .card {
  min-height: 100%;
  transition:
    transform var(--mrb-duration-card) var(--mrb-ease-out),
    border-color var(--mrb-duration-card) var(--mrb-ease-out),
    background var(--mrb-duration-card) var(--mrb-ease-out),
    box-shadow var(--mrb-duration-card) var(--mrb-ease-out);
}

.about-page .about-positioning .icon-frame {
  color: var(--mrb-signal-cyan);
  border-color: rgba(61, 183, 255, 0.26);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(245, 247, 250, 0.05), rgba(245, 247, 250, 0.015)),
    rgba(9, 13, 18, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.05),
    0 0 24px rgba(61, 183, 255, 0.08);
  transition:
    transform var(--mrb-duration-card) var(--mrb-ease-out),
    border-color var(--mrb-duration-card) var(--mrb-ease-out),
    background var(--mrb-duration-card) var(--mrb-ease-out),
    box-shadow var(--mrb-duration-card) var(--mrb-ease-out),
    color var(--mrb-duration-card) var(--mrb-ease-out);
}

.about-page .about-story {
  gap: 44px;
  align-items: start;
}

.about-page .about-story__intro {
  max-width: 520px;
}

.about-page .about-story__intro p + p {
  margin-top: 18px;
}

.about-page .about-story .accent-word {
  color: var(--mrb-signal-cyan);
  text-shadow:
    0 0 18px rgba(61, 183, 255, 0.22),
    0 0 40px rgba(61, 183, 255, 0.1);
}

.about-page .about-story__cta {
  width: fit-content;
  margin-top: 24px;
}

.about-page .about-story__lanes {
  gap: 14px;
}

.about-page .about-story__lanes article {
  padding: 24px;
  border-color: rgba(61, 183, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.05), rgba(245, 247, 250, 0.015)),
    rgba(11, 15, 21, 0.88);
  transition:
    transform var(--mrb-duration-card) var(--mrb-ease-out),
    border-color var(--mrb-duration-card) var(--mrb-ease-out),
    background var(--mrb-duration-card) var(--mrb-ease-out),
    box-shadow var(--mrb-duration-card) var(--mrb-ease-out);
}

.about-page .about-story__lanes .icon-frame {
  color: var(--mrb-signal-cyan);
  border-color: rgba(61, 183, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.05),
    0 0 22px rgba(61, 183, 255, 0.06);
  transition:
    transform var(--mrb-duration-card) var(--mrb-ease-out),
    border-color var(--mrb-duration-card) var(--mrb-ease-out),
    background var(--mrb-duration-card) var(--mrb-ease-out),
    box-shadow var(--mrb-duration-card) var(--mrb-ease-out),
    color var(--mrb-duration-card) var(--mrb-ease-out);
}

.about-page .about-positioning .values-grid .card:hover,
.about-page .about-positioning .values-grid .card:focus-within,
.about-page .about-story__lanes article:hover,
.about-page .about-story__lanes article:focus-within {
  transform: translateY(-4px);
  border-color: rgba(61, 183, 255, 0.36);
  background:
    linear-gradient(180deg, rgba(61, 183, 255, 0.24), rgba(61, 183, 255, 0.1)),
    rgba(10, 15, 22, 0.96);
  box-shadow:
    0 24px 74px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(61, 183, 255, 0.12),
    0 0 40px rgba(61, 183, 255, 0.16);
}

.about-page .about-positioning .values-grid .card:hover p,
.about-page .about-positioning .values-grid .card:focus-within p,
.about-page .about-story__lanes article:hover p,
.about-page .about-story__lanes article:focus-within p {
  color: rgba(245, 247, 250, 0.9);
}

.about-page .about-positioning .values-grid .card:hover .icon-frame,
.about-page .about-positioning .values-grid .card:focus-within .icon-frame,
.about-page .about-story__lanes article:hover .icon-frame,
.about-page .about-story__lanes article:focus-within .icon-frame {
  transform: translateY(-1px) scale(1.03);
  color: var(--mrb-cloud-50);
  border-color: rgba(61, 183, 255, 0.44);
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(61, 183, 255, 0.36), rgba(61, 183, 255, 0.14)),
    rgba(10, 15, 22, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.1),
    0 0 30px rgba(61, 183, 255, 0.18);
}

.about-page .about-proof {
  display: grid;
  gap: 28px;
}

.about-page .about-proof__heading {
  margin-bottom: 0;
}

.about-page .about-proof__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-page .about-proof-card {
  display: grid;
  padding: 0;
  border-color: rgba(255, 79, 163, 0.16);
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.05), rgba(245, 247, 250, 0.015)),
    rgba(11, 15, 21, 0.92);
}

.about-page .about-proof-card__media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 79, 163, 0.14);
}

.about-page .about-proof-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(7, 9, 13, 0.12) 54%, rgba(7, 9, 13, 0.78) 100%),
    linear-gradient(135deg, rgba(255, 79, 163, 0.1), transparent 32%);
  pointer-events: none;
}

.about-page .about-proof-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--mrb-duration-card) var(--mrb-ease-out);
}

.about-page .about-proof-card__body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.about-page .about-proof-card__label {
  color: var(--mrb-sakura-magenta);
}

.about-page .about-proof-card__body h3 {
  margin: 0;
}

.about-page .about-proof-card__body p:last-child {
  margin: 0;
}

.about-page .about-proof-card:hover {
  border-color: rgba(255, 79, 163, 0.28);
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.028),
    0 0 32px rgba(255, 79, 163, 0.12);
}

.about-page .about-proof-card:hover .about-proof-card__media img {
  transform: scale(1.03);
}

.about-page .about-final-cta {
  position: relative;
  overflow: hidden;
  padding: 92px 40px;
  border: 1px solid rgba(163, 230, 53, 0.24);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 18%, rgba(163, 230, 53, 0.12), transparent 30%),
    radial-gradient(circle at 82% 28%, rgba(163, 230, 53, 0.08), transparent 30%),
    linear-gradient(160deg, rgba(14, 19, 12, 0.96), rgba(8, 11, 15, 0.96));
  box-shadow:
    0 26px 86px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(245, 247, 250, 0.05);
}

.about-page .about-final-cta::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(163, 230, 53, 0.16);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  pointer-events: none;
}

.about-page .about-final-cta > * {
  position: relative;
  z-index: 1;
}

.about-page .about-final-cta .eyebrow {
  color: var(--mrb-hook-lime);
}

.about-page .about-final-cta .action-row {
  margin-top: 34px;
}

@media (max-width: 1100px) {
  .about-page .about-hero,
  .about-page .about-positioning__lead {
    grid-template-columns: 1fr;
  }

  .about-page .about-positioning__lead p:not(.eyebrow) {
    max-width: 34ch;
  }

  .about-page .about-positioning__identity {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .about-proof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .about-page .about-hero {
    padding-top: 108px;
  }

  .about-page .about-hero__frame {
    min-height: 440px;
  }

  .about-page .about-hero__notes {
    grid-template-columns: 1fr;
  }

  .about-page .about-positioning__identity {
    grid-template-columns: 1fr;
  }

  .about-page .about-proof__grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-final-cta {
    padding: 74px 22px;
  }
}

@media (max-width: 640px) {
  .about-page .about-hero {
    gap: 24px;
    padding-top: 86px;
    padding-bottom: 72px;
  }

  .about-page .about-hero__lead {
    margin-top: 18px;
    font-size: 17px;
  }

  .about-page .about-hero__proof {
    gap: 8px;
    margin-top: 22px;
  }

  .about-page .about-hero__proof li {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .about-page .about-hero__actions,
  .about-page .about-final-cta .action-row {
    flex-direction: column;
    align-items: stretch;
  }

  .about-page .about-hero__actions .mrb-btn,
  .about-page .about-story__cta,
  .about-page .about-final-cta .mrb-btn {
    width: 100%;
  }

  .about-page .about-hero__frame {
    min-height: 360px;
  }

  .about-page .about-hero__caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }

  .about-page .about-hero__caption strong {
    font-size: 16px;
  }

  .about-page .about-positioning .section-shell,
  .about-page .about-proof {
    gap: 24px;
  }

  .about-page .about-positioning__card,
  .about-page .about-story__lanes article,
  .about-page .about-proof-card__body {
    padding: 20px;
  }

  .about-page .about-positioning__card h3 {
    font-size: 24px;
  }

  .about-page .about-final-cta {
    padding: 68px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .about-page .about-positioning .values-grid .card:hover,
  .about-page .about-positioning .values-grid .card:focus-within,
  .about-page .about-story__lanes article:hover,
  .about-page .about-story__lanes article:focus-within,
  .about-page .about-hero__frame img,
  .about-page .about-proof-card__media img {
    transform: none !important;
  }
}

/* FAQ page refresh: bespoke risk strip, clearer routing, and faster scanning. */

.faq-page .page-hero {
  position: relative;
  padding-bottom: 58px;
}

.faq-page .page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(61, 183, 255, 0), rgba(61, 183, 255, 0.88), rgba(163, 230, 53, 0.62), rgba(61, 183, 255, 0));
  opacity: 0.64;
}

.faq-page .faq-switch-section,
.faq-page #legal {
  scroll-margin-top: 120px;
}

.faq-page .faq-filter-row {
  margin-top: 32px;
  gap: 12px;
}

.faq-page .faq-filter-label {
  min-height: 44px;
  padding: 0 16px;
  border-color: var(--divider-subtle);
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.04), rgba(245, 247, 250, 0.015)),
    rgba(17, 22, 30, 0.68);
  color: var(--muted);
  text-decoration: none;
  transition:
    transform var(--mrb-duration-micro) var(--mrb-ease-out),
    border-color var(--mrb-duration-micro) var(--mrb-ease-out),
    background-color var(--mrb-duration-micro) var(--mrb-ease-out),
    box-shadow var(--mrb-duration-micro) var(--mrb-ease-out),
    color var(--mrb-duration-micro) var(--mrb-ease-out);
}

.faq-page .faq-filter-label:hover,
.faq-page .faq-filter-label:focus-visible {
  color: var(--text);
  border-color: rgba(61, 183, 255, 0.44);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.faq-page .faq-filter-label:hover {
  background:
    linear-gradient(var(--state-hover), var(--state-hover)),
    linear-gradient(180deg, rgba(245, 247, 250, 0.04), rgba(245, 247, 250, 0.015)),
    rgba(17, 22, 30, 0.68);
}

.faq-page .faq-filter-label:focus-visible {
  background:
    linear-gradient(var(--state-focus), var(--state-focus)),
    linear-gradient(180deg, rgba(245, 247, 250, 0.04), rgba(245, 247, 250, 0.015)),
    rgba(17, 22, 30, 0.68);
}

.faq-page .faq-filter-label:active {
  background:
    linear-gradient(var(--state-pressed), var(--state-pressed)),
    linear-gradient(180deg, rgba(245, 247, 250, 0.04), rgba(245, 247, 250, 0.015)),
    rgba(17, 22, 30, 0.68);
}

.faq-page .faq-filter-label.active,
.faq-page .faq-filter-label[aria-current="true"] {
  background:
    linear-gradient(135deg, rgba(61, 183, 255, 0.14), rgba(163, 230, 53, 0.1) 72%),
    rgba(17, 22, 30, 0.84);
  color: var(--mrb-cloud-50);
  border-color: rgba(61, 183, 255, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.06),
    0 16px 36px rgba(0, 0, 0, 0.22);
}

.faq-page .faq-filter-label.active .svg-icon,
.faq-page .faq-filter-label[aria-current="true"] .svg-icon {
  color: var(--mrb-cloud-50);
}

.faq-page .faq-hero-actions {
  margin-top: 24px;
}

.faq-page .faq-hero-actions .mrb-btn,
.faq-page .faq-final-cta .mrb-btn {
  min-width: min(100%, 240px);
}

.faq-page .faq-risk-section {
  padding-top: 18px;
}

.faq-page .faq-risk-section .section-shell {
  display: grid;
  gap: 36px;
}

.faq-page .faq-risk-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.faq-page .faq-risk-card {
  --faq-risk-accent: var(--cyan);
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid color-mix(in srgb, var(--faq-risk-accent) 26%, rgba(185, 194, 207, 0.14));
  border-radius: 24px;
  background-color: rgba(10, 14, 20, 0.92);
  background-image:
    linear-gradient(155deg, rgba(245, 247, 250, 0.06), rgba(245, 247, 250, 0.015) 40%),
    linear-gradient(135deg, color-mix(in srgb, var(--faq-risk-accent) 16%, transparent), transparent 58%);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.04),
    0 18px 54px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform var(--mrb-duration-card) var(--mrb-ease-out),
    border-color var(--mrb-duration-card) var(--mrb-ease-out),
    box-shadow var(--mrb-duration-card) var(--mrb-ease-out),
    background-color var(--mrb-duration-card) var(--mrb-ease-out);
}

.faq-page .faq-risk-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 34%),
    linear-gradient(120deg, transparent 68%, color-mix(in srgb, var(--faq-risk-accent) 24%, transparent) 68%, color-mix(in srgb, var(--faq-risk-accent) 10%, transparent) 76%, transparent 77%);
  opacity: 0.62;
  transform: scale(1);
  pointer-events: none;
  z-index: -1;
  transition:
    opacity var(--mrb-duration-card) var(--mrb-ease-out),
    transform 320ms var(--mrb-ease-out);
}

.faq-page .faq-risk-card::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), color-mix(in srgb, var(--faq-risk-accent) 74%, transparent), rgba(0, 0, 0, 0));
  opacity: 0.65;
  transition:
    opacity var(--mrb-duration-card) var(--mrb-ease-out),
    transform 320ms var(--mrb-ease-out);
}

.faq-page .faq-risk-card:hover,
.faq-page .faq-risk-card:focus-within {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--faq-risk-accent) 44%, rgba(185, 194, 207, 0.16));
  background-color: color-mix(in srgb, var(--faq-risk-accent) 18%, rgba(10, 14, 20, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.06),
    0 24px 64px rgba(0, 0, 0, 0.3),
    0 0 34px color-mix(in srgb, var(--faq-risk-accent) 24%, transparent);
}

.faq-page .faq-risk-card:hover::before,
.faq-page .faq-risk-card:focus-within::before {
  opacity: 1;
  transform: scale(1.02);
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--faq-risk-accent) 28%, rgba(245, 247, 250, 0.06)), color-mix(in srgb, var(--faq-risk-accent) 10%, transparent) 48%, transparent 78%),
    linear-gradient(120deg, color-mix(in srgb, var(--faq-risk-accent) 26%, transparent), transparent 68%, color-mix(in srgb, var(--faq-risk-accent) 28%, transparent) 68%, color-mix(in srgb, var(--faq-risk-accent) 14%, transparent) 80%, transparent 81%);
}

.faq-page .faq-risk-card:hover::after,
.faq-page .faq-risk-card:focus-within::after {
  opacity: 0.95;
  transform: scaleX(1.04);
}

.faq-page .faq-risk-card--rights {
  --faq-risk-accent: var(--cyan);
}

.faq-page .faq-risk-card--budget {
  --faq-risk-accent: var(--gold);
}

.faq-page .faq-risk-card--delivery {
  --faq-risk-accent: var(--lime);
}

.faq-page .faq-risk-card--support {
  --faq-risk-accent: var(--mrb-sakura-magenta);
}

.faq-page .faq-risk-card__art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 16px;
  border: 1px solid color-mix(in srgb, var(--faq-risk-accent) 24%, rgba(185, 194, 207, 0.16));
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.03), rgba(245, 247, 250, 0.012)),
    radial-gradient(circle at 18% 14%, color-mix(in srgb, var(--faq-risk-accent) 20%, transparent), transparent 40%),
    rgba(7, 9, 13, 0.72);
  overflow: hidden;
  transition:
    transform var(--mrb-duration-card) var(--mrb-ease-out),
    border-color var(--mrb-duration-card) var(--mrb-ease-out),
    box-shadow var(--mrb-duration-card) var(--mrb-ease-out),
    background-color var(--mrb-duration-card) var(--mrb-ease-out);
}

.faq-page .faq-risk-card__art::before {
  content: "";
  position: absolute;
  inset: 14px;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.28;
  pointer-events: none;
}

.faq-page .faq-risk-card__art svg {
  position: relative;
  z-index: 1;
  width: min(100%, 126px);
  height: auto;
  color: color-mix(in srgb, var(--faq-risk-accent) 78%, var(--mrb-cloud-50));
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition:
    transform var(--mrb-duration-card) var(--mrb-ease-out),
    color var(--mrb-duration-card) var(--mrb-ease-out);
}

.faq-page .faq-risk-card__label {
  margin: 0;
  color: color-mix(in srgb, var(--faq-risk-accent) 74%, var(--mrb-cloud-50));
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color var(--mrb-duration-card) var(--mrb-ease-out);
}

.faq-page .faq-risk-card h3 {
  margin: 0;
  max-width: 18ch;
  font-family: "Sora", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  transition: color var(--mrb-duration-card) var(--mrb-ease-out);
}

.faq-page .faq-risk-card p:last-child {
  margin: 0;
  max-width: 31ch;
  color: color-mix(in srgb, var(--text) 88%, var(--muted) 12%);
  transition: color var(--mrb-duration-card) var(--mrb-ease-out);
}

.faq-page .faq-risk-card:hover .faq-risk-card__art,
.faq-page .faq-risk-card:focus-within .faq-risk-card__art {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--faq-risk-accent) 40%, rgba(185, 194, 207, 0.18));
  background-color: color-mix(in srgb, var(--faq-risk-accent) 10%, rgba(7, 9, 13, 0.78));
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.05),
    0 14px 30px color-mix(in srgb, var(--faq-risk-accent) 14%, transparent);
}

.faq-page .faq-risk-card:hover .faq-risk-card__art svg,
.faq-page .faq-risk-card:focus-within .faq-risk-card__art svg {
  transform: scale(1.03);
  color: color-mix(in srgb, var(--faq-risk-accent) 88%, var(--mrb-cloud-50));
}

.faq-page .faq-risk-card:hover .faq-risk-card__label,
.faq-page .faq-risk-card:focus-within .faq-risk-card__label,
.faq-page .faq-risk-card:hover h3,
.faq-page .faq-risk-card:focus-within h3 {
  color: var(--mrb-cloud-50);
}

.faq-page .faq-risk-card:hover p:last-child,
.faq-page .faq-risk-card:focus-within p:last-child {
  color: color-mix(in srgb, var(--mrb-cloud-50) 94%, var(--faq-risk-accent) 6%);
}

.faq-page .faq-batch {
  gap: 28px;
}

.faq-page .faq-batch__intro {
  position: sticky;
  top: 116px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--divider-subtle);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.04), rgba(245, 247, 250, 0.014)),
    rgba(10, 14, 20, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.04),
    0 16px 42px rgba(0, 0, 0, 0.2);
}

.faq-page .faq-batch__intro .eyebrow,
.faq-page .faq-batch__intro h3 {
  margin: 0;
}

.faq-page .faq-batch__intro h3 {
  max-width: 10ch;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.02;
}

.faq-page .faq-list {
  counter-reset: faq-item;
  gap: 16px;
}

.faq-page .faq-list details {
  counter-increment: faq-item;
  position: relative;
  border-color: var(--divider-subtle);
  background:
    linear-gradient(180deg, rgba(245, 247, 250, 0.05), rgba(245, 247, 250, 0.015)),
    rgba(11, 15, 21, 0.84);
  transition:
    transform var(--mrb-duration-card) var(--mrb-ease-out),
    border-color var(--mrb-duration-card) var(--mrb-ease-out),
    box-shadow var(--mrb-duration-card) var(--mrb-ease-out),
    background-color var(--mrb-duration-card) var(--mrb-ease-out);
}

.faq-page .faq-list details::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--lime));
  opacity: 0;
  transition: opacity var(--mrb-duration-card) var(--mrb-ease-out);
}

.faq-page .faq-list details:hover,
.faq-page .faq-list details:focus-within {
  border-color: rgba(61, 183, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.05),
    0 20px 44px rgba(0, 0, 0, 0.24);
}

.faq-page .faq-list details[open] {
  border-color: rgba(61, 183, 255, 0.3);
  background:
    linear-gradient(180deg, rgba(61, 183, 255, 0.08), rgba(245, 247, 250, 0.015) 28%),
    rgba(11, 15, 21, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.05),
    0 24px 52px rgba(0, 0, 0, 0.28);
}

.faq-page .faq-list details[open]::after {
  opacity: 1;
}

.faq-page .faq-list summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  font-family: "Sora", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.14;
  font-weight: 700;
}

.faq-page .faq-list summary > span {
  display: block;
  max-width: 36ch;
}

.faq-page .faq-list summary::before {
  content: counter(faq-item, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid rgba(185, 194, 207, 0.18);
  border-radius: 999px;
  background: rgba(7, 9, 13, 0.7);
  color: var(--muted);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.faq-page .faq-list summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(61, 183, 255, 0.3);
  border-radius: 50%;
  background: rgba(7, 9, 13, 0.65);
  color: var(--cyan);
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}

.faq-page .faq-list details[open] summary {
  color: var(--mrb-cloud-50);
  border-bottom: 1px solid rgba(185, 194, 207, 0.12);
}

.faq-page .faq-list details[open] summary::before {
  border-color: rgba(61, 183, 255, 0.32);
  color: var(--mrb-cloud-50);
  box-shadow: 0 0 0 1px rgba(61, 183, 255, 0.12);
}

.faq-page .faq-list details[open] summary::after {
  content: "-";
  color: var(--lime);
  border-color: rgba(163, 230, 53, 0.42);
  background: rgba(163, 230, 53, 0.08);
}

.faq-page .faq-list details p {
  padding: 0 24px 24px 80px;
  max-width: 62ch;
  color: var(--text-high);
}

.faq-page .faq-final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.faq-page .faq-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(61, 183, 255, 0.18);
  border-radius: var(--mrb-radius-xl);
  background:
    linear-gradient(145deg, rgba(61, 183, 255, 0.12), transparent 34%),
    linear-gradient(200deg, rgba(163, 230, 53, 0.14), transparent 42%),
    rgba(10, 14, 20, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(245, 247, 250, 0.06),
    0 24px 64px rgba(0, 0, 0, 0.28);
  pointer-events: none;
  z-index: -1;
}

.faq-page .faq-final-cta .action-row {
  justify-content: center;
}

@media (max-width: 1100px) {
  .faq-page .faq-risk-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-page .faq-batch__intro {
    position: static;
  }

  .faq-page .faq-list details p {
    padding-left: 24px;
  }
}

@media (max-width: 780px) {
  .faq-page .page-hero {
    padding-bottom: 46px;
  }

  .faq-page .faq-filter-row {
    flex-direction: column;
  }

  .faq-page .faq-filter-label {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 16px;
  }

  .faq-page .faq-hero-actions {
    margin-top: 20px;
  }

  .faq-page .faq-hero-actions .mrb-btn,
  .faq-page .faq-final-cta .mrb-btn {
    width: 100%;
  }

  .faq-page .faq-risk-strip {
    grid-template-columns: 1fr;
  }

  .faq-page .faq-risk-card {
    padding: 20px;
  }

  .faq-page .faq-risk-card__art {
    min-height: 116px;
  }

  .faq-page .faq-batch__intro {
    padding: 20px;
  }

  .faq-page .faq-list summary {
    gap: 12px;
    padding: 18px 20px;
  }

  .faq-page .faq-list summary::before {
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .faq-page .faq-list summary::after {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .faq-page .faq-list details p {
    padding: 0 20px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-page [data-reveal],
  .faq-page .reveal-sequence > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .faq-page .faq-filter-label:hover,
  .faq-page .faq-list details:hover {
    transform: none;
  }

  .faq-page .faq-risk-card:hover,
  .faq-page .faq-risk-card:focus-within,
  .faq-page .faq-risk-card:hover .faq-risk-card__art,
  .faq-page .faq-risk-card:focus-within .faq-risk-card__art,
  .faq-page .faq-risk-card:hover .faq-risk-card__art svg,
  .faq-page .faq-risk-card:focus-within .faq-risk-card__art svg {
    transform: none;
  }
}

/* ===========================================================
   Hero tilt stage + angled marquee banner.
   Moved from an inline <style> in index.html. Namespaced
   (.mrb-tilt-stage, .hero-window, .hero-panel, .hero-banner)
   so it does not collide with the existing .hero-stage rule.
   =========================================================== */
.mrb-hero__inner { align-items: center; }

.mrb-tilt-stage {
  position: relative;
  width: 100%;
  perspective: 1500px;
  align-self: start;
}

.mrb-tilt-stage::before {
  content: "";
  position: absolute;
  inset: -40px -40px auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), rgba(0,231,255,.22) 22%, rgba(138,124,255,.10) 52%, transparent 74%);
  border-radius: 999px;
  opacity: .55;
  filter: blur(14px);
  pointer-events: none;
  animation: heroFloatOrb 9s ease-in-out infinite alternate;
}
@keyframes heroFloatOrb {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(-26px, 36px, 0) scale(1.06); }
}

/* Wrapper for the back panel — holds the colored backlight halo
   so the panel itself can stay overflow:hidden without clipping
   its own glow. preserve-3d is required so the inner window's
   rotateX/Y actually render in 3D. Do NOT add isolation, filter,
   or opacity<1 here — any of those force flat rendering. */
.hero-window-wrap {
  position: relative;
  width: min(100%, 960px);
  margin-left: auto;
  transform-style: preserve-3d;
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Backlight halo — translateZ(-120px) keeps it firmly behind
   the rotated window so its tilted edge can't intersect the
   flat halo. Keyframes must include the translateZ or the depth
   offset gets dropped mid-animation. */
.hero-window-wrap::before {
  content: "";
  position: absolute;
  inset: 6% -10% -22% -10%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(55% 55% at 30% 65%, rgba(138,124,255,.55), transparent 72%),
    radial-gradient(50% 50% at 75% 70%, rgba(0,231,255,.45), transparent 74%),
    radial-gradient(45% 45% at 50% 95%, rgba(255,79,216,.32), transparent 76%);
  filter: blur(60px);
  opacity: .7;
  transform: translateZ(-120px);
  animation: heroGlow 7s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0%   { opacity: .55; transform: translateZ(-120px) scale(1); }
  100% { opacity: .95; transform: translateZ(-120px) scale(1.06); }
}

.hero-window {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
  overflow: hidden;
  background: #0d1022;
  box-shadow:
    0 60px 140px rgba(0,0,0,.55),
    0 30px 80px rgba(138,124,255,.18),
    0 0 0 1px rgba(255,255,255,.06),
    inset 0 1px 0 rgba(255,255,255,.14);
  transform: rotateY(calc(-10deg + var(--ry))) rotateX(calc(5deg + var(--rx))) rotateZ(.4deg);
  transform-origin: center;
  /* No CSS transition on transform — the JS rAF lerp is the
     only smoother. Adding one here re-targets every frame and
     re-introduces the clunky double-easing. */
  transition: box-shadow .45s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
  backface-visibility: hidden;
}

.hero-window__top {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
}
.hero-window__dots { display: flex; gap: 8px; }
.hero-window__dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.30); }
.hero-window__title { color: rgba(255,255,255,.58); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; }

.hero-window__media {
  position: relative;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0;
  background: #0a0c1c;
  overflow: hidden;
}
.hero-window__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.hero-window__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4,5,12,.45) 0%, transparent 28%, transparent 72%, rgba(4,5,12,.40) 100%),
    radial-gradient(circle at 78% 22%, transparent 0 18%, rgba(0,0,0,.20) 66%);
}
/* Caption sits at the TOP of the video so the front info panel
   — which hangs off the bottom-left — can't cover it. */
.hero-window__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 16px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
}
.hero-window__caption > div {
  padding: 9px 13px;
  border-radius: 14px;
  background: rgba(7, 9, 22, .55);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
}
.hero-window__caption strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: -.03em;
}
.hero-window__caption em {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.78);
  font-style: normal;
  font-size: .76rem;
  line-height: 1.4;
  max-width: 360px;
}
.hero-window__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .42rem .65rem;
  border: 1px solid rgba(165,255,89,.35);
  border-radius: 999px;
  color: #dcffc5;
  background: rgba(165,255,89,.10);
  font-size: .72rem;
  font-weight: 800;
  white-space: nowrap;
}
.hero-window__pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a5ff59;
  box-shadow: 0 0 0 0 rgba(165,255,89,.6);
  animation: heroPulse 2.2s infinite;
}
@keyframes heroPulse {
  0%   { box-shadow: 0 0 0 0 rgba(165,255,89,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(165,255,89,0); }
  100% { box-shadow: 0 0 0 0 rgba(165,255,89,0); }
}

/* The front info panel — sibling of .hero-window inside the
   wrap. The wrap sizes to the video, so `bottom` is measured
   from the video's bottom edge. translateZ(90px) pushes the
   panel forward in 3D so it sits *in front of* the video plane
   instead of intersecting it. */
.hero-panel {
  --rx: 0deg;
  --ry: 0deg;
  position: absolute;
  left: -60px;
  bottom: -180px;
  width: min(100%, 260px);
  padding: 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  color: #fff;
  background: rgba(7, 9, 22, .82);
  box-shadow:
    0 30px 90px rgba(0,0,0,.55),
    0 12px 28px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(20px) saturate(1.24);
  transform: translateZ(90px)
             rotateY(calc(13deg + var(--ry)))
             rotateX(calc(2deg + var(--rx)))
             rotateZ(-1.6deg);
  will-change: transform;
  backface-visibility: hidden;
}
.hero-panel__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.hero-panel__top h2 {
  margin: 0;
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
  font-weight: 800;
}
.hero-panel__badge {
  padding: .3rem .5rem;
  border-radius: 999px;
  color: #060a14;
  background: linear-gradient(135deg, #a5ff59, #fff76d);
  font-size: .6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero-panel__headline {
  margin: 12px 0 0;
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: -.035em;
  font-weight: 900;
  color: #fff;
}
.hero-panel__sub {
  margin: 7px 0 0;
  color: rgba(238, 242, 255, .68);
  font-size: .75rem;
  line-height: 1.4;
}
.hero-panel__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 12px;
}
.hero-panel__stat {
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.05);
}
.hero-panel__stat strong {
  display: block;
  font-size: .82rem;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1;
}
.hero-panel__stat span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.55);
  font-size: .58rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-panel__cta {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(138,124,255,.20), rgba(0,231,255,.14));
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-weight: 800;
  letter-spacing: -.01em;
  font-size: .78rem;
  text-decoration: none;
}
.hero-panel__cta span:last-child {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  font-size: .8rem;
}
.hero-panel__cta:hover { background: linear-gradient(135deg, rgba(138,124,255,.30), rgba(0,231,255,.22)); }

/* Angled marquee banner — sits below the hero. Self-contained,
   does not affect the rest of the page. */
.hero-banner {
  margin: -18px 0 28px;
  border-top: 1px solid rgba(0,0,0,.10);
  border-bottom: 1px solid rgba(0,0,0,.10);
  overflow: hidden;
  background: linear-gradient(90deg, rgba(0,0,0,.92), rgba(15,15,22,.95));
  transform: rotate(-1.4deg) scale(1.04);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}
.hero-banner__track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 18px 0;
  animation: heroMarquee 32s linear infinite;
  color: rgba(255,255,255,.86);
  font-size: .92rem;
  letter-spacing: .10em;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 800;
}
.hero-banner__track span { display: inline-flex; align-items: center; gap: 28px; }
.hero-banner__track span::after { content: "✦"; color: rgba(0,231,255,.85); }
@keyframes heroMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-window-wrap { margin: 0 auto; }
  .hero-panel { left: -40px; bottom: -180px; }
}
@media (min-width: 3200px) {
  .mrb-tilt-stage {
    padding-bottom: 0;
  }
  .hero-banner {
    position: relative;
    z-index: 4;
    margin: -10px 0 64px;
    transform: rotate(-1.1deg) scale(1.025);
  }
  .hero-banner__track {
    gap: 34px;
    padding: 22px 0;
    font-size: 1rem;
  }
  .hero-banner__track span {
    gap: 34px;
  }
  .hero-window-wrap {
    width: 100%;
    max-width: none;
  }
  .hero-window {
    border-radius: 42px;
  }
  .hero-window__top {
    height: 74px;
    padding: 0 24px;
  }
  .hero-window__title {
    font-size: .98rem;
  }
  .hero-window__caption {
    left: 24px;
    right: 24px;
    top: 22px;
    gap: 18px;
  }
  .hero-window__caption > div {
    padding: 14px 18px;
  }
  .hero-window__caption strong {
    font-size: 1.42rem;
  }
  .hero-window__caption em {
    max-width: 520px;
    font-size: 1rem;
  }
  .hero-window__pill {
    font-size: .92rem;
  }
  .hero-panel {
    left: -118px;
    bottom: -344px;
    width: min(100%, 580px);
    padding: 24px;
    border-radius: 30px;
  }
  .hero-panel__top {
    gap: 16px;
    padding-bottom: 16px;
  }
  .hero-panel__top h2 {
    font-size: .9rem;
  }
  .hero-panel__badge {
    font-size: .82rem;
    padding: .42rem .72rem;
  }
  .hero-panel__headline {
    margin-top: 18px;
    font-size: 2rem;
  }
  .hero-panel__sub {
    margin-top: 10px;
    font-size: 1rem;
  }
  .hero-panel__stats {
    gap: 12px;
    margin-top: 18px;
  }
  .hero-panel__stat {
    padding: 14px 16px;
    border-radius: 16px;
  }
  .hero-panel__stat strong {
    font-size: 1.12rem;
  }
  .hero-panel__stat span {
    font-size: .78rem;
  }
  .hero-panel__cta {
    margin-top: 18px;
    padding: 16px 18px;
    font-size: 1rem;
  }
  .hero-panel__cta span:last-child {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}
@media (max-width: 760px) {
  .mrb-tilt-stage { padding-bottom: 216px; }
  .hero-window-wrap {
    width: min(100%, 540px);
    padding-inline: 8px;
  }
  .hero-window {
    transform: rotateY(calc(-6deg + var(--ry))) rotateX(calc(3deg + var(--rx))) rotateZ(.3deg);
  }
  .hero-panel {
    position: absolute;
    width: clamp(176px, 43vw, 208px);
    left: 10px;
    bottom: -194px;
    padding: 12px;
    border-radius: 18px;
    transform-origin: left center;
    transform: translateZ(70px)
               rotateY(calc(10deg + var(--ry)))
               rotateX(calc(2deg + var(--rx)))
               rotateZ(-1.4deg);
  }
  .hero-panel__headline { font-size: 1.02rem; }
  .hero-panel__sub      { font-size: .7rem; }
  .hero-panel__stat strong { font-size: .74rem; }
  .hero-panel__stat span   { font-size: .54rem; }
  .hero-panel__cta { font-size: .7rem; padding: 8px 10px; }
  .hero-banner {
    margin: 12px 0 22px;
    transform: none;
  }
  .hero-banner__track {
    gap: 22px;
    font-size: .84rem;
    padding: 14px 0;
  }
  .hero-banner__track span { gap: 22px; }
}
@media (max-width: 520px) {
  .mrb-tilt-stage { padding-bottom: 202px; }
  .hero-window-wrap { padding-inline: 4px; }
  .hero-window {
    border-radius: 22px;
    transform: rotateY(calc(-3deg + var(--ry))) rotateX(calc(1.5deg + var(--rx)));
  }
  .hero-window__top { height: 40px; padding: 0 12px; }
  .hero-window__title { font-size: .62rem; }
  .hero-window__caption {
    left: 12px;
    right: 12px;
    top: 10px;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-window__caption > div { padding: 7px 10px; border-radius: 11px; }
  .hero-window__caption strong { font-size: .85rem; }
  .hero-window__caption em {
    max-width: none;
    font-size: .62rem;
  }
  .hero-window__pill { justify-self: start; }
  .hero-panel {
    width: clamp(160px, 42vw, 188px);
    left: 8px;
    bottom: -190px;
    padding: 10px 11px;
    border-radius: 14px;
    transform-origin: left center;
    transform: translateZ(55px)
               rotateY(calc(8deg + var(--ry)))
               rotateX(calc(1.5deg + var(--rx)))
               rotateZ(-1deg);
  }
  .hero-panel__top { gap: 8px; }
  .hero-panel__top h2 { font-size: .56rem; }
  .hero-panel__badge  { font-size: .52rem; padding: .24rem .42rem; }
  .hero-panel__headline { font-size: .85rem; }
  .hero-panel__sub      { font-size: .62rem; }
  .hero-panel__stats    { gap: 4px; margin-top: 8px; }
  .hero-panel__stat     { padding: 6px 7px; border-radius: 8px; }
  .hero-panel__stat strong { font-size: .66rem; }
  .hero-panel__stat span   { font-size: .48rem; }
  .hero-panel__cta { font-size: .62rem; padding: 7px 9px; margin-top: 10px; }
  .hero-banner__track {
    gap: 18px;
    font-size: .76rem;
    padding: 12px 0;
  }
  .hero-banner__track span { gap: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-window, .hero-panel, .hero-banner__track,
  .mrb-tilt-stage::before, .hero-window-wrap, .hero-window-wrap::before,
  .hero-window__pill::before {
    animation: none !important;
    transition: none !important;
  }
}
