/* ─── Lumen Sentinel — design tokens ─────────────────────────────────── */
:root {
  --bg-deep: #0A0E1A;
  --bg-mid: #1E2540;
  --horizon: #E8B080;
  --horizon-warm: #F4D4A8;
  --accent-blue: #5B8CFF;
  --accent-cyan: #9FC5FF;
  --accent-gold: #FFB870;
  --text-primary: #F5F1E8;
  --text-muted: #8892B0;
  --text-faint: #4A5578;

  --rim: var(--accent-blue);            /* tweakable accent */
  --rim-warm: var(--accent-gold);
  --grain-opacity: 0.06;

  --gap: clamp(20px, 2vw, 32px);
  --pad-x: clamp(20px, 6vw, 96px);
  --maxw: 1320px;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --t-fast: 220ms cubic-bezier(.2,.65,.3,1);
  --t-med: 480ms cubic-bezier(.2,.65,.3,1);
  --t-slow: 900ms cubic-bezier(.2,.65,.3,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  color: var(--text-primary);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
  /* Site-wide signature gradient — deep navy → twilight → peachy/amber horizon.
     Fixed so every section is atmospheric: navy at top, horizon at bottom of viewport. */
  background:
    radial-gradient(60% 35% at 50% 100%, rgba(244,212,168,.42) 0%, transparent 65%),
    radial-gradient(80% 60% at 50% 110%, rgba(232,176,128,.55) 0%, transparent 60%),
    linear-gradient(180deg, #0A0E1A 0%, #14182B 32%, #1E2540 58%, #3b3550 80%, #7a5a55 92%, #E8B080 100%);
  background-attachment: fixed;
  background-size: 100% 100vh;
  background-repeat: no-repeat;
  background-position: center;
}

/* fixed background video — mounted INSIDE hero only, no scrim.
   Bottom is masked to fade transparently into the body gradient. */
.site-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  animation: bg-breathe 18s ease-in-out infinite alternate;
  will-change: transform;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, rgba(0,0,0,.85) 78%, rgba(0,0,0,.4) 92%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 62%, rgba(0,0,0,.85) 78%, rgba(0,0,0,.4) 92%, transparent 100%);
}
@keyframes bg-breathe {
  0%   { transform: scale(1.02) translate3d(0,0,0); }
  100% { transform: scale(1.08) translate3d(-1%,-1%,0); }
}
.site-bg-scrim {
  /* deprecated: hero video now plays at 100% opacity, no scrim */
  display: none;
}

/* hero-to-content blend: warm/navy band that bridges the seam between the
   hero video and the body gradient. Taller + softer mask = no visible cut. */
.hero-blend {
  position: relative;
  height: 520px;
  margin-top: -340px;
  z-index: 5;
  pointer-events: none;
  background:
    radial-gradient(70% 100% at 50% 0%, rgba(255,184,112,0.32) 0%, rgba(232,176,128,0.20) 30%, rgba(122,90,85,0.12) 60%, transparent 88%),
    linear-gradient(180deg, rgba(232,176,128,0.18) 0%, rgba(122,90,85,0.16) 25%, rgba(59,53,80,0.14) 50%, rgba(30,37,64,0.10) 75%, transparent 100%);
  filter: blur(14px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img, svg, video { display: block; max-width: 100%; }

/* film grain — fixed, multiply-light blend */
#grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 60;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: var(--grain-opacity);
  mix-blend-mode: overlay;
}
.grain-defs { position: absolute; width: 0; height: 0; }

/* ─── Type scale ────────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background-image: var(--chrome-warm);
  background-clip: text; -webkit-background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(255,184,112,.5)) drop-shadow(0 0 16px rgba(255,184,112,.25));
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold));
}
h1, h2, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -0.015em; line-height: 0.98; margin: 0; }
h1 { font-size: clamp(48px, 7.4vw, 124px); }
h2 { font-size: clamp(40px, 5.4vw, 84px); line-height: 1.0; }
h3 { font-size: clamp(28px, 2.8vw, 40px); line-height: 1.05; }

/* ─── Chrome metallic text — for headlines and primary numerals ───────── */
:root {
  --chrome-cool: linear-gradient(180deg,
    #ffffff 0%,
    #f5f1e8 10%,
    #d6dcec 26%,
    #8e9ab8 46%,
    #4f5a78 56%,
    #b9c4dc 70%,
    #ece6d6 86%,
    #f5f1e8 100%);
  --chrome-warm: linear-gradient(180deg,
    #fff4e0 0%,
    #ffe1b5 16%,
    #d59866 38%,
    #7e4f2c 52%,
    #b87a48 64%,
    #ffd9a8 80%,
    #fff4e0 100%);
}
.chrome, h1, h2, h3,
.stat-num, .industry-stat, .price-amount, .price-name, .quote q, .step-num {
  background-image: var(--chrome-cool);
  background-clip: text; -webkit-background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(159,197,255,0.16)) drop-shadow(0 1px 0 rgba(0,0,0,0.55));
}
h1 em, h2 em, h3 em, .industry-stat em, .stat-num .unit {
  background-image: var(--chrome-warm);
  background-clip: text; -webkit-background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(255,184,112,0.30)) drop-shadow(0 1px 0 rgba(0,0,0,0.6));
  font-style: italic; font-weight: 400;
}
.quote q::before, .quote q::after {
  background-image: var(--chrome-warm);
  background-clip: text; -webkit-background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
p { margin: 0; }
.lede { font-size: clamp(17px, 1.3vw, 19px); color: var(--text-muted); line-height: 1.55; max-width: 52ch; text-shadow: 0 0 28px rgba(91,140,255,.10); }

/* ─── Layout ────────────────────────────────────────────────────────── */
.shell { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x); position: relative; }
section { position: relative; overflow-x: clip; }
.section-pad { padding: clamp(96px, 12vw, 168px) 0; }

/* surreal sidemark — giant rotated atmospheric type */
.sidemark {
  position: absolute;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(120px, 16vw, 240px);
  letter-spacing: -0.04em; line-height: 0.85;
  color: transparent;
  background-image: var(--chrome-cool);
  background-clip: text; -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: .07;
  pointer-events: none; user-select: none; white-space: nowrap;
  filter: blur(.3px) drop-shadow(0 0 30px rgba(159,197,255,.4));
  z-index: 0;
}
.sidemark.left  { left: -3vw;  top: 8%;  transform: rotate(-90deg); transform-origin: left top; }
.sidemark.right { right: -3vw; top: 12%; transform: rotate(90deg);  transform-origin: right top; }
.sidemark.warm  { background-image: var(--chrome-warm); filter: blur(.3px) drop-shadow(0 0 30px rgba(255,184,112,.4)); }
.sidemark.huge  { font-size: clamp(180px, 22vw, 360px); opacity: .055; }

/* drifting aura orb */
.aura-orb {
  position: absolute; pointer-events: none; border-radius: 50%;
  filter: blur(60px); opacity: .55; z-index: 0;
  animation: auraFloat 18s ease-in-out infinite alternate;
}
.aura-orb.cool { width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(91,140,255,.45), rgba(91,140,255,0) 70%); }
.aura-orb.warm { width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,184,112,.42), rgba(255,184,112,0) 70%); }
.aura-orb.cyan { width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(159,197,255,.42), rgba(159,197,255,0) 70%); }
@keyframes auraFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-30px, 30px) scale(.96); }
}

/* broken chrome arc */
.chrome-arc {
  position: absolute; pointer-events: none; z-index: 0;
  width: 380px; height: 380px; border-radius: 50%;
  background: conic-gradient(from 200deg,
    transparent 0%,
    rgba(159,197,255,.35) 18%,
    rgba(245,241,232,.55) 28%,
    rgba(255,184,112,.45) 38%,
    transparent 50%);
  -webkit-mask: radial-gradient(closest-side, transparent 76%, #000 78%, #000 82%, transparent 84%);
          mask: radial-gradient(closest-side, transparent 76%, #000 78%, #000 82%, transparent 84%);
  filter: blur(1px) drop-shadow(0 0 30px rgba(159,197,255,.4));
  opacity: .85;
}

/* drifting horizon wisp */
.wisp {
  position: absolute; pointer-events: none; z-index: 0;
  width: 60vw; max-width: 720px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(159,197,255,.8), rgba(245,241,232,.95), rgba(255,184,112,.7), transparent);
  filter: blur(1px) drop-shadow(0 0 8px rgba(159,197,255,.6)) drop-shadow(0 0 18px rgba(255,184,112,.45));
  opacity: .55;
  animation: wispDrift 22s ease-in-out infinite alternate;
}
@keyframes wispDrift {
  0%   { transform: translateX(-30px) rotate(-2deg); opacity: .35; }
  50%  { transform: translateX(20px)  rotate(1deg);  opacity: .7;  }
  100% { transform: translateX(40px)  rotate(-1deg); opacity: .4;  }
}

.section-pad > .shell, .globe-section > .shell { position: relative; z-index: 2; }

/* horizon line — reusable glowing divider */
.horizon-line {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(232,176,128,.35) 25%, rgba(255,184,112,.85) 50%, rgba(232,176,128,.35) 75%, transparent 100%);
  filter: drop-shadow(0 0 8px rgba(255,184,112,.35)) drop-shadow(0 0 22px rgba(232,176,128,.18));
}
.horizon-line.short { width: 120px; }
.horizon-line.full  { width: 100%; }

/* ─── Buttons ───────────────────────────────────────────────────────── */
.btn {
  --rim-color: var(--rim);
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  height: 48px; padding: 0 22px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid rgba(245,241,232,.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  color: var(--text-primary);
  cursor: default;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
  isolation: isolate;
}
.btn::after {
  content: ""; position: absolute; inset: -1px;
  border-radius: inherit; pointer-events: none;
  box-shadow: 0 0 0 1px rgba(91,140,255,0) inset, 0 0 0 0 rgba(91,140,255,0);
  transition: box-shadow var(--t-med);
}
.btn:hover { border-color: rgba(245,241,232,.28); transform: translateY(-1px); }
.btn:hover::after { box-shadow: 0 0 0 1px rgba(245,241,232,.16) inset, 0 12px 40px -8px rgba(91,140,255,.18); }
.btn .arrow { width: 14px; height: 14px; transition: transform var(--t-fast); }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background:
    radial-gradient(120% 180% at 50% 130%, rgba(91,140,255,.45), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border-color: rgba(159,197,255,.35);
  box-shadow:
    0 0 0 1px rgba(159,197,255,.18) inset,
    0 0 24px -4px rgba(91,140,255,.45),
    0 14px 40px -10px rgba(91,140,255,.35);
}
.btn-primary:hover {
  border-color: rgba(159,197,255,.6);
  box-shadow:
    0 0 0 1px rgba(159,197,255,.4) inset,
    0 0 36px -2px rgba(91,140,255,.7),
    0 18px 60px -10px rgba(91,140,255,.55);
}
.btn-ghost { background: transparent; }
.btn-sm { height: 36px; padding: 0 16px; font-size: 12px; }

/* ─── Nav ─ surreal glass with iridescent rim ──────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: backdrop-filter var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  isolation: isolate;
}
.nav::before { /* iridescent gradient halo behind the bar — always on */
  content: ""; position: absolute; inset: -40px 0 -40px 0; pointer-events: none; z-index: -1;
  background:
    radial-gradient(60% 80% at 18% 50%, rgba(91,140,255,.30), transparent 65%),
    radial-gradient(50% 80% at 82% 50%, rgba(255,184,112,.26), transparent 65%),
    radial-gradient(40% 60% at 50% 50%, rgba(159,197,255,.18), transparent 70%);
  filter: blur(28px);
  opacity: .9;
}
.nav::after { /* iridescent bottom rim line — appears on scroll */
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; pointer-events: none;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(91,140,255,.55) 18%,
    rgba(159,197,255,.85) 38%,
    rgba(245,241,232,.55) 50%,
    rgba(255,184,112,.85) 62%,
    rgba(232,176,128,.55) 82%,
    transparent 100%);
  filter: drop-shadow(0 0 6px rgba(159,197,255,.5)) drop-shadow(0 0 14px rgba(255,184,112,.35));
  opacity: 0;
  transition: opacity var(--t-fast);
}
.nav.scrolled {
  background: linear-gradient(180deg, rgba(10,14,26,.55) 0%, rgba(10,14,26,.30) 100%);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 8px 40px -12px rgba(91,140,255,.18);
}
.nav.scrolled::after { opacity: 1; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; position: relative; }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background-image: linear-gradient(95deg,
    var(--accent-cyan) 0%,
    var(--accent-blue) 25%,
    #f5f1e8 50%,
    var(--horizon-warm) 75%,
    var(--accent-gold) 100%);
  background-clip: text; -webkit-background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(159,197,255,.45)) drop-shadow(0 0 14px rgba(255,184,112,.30));
  opacity: .92;
  transition: opacity var(--t-fast), filter var(--t-fast);
  position: relative;
}
.nav-links a:hover {
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(159,197,255,.8)) drop-shadow(0 0 22px rgba(255,184,112,.6));
}
.nav-right { display: flex; gap: 12px; align-items: center; }
.nav-right .signin {
  font-family: var(--sans); font-style: normal;
  font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0 12px;
  background-image: linear-gradient(95deg, var(--accent-cyan), #f5f1e8 55%, var(--accent-gold));
  background-clip: text; -webkit-background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(159,197,255,.45)) drop-shadow(0 0 14px rgba(255,184,112,.30));
  opacity: .92; transition: opacity var(--t-fast), filter var(--t-fast);
}
.nav-right .signin:hover { opacity: 1; filter: drop-shadow(0 0 12px rgba(255,184,112,.7)); }

/* wordmark */
.wordmark { display: inline-flex; align-items: center; gap: 12px; }
.wordmark .orb {
  width: 16px; height: 16px; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, #ffffff 0%, #ffe9c8 18%, var(--accent-cyan) 38%, var(--accent-blue) 62%, #1a2554 100%),
    radial-gradient(circle at 70% 75%, rgba(255,184,112,.7), transparent 55%);
  box-shadow:
    0 0 14px rgba(159,197,255,.7),
    0 0 28px rgba(91,140,255,.45),
    0 0 36px rgba(255,184,112,.35),
    inset -1px -2px 4px rgba(0,0,0,.45);
  position: relative;
  animation: orb-breathe 4.8s ease-in-out infinite;
}
@keyframes orb-breathe {
  0%, 100% { box-shadow: 0 0 12px rgba(159,197,255,.55), 0 0 22px rgba(91,140,255,.3), inset -1px -2px 4px rgba(0,0,0,.4); }
  50%      { box-shadow: 0 0 18px rgba(159,197,255,.85), 0 0 36px rgba(91,140,255,.5), inset -1px -2px 4px rgba(0,0,0,.4); }
}
.wordmark .text {
  font-family: var(--sans);
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
  background-image: linear-gradient(95deg,
    var(--accent-cyan) 0%,
    var(--accent-blue) 20%,
    #ffffff 48%,
    var(--horizon-warm) 76%,
    var(--accent-gold) 100%);
  background-clip: text; -webkit-background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(159,197,255,.65))
          drop-shadow(0 0 22px rgba(91,140,255,.4))
          drop-shadow(0 0 26px rgba(255,184,112,.45));
}
.wordmark .text .sentinel { font-weight: 700; opacity: 1; }

/* ─── Hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 96px;
  overflow: hidden;
  isolation: isolate;
}
.hero .shell { position: relative; z-index: 3; }
.hero-warmth-1 { /* peachy warmth blob */
  position: absolute; left: 50%; bottom: -20%; width: 140%; height: 70%;
  transform: translateX(-50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,184,112,.4) 0%, rgba(232,176,128,.18) 35%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero-orb { /* drifting blue orb */
  position: absolute; pointer-events: none;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(91,140,255,.35), rgba(91,140,255,.08) 40%, transparent 65%);
  filter: blur(20px);
  opacity: 0.7;
  animation: drift1 28s ease-in-out infinite;
}
.hero-orb.b {
  width: 320px; height: 320px;
  background: radial-gradient(circle at 50% 50%, rgba(255,184,112,.32), transparent 65%);
  animation: drift2 36s ease-in-out infinite;
}
@keyframes drift1 {
  0%,100% { transform: translate(-12%, -8%); }
  50%     { transform: translate( 8%,  6%); }
}
@keyframes drift2 {
  0%,100% { transform: translate(60%, 30%); }
  50%     { transform: translate(48%, 14%); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  min-height: calc(100vh - 96px);
  padding: 64px 0 80px;
  position: relative; z-index: 2;
}
.hero-content { max-width: 720px; }
.hero h1 { max-width: 16ch; }
.hero .lede { margin-top: 28px; max-width: 44ch; color: rgba(245,241,232,.78); }
.hero .ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero .horizon-row { margin-top: 56px; display: flex; align-items: center; gap: 18px; }
.hero .horizon-row .label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted);
}

/* hero centerpiece (video) */
.sentinel-frame {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 0 0 1px rgba(245,241,232,.06),
    0 40px 100px -30px rgba(0,0,0,.7),
    0 0 80px -20px rgba(91,140,255,.25);
  animation: frame-breathe 7s ease-in-out infinite;
}
@keyframes frame-breathe {
  0%,100% { box-shadow: 0 0 0 1px rgba(245,241,232,.06), 0 40px 100px -30px rgba(0,0,0,.7), 0 0 60px -20px rgba(91,140,255,.18); }
  50%     { box-shadow: 0 0 0 1px rgba(159,197,255,.18), 0 40px 100px -30px rgba(0,0,0,.7), 0 0 110px -20px rgba(91,140,255,.45); }
}
.sentinel-frame video {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
}
.sentinel-frame::before { /* rim-light gradient sheen */
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    radial-gradient(120% 60% at 50% 110%, rgba(255,184,112,.22), transparent 55%),
    linear-gradient(180deg, rgba(10,14,26,.32) 0%, transparent 35%, transparent 70%, rgba(10,14,26,.4) 100%);
}
.sentinel-frame::after { /* corner rim glow */
  content: ""; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none; z-index: 3;
  background: linear-gradient(135deg, rgba(159,197,255,.5), transparent 25%, transparent 75%, rgba(255,184,112,.45));
  mix-blend-mode: screen; opacity: 0.55;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
}

/* hero side-rail metadata */
.hero-meta {
  position: absolute; right: var(--pad-x); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 18px; z-index: 3;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-faint);
  writing-mode: vertical-rl;
}

/* ─── Content sections sit over the bg-video; add subtle backdrop ──── */
.content-bg { position: relative; isolation: isolate; }
.content-bg::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,14,26,.55) 0%, rgba(10,14,26,.78) 18%, rgba(10,14,26,.78) 82%, rgba(10,14,26,.55) 100%);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}

/* ─── Trust strip ───────────────────────────────────────────────────── */
.trust {
  padding: 56px 0 40px;
  border-top: 1px solid rgba(245,241,232,.05);
  border-bottom: 1px solid rgba(245,241,232,.05);
}
.trust-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 28px;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  align-items: center;
}
.trust-logo {
  height: 28px;
  display: flex; align-items: center; justify-content: flex-start;
  color: rgba(136,146,176,.55);
  transition: color var(--t-fast), filter var(--t-fast);
  font-family: var(--sans);
  font-size: 14px; letter-spacing: 0.06em; font-weight: 500;
}
.trust-logo:hover { color: rgba(245,241,232,.92); filter: drop-shadow(0 0 12px rgba(159,197,255,.35)); }

/* ─── Threat landscape (stat cards bento) ───────────────────────────── */
.section-eyebrow-row { display: flex; flex-direction: column; gap: 24px; margin-bottom: 64px; max-width: 720px; }
.threats-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 20px;
}
.stat-card {
  position: relative;
  border-radius: 18px;
  padding: 36px 32px 32px;
  background:
    radial-gradient(140% 100% at 100% 0%, rgba(91,140,255,.07), transparent 55%),
    linear-gradient(180deg, rgba(245,241,232,.025), rgba(245,241,232,.005));
  border: 1px solid rgba(245,241,232,.06);
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
}
.stat-card.warm {
  background:
    radial-gradient(140% 100% at 100% 0%, rgba(255,184,112,.09), transparent 55%),
    linear-gradient(180deg, rgba(245,241,232,.025), rgba(245,241,232,.005));
}
.stat-card .glow {
  position: absolute; right: -40px; top: -40px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(91,140,255,.18), transparent 60%);
  filter: blur(20px); pointer-events: none; z-index: -1;
}
.stat-card.warm .glow { background: radial-gradient(circle, rgba(255,184,112,.18), transparent 60%); }
.stat-icon { width: 56px; height: 56px; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
.stat-num .unit { font-size: 0.42em; color: var(--text-muted); margin-left: 6px; letter-spacing: 0; }
.stat-card .label { font-size: 14px; color: var(--text-muted); max-width: 24ch; }
.stat-card .delta { font-size: 12px; color: var(--accent-gold); letter-spacing: 0.1em; text-transform: uppercase; }

/* ─── Platform features ─────────────────────────────────────────────── */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) 0;
  border-top: 1px solid rgba(245,241,232,.05);
}
.feature-block:last-child { border-bottom: 1px solid rgba(245,241,232,.05); }
.feature-block.reverse .feature-art { order: 2; }
.feature-block.reverse .feature-copy { order: 1; }
.feature-copy { max-width: 520px; }
.feature-copy .eyebrow { margin-bottom: 28px; }
.feature-copy h3 { margin-bottom: 24px; max-width: 14ch; }
.feature-copy p { color: var(--text-muted); margin-bottom: 32px; max-width: 46ch; }
.feature-copy ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.feature-copy li {
  display: flex; gap: 14px; align-items: baseline;
  font-size: 14px; color: rgba(245,241,232,.85);
}
.feature-copy li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent-gold); box-shadow: 0 0 8px var(--accent-gold);
  flex-shrink: 0; transform: translateY(2px);
}
.feature-art {
  position: relative; aspect-ratio: 1/1; max-width: 520px; width: 100%;
  margin-left: auto;
}
.feature-block.reverse .feature-art { margin-left: 0; margin-right: auto; }

/* ─── Threat globe ──────────────────────────────────────────────────── */
.globe-section {
  position: relative;
  padding: clamp(96px, 12vw, 160px) 0;
  background: radial-gradient(60% 40% at 50% 50%, rgba(30,37,64,.55), transparent 70%);
}
.globe-wrap {
  position: relative;
  aspect-ratio: 16/10;
  max-width: 1100px;
  margin: 56px auto 0;
}
.globe-stats {
  position: absolute; right: 0; top: 12%;
  display: flex; flex-direction: column; gap: 28px;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-faint);
}
.globe-stats .v { font-family: var(--serif); font-size: 32px; letter-spacing: -0.01em; color: var(--text-primary); text-transform: none; }

/* ─── Steps timeline ────────────────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  position: relative; max-width: 720px; margin: 0 auto;
}
.steps-grid::before {
  content: ""; position: absolute; left: 32px; top: 60px; bottom: 60px; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(91,140,255,.35) 15%, rgba(255,184,112,.35) 85%, transparent);
  filter: drop-shadow(0 0 4px rgba(91,140,255,.3));
}
.step {
  display: grid; grid-template-columns: 80px 1fr; gap: 32px;
  padding: 36px 0;
  align-items: start;
}
.step-num {
  font-family: var(--serif); font-size: 56px; line-height: 1;
  position: relative; z-index: 1;
}
.step-num::after { /* tiny chrome shine */
  content: ""; position: absolute; left: -8px; top: -4px; width: 60px; height: 60px; border-radius: 50%;
  background: radial-gradient(circle, rgba(91,140,255,.3), transparent 60%);
  filter: blur(12px); z-index: -1;
}
.step h3 { margin-bottom: 12px; }
.step p { color: var(--text-muted); max-width: 52ch; }

/* ─── Industries ────────────────────────────────────────────────────── */
.industries-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 56px;
}
.tab {
  appearance: none; border: 1px solid rgba(245,241,232,.08);
  background: transparent; color: var(--text-muted);
  height: 44px; padding: 0 22px; border-radius: 999px;
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.04em;
  cursor: default; transition: all var(--t-fast);
}
.tab:hover { color: var(--text-primary); border-color: rgba(245,241,232,.2); }
.tab.active {
  color: var(--bg-deep);
  background: linear-gradient(180deg, var(--horizon-warm), var(--horizon));
  border-color: var(--horizon);
  box-shadow: 0 0 24px -2px rgba(255,184,112,.4);
}
.industry-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  min-height: 280px;
}
.industry-panel h3 { max-width: 14ch; margin-bottom: 20px; }
.industry-panel p { color: var(--text-muted); max-width: 46ch; }
.industry-stat {
  font-family: var(--serif); font-size: clamp(72px, 9vw, 132px); line-height: 0.95;
  color: var(--text-primary); letter-spacing: -0.025em;
}
.industry-stat em { color: var(--horizon); font-style: italic; }
.industry-stat-label { font-size: 12px; color: var(--text-faint); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 14px; }

/* ─── Testimonials ──────────────────────────────────────────────────── */
.quotes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.quote {
  padding: 48px 0;
}
.quote q {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(28px, 2.6vw, 40px); line-height: 1.15; letter-spacing: -0.01em;
  color: var(--text-primary);
  display: block; quotes: "\201C" "\201D";
  margin-bottom: 32px;
}
.quote q::before { content: open-quote; color: var(--horizon); margin-right: 4px; }
.quote q::after  { content: close-quote; color: var(--horizon); margin-left: 4px; }
.quote-attr { display: flex; gap: 14px; align-items: center; }
.quote-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #fff, var(--accent-cyan) 30%, var(--accent-blue) 70%, #1a2554);
  box-shadow: 0 0 16px rgba(91,140,255,.4), inset -2px -3px 6px rgba(0,0,0,.5);
  flex-shrink: 0;
}
.quote-meta { font-size: 13px; color: var(--text-muted); }
.quote-meta strong { color: var(--text-primary); display: block; font-weight: 500; }

/* ─── Pricing ───────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.price-card {
  position: relative;
  border-radius: 22px;
  padding: 40px 32px 32px;
  background: linear-gradient(180deg, rgba(245,241,232,.025), rgba(245,241,232,.005));
  border: 1px solid rgba(245,241,232,.07);
  display: flex; flex-direction: column; gap: 28px;
  min-height: 580px;
  isolation: isolate;
}
.price-card.featured {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(91,140,255,.16), transparent 60%),
    linear-gradient(180deg, rgba(245,241,232,.04), rgba(245,241,232,.01));
  border-color: rgba(159,197,255,.25);
  overflow: hidden;
}
.price-card.featured::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none; z-index: -1;
  background: conic-gradient(from var(--ang, 0deg), rgba(159,197,255,.0) 0deg, rgba(159,197,255,.7) 90deg, rgba(255,184,112,.7) 180deg, rgba(159,197,255,.0) 360deg);
  animation: rim-rotate 8s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  padding: 1px;
  opacity: .65;
}
@keyframes rim-rotate { to { --ang: 360deg; transform: rotate(360deg); } }
@property --ang { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.price-card .badge {
  position: absolute; top: 16px; right: 20px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent-gold);
}
.price-name { font-family: var(--serif); font-size: 32px; }
.price-amount { display: flex; align-items: baseline; gap: 6px; font-family: var(--serif); font-size: 56px; line-height: 1; }
.price-amount .per { font-family: var(--sans); font-size: 13px; color: var(--text-muted); }
.price-desc { color: var(--text-muted); font-size: 14px; min-height: 3em; }
.price-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.price-features li { display: flex; gap: 12px; align-items: baseline; font-size: 14px; color: rgba(245,241,232,.88); }
.price-features li svg { flex-shrink: 0; transform: translateY(2px); }
.price-card .btn { width: 100%; margin-top: auto; }

/* ─── FAQ ───────────────────────────────────────────────────────────── */
.faq {
  display: flex; flex-direction: column;
  border-top: 1px solid rgba(245,241,232,.07);
}
.faq-item {
  border-bottom: 1px solid rgba(245,241,232,.07);
  padding: 0;
}
.faq-q {
  appearance: none; background: transparent; border: 0; color: inherit;
  width: 100%; padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--serif); font-size: clamp(20px, 2vw, 26px); font-weight: 400;
  letter-spacing: -0.01em; line-height: 1.2;
  cursor: default; text-align: left;
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--horizon); }
.faq-q .plus {
  flex-shrink: 0; width: 28px; height: 28px; border: 1px solid rgba(245,241,232,.18); border-radius: 50%;
  display: grid; place-items: center; color: var(--text-muted);
  transition: transform var(--t-med), border-color var(--t-fast), color var(--t-fast);
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); border-color: var(--horizon); color: var(--horizon); }
.faq-a {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-med);
}
.faq-a > div { overflow: hidden; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p { padding: 0 0 28px; color: var(--text-muted); max-width: 70ch; }

/* ─── Final CTA ─────────────────────────────────────────────────────── */
.final-cta {
  position: relative;
  min-height: 92vh;
  display: grid; place-items: center;
  text-align: center;
  padding: 0 var(--pad-x);
  overflow: hidden;
  background:
    radial-gradient(60% 45% at 50% 100%, rgba(244,212,168,.45), transparent 60%),
    radial-gradient(80% 70% at 50% 110%, rgba(232,176,128,.6), transparent 65%),
    linear-gradient(180deg, rgba(10,14,26,.85) 0%, rgba(30,37,64,.5) 45%, rgba(122,90,85,.3) 80%, rgba(232,176,128,.4) 100%);
}
.final-cta-inner { max-width: 920px; position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(56px, 9vw, 152px); }
.final-cta .horizon-line { margin: 40px auto 36px; max-width: 220px; }
.final-cta .lede { margin: 0 auto 44px; }

/* ─── Footer ────────────────────────────────────────────────────────── */
.footer {
  padding: 80px 0 48px;
  border-top: 1px solid rgba(245,241,232,.06);
  background: var(--bg-deep);
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}
.footer-col h4 {
  font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--text-faint); margin: 0 0 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--text-muted); transition: color var(--t-fast); }
.footer-col a:hover { color: var(--text-primary); }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 32ch; margin-top: 18px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  padding-top: 32px; border-top: 1px solid rgba(245,241,232,.05);
  font-size: 12px; color: var(--text-faint); letter-spacing: 0.04em; }
.status-pill { display: inline-flex; align-items: center; gap: 10px; }
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,.7);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 6px rgba(74,222,128,.5); }
  50%     { box-shadow: 0 0 14px rgba(74,222,128,.9); }
}

/* ─── Reveal-on-scroll — GSAP owns initial state + animation via autoAlpha ── */
.reveal { }
.reveal.in { opacity: 1; } /* CSS fallback if GSAP unavailable */

/* ─── Cursor trail canvas ───────────────────────────────────────────── */
.cursor-trail-canvas { position: absolute; inset: 0; pointer-events: none; z-index: 4; }

/* ─── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid { padding: 48px 0 64px; }
  .hero-meta { display: none; }
  .threats-grid { grid-template-columns: 1fr; }
  .feature-block { grid-template-columns: 1fr; gap: 40px; }
  .feature-block.reverse .feature-art { order: 1; margin: 0 auto; }
  .feature-block.reverse .feature-copy { order: 2; }
  .feature-art { margin: 0 auto; max-width: 380px; }
  .industry-panel { grid-template-columns: 1fr; gap: 32px; }
  .quotes-grid { grid-template-columns: 1fr; gap: 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-row { grid-template-columns: repeat(3, 1fr); gap: 20px 16px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: 60px 1fr; gap: 20px; }
  .steps-grid::before { left: 22px; }
  .stat-card { min-height: 280px; padding: 28px 24px; }
}

/* ─── Reduced motion ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  #loader { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════════
   LOADING SCREEN
   ═══════════════════════════════════════════════════════════════════════ */

#loader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: #0A0E1A;
  overflow: hidden;
  pointer-events: all;
}

/* ─── Grain overlay on loader ───────────────────────────────────────── */
.ld-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.09;
  mix-blend-mode: overlay;
}

/* ─── Atmospheric orbs ──────────────────────────────────────────────── */
.ld-orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
  will-change: transform, opacity;
}
.ld-orb-a {
  width: 820px; height: 820px;
  background: radial-gradient(circle, rgba(91,140,255,.52), rgba(91,140,255,0) 70%);
  filter: blur(100px);
  left: -22%; top: -28%;
}
.ld-orb-b {
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(255,184,112,.48), rgba(255,184,112,0) 70%);
  filter: blur(90px);
  right: -16%; bottom: -22%;
}
.ld-orb-c {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(159,197,255,.42), rgba(159,197,255,0) 70%);
  filter: blur(80px);
  right: 8%; top: -16%;
}

/* ─── Horizon line ──────────────────────────────────────────────────── */
.ld-horizon-wrap {
  position: absolute; left: 0; right: 0;
  top: 50%; transform: translateY(-50%);
  height: 1px; z-index: 1; overflow: hidden;
}
.ld-horizon {
  width: 100%; height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(91,140,255,.5) 12%,
    rgba(159,197,255,.85) 32%,
    rgba(245,241,232,.95) 50%,
    rgba(255,184,112,.85) 68%,
    rgba(232,176,128,.5) 88%,
    transparent 100%
  );
  filter: drop-shadow(0 0 8px rgba(159,197,255,.65))
          drop-shadow(0 0 22px rgba(255,184,112,.5))
          drop-shadow(0 0 40px rgba(91,140,255,.3));
}

/* ─── Centre brand block ────────────────────────────────────────────── */
.ld-center {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}

/* glowing orb */
.ld-logo-orb {
  width: 22px; height: 22px; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, #ffffff 0%, #ffe9c8 18%, #9FC5FF 38%, #5B8CFF 62%, #1a2554 100%),
    radial-gradient(circle at 70% 75%, rgba(255,184,112,.7), transparent 55%);
  box-shadow:
    0 0 18px rgba(159,197,255,.95),
    0 0 36px rgba(91,140,255,.75),
    0 0 60px rgba(255,184,112,.65),
    inset -1px -2px 4px rgba(0,0,0,.5);
  margin-bottom: 22px;
  animation: ld-orb-pulse 2.6s ease-in-out infinite;
  will-change: box-shadow;
}
@keyframes ld-orb-pulse {
  0%,100% {
    box-shadow: 0 0 18px rgba(159,197,255,.95), 0 0 36px rgba(91,140,255,.75), 0 0 60px rgba(255,184,112,.65), inset -1px -2px 4px rgba(0,0,0,.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(159,197,255,1), 0 0 60px rgba(91,140,255,.95), 0 0 90px rgba(255,184,112,.85), inset -1px -2px 4px rgba(0,0,0,.5);
  }
}

/* wordmark container */
.ld-wordmark {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}

/* "LUMEN" — small caps tracking */
.ld-lumen {
  font-family: var(--sans);
  font-size: 11px; font-weight: 700; letter-spacing: 0.54em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #9FC5FF 0%, #f5f1e8 50%, #FFB870 100%);
  background-clip: text; -webkit-background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(159,197,255,.75))
          drop-shadow(0 0 20px rgba(255,184,112,.45));
  display: flex; gap: 0;
}

/* "SENTINEL" — large serif chrome */
.ld-sentinel {
  font-family: var(--serif);
  font-size: clamp(58px, 9.5vw, 108px);
  font-weight: 400; letter-spacing: 0.055em; line-height: 1;
  background: linear-gradient(180deg,
    #ffffff 0%, #f5f1e8 10%, #d6dcec 26%,
    #8e9ab8 46%, #4f5a78 56%,
    #b9c4dc 70%, #ece6d6 86%, #f5f1e8 100%);
  background-clip: text; -webkit-background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 28px rgba(159,197,255,.22))
          drop-shadow(0 2px 0 rgba(0,0,0,.65));
  display: flex;
}

.ld-char { display: inline-block; will-change: transform, opacity; }

/* tagline */
.ld-tagline {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(136,146,176,.72);
  margin-top: 22px;
}

/* progress bar */
.ld-progress {
  width: 110px; height: 1px;
  margin-top: 52px;
  background: rgba(245,241,232,.07);
  overflow: visible;
}
.ld-progress-inner {
  width: 100%; height: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(159,197,255,.95) 30%,
    rgba(245,241,232,.9) 50%,
    rgba(255,184,112,.95) 70%,
    transparent 100%
  );
  filter: drop-shadow(0 0 5px rgba(159,197,255,.6))
          drop-shadow(0 0 12px rgba(255,184,112,.5));
  transform-origin: left center;
  will-change: transform;
}
