/* =========================================================================
   VISION — unified design system
   One typography scale, one 8px spacing grid, one palette, one motion curve.
   ========================================================================= */

:root {
  /* ---- palette: near-black, white, grayscale + one iridescent accent ---- */
  --bg:        #060608;
  --bg-2:      #0a0b0f;
  --surface:   rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --line:      rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.05);

  --fg:      #f5f5f7;
  --fg-dim:  rgba(245, 245, 247, 0.66);
  --fg-mute: rgba(245, 245, 247, 0.40);

  /* used sparingly — the only color on the page */
  --accent:      #7aa2ff;
  --accent-grad: linear-gradient(120deg, #86d8ff 0%, #7aa2ff 42%, #b58cff 100%);

  /* ---- Power AI hero theme (HSL channels) ---- */
  --background: 260 87% 3%;   /* deep dark blue-purple */
  --foreground: 40 6% 95%;    /* off-white            */
  --hero-sub:   40 6% 82%;    /* hero subtitle        */
  --font-body:    "Geist", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-display: "General Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* ---- type ---- */
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* fluid scale */
  --fs-eyebrow: clamp(0.75rem, 0.7rem + 0.2vw, 0.85rem);
  --fs-body:    clamp(1rem, 0.96rem + 0.3vw, 1.18rem);
  --fs-lede:    clamp(1.25rem, 1.05rem + 1vw, 1.75rem);
  --fs-h3:      clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  --fs-display: clamp(2.4rem, 1.4rem + 4.6vw, 5.25rem);
  --fs-hero:    clamp(2.8rem, 1.2rem + 8vw, 8.5rem);

  /* ---- 8px spacing grid ---- */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 9rem;
  --space-9: 13rem;

  /* ---- radius + depth ---- */
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow:    0 30px 80px -30px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 50px 140px -40px rgba(0, 0, 0, 0.85);

  /* ---- motion ---- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 300ms;
  --dur:      700ms;
  --dur-slow: 1000ms;

  --maxw: 1180px;
  --gutter: clamp(1.25rem, 5vw, 5rem);
}

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

* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
canvas { display: block; max-width: 100%; }

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

h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.04;
  text-wrap: balance;
}

::selection { background: rgba(122, 162, 255, 0.28); }

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

/* =============================== buttons ================================== */
.btn {
  --pad-y: 0.7rem;
  --pad-x: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: var(--pad-y) var(--pad-x);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              opacity var(--dur-fast) var(--ease);
}
.btn:hover { transform: translateY(-1px) scale(1.02); }
.btn:active { transform: translateY(0) scale(0.99); }

.btn--solid {
  background: var(--fg);
  color: #0a0a0a;
}
.btn--solid:hover { background: #fff; }

.btn--ghost {
  background: var(--surface);
  color: var(--fg);
  border-color: var(--line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: var(--surface-2); border-color: rgba(255,255,255,0.18); }

/* ================================= nav ==================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              backdrop-filter var(--dur-fast) var(--ease);
  border-bottom: 1px solid transparent;
  opacity: 0;
  transform: translateY(-8px);
  animation: nav-in var(--dur-slow) var(--ease) 0.2s forwards;
}
@keyframes nav-in { to { opacity: 1; transform: none; } }

.nav.is-scrolled {
  background: rgba(6, 6, 8, 0.62);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border-bottom-color: var(--line-soft);
}

.nav__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}
.nav__mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-grad);
  box-shadow: 0 0 18px rgba(122, 162, 255, 0.55);
}

.nav__links {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.4rem);
  font-size: 0.92rem;
  color: var(--fg-dim);
}
.nav__links a { transition: color var(--dur-fast) var(--ease); }
.nav__links a:hover { color: var(--fg); }

.nav__cta { padding: 0.5rem 1.15rem; font-size: 0.88rem; }

@media (max-width: 720px) {
  .nav__links { display: none; }
}

/* ===================== HERO — Power AI (full-screen video) ===================== */
.hero-wrap {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;                 /* clips the object-cover video */
  background: hsl(var(--background));
  font-family: var(--font-body);
  color: hsl(var(--foreground));
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;                       /* JS fade loop drives this */
  z-index: 0;
}

.hero-layer {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
}

.hero {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: visible;                /* don't clip the blurred glow */
}

/* soft blurred shape centered behind content */
.hero__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 984px;
  height: 527px;
  max-width: 95vw;
  transform: translate(-50%, -50%);
  background: #030712;              /* gray-950 */
  opacity: 0.9;
  filter: blur(82px);
  pointer-events: none;
  z-index: -1;
}

/* navbar */
.hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 1.25rem 2rem;            /* py-5 px-8 */
}
.hero-nav__logo { display: inline-flex; align-items: center; color: hsl(var(--foreground)); }
.hero-nav__logo svg { height: 32px; width: auto; display: block; }

.hero-nav__links { display: flex; align-items: center; gap: 1.75rem; }
.hero-nav__links button {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  color: hsl(var(--foreground) / 0.9);
  transition: color var(--dur-fast) var(--ease);
}
.hero-nav__links button:hover { color: hsl(var(--foreground)); }
.hero-nav__links .chev { opacity: 0.7; }

.hero-nav__divider {
  height: 1px;
  margin-top: 3px;
  background: linear-gradient(to right, transparent, hsl(var(--foreground) / 0.2), transparent);
}

/* hero buttons (heroSecondary variant) */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-weight: 500;
  color: hsl(var(--foreground));
  cursor: pointer;
  border: 0;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.btn-hero:hover { transform: translateY(-1px); }
.btn-hero:active { transform: translateY(0); }
.btn-hero--secondary {
  background: hsl(var(--foreground) / 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12);
}
.btn-hero--secondary:hover { background: hsl(var(--foreground) / 0.14); }
.hero-nav__cta { border-radius: var(--radius-pill); padding: 0.5rem 1rem; }  /* rounded-full px-4 py-2 */

/* centered content */
.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-inline: 1.5rem;
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4rem, 15.5vw, 220px);
  line-height: 1.02;
  letter-spacing: -0.024em;
  color: hsl(var(--foreground));
}
.hero__grad {
  background-image: linear-gradient(to left, #6366f1, #a855f7, #fcd34d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  margin-top: 9px;
  max-width: 28rem;                 /* max-w-md */
  font-size: 1.125rem;              /* text-lg */
  line-height: 2rem;                /* leading-8 */
  color: hsl(var(--hero-sub));
  opacity: 0.8;
}
.hero__cta {
  margin-top: 25px;
  padding: 24px 29px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
}

/* bottom logo marquee */
.marquee {
  width: 100%;
  max-width: 64rem;                 /* max-w-5xl */
  margin-inline: auto;
  padding: 0 1.5rem 2.5rem;         /* pb-10 */
  display: flex;
  align-items: center;
  gap: 3rem;                        /* gap-12 between text + marquee */
}
.marquee__label {
  flex: none;
  font-size: 0.875rem;              /* text-sm */
  line-height: 1.35;
  color: hsl(var(--foreground) / 0.5);
}
.marquee__viewport {
  position: relative;
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 4rem;                        /* gap-16 between logos */
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: marquee 20s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo { display: inline-flex; align-items: center; gap: 0.6rem; }
.logo__mark {
  width: 24px;
  height: 24px;
  border-radius: 0.5rem;            /* rounded-lg */
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: hsl(var(--foreground) / 0.9);
}
.logo__name { font-size: 1rem; font-weight: 600; color: hsl(var(--foreground)); }

/* ---------------------------- liquid glass utility ---------------------------- */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* hero responsive */
@media (max-width: 820px) {
  .hero-nav__links { display: none; }
  .marquee { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .marquee__label br { display: none; }
}

/* =============================== panels =================================== */
.panel {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: var(--space-9) var(--gutter);
  display: grid;
  gap: var(--space-6);
}
.panel--alt { max-width: none; }
.panel--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg-2);
  z-index: -1;
}

.panel--center { justify-items: center; text-align: center; }
.panel--center .panel__wrap { max-width: 56rem; }

.panel--split {
  max-width: var(--maxw);
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}
@media (max-width: 860px) {
  .panel--split { grid-template-columns: 1fr; }
}

.kicker {
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.display { font-size: var(--fs-display); margin-bottom: var(--space-4); }
.lede {
  font-size: var(--fs-lede);
  font-weight: 400;
  line-height: 1.3;
  color: var(--fg-dim);
  letter-spacing: -0.015em;
  max-width: 36ch;
}
.panel--center .lede { margin-inline: auto; }

.stat-row {
  list-style: none;
  padding: 0;
  margin-top: var(--space-5);
  display: flex;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  flex-wrap: wrap;
}
.stat-row li { display: grid; gap: 0.2rem; }
.stat-row strong {
  font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-row span { font-size: 0.85rem; color: var(--fg-mute); }

/* --------------------- generic "visual" canvas blocks --------------------- */
.canvas-block {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.canvas-block__scene {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
}
.canvas-block__scene--immersion {
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(122,162,255,0.22), transparent 45%),
    radial-gradient(120% 120% at 90% 90%, rgba(181,140,255,0.20), transparent 45%),
    linear-gradient(160deg, #0e1018, #07080c);
}
.canvas-block__scene--clarity {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 3px),
    radial-gradient(140% 100% at 50% 0%, rgba(134,216,255,0.18), transparent 55%),
    linear-gradient(180deg, #0c0f16, #07080c);
}

/* video fills the framed box; the gradient above shows if it can't decode */
.canvas-block__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.float {
  position: absolute;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow);
}
.float--a { width: 38%; height: 30%; left: 12%; top: 18%;  animation: drift 9s var(--ease) infinite; }
.float--b { width: 30%; height: 42%; right: 14%; top: 26%; animation: drift 11s var(--ease) infinite reverse; }
.float--c { width: 24%; height: 22%; left: 40%; bottom: 12%; animation: drift 13s var(--ease) infinite; }
@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ================================= trio =================================== */
.trio {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
@media (max-width: 760px) { .trio { grid-template-columns: 1fr; } }

.trio__item {
  text-align: left;
  padding: var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease),
              background var(--dur-fast) var(--ease);
}
.trio__item:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
  background: var(--surface-2);
}
.trio__item h3 { font-size: var(--fs-h3); margin-bottom: 0.5rem; }
.trio__item p  { color: var(--fg-dim); font-size: 1rem; }

.trio__icon {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: var(--space-3);
  border-radius: 8px;
  background: var(--accent-grad);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.trio__icon[data-icon="eye"]   { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'%3E%3Cpath d='M1 12s4-7 11-7 11 7 11 7-4 7-11 7S1 12 1 12z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'%3E%3Cpath d='M1 12s4-7 11-7 11 7 11 7-4 7-11 7S1 12 1 12z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E"); }
.trio__icon[data-icon="hand"]  { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'%3E%3Cpath d='M18 11V6a2 2 0 0 0-4 0v5M14 10V4a2 2 0 0 0-4 0v7M10 10.5V6a2 2 0 0 0-4 0v8'/%3E%3Cpath d='M18 8a2 2 0 0 1 4 0v6a8 8 0 0 1-8 8h-2a8 8 0 0 1-7-4l-2.5-4.5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'%3E%3Cpath d='M18 11V6a2 2 0 0 0-4 0v5M14 10V4a2 2 0 0 0-4 0v7M10 10.5V6a2 2 0 0 0-4 0v8'/%3E%3Cpath d='M18 8a2 2 0 0 1 4 0v6a8 8 0 0 1-8 8h-2a8 8 0 0 1-7-4l-2.5-4.5'/%3E%3C/svg%3E"); }
.trio__icon[data-icon="voice"] { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'%3E%3Crect x='9' y='2' width='6' height='12' rx='3'/%3E%3Cpath d='M5 10a7 7 0 0 0 14 0M12 17v5'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.6'%3E%3Crect x='9' y='2' width='6' height='12' rx='3'/%3E%3Cpath d='M5 10a7 7 0 0 0 14 0M12 17v5'/%3E%3C/svg%3E"); }

/* ================================ quote =================================== */
.panel--quote { justify-items: center; text-align: center; }
.quote { max-width: 60rem; display: grid; gap: var(--space-4); }
.quote p {
  font-size: clamp(2rem, 1.2rem + 3.5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.quote cite {
  font-style: normal;
  font-size: var(--fs-lede);
  color: var(--fg-dim);
  max-width: 40ch;
  margin-inline: auto;
}

/* =============================== scenarios ================================ */
.grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
}
.card {
  grid-column: span 3;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  transition: transform var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}
.card--wide { grid-column: span 3; }
.card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.16); }
.card__art {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.card__art--work     { background: radial-gradient(120% 120% at 80% 20%, rgba(122,162,255,0.35), transparent 55%), linear-gradient(160deg,#10131c,#07080c); }
.card__art--cinema   { background: radial-gradient(120% 120% at 30% 80%, rgba(181,140,255,0.32), transparent 55%), linear-gradient(160deg,#120e1a,#07080c); }
.card__art--memories { background: radial-gradient(120% 120% at 50% 10%, rgba(134,216,255,0.30), transparent 55%), linear-gradient(160deg,#0c141a,#07080c); }
.card__art--connect  { background: radial-gradient(120% 120% at 20% 80%, rgba(122,162,255,0.28), transparent 50%), radial-gradient(80% 80% at 90% 30%, rgba(181,140,255,0.24), transparent 55%), linear-gradient(160deg,#0e0f18,#07080c); }
.card__body { padding: var(--space-4); }
.card__body h3 { font-size: var(--fs-h3); margin-bottom: 0.4rem; }
.card__body p  { color: var(--fg-dim); font-size: 1rem; }

@media (max-width: 760px) {
  .grid { grid-template-columns: 1fr; }
  .card, .card--wide { grid-column: 1 / -1; }
}

/* ================================== cta =================================== */
.cta {
  text-align: center;
  padding: var(--space-9) var(--gutter);
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(122,162,255,0.14), transparent 55%),
    var(--bg);
}
.cta__wrap { max-width: 46rem; display: grid; gap: var(--space-3); }
.cta__title { font-size: var(--fs-display); }
.cta__sub { font-size: var(--fs-lede); color: var(--fg-dim); font-weight: 400; }
.cta__actions {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  margin-top: var(--space-2);
  flex-wrap: wrap;
}
.cta__fine { font-size: 0.85rem; color: var(--fg-mute); margin-top: var(--space-2); }

/* ================================ footer ================================== */
.footer {
  border-top: 1px solid var(--line-soft);
  padding: var(--space-7) var(--gutter) var(--space-5);
  background: var(--bg);
}
.footer__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  font-size: 1.05rem;
}
.footer__cols {
  display: flex;
  gap: clamp(2rem, 6vw, 5rem);
  flex-wrap: wrap;
}
.footer__col { display: grid; gap: 0.6rem; align-content: start; }
.footer__col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.footer__col a { color: var(--fg-dim); font-size: 0.95rem; transition: color var(--dur-fast) var(--ease); }
.footer__col a:hover { color: var(--fg); }

.footer__fine {
  max-width: var(--maxw);
  margin: var(--space-6) auto 0;
  padding-top: var(--space-4);
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--fg-mute);
}

/* =========================== motion / reveals ============================= */
/* Scroll-reveal base state. JS adds .is-visible to play. */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* staggered children */
[data-stagger] [data-stagger-item] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
[data-stagger].is-visible [data-stagger-item] {
  opacity: 1;
  transform: none;
}

/* ============================ reduced motion ============================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal,
  [data-stagger] [data-stagger-item] { opacity: 1; transform: none; }
  /* hold the marquee still and keep the hero video fully visible */
  .marquee__track { animation: none; }
  .hero-video { opacity: 1 !important; }
}
