/* =====================================================================
   xCHANGE FLEX SITE — heavy animation
   =================================================================== */

:root {
  --orange: #FF5F1F;
  --orange-deep: #E64A0A;
  --orange-soft: #FFE8DF;
  --orange-rim: #FFD9C2;
  --teal: #004040;
  --teal-deep: #00282A;
  --teal-mist: #E4ECEC;
  --paper: #F4EFE5;
  --paper2: #FAF7F2;
  --ink: #0A1414;
  --ink-2: #18272A;
  --ink-3: #2A3A3D;
  --muted: #6B7777;
  --muted-2: #98A0A0;
  --hair: #E5DFD4;
  --red: #C24545;
  --green: #1F8A5B;
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --serif: "Instrument Serif", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
html, body {
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body { overflow-x: clip; }
body.locked { overflow: hidden; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

::selection { background: var(--orange); color: #fff; }

@media (hover: hover) and (pointer: fine) {
  body, a, button { cursor: none; }
}

.warm { color: var(--orange); }
.serif { font-family: var(--serif); font-weight: 400; font-style: italic; letter-spacing: -0.005em; }

/* =====================================================================
   SCROLL PROGRESS BAR
   =================================================================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px;
  z-index: 9000; pointer-events: none;
  background: rgba(255,255,255,0.04);
}
.scroll-progress span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--orange), #fff);
  transform-origin: left; transform: scaleX(0);
}

/* =====================================================================
   CURSOR
   =================================================================== */
.cursor, .cursor-trail {
  position: fixed; top: 0; left: 0; pointer-events: none;
  z-index: 9999; transform: translate(-50%,-50%);
  mix-blend-mode: difference;
}
.cursor {
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff;
  transition: width .2s, height .2s, background .2s;
}
.cursor.hover {
  width: 56px; height: 56px;
  background: var(--orange);
  mix-blend-mode: normal;
}
.cursor-trail {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
}
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-trail { display: none; }
}

/* =====================================================================
   BOOT LOADER
   =================================================================== */
.boot {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: clip-path 1s cubic-bezier(.7,0,.3,1), opacity .4s 1s;
}
.boot.gone {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  pointer-events: none;
}
.boot-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,95,31,0.16), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(0,64,64,0.5), transparent 50%);
  filter: blur(40px);
}
.boot-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 24px;
  width: min(560px, 80vw);
}
.boot-mono {
  font-family: var(--mono); font-size: 13px;
  color: rgba(255,255,255,0.55);
  width: 100%;
  letter-spacing: 0.04em;
  text-align: left;
  height: 80px;
}
.boot-mono .bt-line {
  display: block; opacity: 0;
  animation: btLine .15s linear forwards;
}
.boot-mono .bt-line:nth-child(1) { animation-delay: .2s; }
.boot-mono .bt-line:nth-child(2) { animation-delay: .45s; }
.boot-mono .bt-line:nth-child(3) { animation-delay: .75s; }
.boot-mono .bt-line:nth-child(4) { animation-delay: 1.05s; color: var(--orange); font-weight: 600; }
@keyframes btLine { to { opacity: 1; } }

.boot-x {
  position: relative; width: 100px; height: 112px;
}
.boot-x svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.boot-x .bx-up { color: var(--orange); stroke: var(--orange); animation: bxUp 1.4s cubic-bezier(.3,.7,.3,1) infinite; }
.boot-x .bx-down { color: #fff; stroke: #fff; animation: bxDown 1.4s cubic-bezier(.3,.7,.3,1) infinite; }
@keyframes bxUp { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-6px, -6px) rotate(-2deg); } }
@keyframes bxDown { 0%,100% { transform: translate(0,0); } 50% { transform: translate(6px, 6px) rotate(2deg); } }

.boot-bar {
  width: 100%; height: 2px; background: rgba(255,255,255,0.08); overflow: hidden;
}
.boot-bar span {
  display: block; height: 100%; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  animation: bootBar 1.7s cubic-bezier(.7,0,.3,1) forwards;
}
@keyframes bootBar { to { transform: scaleX(1); } }
.boot-meta {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.28em;
  color: rgba(255,255,255,0.35); text-transform: uppercase;
}

/* =====================================================================
   NAV
   =================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  padding: 22px 36px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  background: rgba(10,20,20,0.5);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: padding .3s, background .3s;
}
.nav.scrolled { padding: 14px 36px; background: rgba(10,20,20,0.85); }
.n-logo { display: inline-flex; align-items: center; gap: 8px; color: #fff; }
.n-x { position: relative; width: 24px; height: 28px; display: inline-block; }
.n-x svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.n-x .nx-up { color: var(--orange); stroke: var(--orange); animation: nxUp 4s ease-in-out infinite; }
.n-x .nx-down { color: #fff; stroke: #fff; animation: nxDown 4s ease-in-out infinite; }
@keyframes nxUp { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-1.5px, -1.5px); } }
@keyframes nxDown { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(1.5px, 1.5px); } }
.n-word { font-weight: 800; font-size: 19px; letter-spacing: -0.01em; }
.n-links { display: flex; gap: 28px; justify-content: center; }
.n-links a {
  font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.75);
  position: relative; padding: 4px 0;
  letter-spacing: -0.005em;
}
.n-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1.5px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.3,.7,.3,1);
}
.n-links a:hover { color: #fff; }
.n-links a:hover::after { transform: scaleX(1); }
.n-cta {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px 10px 20px;
  background: var(--orange); color: #fff;
  border-radius: 99px; font-weight: 700; font-size: 13px;
  letter-spacing: -0.005em;
  position: relative; overflow: hidden;
}
.n-cta-arr {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  transition: transform .25s;
}
.n-cta:hover .n-cta-arr { transform: rotate(-30deg); }
@media (max-width: 880px) {
  .n-links { display: none; }
  .nav { grid-template-columns: 1fr auto; }
}

/* =====================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  height: 100vh; min-height: 720px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,95,31,0.18), transparent 60%), var(--ink);
}
.hero-canvas { position: absolute; inset: 0; z-index: 1; }
.hero-mesh {
  position: absolute; inset: -10%; z-index: 1; pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,95,31,0.32), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,64,64,0.5), transparent 45%);
  filter: blur(40px);
  animation: meshDrift 18s ease-in-out infinite alternate;
}
@keyframes meshDrift { to { transform: scale(1.12) rotate(8deg) translate(-20px, 20px); } }
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .15 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* echo word in the background */
.hero-echo {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-weight: 800; font-size: clamp(180px, 35vw, 720px);
  letter-spacing: -0.05em; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.06);
  white-space: nowrap;
  pointer-events: none; z-index: 1;
  animation: echoFloat 14s ease-in-out infinite alternate;
}
@keyframes echoFloat {
  0%   { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-52%, -48%) scale(1.04); }
}

/* the giant interactive logo */
.hero-stage {
  position: relative; z-index: 4;
  text-align: center;
  padding: 0 32px;
}
.hero-logo {
  display: inline-flex; align-items: center; justify-content: center;
  gap: clamp(8px, 1vw, 18px);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
  position: relative;
}
.hl-x {
  position: relative;
  width: clamp(80px, 13vw, 220px);
  height: clamp(92px, 15vw, 250px);
  display: inline-block;
  flex-shrink: 0;
}
.hl-x svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hl-x .hl-up   { color: var(--orange); stroke: var(--orange); animation: hlUp 4.5s cubic-bezier(.5,0,.5,1) infinite; }
.hl-x .hl-down { color: #fff; stroke: #fff; animation: hlDown 4.5s cubic-bezier(.5,0,.5,1) infinite; }
@keyframes hlUp   { 0%, 100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(-6px, -6px) rotate(-2deg); } }
@keyframes hlDown { 0%, 100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(6px, 6px) rotate(2deg); } }
.hl-glow {
  position: absolute; inset: -20%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,95,31,0.45), transparent 60%);
  animation: hlGlow 3.5s ease-in-out infinite;
  z-index: -1;
}
@keyframes hlGlow { 0%,100% { opacity: 0.55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }

.hl-word {
  font-weight: 800;
  font-size: clamp(76px, 14vw, 240px);
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: #fff;
  display: inline-flex;
}
.hl-l {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: hlLetter 1s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(0.2s + var(--i, 0) * 0.06s);
  transition: transform .35s cubic-bezier(.3,.7,.3,1), color .25s;
}
@keyframes hlLetter { to { transform: translateY(0); opacity: 1; } }
.hl-l:hover { color: var(--orange); transform: translateY(-10px) rotate(-3deg); }

@media (max-width: 720px) {
  .hero-logo { flex-direction: column; gap: 12px; }
}

.hero-tag {
  margin-top: 36px;
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.35;
  letter-spacing: -0.01em;
  display: flex; flex-wrap: wrap; gap: 0.3em; justify-content: center; align-items: baseline;
  max-width: 900px; margin-left: auto; margin-right: auto;
  opacity: 0; transform: translateY(20px);
  animation: tagIn 1s cubic-bezier(.2,.7,.2,1) .9s forwards;
}
@keyframes tagIn { to { opacity: 1; transform: none; } }
.hero-tag .serif { color: rgba(255,255,255,0.75); font-size: 1.05em; }
.hero-tag .scramble {
  font-family: var(--mono);
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0;
  font-size: 0.85em;
  padding: 0 0.15em;
  background: rgba(255,95,31,0.12);
  border: 1px solid rgba(255,95,31,0.3);
  border-radius: 6px;
  display: inline-block;
}

/* hero ticker bands */
.hero-band {
  position: absolute; left: 0; right: 0; z-index: 3;
  pointer-events: none; overflow: hidden;
  height: 56px;
}
.hb-top { bottom: 80px; transform: skewY(-1.5deg); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); background: rgba(255,255,255,0.02); }
.hb-track {
  display: inline-flex; align-items: center; gap: 32px;
  white-space: nowrap;
  height: 100%;
  animation: hbScroll 24s linear infinite;
  padding-right: 32px;
}
.hb-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 99px;
  background: rgba(255,255,255,0.07);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: #fff; font-weight: 600;
}
.hb-pill.warm { background: rgba(255,95,31,0.18); color: var(--orange); }
.hb-w {
  font-weight: 800; font-size: 24px; letter-spacing: -0.02em;
  color: rgba(255,255,255,0.95);
}
@keyframes hbScroll { to { transform: translateX(-50%); } }

/* corner meta */
.hero-corner { position: absolute; z-index: 4; }
.hero-corner.br { bottom: 18px; right: 36px; display: flex; align-items: center; gap: 14px; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(255,95,31,0.3); } 50% { box-shadow: 0 0 0 10px rgba(255,95,31,0); } }
.hc-vert {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); font-weight: 600;
}
.hc-bar {
  width: 80px; height: 1px; background: rgba(255,255,255,0.15); overflow: hidden; position: relative;
}
.hc-bar i { position: absolute; inset: 0; background: var(--orange); transform-origin: left; animation: sbar 2.4s ease-in-out infinite; }
@keyframes sbar {
  0% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  51% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

@media (max-width: 880px) {
  .hero-corner.br { right: 20px; bottom: 12px; }
  .hb-top { bottom: 110px; }
}

/* =====================================================================
   MONEY TICKER BAND
   =================================================================== */
.moneyband {
  background: var(--ink);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}
.mb-stack { display: flex; flex-direction: column; gap: 6px; }
.mb-row {
  display: flex; gap: 24px;
  font-weight: 800;
  font-size: clamp(36px, 5.4vw, 80px);
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: #fff;
}
.mb-row.r1 { animation: mbLeft 32s linear infinite; }
.mb-row.r2 { animation: mbRight 28s linear infinite; }
.mb-row.r3 { animation: mbLeft 36s linear infinite; }
.mb-row .warm { color: var(--orange); }
@keyframes mbLeft  { to { transform: translateX(-50%); } }
@keyframes mbRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* =====================================================================
   STAT EXPLOSIONS
   =================================================================== */
.stats {
  position: relative;
  padding: 200px 36px 200px;
  background: var(--ink);
  overflow: hidden;
}
.s-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-bottom: 60px;
}
.s-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,95,31,0.2); animation: pulse 2s ease-in-out infinite; }
.s-row {
  display: flex; align-items: flex-end; gap: 0;
  justify-content: center; flex-wrap: wrap;
  max-width: 1400px; margin: 0 auto;
}
.s-big {
  position: relative;
  flex: 1; min-width: 280px;
  padding: 40px 30px;
  text-align: center;
}
.s-big .sb-burst {
  position: absolute; left: 50%; top: 38%;
  width: 220px; height: 220px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,95,31,0.3), transparent 60%);
  opacity: 0;
  filter: blur(20px);
  pointer-events: none;
}
.s-big.in .sb-burst { animation: sbBurst 1.2s cubic-bezier(.3,.7,.3,1) forwards; }
@keyframes sbBurst {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0); }
  40% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.8); }
}
.s-big .sb-num {
  display: inline-flex; align-items: baseline;
  gap: 6px;
  line-height: 0.9;
}
.s-big .sb-n {
  font-weight: 800;
  font-size: clamp(120px, 16vw, 240px);
  letter-spacing: -0.05em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.s-big.warm .sb-n, .s-big.warm .sb-suf { color: var(--orange); }
.s-big .sb-suf {
  font-weight: 800;
  font-size: clamp(60px, 8vw, 120px);
  color: var(--orange);
  letter-spacing: -0.04em;
}
.s-big .sb-label {
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.s-divider {
  width: 1px; align-self: stretch;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
  margin: 30px 0;
}
@media (max-width: 880px) {
  .stats { padding: 100px 24px; }
  .s-row { flex-direction: column; }
  .s-divider { width: 60%; height: 1px; margin: 0 auto; }
}

/* =====================================================================
   HORIZONTAL STORY (sticky)
   =================================================================== */
.story {
  position: relative;
  background: var(--paper2);
  color: var(--ink);
}
.story-stick {
  position: relative;
  height: 600vh; /* runway */
}
.story-stage {
  position: sticky; top: 0;
  width: 100vw; height: 100vh;
  overflow: hidden;
  background: var(--paper2);
}
.story-progress {
  position: absolute; left: 50%; top: 32px;
  transform: translateX(-50%);
  display: flex; gap: 12px;
  z-index: 10;
}
.sp-dot {
  width: 36px; height: 4px; border-radius: 99px;
  background: rgba(10,20,20,0.12);
  transition: background .4s, transform .4s;
}
.sp-dot.on { background: var(--orange); transform: scaleY(1.5); }
.sp-dot.done { background: rgba(10,20,20,0.35); }
.story-track {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  height: 100%;
  will-change: transform;
}
.frame {
  flex: 0 0 100vw;
  height: 100vh;
  padding: 100px 80px;
  display: flex; align-items: center;
  position: relative;
}
.frame .f-inner {
  width: 100%; max-width: 1280px; margin: 0 auto;
}
.f-eyebrow {
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 24px;
}
.f-h {
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 1000px;
}
.f-h em { font-family: var(--serif); font-weight: 400; font-style: italic; color: var(--orange); font-size: 1.05em; letter-spacing: -0.01em; }
.f-p {
  font-size: clamp(17px, 1.4vw, 22px);
  color: var(--muted); max-width: 640px; line-height: 1.5; font-weight: 500;
  margin: 0 0 48px;
}

/* Frame 0 — parcel */
.f-stage1 { position: relative; height: 240px; }
.parcel {
  position: absolute; left: 50%; top: 0;
  transform: translateX(-50%);
  width: 220px; height: 180px;
  animation: parcelBob 3s ease-in-out infinite;
}
@keyframes parcelBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}
.parcel .p-box {
  position: absolute; inset: 0;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 12px;
}
.parcel .p-box::before, .parcel .p-box::after {
  content: ''; position: absolute; background: var(--ink);
}
.parcel .p-box::before { left: 50%; top: 0; bottom: 0; width: 6px; transform: translateX(-50%); }
.parcel .p-box::after  { top: 50%; left: 0; right: 0; height: 6px; transform: translateY(-50%); opacity: 0.4; }
.parcel .p-flap {
  position: absolute; left: 0; right: 0; top: 0; height: 30px;
  background: var(--orange);
  border: 2px solid var(--ink); border-bottom: none;
  border-radius: 10px 10px 0 0;
}
.parcel .p-shadow {
  position: absolute; left: 10%; right: 10%; bottom: -20px;
  height: 12px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0,0,0,0.25), transparent 70%);
  filter: blur(4px);
  animation: parcelShadow 3s ease-in-out infinite;
}
@keyframes parcelShadow {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50%      { transform: scaleX(0.85); opacity: 0.7; }
}

/* Frame 1 — the three cards */
.three-cards {
  display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 20px;
  max-width: 1100px;
  align-items: center;
}
.tc {
  background: #fff; border: 1px solid var(--hair); border-radius: 28px;
  padding: 36px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 280px;
}
.tc-l { font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-2); }
.tc-v {
  font-weight: 800; font-size: clamp(40px, 6vw, 88px);
  letter-spacing: -0.035em; line-height: 0.95;
  font-variant-numeric: tabular-nums;
}
.tc-m { font-size: 15px; color: var(--muted); font-weight: 500; }
.tc-r .tc-v { color: var(--red); }
.tc-r { transform: scale(0.78) rotate(-5deg); opacity: 0.55; filter: grayscale(.4); }
.tc-x {
  background: linear-gradient(150deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff; border-color: var(--orange);
  transform: scale(1.08);
  box-shadow: 0 60px 100px -40px rgba(255,95,31,0.5);
  animation: tcPulse 2.4s ease-in-out infinite;
}
@keyframes tcPulse {
  0%, 100% { box-shadow: 0 60px 100px -40px rgba(255,95,31,0.5), 0 0 0 0 rgba(255,95,31,0.35); }
  50% { box-shadow: 0 60px 100px -40px rgba(255,95,31,0.5), 0 0 0 24px rgba(255,95,31,0); }
}
.tc-x .tc-l { color: rgba(255,255,255,0.85); }
.tc-x .tc-m { color: rgba(255,255,255,0.9); }
.tc-x .tc-v { color: #fff; }
.tc-rec {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; padding: 4px 10px; border-radius: 99px;
  background: rgba(255,255,255,0.22); color: #fff;
}
.tc-flair {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 70% 20%, rgba(255,255,255,0.25), transparent 50%);
}
.tc-c { transform: scale(0.78) rotate(5deg); opacity: 0.65; }
.tc-c .tc-v { color: var(--teal); }

/* Frame 2 — match grid */
.match-grid {
  display: grid; grid-template-columns: 1fr 80px 1fr; gap: 20px;
  align-items: center; max-width: 900px;
}
.m-card {
  background: #fff; border: 1px solid var(--hair); border-radius: 24px;
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.m-card.m-suggested {
  border: 2px solid var(--orange);
  background: linear-gradient(180deg, var(--orange-soft) 0%, #fff 100%);
  box-shadow: 0 40px 80px -40px rgba(255,95,31,0.4);
}
.m-tag {
  position: absolute; top: 16px; right: 16px;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; padding: 4px 10px; border-radius: 99px;
  background: var(--orange); color: #fff;
}
.m-sw {
  height: 120px; border-radius: 12px;
  display: flex; overflow: hidden;
}
.m-sw span { flex: 1; }
.m-l { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); }
.m-n { font-weight: 800; font-size: 22px; letter-spacing: -0.01em; }
.m-p { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--ink); }
.m-arrow {
  font-weight: 800; font-size: 64px; color: var(--orange); text-align: center;
  animation: mArrow 1.6s ease-in-out infinite;
}
@keyframes mArrow { 0%,100% { transform: translateX(0); } 50% { transform: translateX(10px); } }

/* Frame 3 — math */
.math-anim {
  display: grid; grid-template-columns: 1fr 120px 1fr; gap: 24px;
  align-items: center; max-width: 1000px;
}
.ma-before, .ma-after {
  background: #fff; border: 1px solid var(--hair); border-radius: 28px;
  padding: 48px 36px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.ma-before { background: rgba(194,69,69,0.06); border-color: rgba(194,69,69,0.2); }
.ma-after { background: linear-gradient(180deg, var(--orange-soft) 0%, #fff 100%); border-color: var(--orange); }
.ma-l { font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-2); }
.ma-v { font-weight: 800; font-size: clamp(44px, 6vw, 72px); letter-spacing: -0.035em; line-height: 0.95; font-variant-numeric: tabular-nums; }
.ma-before .ma-v { color: var(--red); }
.ma-after .ma-v { color: var(--orange-deep); }
.ma-m { font-size: 15px; color: var(--muted); font-weight: 500; }
.ma-arrow {
  position: relative; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 64px; color: var(--ink);
}
.ma-a-line {
  position: absolute; left: 0; right: 0; top: 50%; height: 3px;
  background: var(--ink);
  transform-origin: left;
  animation: maLine 2.4s ease-in-out infinite;
}
@keyframes maLine {
  0% { transform: scaleX(0); }
  50% { transform: scaleX(1); }
  100% { transform: scaleX(0); transform-origin: right; }
}
.ma-a-tip { position: relative; z-index: 1; }

/* Frame 4 — multiplier */
.multiplier {
  background: var(--ink); color: #fff;
  border-radius: 28px; padding: 40px 56px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  max-width: 640px;
  position: relative; overflow: hidden;
}
.multiplier::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,95,31,0.3), transparent 60%);
}
.mu-num {
  position: relative; z-index: 1;
  font-weight: 800; font-size: clamp(72px, 10vw, 140px);
  letter-spacing: -0.045em; line-height: 0.9;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline; gap: 10px;
}
.mu-x { font-family: var(--serif); font-style: italic; color: #fff; opacity: 0.5; font-size: 0.55em; }
.mu-l {
  position: relative; z-index: 1;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.mu-total {
  position: relative; z-index: 1;
  margin-top: 18px;
  font-weight: 800; font-size: clamp(22px, 2.4vw, 34px); letter-spacing: -0.02em;
  color: #fff;
}
.mu-total .mu-t { color: var(--orange); }

@media (max-width: 880px) {
  .story-stick { height: 400vh; } /* less runway on mobile */
  .frame { padding: 100px 24px; }
  .three-cards { grid-template-columns: 1fr; }
  .match-grid { grid-template-columns: 1fr; }
  .m-arrow { transform: rotate(90deg); }
  .math-anim { grid-template-columns: 1fr; }
  .multiplier { padding: 40px; }
}

/* =====================================================================
   LIQUID MORPH ENGINE
   =================================================================== */
.morph {
  background: var(--paper2); color: var(--ink);
  padding: 140px 36px 160px;
  position: relative;
  overflow: hidden;
}
.m-head {
  text-align: center; max-width: 900px; margin: 0 auto 80px;
}
.m-head .s-eyebrow { color: var(--ink-2); justify-content: center; }
.m-h {
  font-weight: 800; font-size: clamp(56px, 8vw, 120px);
  letter-spacing: -0.04em; line-height: 0.96; color: var(--ink);
}
.m-h em { font-family: var(--serif); font-weight: 400; font-style: italic; color: var(--orange); font-size: 1.05em; }
.m-p {
  margin-top: 24px;
  font-size: clamp(17px, 1.4vw, 22px); color: var(--muted); line-height: 1.5; font-weight: 500;
}
/* ============== BEFORE / AFTER row ============== */
.ba-row {
  max-width: 1400px; margin: 0 auto;
  padding: 0 36px;
  display: grid; grid-template-columns: 1fr 90px 1fr; gap: 24px;
  align-items: stretch;
}
.ba-card {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 28px;
  padding: 44px 44px 40px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  min-height: 320px;
}
.ba-before {
  background: linear-gradient(180deg, rgba(194,69,69,0.06), #fff);
  border-color: rgba(194,69,69,0.2);
}
.ba-after {
  background: linear-gradient(180deg, var(--orange-soft) 0%, #fff 100%);
  border-color: var(--orange);
  box-shadow: 0 40px 80px -50px rgba(255,95,31,0.5);
}
.ba-tag {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--red);
}
.ba-tag.warm { color: var(--orange); }
.ba-big {
  font-weight: 800;
  font-size: clamp(80px, 10vw, 152px);
  letter-spacing: -0.045em; line-height: 0.9;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}
.ba-big.warm { color: var(--orange); }
.ba-l {
  font-weight: 700; font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -0.015em; color: var(--ink); line-height: 1.25;
}
.ba-sub {
  margin-top: auto;
  font-size: 15px; color: var(--muted); line-height: 1.45; font-weight: 500;
}
.ba-arrow {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  color: var(--ink);
}
.ba-axis {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange);
  writing-mode: horizontal-tb;
  text-align: center; line-height: 1;
}
.ba-svg { width: 80px; height: 20px; color: var(--orange); animation: baArrow 2s ease-in-out infinite; }
@keyframes baArrow { 0%,100% { transform: translateX(0); } 50% { transform: translateX(8px); } }

/* ============== LEVERS section ============== */
.levers-head {
  max-width: 1400px;
  margin: 70px auto 30px;
  padding: 0 36px;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px;
  align-items: center;
}
.lh-line {
  height: 1px; background: var(--hair);
}
.lh-label {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  text-align: center;
}

.levers {
  max-width: 1400px; margin: 0 auto;
  padding: 0 36px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
}
.lev {
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 28px;
  padding: 36px 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  min-height: 580px;
  transition: transform .5s cubic-bezier(.3,.7,.3,1), box-shadow .5s;
}
.lev:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 80px -40px rgba(20,30,30,0.18);
}
.lev-meta {
  display: flex; align-items: baseline; gap: 14px;
}
.lev-num {
  font-family: var(--mono);
  font-weight: 800; font-size: 56px;
  letter-spacing: -0.04em;
  color: var(--orange);
  line-height: 1;
}
.lev-label {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-2);
}
.lev-h {
  font-weight: 800; font-size: 28px;
  letter-spacing: -0.022em; line-height: 1.1;
  color: var(--ink); margin: 0;
}
.lev-h em { font-family: var(--serif); font-weight: 400; font-style: italic; color: var(--orange); }
.lev-p {
  font-size: 15px; color: var(--muted); line-height: 1.55; font-weight: 500;
}
.lev-impact {
  margin-top: auto;
  padding: 14px 18px;
  background: var(--paper); border: 1px solid var(--hair);
  border-radius: 14px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.li-l {
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
.li-v {
  font-weight: 800; font-size: 24px; letter-spacing: -0.02em;
  color: var(--orange); font-variant-numeric: tabular-nums;
}
.li-u { font-size: 16px; opacity: 0.7; margin-left: 2px; }

/* Lever 1 demo: visual gravity */
.lev-demo { margin: 8px -4px 6px; }
.demo-gravity {
  display: flex; flex-direction: column; gap: 8px;
}
.dg-refund, .dg-credit {
  padding: 10px 14px;
  border: 1px solid var(--hair); border-radius: 10px;
  background: var(--paper2);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--muted);
  transform: scale(0.95);
  opacity: 0.7;
}
.dg-refund .dg-amt { color: var(--red); font-weight: 700; font-family: var(--mono); }
.dg-credit .dg-amt { color: var(--teal); font-weight: 700; font-family: var(--mono); }
.dg-credit { transform: scale(0.92); }
.dg-tag {
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.dg-exchange {
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  position: relative; overflow: hidden;
  transform: scale(1.05);
  animation: dgPulse 2.4s ease-in-out infinite;
  box-shadow: 0 20px 40px -20px rgba(255,95,31,0.5);
}
@keyframes dgPulse {
  0%,100% { box-shadow: 0 20px 40px -20px rgba(255,95,31,0.5), 0 0 0 0 rgba(255,95,31,0.35); }
  50% { box-shadow: 0 20px 40px -20px rgba(255,95,31,0.5), 0 0 0 14px rgba(255,95,31,0); }
}
.dg-exchange .dg-tag { color: rgba(255,255,255,0.85); }
.dg-exchange .dg-amt { font-weight: 800; font-size: 22px; margin-top: 4px; font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.dg-exchange .dg-sub { font-size: 11.5px; opacity: 0.85; margin-top: 2px; }
.dg-flair {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255,255,255,0.25), transparent 50%);
  pointer-events: none;
}

/* Lever 2 demo: smart matching */
.demo-match {
  display: grid; grid-template-columns: 1fr 56px 1fr; gap: 8px;
  align-items: center;
}
.dm-card {
  background: var(--paper2); border: 1px solid var(--hair); border-radius: 12px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
}
.dm-card.dm-suggest {
  background: linear-gradient(180deg, var(--orange-soft), #fff);
  border-color: var(--orange);
}
.dm-rec {
  position: absolute; top: -8px; right: 8px;
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  letter-spacing: 0.16em; padding: 3px 8px; border-radius: 99px;
  background: var(--orange); color: #fff;
}
.dm-sw { display: flex; height: 56px; border-radius: 6px; overflow: hidden; }
.dm-sw span { flex: 1; }
.dm-l {
  font-family: var(--mono); font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2);
}
.dm-l.warm { color: var(--orange); }
.dm-n { font-weight: 800; font-size: 13.5px; letter-spacing: -0.005em; line-height: 1.1; }
.dm-link {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.dm-pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  animation: dmPulse 1.4s ease-in-out infinite;
}
.dm-pulse:nth-child(2) { animation-delay: 0.2s; }
.dm-pulse:nth-child(3) { animation-delay: 0.4s; }
@keyframes dmPulse { 0%,100% { opacity: 0.3; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1.2); } }

/* Lever 3 demo: frictionless handoff */
.demo-handoff {
  display: grid; grid-template-columns: 1fr 16px 1fr 16px 1fr; gap: 4px;
  align-items: stretch;
}
.dh-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 10px;
  background: var(--paper2);
  border: 1px solid var(--hair);
  border-radius: 12px;
  text-align: center;
}
.dh-ic {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--ink); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.dh-ic.warm { background: var(--orange); animation: dhWarm 2.2s ease-in-out infinite; }
@keyframes dhWarm { 0%,100% { box-shadow: 0 0 0 0 rgba(255,95,31,0.4); } 50% { box-shadow: 0 0 0 10px rgba(255,95,31,0); } }
.dh-ic svg { width: 22px; height: 22px; }
.dh-l { font-weight: 700; font-size: 12px; letter-spacing: -0.005em; color: var(--ink); }
.dh-s { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.04em; }
.dh-s.warm { color: var(--orange); font-weight: 700; }
.dh-dot {
  align-self: center;
  width: 14px; height: 1.5px; background: var(--hair);
  position: relative;
}
.dh-dot::after {
  content: ''; position: absolute; right: -1px; top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid var(--orange);
  border-top: 3px solid transparent; border-bottom: 3px solid transparent;
}

/* ============== ENGINE summary bar ============== */
.eng-summary {
  max-width: 1400px; margin: 80px auto 0;
  padding: 0 36px;
}
.es-row {
  background: var(--ink); color: #fff;
  border-radius: 24px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  align-items: center; gap: 18px;
}
.es-item {
  display: flex; flex-direction: column; gap: 6px;
}
.es-l {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.55);
}
.es-l.warm { color: var(--orange); }
.es-v {
  font-weight: 800; font-size: clamp(22px, 2.4vw, 36px);
  letter-spacing: -0.025em; color: #fff;
  font-variant-numeric: tabular-nums;
}
.es-v.red { color: #FF8A6F; }
.es-v.warm { color: var(--orange); }
.es-arrow {
  text-align: center;
  font-family: var(--serif); font-size: 28px; font-style: italic;
  color: var(--orange);
}

@media (max-width: 980px) {
  .ba-row { grid-template-columns: 1fr; }
  .ba-arrow { padding: 16px 0; }
  .ba-svg { width: 24px; height: 60px; transform: rotate(90deg); }
  .levers { grid-template-columns: 1fr; }
  .es-row { grid-template-columns: 1fr; gap: 12px; padding: 24px; }
  .es-arrow { display: none; }
}

/* =====================================================================
   DRAG GALLERY
   =================================================================== */
.gallery {
  background: var(--paper2); color: var(--ink);
  padding: 140px 0 160px;
  position: relative;
  overflow: hidden;
}
.g-head { text-align: center; padding: 0 36px 60px; max-width: 900px; margin: 0 auto; }
.g-head .s-eyebrow { color: var(--ink-2); justify-content: center; }
.g-h {
  font-weight: 800; font-size: clamp(56px, 8vw, 120px);
  letter-spacing: -0.04em; line-height: 0.96; color: var(--ink);
}
.g-h em { font-family: var(--serif); font-weight: 400; font-style: italic; color: var(--orange); }
.g-p {
  margin-top: 22px;
  font-family: var(--mono); font-size: 13px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.g-stage {
  position: relative; cursor: grab;
  overflow: hidden;
  padding: 60px 0;
  user-select: none;
}
.g-stage.dragging { cursor: grabbing; }
.g-rail {
  display: flex; gap: 30px; padding: 0 10vw;
  will-change: transform;
  transition: transform .2s ease-out;
}
.screen {
  flex: 0 0 360px;
  height: 540px;
  background: #fff;
  border: 1px solid var(--hair);
  border-radius: 24px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 30px 60px -30px rgba(20,30,30,0.2);
  position: relative;
  transition: transform .5s cubic-bezier(.3,.7,.3,1);
}
.screen:hover { transform: translateY(-12px) rotate(-1deg); z-index: 2; }
.screen.dark { background: var(--ink); color: #fff; border-color: var(--ink-2); }
.sc-bar {
  display: flex; align-items: center; gap: 4px;
  padding-bottom: 12px; border-bottom: 1px solid var(--hair);
}
.sc-bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--hair); }
.sc-bar i:first-child { background: #FFB1A0; }
.sc-bar i:nth-child(2) { background: #FFD58A; }
.sc-bar i:nth-child(3) { background: #B7E0B0; }
.sc-bar.dark { border-bottom-color: var(--ink-2); }
.sc-url {
  flex: 1; margin-left: 10px;
  font-family: var(--mono); font-size: 10px; color: var(--muted);
  padding: 3px 8px; background: var(--paper); border-radius: 5px;
  text-align: center; letter-spacing: 0.08em;
}
.sc-url.dark { background: var(--ink-2); color: rgba(255,255,255,0.6); }
.sc-eyebrow { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-2); }
.sc-eyebrow.warm { color: var(--orange); }
.sc-title { font-weight: 800; font-size: 30px; letter-spacing: -0.022em; line-height: 1.05; color: var(--ink); }
.sc-title.white { color: #fff; }
.sc-title .warm { color: var(--orange); }
.sc-input {
  padding: 12px 14px; background: var(--paper); border-radius: 10px;
  font-family: var(--mono); font-size: 13px; color: var(--ink-2); border: 1px solid var(--hair);
}
.sc-btn {
  margin-top: auto; padding: 14px 18px; border-radius: 99px;
  background: var(--ink); color: #fff;
  text-align: center; font-weight: 700; font-size: 14px;
}
.sc-list { display: flex; flex-direction: column; gap: 8px; }
.sli { display: flex; gap: 12px; align-items: center; padding: 10px; border-radius: 12px; border: 1px solid var(--hair); }
.sli.on { border-color: var(--orange); background: var(--orange-soft); }
.sli-sw { width: 44px; height: 56px; border-radius: 6px; display: flex; overflow: hidden; }
.sli-sw span { flex: 1; }
.sli-n { font-weight: 700; font-size: 13px; }
.sli-p { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.sc-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { padding: 8px 12px; border-radius: 99px; border: 1px solid var(--hair); font-size: 12px; font-weight: 600; }
.chip.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.sc-area {
  padding: 12px 14px; background: var(--paper); border-radius: 10px;
  font-size: 13px; color: var(--muted); border: 1px solid var(--hair); min-height: 60px;
}
.big-opt {
  padding: 18px; border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff; position: relative;
}
.bo-rec { position: absolute; top: 10px; right: 12px; font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: 0.18em; padding: 3px 8px; border-radius: 99px; background: rgba(255,255,255,0.22); }
.bo-t { font-weight: 800; font-size: 16px; }
.bo-s { font-size: 11px; opacity: 0.85; margin-top: 3px; }
.med-opt {
  padding: 12px 14px; border-radius: 10px;
  border: 1.5px solid var(--teal); color: var(--teal);
  font-weight: 700; font-size: 13px;
}
.tiny-opt {
  padding: 10px 14px; border-radius: 10px;
  border: 1px dashed var(--hair); color: var(--muted-2);
  font-size: 12px;
}
.sum-row { display: flex; gap: 12px; align-items: center; padding: 10px; border-radius: 12px; border: 1px solid var(--hair); }
.sum-row.alt { border-color: var(--orange); background: var(--orange-soft); }
.check-anim { width: 120px; height: 120px; margin: 20px auto; }
.check-anim svg { width: 100%; height: 100%; }
.check-anim circle { stroke-dasharray: 164; stroke-dashoffset: 164; animation: drawC 1.4s cubic-bezier(.3,.7,.3,1) forwards; animation-delay: 0.4s; }
.check-anim polyline { stroke-dasharray: 50; stroke-dashoffset: 50; animation: drawP 0.6s cubic-bezier(.3,.7,.3,1) forwards; animation-delay: 1.4s; }
@keyframes drawC { to { stroke-dashoffset: 0; } }
@keyframes drawP { to { stroke-dashoffset: 0; } }
.sc-foot {
  margin-top: auto;
  font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em;
  text-align: center;
}
.kpi-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.kpi-mini { padding: 12px; background: rgba(255,255,255,0.05); border-radius: 10px; }
.km-v { font-weight: 800; font-size: 18px; letter-spacing: -0.01em; color: #fff; }
.km-v.warm { color: var(--orange); }
.km-l { font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 2px; }
.row-d { padding: 10px 12px; border-bottom: 1px solid var(--ink-2); font-size: 12px; color: rgba(255,255,255,0.7); }
.row-d:last-of-type { border-bottom: none; }

/* =====================================================================
   DASHBOARD
   =================================================================== */
.dash {
  background: var(--paper2); color: var(--ink);
  padding: 140px 36px 160px;
  position: relative; overflow: hidden;
}
.d-head { text-align: center; max-width: 900px; margin: 0 auto 60px; }
.d-head .s-eyebrow { color: var(--ink-2); justify-content: center; }
.d-h {
  font-weight: 800; font-size: clamp(56px, 8vw, 120px);
  letter-spacing: -0.04em; line-height: 0.96; color: var(--ink);
}
.d-h em { font-family: var(--serif); font-weight: 400; font-style: italic; color: var(--orange); }
.d-p { margin-top: 22px; font-size: clamp(17px, 1.4vw, 21px); color: var(--muted); line-height: 1.5; font-weight: 500; }

.d-wrap { position: relative; max-width: 1400px; margin: 0 auto; }
.d-frame {
  height: 720px;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--hair);
  display: grid; grid-template-columns: 260px 1fr;
  box-shadow: 0 60px 120px -50px rgba(0,40,42,0.4);
  transform: perspective(2200px) rotateX(4deg);
  transition: transform 1s;
}
.d-wrap:hover .d-frame { transform: perspective(2200px) rotateX(0); }
.d-side { background: var(--teal-deep); color: #fff; padding: 28px 18px; display: flex; flex-direction: column; }
.d-logo { display: flex; align-items: center; gap: 6px; padding: 0 6px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.dl-x { position: relative; width: 24px; height: 28px; display: inline-block; }
.dl-x svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.dl-x svg:first-child { color: var(--orange); stroke: var(--orange); }
.dl-x svg:last-child { color: #fff; stroke: #fff; }
.dl-w { font-weight: 800; font-size: 20px; letter-spacing: -0.01em; }
.d-nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.dn-it { padding: 11px 12px; border-radius: 10px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 10px; transition: background .3s; }
.dn-it.on, .dn-it:hover { background: rgba(255,255,255,0.08); color: #fff; }
.dn-it .d { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: 0.5; }
.dn-it.on .d { background: var(--orange); opacity: 1; box-shadow: 0 0 6px var(--orange); }
.dn-c { margin-left: auto; font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,0.5); padding: 2px 7px; background: rgba(255,255,255,0.06); border-radius: 99px; }
.d-mini-stats { margin-top: 18px; padding: 14px; background: rgba(255,255,255,0.06); border-radius: 12px; }
.dms-l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.dms-v { font-weight: 800; font-size: 22px; letter-spacing: -0.015em; color: var(--orange); margin-top: 4px; font-variant-numeric: tabular-nums; }

.d-main { padding: 24px 28px; display: flex; flex-direction: column; gap: 16px; overflow: hidden; }
.d-bar { display: flex; justify-content: space-between; align-items: center; }
.d-t { font-weight: 800; font-size: 24px; letter-spacing: -0.015em; }
.d-nt { font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--muted); margin-left: 10px; }
.d-r { display: flex; gap: 8px; align-items: center; }
.d-search { padding: 8px 14px; background: var(--paper); border: 1px solid var(--hair); border-radius: 99px; font-family: var(--mono); font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.d-chip { padding: 8px 14px; border-radius: 99px; background: var(--paper); font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.d-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.d-kpi { padding: 18px; border-radius: 14px; background: var(--paper); border: 1px solid var(--hair); position: relative; overflow: hidden; }
.dk-v { font-weight: 800; font-size: 24px; letter-spacing: -0.015em; font-variant-numeric: tabular-nums; }
.d-kpi.warm .dk-v { color: var(--orange); }
.d-kpi.teal .dk-v { color: var(--teal); }
.dk-l { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; font-weight: 600; }
.dk-spark {
  position: absolute; right: 12px; bottom: 12px; width: 60px; height: 24px;
  opacity: 0.4;
  background: linear-gradient(90deg, transparent, currentColor);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 24' preserveAspectRatio='none'%3E%3Cpolyline points='0 20 8 16 16 18 24 10 32 14 40 6 48 12 60 4' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 24' preserveAspectRatio='none'%3E%3Cpolyline points='0 20 8 16 16 18 24 10 32 14 40 6 48 12 60 4' fill='none' stroke='black' stroke-width='2'/%3E%3C/svg%3E");
  mask-size: 100% 100%; -webkit-mask-size: 100% 100%;
  color: var(--orange);
}
.d-kpi.teal .dk-spark { color: var(--teal); }

.d-table { background: var(--paper); border-radius: 14px; padding: 16px; border: 1px solid var(--hair); flex: 1; overflow: hidden; }
.dr-head, .d-row {
  display: grid; grid-template-columns: 36px 1fr 80px 96px 80px 100px;
  align-items: center; gap: 10px; padding: 10px 8px;
}
.dr-head { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-2); padding-bottom: 12px; }
.d-row {
  border-top: 1px solid var(--hair); font-size: 13px;
  transition: background .3s;
  animation: drIn .6s cubic-bezier(.3,.7,.3,1) backwards;
}
.d-row.fresh { background: var(--orange-soft); }
@keyframes drIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.d-row .av { width: 30px; height: 30px; border-radius: 8px; background: var(--orange-soft); color: var(--orange); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 11px; }
.d-row .nn { font-weight: 700; }
.d-row .mm { color: var(--muted); font-size: 10.5px; margin-top: 1px; letter-spacing: 0.02em; }
.d-row .pp { font-family: var(--mono); font-weight: 600; }
.d-row .bg { padding: 4px 9px; border-radius: 99px; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; font-weight: 700; text-transform: uppercase; text-align: center; }
.bg.x { background: var(--orange-soft); color: var(--orange-deep); }
.bg.c { background: var(--teal-mist); color: var(--teal); }
.bg.r { background: #FFE3DE; color: var(--red); }
.d-row .cr { font-family: var(--mono); font-size: 11px; color: var(--muted); font-weight: 600; }
.d-row .pill { padding: 6px 12px; border-radius: 99px; background: var(--teal); color: #fff; font-size: 10.5px; font-weight: 700; text-align: center; }
.d-row .pill.ghost { background: transparent; color: var(--muted); border: 1px solid var(--hair); }

.d-notif {
  position: absolute;
  background: #fff; border: 1px solid var(--hair);
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 30px 60px -30px rgba(20,30,30,0.3);
  z-index: 5;
  opacity: 0; transform: translateY(20px);
  animation: notifPop 1s cubic-bezier(.3,.7,.3,1) forwards;
}
.d-notif { top: 22%; right: -8px; animation-delay: 1.8s; }
.d-notif.n2 { top: auto; bottom: 22%; left: -8px; right: auto; animation-delay: 3s; }
@keyframes notifPop { to { opacity: 1; transform: none; } }
.dn-ic {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,95,31,0.2);
  animation: pulse 1.5s ease-in-out infinite;
}
.dn-ic.teal { background: var(--teal); box-shadow: 0 0 0 4px rgba(0,64,64,0.2); }
.dn-t { font-weight: 700; font-size: 14px; letter-spacing: -0.005em; color: var(--ink); }
.dn-s { font-size: 12px; color: var(--muted); margin-top: 2px; }

@media (max-width: 880px) {
  .d-frame { grid-template-columns: 1fr; height: auto; transform: none; }
  .d-side { display: none; }
  .d-notif, .d-notif.n2 { position: static; margin-top: 14px; }
}

/* =====================================================================
   MAGNETIC QUOTES
   =================================================================== */
.quotes {
  background: var(--ink); color: #fff;
  padding: 160px 36px;
  position: relative;
  overflow: hidden;
}
.q-head { text-align: center; max-width: 900px; margin: 0 auto 80px; }
.q-head .s-eyebrow { justify-content: center; color: rgba(255,255,255,0.6); }
.q-h {
  font-weight: 800; font-size: clamp(56px, 8vw, 120px);
  letter-spacing: -0.04em; line-height: 0.96; color: #fff;
}
.q-h em { font-family: var(--serif); font-weight: 400; font-style: italic; color: var(--orange); }

.q-deck { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.qcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px; padding: 44px 36px;
  display: flex; flex-direction: column; gap: 24px;
  min-height: 380px;
  position: relative; overflow: hidden;
  transition: transform .5s, background .5s, border-color .5s;
}
.qcard::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,95,31,0.2), transparent 50%);
  opacity: 0; transition: opacity .5s;
}
.qcard:hover { transform: translateY(-6px); border-color: rgba(255,95,31,0.3); }
.qcard:hover::before { opacity: 1; }
.qm { font-family: var(--mono); font-weight: 800; font-size: 88px; line-height: 0.4; color: var(--orange); height: 28px; position: relative; }
.qb { position: relative; font-weight: 600; font-size: 24px; letter-spacing: -0.01em; line-height: 1.3; color: #fff; }
.qb .warm { color: var(--orange); }
.qw { position: relative; display: flex; align-items: center; gap: 14px; margin-top: auto; }
.qav { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,95,31,0.18); color: var(--orange); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; }
.qav.teal { background: rgba(0,64,64,0.3); color: #6EBEBE; }
.qn { font-weight: 700; font-size: 14px; color: #fff; }
.qr { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 2px; }

@media (max-width: 880px) { .q-deck { grid-template-columns: 1fr; } }

/* =====================================================================
   PRICING
   =================================================================== */
.pricing {
  background: var(--paper2); color: var(--ink);
  padding: 140px 36px 160px;
}
.p-head { text-align: center; max-width: 900px; margin: 0 auto 80px; }
.p-head .s-eyebrow { color: var(--ink-2); justify-content: center; }
.p-h {
  font-weight: 800; font-size: clamp(48px, 7vw, 104px);
  letter-spacing: -0.04em; line-height: 0.96; color: var(--ink);
}
.p-h em { font-family: var(--serif); font-weight: 400; font-style: italic; color: var(--orange); }
.tiers { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 22px; align-items: stretch; }
.tier { background: #fff; border: 1px solid var(--hair); border-radius: 28px; padding: 44px 36px; display: flex; flex-direction: column; gap: 16px; position: relative; transition: transform .5s, box-shadow .5s; }
.tier:hover { transform: translateY(-4px); }
.tier.feat { background: linear-gradient(180deg, var(--ink) 0%, #15292B 100%); color: #fff; border-color: var(--orange); transform: translateY(-16px); box-shadow: 0 50px 100px -50px rgba(0,40,42,0.5); }
.tier.feat:hover { transform: translateY(-22px); }
.t-ribbon { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 6px 16px; border-radius: 99px; background: var(--orange); font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: #fff; }
.t-tag { font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-2); }
.tier.feat .t-tag { color: var(--orange); }
.t-name { font-weight: 800; font-size: 56px; letter-spacing: -0.03em; line-height: 0.95; color: var(--ink); }
.tier.feat .t-name { color: #fff; }
.t-per { font-size: 16px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.tier.feat .t-per { color: rgba(255,255,255,0.7); }
.t-desc { font-size: 18px; color: var(--muted); font-weight: 500; }
.tier.feat .t-desc { color: rgba(255,255,255,0.7); }
.tier ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tier li { font-size: 15px; color: var(--ink-2); display: flex; align-items: center; gap: 10px; }
.tier.feat li { color: rgba(255,255,255,0.9); }
.tier li::before { content: ''; width: 16px; height: 16px; border-radius: 50%; background: var(--teal-mist); border: 2px solid var(--teal); flex-shrink: 0; }
.tier.feat li::before { background: var(--orange); border-color: var(--orange); }
.t-cta { margin-top: auto; padding: 16px 24px; border-radius: 99px; text-align: center; border: 1.5px solid var(--ink); color: var(--ink); font-weight: 700; font-size: 15px; transition: background .3s, color .3s; }
.t-cta:hover { background: var(--ink); color: #fff; }
.tier.feat .t-cta { background: var(--orange); color: #fff; border-color: var(--orange); }
.tier.feat .t-cta:hover { background: var(--orange-deep); border-color: var(--orange-deep); }

@media (max-width: 880px) {
  .tiers { grid-template-columns: 1fr; }
  .tier.feat { transform: none; }
}

/* =====================================================================
   CTA
   =================================================================== */
.cta {
  position: relative;
  background: var(--ink); color: #fff;
  padding: 200px 36px 220px;
  overflow: hidden;
  text-align: center;
}
.cta-confetti {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
}
.cta-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,95,31,0.3), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(0,64,64,0.5), transparent 45%);
  filter: blur(50px);
  animation: meshDrift 18s ease-in-out infinite alternate;
}
.cta-x {
  position: absolute; top: 50%; left: 50%;
  width: clamp(500px, 60vw, 900px); height: clamp(560px, 70vw, 1000px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0.1;
}
.cta-x svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta-x svg:first-child { color: var(--orange); stroke: var(--orange); animation: hxUp 9s cubic-bezier(.5,0,.5,1) infinite; }
.cta-x svg:last-child { color: #fff; stroke: #fff; animation: hxDown 9s cubic-bezier(.5,0,.5,1) infinite; }
@keyframes hxUp { 0%,100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(40px,-40px) rotate(5deg); } }
@keyframes hxDown { 0%,100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(-40px,40px) rotate(-5deg); } }

.cta-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}
.cta-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,95,31,0.3); animation: pulse 2s ease-in-out infinite; }
.cta-h {
  font-weight: 800; font-size: clamp(64px, 11vw, 180px);
  letter-spacing: -0.045em; line-height: 0.95;
  color: #fff; margin: 0 0 60px;
}
.cta-line { display: block; }
.cta-h em { font-family: var(--serif); font-weight: 400; font-style: italic; color: #fff; opacity: 0.5; }
.cta-h .warm { color: var(--orange); }
.cta-btn {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 26px 44px; border-radius: 99px;
  background: var(--orange); color: #fff;
  font-weight: 800; font-size: 22px; letter-spacing: -0.005em;
  box-shadow: 0 30px 60px -20px rgba(255,95,31,0.5);
  animation: ctaPulse 2.4s ease-in-out infinite;
  position: relative; overflow: hidden;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 30px 60px -20px rgba(255,95,31,0.5), 0 0 0 0 rgba(255,95,31,0.45); }
  50% { box-shadow: 0 30px 60px -20px rgba(255,95,31,0.5), 0 0 0 24px rgba(255,95,31,0); }
}
.cta-btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: #fff;
  transform: translateY(101%);
  transition: transform .4s cubic-bezier(.3,.7,.3,1);
}
.cta-btn:hover { color: var(--orange); }
.cta-btn:hover::before { transform: translateY(0); }
.cta-arr {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; transition: transform .3s;
}
.cta-btn:hover .cta-arr { background: rgba(255,95,31,0.2); transform: rotate(-30deg); }
.cta-meta {
  margin-top: 80px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  font-family: var(--mono); font-size: 13px; color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}
.cta-meta .sep { color: var(--orange); }

/* =====================================================================
   FOOTER (giga animated)
   =================================================================== */
.foot {
  background: var(--ink); color: #fff;
  padding: 80px 36px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  overflow: hidden;
}
.f-top { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.f-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 28px; letter-spacing: -0.01em; }
.f-x { position: relative; width: 32px; height: 36px; }
.f-x svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.f-x svg:first-child { color: var(--orange); stroke: var(--orange); }
.f-x svg:last-child { color: #fff; stroke: #fff; }
.f-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.fh { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.f-cols a { display: block; font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.7); padding: 6px 0; transition: color .25s, transform .25s; }
.f-cols a:hover { color: var(--orange); transform: translateX(4px); }

.f-giga {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 80px 0 40px;
  font-weight: 800; line-height: 0.82; letter-spacing: -0.06em;
  font-size: clamp(120px, 24vw, 380px);
  overflow: hidden;
  color: rgba(255,255,255,0.07);
}
.fg-x { position: relative; width: 0.85em; height: 0.95em; display: inline-block; }
.fg-x svg { position: absolute; inset: 0; width: 100% !important; height: 100% !important; }
.fg-up { color: var(--orange); stroke: var(--orange); opacity: 0.85; animation: hxUp 7s cubic-bezier(.5,0,.5,1) infinite; }
.fg-down { color: rgba(255,255,255,0.15); stroke: rgba(255,255,255,0.18); animation: hxDown 7s cubic-bezier(.5,0,.5,1) infinite; }
.fg-word { color: rgba(255,255,255,0.08); }

.f-meta { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 22px 0 36px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); font-weight: 600; }
.f-meta .mono { color: var(--orange); }

@media (max-width: 880px) {
  .f-top { grid-template-columns: 1fr; }
  .f-meta { flex-direction: column; gap: 10px; }
}
