/* ============================================================
   Tensor website — layout & component styles
   Pairs with ../../colors_and_type.css for tokens.
   Black-first, glassmorphic, pure monochrome (black + white + greys).
   ============================================================ */

* { box-sizing: border-box; }
html { color-scheme: dark; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
/* Decorative elements (rings, scaled videos) must never widen the page.
   Clip on html ONLY — overflow on body creates a scroll container and
   silently breaks position:sticky descendants (the pinned products reel). */
html { overflow-x: clip; }
body {
  margin: 0;
  background: #000000;
  color: var(--fg-3);
  font-family: var(--font-sans);
  /* No overflow-x here: with html{overflow-x:clip} above, an overflow
     value on body applies to body itself, making it a scroll container
     and breaking position:sticky (the pinned products reel). */
}
body::before {
  content: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 9%, rgba(255,238,132,.42), transparent 15%),
    radial-gradient(circle at 3% 82%, rgba(255,87,76,.32), transparent 18%),
    radial-gradient(circle at 100% 82%, rgba(74,180,151,.28), transparent 20%),
    linear-gradient(180deg, rgba(24,19,14,.9), rgba(9,7,5,.98));
}
body::after {
  content: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,244,218,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,244,218,.18) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 18%, #000, transparent 62%);
}
#root { min-height: 100vh; }
::selection { background: rgba(255,255,255,0.25); color: #ffffff; }

/* WebGL scene fixed behind everything */
.scene-mount {
  position: fixed; inset: 0; z-index: 0;
  width: 100%; height: 100vh;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  transition: opacity .8s ease;
}
body.scene-on .scene-mount { opacity: .42; }

/* Ambient CSS glows to deepen the black field */
.ambient { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.ambient span { position: absolute; border-radius: var(--radius-pill); filter: blur(80px); }
.ambient .a1 { top: 28%; left: 50%; width: 600px; height: 600px; transform: translateX(-50%); background: rgba(255,255,255,0.05); }
.ambient .a2 { top: 62%; left: 16%; width: 420px; height: 420px; background: rgba(255,255,255,0.06); }
.ambient .a3 { top: 12%; right: 10%; width: 360px; height: 360px; background: rgba(255,255,255,0.04); }

.layer { position: relative; z-index: 10; }

/* ---- Scroll progress bar ---- */
.progress { position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 60; pointer-events: none; }
.progress > i {
  display: block; height: 100%; transform-origin: left; transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent-deep), var(--accent-bright), #ffffff);
  transition: transform 0.1s linear;
}

/* ---- Header ---- */
.header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.55);
   
}
.header-inner {
  max-width: 1120px; margin: 0 auto; padding: 16px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; background: none; border: 0; cursor: pointer; padding: 0; }
.brand img { height: 26px; width: auto; display: block; }
.nav { display: flex; gap: 2px; }
.nav button {
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-sans); font-size: 14px; color: var(--fg-4);
  padding: 8px 12px; border-radius: 10px; transition: all 0.2s;
}
.nav button:hover { background: rgba(255,255,255,0.06); color: #ffffff; }
.header-cta { display: flex; align-items: center; gap: 12px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-sans); font-size: 14px; font-weight: 600;
  border-radius: var(--radius-xl); cursor: pointer; border: 1px solid transparent;
  padding: 12px 24px; transition: all 0.25s var(--ease-out-expo); white-space: nowrap;
}
.btn-primary { background: #ffffff; color: #000000; }
.btn-primary:hover { background: rgba(255,255,255,0.9); box-shadow: 0 0 28px rgba(255,255,255,0.14); transform: translateY(-1px); }
.btn-ghost { background: var(--glass-fill); color: var(--fg-2); border-color: var(--glass-border);  }
.btn-ghost:hover { border-color: var(--glass-border-hover); background: var(--glass-fill-strong); transform: translateY(-1px); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn:active { transform: translateY(0) scale(0.985); }

/* ---- Glass card (+ 3D tilt) ---- */
.glass {
  position: relative; overflow: hidden;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--glass-border);
  background: var(--glass-fill);
  box-shadow: var(--shadow-card);
   
  transform-style: preserve-3d;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease, border-color 0.35s ease;
}
.glass::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(125deg, rgba(255,255,255,0.12) 0%, transparent 40%, transparent 60%, rgba(255,255,255,0.04) 100%);
}
.glass:hover {
  border-color: var(--glass-border-hover);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(255,255,255,0.04);
}
.glass.featured { box-shadow: var(--shadow-card), 0 0 0 1px var(--glass-ring); }
.glass-pad { padding: 32px; }
@media (min-width: 640px) { .glass-pad { padding: 44px; } }

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
  50% { transform: translateY(-10px) rotateX(2deg) rotateY(3deg); }
}
.floaty { animation: floatY 6s ease-in-out infinite; }

/* ---- Layout primitives ---- */
.section { position: relative; padding: 96px 24px; scroll-margin-top: 96px; }
.section.bordered { border-top: 1px solid rgba(255,255,255,0.06); }
.wrap { max-width: 1120px; margin: 0 auto; }
.wrap-narrow { max-width: 760px; margin: 0 auto; }
@media (min-width: 640px) { .section { padding: 96px 40px; } }

.label { font-family: var(--font-mono); font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--neutral-500); margin: 0 0 12px; }
.h1 { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-3xl); line-height: 1.12; letter-spacing: -0.03em; color: #ffffff; margin: 0; }
.h2 { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-2xl); letter-spacing: -0.03em; color: #ffffff; margin: 0; }
.h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; letter-spacing: -0.02em; color: #ffffff; margin: 0; }
.lead { font-size: 0.9375rem; line-height: 1.65; color: var(--fg-4); }
.body { font-size: 0.875rem; line-height: 1.6; color: var(--fg-3); }
.em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: rgba(255,255,255,0.92); }
.muted { color: var(--fg-4); }
.mono { font-family: var(--font-mono); font-size: 0.75rem; color: var(--neutral-500); }

/* ---- Hero ---- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; padding: 96px 24px; }
.hero-layout {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
}
.hero-copy {
  min-width: 0;
}
.hero .glass { width: 100%; max-width: 760px; z-index: 2; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-orb-stage {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-orb-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.18) 48%, rgba(0,0,0,.54)),
    linear-gradient(180deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.08) 28%, rgba(0,0,0,.22) 72%, rgba(0,0,0,.9) 100%);
  opacity: .92;
  z-index: 2;
  pointer-events: none;
}
.hero-liquid-object {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  isolation: isolate;
  opacity: 1;
  overflow: hidden;
  background: #000000;
}
.hero-liquid-object::before {
  content: none;
}
.hero-liquid-object::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.64), rgba(0,0,0,.14) 48%, rgba(0,0,0,.52)),
    linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.06) 30%, rgba(0,0,0,.2) 68%, rgba(0,0,0,.86) 100%),
    radial-gradient(circle at 62% 42%, rgba(255,255,255,.16), transparent 34%);
  pointer-events: none;
}
.hero-liquid-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  mix-blend-mode: normal;
  filter: grayscale(1) contrast(1.08) brightness(.82);
  transform: scale(1.02);
}
.hero-liquid-glow,
.hero-liquid-ring,
.hero-liquid-scan {
  position: absolute;
  pointer-events: none;
}
.hero-liquid-glow {
  z-index: 3;
  left: 62%;
  top: 47%;
  width: min(34vw, 420px);
  aspect-ratio: 1;
  border-radius: var(--radius-pill);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,.64), rgba(255,255,255,.16) 36%, transparent 68%);
  mix-blend-mode: screen;
  filter: blur(2px);
  display: none;
}
.hero-liquid-ring,
.hero-liquid-scan {
  display: none;
}
.hero-liquid-ring {
  z-index: 4;
  left: 62%;
  top: 48%;
  width: min(37vw, 430px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--radius-pill);
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-8deg);
  box-shadow: inset 0 0 34px rgba(255,255,255,.08), 0 0 54px rgba(255,255,255,.08);
}
.hero-liquid-ring.r2 {
  width: min(25vw, 300px);
  opacity: .82;
  border-style: dashed;
  transform: translate(-50%, -50%) rotateX(58deg) rotateZ(20deg);
}
.hero-liquid-scan {
  z-index: 5;
  left: 50%;
  top: 48%;
  width: 88%;
  height: 1px;
  transform: translate(-50%, -50%) rotate(-12deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.16), rgba(255,255,255,.72), rgba(255,255,255,.16), transparent);
  box-shadow: 0 0 44px rgba(255,255,255,.24);
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.liquid-glass-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.035);
  background-blend-mode: luminosity;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.12),
    0 20px 70px rgba(0,0,0,.36);
}
.liquid-glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%, rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%, rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-inquiry-panel {
  z-index: 3;
  padding: clamp(22px, 3vw, 34px);
  min-height: 430px;
  color: #ffffff;
}
.hero-inquiry-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 0%, rgba(255,255,255,.12), transparent 32%),
    linear-gradient(180deg, rgba(0,0,0,.16), rgba(0,0,0,.42));
}
.hero-type-title {
  min-height: 2.15em;
  margin: 0 0 18px;
  white-space: pre-wrap;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 600;
  color: #ffffff;
}
.type-cursor {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 3px;
  vertical-align: middle;
  background: #ffffff;
  animation: blink 1s step-end infinite;
}
.hero-type-copy {
  max-width: 420px;
  margin: 0 0 34px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.62);
}
.service-picker {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-title {
  margin: 0 0 4px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #ffffff;
}
.service-subtitle {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-pill);
  padding: 10px 15px;
  background: rgba(0,0,0,.28);
  color: rgba(255,255,255,.78);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.service-pill:hover {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  color: #ffffff;
}
.service-pill.active {
  border-color: rgba(255,255,255,.58);
  background: #ffffff;
  color: #000000;
  box-shadow: 0 12px 32px rgba(255,255,255,.1);
  transform: translateY(-1px);
}
.pill-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: var(--radius-pill);
  background: #000000;
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
}
.service-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  margin-top: 2px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(0,0,0,.24);
  color: rgba(255,255,255,.45);
  font-size: 12px;
  font-style: italic;
}
.service-status.active {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-style: normal;
}
.service-status button {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(-48%) translateX(0) scale(1); }
  50% { transform: translateY(-52%) translateX(-10px) scale(1.025); }
}
@keyframes orbSkin {
  to { transform: rotate(360deg); }
}
@keyframes orbGrid {
  to { background-position: 34px 68px, 68px 34px; }
}
.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; background: none; border: 0; cursor: pointer; }
.scroll-cue .cap { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--fg-5); }
.scroll-cue .track { display: flex; justify-content: center; height: 36px; width: 20px; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-pill); padding-top: 6px; }
.scroll-cue .dot { height: 6px; width: 6px; border-radius: var(--radius-pill); background: var(--accent); }
@keyframes scrollCue { 0% { transform: translateY(0); opacity: 0; } 40% { opacity: 1; } 80% { transform: translateY(10px); opacity: 0; } 100% { opacity: 0; } }
.scroll-cue .dot { animation: scrollCue 1.8s ease-in-out infinite; }
@media (max-width: 640px) { .scroll-cue { display: none; } }
@media (max-width: 760px) {
  .hero {
    padding: 96px 20px 74px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero .glass {
    max-width: none;
  }
  .hero-liquid-object {
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: none;
  }
  .hero-liquid-video {
    opacity: .96;
    filter: grayscale(1) contrast(1.06) brightness(.66);
  }
  .hero-liquid-glow,
  .hero-liquid-ring {
    display: none;
  }
  .hero-orb-stage::before { opacity: 1; }
  .hero-inquiry-panel {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }
  .hero-type-title {
    font-size: clamp(30px, 10vw, 42px);
  }
  .hero-type-copy {
    margin-bottom: 24px;
  }
  .service-status {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ---- Oryzo-inspired editorial hero ---- */
.oryzo-hero {
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  display: block;
  padding: 80px 16px 26px;
  color: #fff5df;
}
.oryzo-grid-board {
  position: absolute;
  inset: 72px 14px 36px;
  z-index: -1;
  border: 1px solid rgba(255,245,222,.16);
  border-radius: 2px;
  background:
    linear-gradient(rgba(255,245,222,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,245,222,.18) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(118,91,57,.78), rgba(27,21,15,.72) 44%, rgba(9,7,5,.94) 100%);
  background-size: 34px 34px, 34px 34px, auto;
  transform: perspective(900px) rotateX(5deg) scale(1.02);
  box-shadow: inset 0 0 90px rgba(0,0,0,.62);
}
.oryzo-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 1120px;
  margin: 0 auto;
}
.oryzo-kicker {
  margin: 0;
  text-align: center;
  font-size: clamp(13px, 2.8vw, 20px);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff1d8;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.oryzo-logo-title {
  margin: 2px 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(4.8rem, 18vw, 14rem);
  line-height: .78;
  font-weight: 900;
  letter-spacing: -.08em;
  color: #fff0d5;
  text-shadow: 0 16px 36px rgba(0,0,0,.42);
}
.oryzo-lead {
  max-width: 410px;
  margin: 10px 0 0 auto;
  font-size: clamp(15px, 2.7vw, 22px);
  line-height: 1.08;
  font-weight: 850;
  color: #fff3dd;
  text-wrap: balance;
}
.tensor-object {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 52%;
  width: min(62vw, 430px);
  aspect-ratio: 1;
  transform: translate(-50%, -36%) perspective(900px) rotateX(58deg) rotateZ(calc(-8deg + var(--scroll-r, 0deg)));
  transform-style: preserve-3d;
  filter: drop-shadow(0 36px 34px rgba(0,0,0,.58));
  animation: tensorObjectFloat 7s ease-in-out infinite;
}
.tensor-disc,
.tensor-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.tensor-disc {
  background:
    radial-gradient(circle at 46% 42%, rgba(94,68,43,.22) 0 38%, transparent 39%),
    radial-gradient(circle at 50% 50%, #b27643 0 52%, #d69c62 55%, #7a4f31 68%, #2a1a10 70%);
  box-shadow:
    inset 0 0 0 18px rgba(255,206,139,.28),
    inset 0 0 0 52px rgba(34,20,13,.45),
    inset 0 22px 34px rgba(255,230,176,.2),
    inset 0 -30px 50px rgba(0,0,0,.62);
}
.tensor-core {
  inset: 22%;
  background:
    radial-gradient(circle at 42% 32%, rgba(255,234,190,.18), transparent 26%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,232,184,.12) 0 1px, transparent 1px 5px),
    #9b633b;
  box-shadow: inset 0 12px 26px rgba(0,0,0,.56), 0 0 0 1px rgba(255,235,198,.16);
}
.tensor-shadow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  transform: translateZ(-80px) translateY(70px) scale(1.08);
  background: rgba(0,0,0,.5);
  filter: blur(26px);
}
.oryzo-info-tile {
  position: absolute;
  z-index: 4;
  left: clamp(16px, 4vw, 58px);
  bottom: clamp(34px, 8vw, 84px);
  width: min(45vw, 260px);
  min-height: 170px;
  padding: 18px;
  border: 1px solid rgba(255,241,214,.2);
  background: rgba(126,101,70,.38);
  backdrop-filter: blur(10px);
  color: #fff1d8;
  font-weight: 900;
  line-height: 1.05;
}
.oryzo-info-tile p { margin: 10px 0 0; font-size: 19px; }
.oryzo-info-tile .oryzo-tile-k {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.oryzo-video-tile {
  position: absolute;
  z-index: 5;
  right: clamp(18px, 5vw, 76px);
  bottom: clamp(36px, 8vw, 84px);
  width: 112px;
  aspect-ratio: .72;
  border-radius: 22px;
  border: 2px solid rgba(255,186,92,.72);
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,238,179,.28), transparent 35%),
    linear-gradient(180deg, rgba(35,24,16,.45), rgba(8,6,4,.88)),
    repeating-linear-gradient(90deg, rgba(255,245,222,.12) 0 1px, transparent 1px 7px);
  box-shadow: 0 18px 34px rgba(0,0,0,.45), inset 0 0 24px rgba(255,178,80,.2);
  color: #fff1d8;
  font-weight: 900;
}
.play-dot {
  position: absolute;
  inset: auto 0 18px;
  text-align: center;
  font-size: 11px;
}
.oryzo-hero-cta {
  position: absolute;
  z-index: 5;
  right: 24px;
  bottom: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.oryzo-hero-cta button {
  border: 0;
  background: none;
  color: #fff1d8;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}
.oryzo-hero .scroll-cue { display: none; }
@keyframes tensorObjectFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -18px; }
}
@media (max-width: 640px) {
  .oryzo-hero { padding-top: 84px; }
  .oryzo-logo-title { font-size: clamp(4.2rem, 22vw, 7rem); }
  .oryzo-lead { width: 50%; margin-left: auto; font-size: 17px; }
  .tensor-object { width: 88vw; top: 50%; }
  .oryzo-info-tile { width: 48vw; min-height: 150px; bottom: 42px; }
  .oryzo-info-tile p { font-size: 15px; }
  .oryzo-video-tile { width: 88px; bottom: 44px; }
  .oryzo-hero-cta { left: 16px; right: 16px; justify-content: flex-end; }
}

/* ---- Marquee ---- */
.marquee { overflow: hidden; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 12px 0; }
.marquee-track { display: flex; gap: 48px; white-space: nowrap; width: max-content; animation: ticker 32s linear infinite; }
.marquee-track span { font-family: var(--font-mono); font-size: 11px; color: var(--neutral-500); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---- Trust strip ---- */
.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 32px; padding: 24px 16px; }
.trust span { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 11px; color: var(--neutral-500); }
.trust .pip { height: 4px; width: 4px; border-radius: var(--radius-pill); background: var(--accent); }

/* ---- Story flight: scroll-driven narrative + parallax ---- */
.story-flight { --story-p: 0; --story-local: 0; position: relative; height: 360vh; z-index: 10; background: #120d09; }
.story-sticky {
  position: sticky; top: 0; min-height: 100vh; overflow: hidden; isolation: isolate;
  padding: 86px 16px 34px; color: #fff0d5;
  background:
    radial-gradient(circle at 90% 5%, rgba(255,234,120,.24), transparent 17%),
    radial-gradient(circle at 5% 85%, rgba(244,91,70,.22), transparent 20%),
    linear-gradient(180deg, #17110c, #0f0b08);
}
.story-sticky::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(255,242,214,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,242,214,.12) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: translateY(calc(var(--story-p) * -70px));
  opacity: .68;
}
.story-sticky::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(circle at 50% 54%, transparent 0 40%, rgba(0,0,0,.62) 78%), linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.58));
}
.story-product-stage { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.story-hand {
  position: absolute; left: 50%; bottom: -4%; width: min(48vw, 330px); height: min(62vw, 440px);
  transform: translateX(-47%) rotate(calc(-4deg + var(--story-p) * 7deg));
  border-radius: 46% 46% 8% 8%;
  background: linear-gradient(180deg, rgba(58,43,34,.24), rgba(5,4,3,.85));
  filter: blur(1px);
  opacity: .62;
}
.story-product-object {
  position: absolute; left: 50%; top: 52%; width: min(74vw, 430px); aspect-ratio: 1;
  transform:
    translate(-50%, -50%)
    scale(calc(.82 + var(--story-p) * .24))
    rotate(calc(-7deg + var(--story-p) * 18deg));
  filter: drop-shadow(0 32px 42px rgba(0,0,0,.68));
}
.story-product-disc, .story-product-core { position: absolute; inset: 0; border-radius: 50%; }
.story-product-disc {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 48%, rgba(255,205,135,.62) 49%, #9a6037 62%, #2a180e 66%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,224,165,.13) 0 1px, transparent 1px 5px),
    #a66b40;
  box-shadow: inset 0 16px 30px rgba(255,238,194,.18), inset 0 -24px 50px rgba(0,0,0,.68);
}
.story-product-core { inset: 20%; background: #8d5634; box-shadow: inset 0 12px 28px rgba(0,0,0,.62); }
.story-callout {
  position: absolute; z-index: 4; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .08em;
  color: #fff0d5; border-bottom: 1px dotted rgba(255,240,213,.58); padding-bottom: 8px;
  opacity: calc(.18 + var(--story-p) * .75);
}
.story-callout.sc1 { left: 6%; top: 30%; }
.story-callout.sc2 { right: 7%; top: 45%; }
.story-callout.sc3 { left: 8%; bottom: 18%; }
.story-copy { position: relative; z-index: 3; min-height: 58vh; }
.story-copy > .label {
  position: relative; z-index: 4; margin: 0 0 18px; color: rgba(255,240,213,.72);
}
.story-panel {
  position: absolute; inset: 34px 0 auto; opacity: 0; transform: translateY(44px);
  transition: opacity .5s ease, transform .65s var(--ease-out-expo); pointer-events: none;
}
.story-flight[data-chapter="0"] .story-panel.p0,
.story-flight[data-chapter="1"] .story-panel.p1,
.story-flight[data-chapter="2"] .story-panel.p2 { opacity: 1; transform: translateY(0); pointer-events: auto; }
.story-eyebrow {
  margin: 0 0 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: #e66f3d; font-weight: 900;
}
.story-title {
  width: min(94vw, 980px); margin: 0; color: #fff0d5; font-family: var(--font-display);
  font-size: clamp(4.6rem, 15vw, 12rem); line-height: .78; font-weight: 900; letter-spacing: -.075em;
  text-transform: none; text-shadow: 0 12px 34px rgba(0,0,0,.44);
}
.story-text {
  position: fixed; left: 16px; right: 16px; bottom: 84px; max-width: 520px; margin: 0;
  color: #fff0d5; font-size: clamp(14px, 2.3vw, 20px); line-height: 1.15; font-weight: 900;
  text-shadow: 0 6px 20px rgba(0,0,0,.56);
}
.story-readout {
  position: absolute; z-index: 5; left: 16px; right: 16px; bottom: 20px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.story-metric { border-top: 1px dotted rgba(255,240,213,.34); padding-top: 10px; opacity: .36; transition: opacity .35s ease; }
.story-flight[data-chapter="0"] .story-metric.m0,
.story-flight[data-chapter="1"] .story-metric.m1,
.story-flight[data-chapter="2"] .story-metric.m2 { opacity: 1; }
.story-metric span { display: block; color: #fff0d5; font-family: var(--font-display); font-size: clamp(28px, 6vw, 56px); line-height: .86; font-weight: 900; letter-spacing: -.06em; }
.story-metric small { display: block; margin-top: 8px; font-family: var(--font-mono); font-size: 9px; line-height: 1.2; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,240,213,.58); }
@media (min-width: 780px) {
  .story-sticky { padding: 104px 42px 42px; }
  .story-text { left: 42px; bottom: 110px; }
  .story-readout { left: auto; width: 390px; right: 42px; bottom: 42px; }
}
@media (max-width: 779px) {
  .story-copy { min-height: 48vh; }
  .story-panel { inset: 34px 0 auto; }
  .story-title { font-size: clamp(4rem, 18vw, 5.6rem); }
  .story-text {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: 310px;
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.22;
  }
  .story-product-object { top: 55%; width: min(82vw, 360px); }
  .story-readout { bottom: 22px; }
}

/* Tensor-style story effects: Oryzo-like choreography, monochrome identity */
.story-flight {
  --phase-0: 0;
  --phase-1: 0;
  --phase-2: 0;
  height: 390vh;
  background: #000;
}
.story-sticky {
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.09), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(255,255,255,.05), transparent 22%),
    linear-gradient(180deg, #000, #050505);
  color: #fff;
}
.story-sticky::before {
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .58;
  transform:
    translateY(calc(var(--story-p) * -90px))
    perspective(900px)
    rotateX(4deg);
}
.story-sticky::after {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 30%, rgba(0,0,0,.74) 72%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.82));
}
.oryzo-scanlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .18;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,.12) 0 1px, transparent 1px 8px);
  mix-blend-mode: screen;
}
.oryzo-color-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: calc(var(--phase-1) * .45);
  background:
    radial-gradient(circle at 96% 8%, rgba(255,255,255,.18), transparent 18%),
    radial-gradient(circle at 3% 90%, rgba(255,255,255,.12), transparent 20%);
}
.story-hand {
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.78));
  opacity: calc(var(--phase-1) * .48);
  filter: blur(2px);
}
.story-product-object {
  top: calc(54% - var(--phase-0) * 6% + var(--phase-1) * 4%);
  width: min(70vw, 400px);
  transform:
    translate(-50%, -50%)
    scale(calc(.86 + var(--phase-0) * .18 + var(--phase-1) * .08))
    rotate(calc(-10deg + var(--story-p) * 20deg));
  filter: drop-shadow(0 36px 54px rgba(0,0,0,.72));
  opacity: .98;
}
.story-product-disc {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 47%, rgba(255,255,255,.34) 49%, rgba(255,255,255,.16) 60%, rgba(255,255,255,.03) 67%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,.13) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 42% 28%, rgba(255,255,255,.26), rgba(255,255,255,.04) 44%, #050505 74%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    inset 0 18px 36px rgba(255,255,255,.08),
    inset 0 -28px 58px rgba(0,0,0,.78),
    0 0 70px rgba(255,255,255,.08);
}
.story-product-core {
  background:
    radial-gradient(circle at 42% 30%, rgba(255,255,255,.2), transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.06), rgba(0,0,0,.4));
  box-shadow: inset 0 12px 30px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.08);
}
.story-model-label {
  position: absolute;
  right: 7%;
  top: 26%;
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: rgba(255,255,255,.68);
  opacity: calc(var(--phase-1) * 1);
}
.story-callout {
  color: rgba(255,255,255,.7);
  border-bottom-color: rgba(255,255,255,.26);
  opacity: calc(.08 + var(--phase-2) * .72);
}
.story-copy > .label {
  color: rgba(255,255,255,.56);
}
.story-eyebrow {
  color: rgba(255,255,255,.68);
}
.story-title {
  color: #fff;
  text-shadow: 0 12px 34px rgba(0,0,0,.72);
}
.story-panel.p0 .story-title {
  transform: translateX(calc(var(--phase-0) * -5vw));
}
.story-panel.p1 .story-title {
  transform: translateX(calc((1 - var(--story-local)) * 2vw));
}
.story-panel.p2 .story-title {
  transform: translateY(calc((1 - var(--story-local)) * 18px));
}
.story-text {
  color: rgba(255,255,255,.82);
  font-weight: 600;
  line-height: 1.45;
  text-shadow: 0 8px 24px rgba(0,0,0,.8);
}
.story-note {
  position: fixed;
  right: 16px;
  bottom: 84px;
  max-width: 240px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  text-align: right;
}
.story-metric {
  border-top-color: rgba(255,255,255,.22);
}
.story-metric span {
  color: #fff;
}
.story-metric small {
  color: rgba(255,255,255,.42);
}
@media (min-width: 780px) {
  .story-note {
    right: 42px;
    bottom: 128px;
  }
}
@media (max-width: 779px) {
  .story-title { font-size: clamp(3.2rem, 15vw, 5rem); }
  .story-text {
    color: rgba(255,255,255,.78);
    font-weight: 500;
  }
  .story-note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: 260px;
    margin-top: 14px;
    text-align: left;
  }
}

/* ---- Compare grid ---- */
.compare-grid { display: grid; gap: 32px; margin-top: 56px; }
@media (min-width: 980px) { .compare-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.compare-before-after {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.compare-before-after .ba-panel > .reveal:first-child {
  max-width: 620px;
}
.panel-head { padding: 16px 28px; border-bottom: 1px solid; }
.panel-head.bad { background: var(--danger-bg); border-color: rgba(255,255,255,0.2); }
.panel-head.good { background: var(--accent-bg); border-color: rgba(255,255,255,0.25); }
.panel-head .kicker { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; }
.panel-head.bad .kicker { color: rgba(255,255,255,0.9); }
.panel-head.good .kicker { color: rgba(255,255,255,0.9); }
.panel-head .ph-title { margin: 4px 0 0; font-size: 17px; font-weight: 600; }
.panel-head.bad .ph-title { color: rgba(255,255,255,0.9); }
.panel-head.good .ph-title { color: #ffffff; }
.pain { display: flex; gap: 8px; font-size: 14px; color: var(--fg-4); margin: 8px 0; }
.pain::before { content: '×'; color: rgba(255,255,255,0.8); }
.win { display: flex; gap: 8px; font-size: 14px; color: var(--fg-2); margin: 8px 0; }
.win::before { content: '✓'; color: var(--accent); }
.with-block { border: 1px solid var(--glass-border); border-radius: var(--radius-2xl); background: rgba(255,255,255,0.03); padding: 16px; margin-bottom: 16px; transition: border-color 0.3s; }
.with-block:hover { border-color: rgba(255,255,255,0.3); }

/* ---- Eternal ARC-inspired Tensor architecture section ---- */
.arc-section {
  position: relative;
  z-index: 11;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(84px, 12vh, 130px) 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: #000000;
}
.arc-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .74;
  filter: grayscale(1) contrast(1.12) brightness(.72);
  transform: scale(1.02);
}
.arc-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.24) 50%, rgba(0,0,0,.62)),
    linear-gradient(180deg, #000 0%, rgba(0,0,0,.16) 25%, rgba(0,0,0,.34) 70%, #000 100%),
    radial-gradient(circle at 72% 45%, rgba(255,255,255,.12), transparent 30%);
}
.arc-wrap {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 36px;
  align-items: center;
}
.arc-copy {
  position: relative;
  z-index: 4;
  max-width: 460px;
}
.arc-copy .lead {
  margin-top: 18px;
  color: rgba(255,255,255,.62);
}
.arc-steps {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}
.arc-steps span {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-pill);
  background: rgba(0,0,0,.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 9px 14px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.25;
}
.arc-steps b {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: #ffffff;
}
.arc-visual {
  --arc-p: 0;
  position: relative;
  min-height: 560px;
  transform-style: preserve-3d;
  perspective: 1100px;
  isolation: isolate;
}
.arc-visual::before {
  content: "";
  position: absolute;
  inset: 10% -8% 4% 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at 60% 42%, rgba(255,255,255,.12), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 42%);
  filter: blur(18px);
  opacity: calc(.28 + var(--arc-p) * .42);
}
.arc-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(64vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  transform:
    translate(-50%, -50%)
    rotateX(64deg)
    rotateZ(calc(-34deg + var(--arc-p) * 78deg))
    scale(calc(.82 + var(--arc-p) * .14));
  box-shadow:
    inset 0 0 54px rgba(255,255,255,.045),
    0 0 48px rgba(255,255,255,.035);
  display: none;
}
.arc-ring.r2 {
  width: min(50vw, 430px);
  border-color: rgba(255,255,255,.22);
  transform:
    translate(-50%, -50%)
    rotateX(66deg)
    rotateZ(calc(18deg - var(--arc-p) * 92deg))
    scale(calc(.92 + var(--arc-p) * .08));
}
.arc-ring.r3 {
  width: min(76vw, 660px);
  border-style: dashed;
  opacity: .34;
  transform:
    translate(-50%, -50%)
    rotateX(60deg)
    rotateZ(calc(42deg + var(--arc-p) * 120deg))
    scale(calc(.74 + var(--arc-p) * .18));
}
.arc-glass {
  position: absolute;
  left: 52%;
  top: 52%;
  width: min(42vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform:
    translate(-50%, -50%)
    rotateX(58deg)
    rotateZ(calc(-12deg + var(--arc-p) * 20deg));
  background:
    radial-gradient(circle at 42% 24%, rgba(255,255,255,.32), transparent 24%),
    radial-gradient(circle at 52% 52%, transparent 0 44%, rgba(255,255,255,.22) 48%, rgba(255,255,255,.04) 67%, transparent 70%);
  box-shadow:
    inset 0 18px 42px rgba(255,255,255,.08),
    inset 0 -32px 60px rgba(0,0,0,.8),
    0 28px 90px rgba(255,255,255,.08);
  opacity: .88;
  display: none;
}
.arc-beam {
  position: absolute;
  height: 2px;
  width: min(64vw, 660px);
  left: 14%;
  top: 42%;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent);
  filter: blur(.4px);
  opacity: calc(.18 + var(--arc-p) * .34);
  display: none;
}
.arc-beam.b1 { transform: rotate(-32deg) translateY(calc(var(--arc-p) * -28px)); }
.arc-beam.b2 { top: 50%; transform: rotate(-18deg) translateY(calc(var(--arc-p) * 24px)); opacity: calc(.1 + var(--arc-p) * .24); }
.arc-beam.b3 { top: 57%; transform: rotate(-45deg) translateX(calc(var(--arc-p) * 40px)); opacity: .18; }
.arc-node {
  position: absolute;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: rgba(255,255,255,.68);
  border-bottom: 1px dotted rgba(255,255,255,.28);
  padding-bottom: 8px;
  opacity: calc(.28 + var(--arc-p) * .56);
  display: none;
}
.arc-node.n1 { left: 6%; top: 26%; }
.arc-node.n2 { right: 4%; top: 42%; }
.arc-node.n3 { left: 20%; bottom: 18%; }
@media (max-width: 860px) {
  .arc-section {
    min-height: 100svh;
    padding: 84px 20px 72px;
    display: flex;
    align-items: flex-end;
  }
  .arc-bg-video {
    object-position: 58% center;
    opacity: .82;
    filter: grayscale(1) contrast(1.08) brightness(.64);
    transform: scale(1.1);
  }
  .arc-section::before {
    background:
      linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.18) 28%, rgba(0,0,0,.42) 54%, #000 100%),
      linear-gradient(90deg, rgba(0,0,0,.42), rgba(0,0,0,.08) 50%, rgba(0,0,0,.36));
  }
  .arc-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
    width: 100%;
  }
  .arc-visual {
    display: none;
  }
  .arc-copy {
    max-width: 620px;
    padding-top: min(34vh, 260px);
  }
  .arc-copy .h2 { font-size: var(--fs-3xl); }
  .arc-copy .lead { color: rgba(255,255,255,.72); }
  .arc-steps span {
    width: 100%;
    background: rgba(0,0,0,.42);
  }
  .arc-ring { width: min(92vw, 520px); }
  .arc-ring.r2 { width: min(72vw, 390px); }
  .arc-ring.r3 { width: min(106vw, 620px); }
  .arc-glass { width: min(62vw, 320px); }
}

/* ---- Tables (packages) ---- */
.ptable { width: 100%; border-collapse: collapse; text-align: left; font-size: 14px; min-width: 560px; }
.ptable thead tr { border-bottom: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.03); }
.ptable th { padding: 16px 24px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.ptable td { padding: 18px 24px; vertical-align: top; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ptable td.name { font-weight: 500; color: #ffffff; }
.ptable td.detail { color: var(--fg-4); }
.ptable tbody tr:hover { background: rgba(255,255,255,0.03); }
.table-scroll { overflow-x: auto; }

/* pricing block */
.pricing { margin-top: 28px; border: 1px solid var(--accent-line); border-radius: var(--radius-2xl); background: var(--accent-bg); padding: 24px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 0 32px rgba(255,255,255,0.08); }
.pricing .pl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin: 0 0 16px; }
.pricing-grid { display: grid; gap: 16px; }
@media (min-width: 480px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
.pricing .amt { font-size: 24px; font-weight: 700; color: #ffffff; margin: 4px 0 0; }
.pricing .amt small { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.7); margin-left: 4px; }
.pricing .pk { font-size: 12px; color: rgba(255,255,255,0.6); }

.metrics { display: grid; gap: 16px; margin: 0 0 24px; }
@media (min-width: 560px) { .metrics { grid-template-columns: repeat(3, 1fr); } }
.metric { border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-2xl); background: rgba(0,0,0,0.4); padding: 16px; }
.metric .v { font-size: 20px; font-weight: 700; color: #ffffff; margin: 0; }
.metric .l { font-size: 12px; color: var(--fg-3); margin: 4px 0 0; }
.metric .s { font-family: var(--font-mono); font-size: 11px; color: var(--neutral-500); margin: 2px 0 0; }
.story { border-left: 2px solid rgba(255,255,255,0.4); padding-left: 12px; font-size: 12px; font-style: italic; line-height: 1.5; color: var(--fg-3); }

.badge { display: inline-flex; align-items: center; border-radius: var(--radius-lg); border: 1px solid; padding: 4px 12px; font-family: var(--font-mono); font-size: 12px; }
.badge-num { border-color: var(--glass-border); color: var(--fg-2); }
.badge-rec { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.18); color: var(--accent); }

/* ---- Grids ---- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }
@media (min-width: 760px) { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: repeat(3,1fr); } .grid-4 { grid-template-columns: repeat(4,1fr); } }

.stack-tool { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.tool { border: 1px solid var(--glass-border); border-radius: var(--radius-xl); background: var(--glass-fill); padding: 12px 16px; transition: all 0.25s; }
.tool:hover { border-color: var(--glass-border-hover); background: var(--glass-fill-strong); }
.tool .t { font-size: 14px; font-weight: 500; color: #ffffff; margin: 0; }
.tool .r { font-family: var(--font-mono); font-size: 10px; color: var(--neutral-500); margin: 2px 0 0; }

.addon .price { font-size: 24px; font-weight: 700; color: #ffffff; margin: 16px 0 0; }
.addon .price small { font-size: 14px; font-weight: 400; color: var(--neutral-500); margin-left: 4px; }

.process .step { font-family: var(--font-mono); font-size: 24px; font-weight: 700; color: rgba(255,255,255,0.15); }

/* sparkles */
.sparkle-band { position: relative; padding: 100px 24px; overflow: hidden; text-align: center; }
.sparkles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.sparkle-band::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 120% at 50% 50%, transparent 40%, #000 100%); }
.sparkle-band-inner { position: relative; z-index: 2; }
.sparkle-title { font-family: var(--font-sans); font-weight: 600; font-size: clamp(1.625rem, 4vw, 2.875rem); color: #fff; margin: 0; letter-spacing: -0.02em; }

/* before / after interactive comparison */
.ba-stage { margin-top: 48px; display: grid; grid-template-columns: minmax(0, 340px) 1fr; gap: 56px; align-items: center; }
.ba-stage.is-after { grid-template-columns: 1fr minmax(0, 340px); }
.ba-stage.is-after .ba-visual { order: 2; }
@media (max-width: 760px) {
  .ba-stage, .ba-stage.is-after { grid-template-columns: 1fr; gap: 40px; }
  .ba-stage.is-after .ba-visual { order: 0; }
}
.ba-visual, .ba-details { animation: ba-in .5s ease both; }

/* visual orb */
.ba-visual { position: relative; aspect-ratio: 1; max-width: 340px; width: 100%; margin: 0 auto; display: grid; place-items: center; }
.ba-ring { position: absolute; inset: -5%; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.14); animation: ba-spin 24s linear infinite; }
.ba-glow { position: absolute; inset: 16%; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%); filter: blur(22px); animation: ba-pulse 5s ease-in-out infinite; }
.ba-orb {
  position: relative; width: 70%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid var(--glass-border); background: rgba(255,255,255,0.02);
   
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  animation: ba-float 6s ease-in-out infinite; box-shadow: inset 0 0 44px rgba(255,255,255,0.05);
}
.ba-orb-big { font-family: var(--font-sans); font-weight: 700; font-size: clamp(1.625rem, 5vw, 2.625rem); color: #fff; letter-spacing: -0.02em; }
.ba-orb-cap { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-4); margin-top: 6px; }
.ba-status { position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); white-space: nowrap; display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-4); background: rgba(0,0,0,0.6); border: 1px solid var(--glass-border); padding: 6px 12px; border-radius: var(--radius-pill);   }
.ba-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: ba-blink 1.6s ease-in-out infinite; }

/* details */
.ba-kicker { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--fg-4); margin: 0 0 8px; }
.ba-title { font-family: var(--font-sans); font-weight: 600; font-size: var(--fs-xl); color: #fff; margin: 0 0 12px; letter-spacing: -0.01em; }
.ba-desc { color: var(--fg-4); line-height: 1.6; max-width: 46ch; margin: 0 0 28px; }
.ba-metrics { display: flex; flex-direction: column; gap: 20px; max-width: 460px; }
.ba-metric-head { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.86); margin-bottom: 10px; }
.ba-metric-head .mono { color: var(--fg-4); font-size: 11px; }
.ba-bar { height: 6px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.08); overflow: hidden; }
.ba-bar-fill { display: block; height: 100%; width: var(--w); border-radius: var(--radius-pill); background: linear-gradient(90deg, rgba(255,255,255,0.45), #fff); animation: ba-grow 1s cubic-bezier(.2,.7,.2,1) both; }

/* switcher */
.ba-switch-wrap { display: flex; justify-content: center; margin-top: 48px; }
.ba-switch { display: inline-flex; gap: 4px; padding: 5px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border);   }
.ba-switch-btn { border: 0; cursor: pointer; background: none; color: var(--fg-4); font-family: var(--font-sans); font-size: 13px; font-weight: 500; padding: 10px 24px; border-radius: var(--radius-pill); transition: color .3s ease, background .3s ease; }
.ba-switch-btn.is-active { color: #000; background: #fff; }

@keyframes ba-spin { to { transform: rotate(360deg); } }
@keyframes ba-pulse { 0%,100% { opacity: .45; } 50% { opacity: 1; } }
@keyframes ba-float { 0%,100% { transform: translateY(-6px); } 50% { transform: translateY(6px); } }
@keyframes ba-blink { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes ba-grow { from { width: 0; } }
@keyframes ba-in { from { opacity: 0; transform: translateY(10px); } }
@media (prefers-reduced-motion: reduce) {
  .ba-ring, .ba-glow, .ba-orb, .ba-dot, .ba-bar-fill, .ba-visual, .ba-details { animation: none !important; }
}

/* rotating word (hero headline) */
.rot { display: inline-grid; vertical-align: baseline; text-align: left; color: #ffffff; }
.rot > * { grid-area: 1 / 1; }
.rot-sizer { visibility: hidden; }
.rot-item {
  opacity: 0; transform: translateY(0.4em);
  transition: opacity .5s ease, transform .6s cubic-bezier(.2,.7,.2,1);
  white-space: nowrap; will-change: opacity, transform;
}
.rot-item.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .rot-item { transition: none; }
}

/* faq */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  background: rgba(255,255,255,0.018);
  
  
  overflow: hidden;
  transition: border-color .3s ease, background .3s ease;
}
.faq-item:hover { border-color: var(--glass-border-hover); background: rgba(255,255,255,0.03); }
.faq-item.open { border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.045); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 24px 40px 24px 72px; font-size: 13.5px; font-weight: 500; line-height: 1.45;
  color: #ffffff; font-family: var(--font-sans);
}
.faq-q-text { transition: opacity .3s ease; }
.faq-item:hover .faq-q-text { opacity: .9; }
/* animated circular chevron toggle */
.faq-ic {
  position: relative; width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 50%; border: 1px solid var(--glass-border); display: grid; place-items: center;
  color: var(--fg-4);
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}
.faq-ic svg { display: block; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.faq-item:hover .faq-ic { border-color: var(--glass-border-hover); color: #ffffff; }
.faq-item.open .faq-ic { background: #ffffff; border-color: #ffffff; color: #000000; }
.faq-item.open .faq-ic svg { transform: rotate(180deg); }
/* smooth height reveal (grid-rows 0fr → 1fr) */
.faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s cubic-bezier(.4,0,.2,1); }
.faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; min-height: 0; }
.faq-a { font-size: 13px; line-height: 1.7; color: var(--fg-4); margin: 0; padding: 2px 40px 26px 72px; max-width: 62ch; }
@media (max-width: 640px) {
  .faq-q { padding: 20px 22px; }
  .faq-a { padding: 2px 22px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-item, .faq-q-text, .faq-ic, .faq-ic svg, .faq-a-wrap { transition: none; }
}


/* contact form */
#contact {
  overflow: hidden;
}
#contact > .wrap {
  position: relative;
  z-index: 3;
}
.proposal-motion-object {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  isolation: isolate;
  pointer-events: none;
  background: #000000;
}
.proposal-motion-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
  filter: grayscale(1) contrast(1.12) brightness(.78);
  transform: scale(1.03);
}
.proposal-motion-object::before,
.proposal-motion-object::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.proposal-motion-object::before {
  background:
    linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.18) 50%, rgba(0,0,0,.64)),
    linear-gradient(180deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.1) 24%, rgba(0,0,0,.26) 72%, rgba(0,0,0,.9) 100%);
}
.proposal-motion-object::after {
  content: none;
}
.proposal-motion-glow {
  position: absolute;
  z-index: 2;
  left: 68%;
  top: 38%;
  width: min(54vw, 520px);
  aspect-ratio: 1;
  border-radius: var(--radius-pill);
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 44% 38%, rgba(255,255,255,.42), rgba(255,255,255,.14) 23%, rgba(255,255,255,.04) 43%, transparent 68%);
  filter: blur(1px);
  mix-blend-mode: screen;
  animation: proposalPulse 5.8s ease-in-out infinite;
}
.proposal-motion-ring {
  position: absolute;
  z-index: 3;
  left: 68%;
  top: 38%;
  width: min(58vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: var(--radius-pill);
  transform-style: preserve-3d;
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(0deg);
  box-shadow: inset 0 0 38px rgba(255,255,255,.08), 0 0 70px rgba(255,255,255,.11);
  animation: proposalRing 13s linear infinite;
}
.proposal-motion-ring.r2 {
  width: min(44vw, 420px);
  opacity: .66;
  border-style: dashed;
  transform: translate(-50%, -50%) rotateX(58deg) rotateZ(22deg);
  animation-duration: 18s;
  animation-direction: reverse;
}
.proposal-motion-ring.r3 {
  width: min(26vw, 260px);
  opacity: .8;
  transform: translate(-50%, -50%) rotateX(74deg) rotateZ(-18deg);
  animation-duration: 9s;
}
.proposal-motion-plane {
  position: absolute;
  z-index: 4;
  left: 61%;
  top: 42%;
  width: min(72vw, 720px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), rgba(255,255,255,.72), rgba(255,255,255,.18), transparent);
  transform: translate(-50%, -50%) rotate(-14deg);
  box-shadow: 0 0 54px rgba(255,255,255,.28);
  animation: proposalSweep 4.8s ease-in-out infinite;
}
.proposal-motion-glow,
.proposal-motion-ring,
.proposal-motion-plane {
  display: none;
}
@keyframes proposalRing {
  to { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(360deg); }
}
@keyframes proposalPulse {
  0%, 100% { opacity: .56; transform: translate(-50%, -50%) scale(.96); }
  50% { opacity: .78; transform: translate(-50%, -50%) scale(1.04); }
}
@keyframes proposalSweep {
  0%, 100% { opacity: .32; transform: translate(-54%, -50%) rotate(-14deg); }
  50% { opacity: .72; transform: translate(-46%, -50%) rotate(-14deg); }
}
@media (max-width: 760px) {
  .proposal-motion-object {
    inset: 0;
  }
  .proposal-motion-video {
    opacity: .72;
    filter: grayscale(1) contrast(1.08) brightness(.66);
    transform: scale(1.06);
  }
  .proposal-motion-object::before {
    background:
      linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.24) 50%, rgba(0,0,0,.6)),
      linear-gradient(180deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.16) 20%, rgba(0,0,0,.42) 68%, rgba(0,0,0,.9) 100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .proposal-motion-glow,
  .proposal-motion-ring,
  .proposal-motion-plane {
    animation: none;
  }
}
.field { width: 100%; border: 1px solid var(--glass-border); border-radius: var(--radius-2xl); background: var(--glass-fill); padding: 12px 16px; font-size: 14px; color: #ffffff; font-family: var(--font-sans); outline: none; transition: all 0.2s; }
.field::placeholder { color: rgba(255,255,255,0.4); }
.field:focus { border-color: var(--glass-border-hover); box-shadow: 0 0 0 1px rgba(255,255,255,0.15); }
textarea.field { resize: none; }
select.field option { background: #000000; }
.form-stack { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.form-error {
  margin: 0;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  padding: 10px 12px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.45;
}

.offer { border: 1px solid rgba(255,255,255,0.2); background: var(--warn-bg); border-radius: var(--radius-2xl); padding: 20px; }
.offer .ok { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--warn); margin: 0; }
.offer p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.9); margin: 8px 0 0; }

.pkg-pick { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; border: 1px solid var(--glass-border); border-radius: var(--radius-xl); background: var(--glass-fill); padding: 12px 16px; cursor: pointer; transition: all 0.2s; text-align: left; }
.pkg-pick:hover { border-color: var(--glass-border-hover); background: var(--glass-fill-strong); }

/* footer */
.footer { position: relative; z-index: 10; border-top: 1px solid rgba(255,255,255,0.06); padding: 40px 24px; }
.footer-inner { max-width: 1120px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 640px) { .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; } .footer { padding: 40px; } }
.footer .links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer .links button { background: none; border: 0; cursor: pointer; font-family: var(--font-mono); font-size: 11px; color: var(--fg-4); padding: 8px 4px; transition: color 0.2s; }
.footer .links button:hover { color: var(--fg-2); }
.footer .links a.footer-legal { text-decoration: none; font-family: var(--font-mono); font-size: 11px; color: var(--fg-4); padding: 8px 4px; transition: color 0.2s; display: inline-flex; align-items: center; }
.footer .links a.footer-legal:hover { color: var(--fg-2); }

/* reveal — STATIC. No entrance animation (motion comes from the 3D scene
   and the cinematic reel). Guarantees zero animation glitches on content. */
.reveal { opacity: 1; }
.reveal.shown { opacity: 1; }

/* mobile menu */
.mobile-toggle { display: none; height: 44px; width: 44px; align-items: center; justify-content: center; border: 1px solid var(--glass-border); background: var(--glass-fill); border-radius: var(--radius-xl); color: #ffffff; cursor: pointer; }
.mobile-drawer { border-top: 1px solid rgba(255,255,255,0.06); background: #000000; padding: 16px 24px; display: flex; flex-direction: column; gap: 8px; }
.mobile-drawer button { background: none; border: 0; text-align: left; padding: 10px 12px; border-radius: var(--radius-lg); color: var(--fg-2); font-size: 14px; cursor: pointer; font-family: var(--font-sans); }
.mobile-drawer button:hover { background: rgba(255,255,255,0.06); color: #ffffff; }
@media (max-width: 880px) { .nav { display: none; } .mobile-toggle { display: inline-flex; } }

.range { width: 100%; accent-color: #ffffff; }
.slider-row { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; color: var(--neutral-500); margin-bottom: 8px; }
.slider-row .v { color: #ffffff; }

/* ============================================================
   WORDMARK — "Tensor" in Plus Jakarta Sans 800
   ============================================================ */
.wordmark {
  background: none; border: 0; cursor: pointer; padding: 0;
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.04em;
  color: #ffffff; line-height: 1; display: inline-flex; align-items: baseline; gap: 1px;
  transition: opacity 0.2s;
}
.wordmark:hover { opacity: 0.82; }
.wordmark .wm-dot { width: 0.28em; height: 0.28em; border-radius: var(--radius-pill); background: var(--accent); display: inline-block; margin-left: 0.05em; box-shadow: 0 0 14px rgba(255,255,255,0.7); }

/* ============================================================
   MAGNETIC BUTTONS
   ============================================================ */
.mbtn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: -0.01em;
  border-radius: var(--radius-pill); cursor: pointer; border: 1px solid transparent;
  padding: 13px 26px; white-space: nowrap;
  transform: translate(var(--mx, 0), var(--my, 0));
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.mbtn-sm { padding: 9px 18px; font-size: 13px; }
.mbtn-label { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 7px; transition: transform 0.2s var(--ease-out-expo); }
.mbtn-arrow { transition: transform 0.3s var(--ease-out-expo); }
.mbtn:hover .mbtn-arrow { transform: translateX(3px); }
.mbtn:active { transform: translate(var(--mx,0), var(--my,0)) scale(0.96); }

/* radial glow that follows the cursor */
.mbtn-glow { position: absolute; inset: 0; z-index: 1; opacity: 0; border-radius: inherit; transition: opacity 0.3s ease; background: radial-gradient(120px circle at var(--gx,50%) var(--gy,50%), rgba(255,255,255,0.5), transparent 60%); }
.mbtn:hover .mbtn-glow { opacity: 1; }

.mbtn-primary { background: #ffffff; color: #000000; }
.mbtn-primary:hover { box-shadow: 0 8px 30px rgba(255,255,255,0.22), 0 0 0 1px rgba(255,255,255,0.4); }
.mbtn-primary .mbtn-glow { background: radial-gradient(120px circle at var(--gx,50%) var(--gy,50%), rgba(255,255,255,0.45), transparent 60%); }

.mbtn-ghost { background: var(--glass-fill); color: var(--fg-1); border-color: var(--glass-border);  }
.mbtn-ghost:hover { border-color: var(--glass-border-hover); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }

.mbtn-accent { background: linear-gradient(180deg, var(--accent-bright), var(--accent-deep)); color: #000000; }
.mbtn-accent:hover { box-shadow: 0 8px 34px rgba(255,255,255,0.4); }

/* ============================================================
   CINEMATIC PRODUCT REEL — pinned stage, scroll-driven scenes
   ============================================================ */
.cine-wrap { position: relative; z-index: 10; }
.cine-stage { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
.cine-grid {
  max-width: 1120px; margin: 0 auto; padding: 0 40px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}

/* LEFT copy column — panels stacked, cross-faded */
.cine-copy { position: relative; min-height: 460px; }
.cine-rail { display: flex; gap: 8px; margin-bottom: 28px; }
.cine-rail-dot { position: relative; height: 3px; width: 56px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.14); border: 0; padding: 0; cursor: pointer; overflow: hidden; }
.cine-rail-dot .crd-fill { position: absolute; inset: 0; transform-origin: left; background: linear-gradient(90deg, var(--accent-deep), var(--accent-bright)); }
.cine-rail-dot.on { box-shadow: 0 0 12px rgba(255,255,255,0.4); }

.cine-panel { position: absolute; top: 56px; left: 0; right: 0; transition: opacity 0.5s var(--ease-out-expo), transform 0.6s var(--ease-out-expo); pointer-events: none; }
.cine-panel.on { opacity: 1; transform: translateY(0); position: relative; pointer-events: auto; }
.cine-panel.past { opacity: 0; transform: translateY(-30px); }
.cine-panel.future { opacity: 0; transform: translateY(30px); }
.cine-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin: 0 0 16px; }
.cine-title { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-4xl); line-height: 1.04; letter-spacing: -0.03em; color: #ffffff; margin: 0; }
.cine-text { font-size: 16px; line-height: 1.6; color: var(--fg-4); margin: 20px 0 0; max-width: 30rem; }
.cine-wins { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 10px; }
.cine-wins li { position: relative; padding-left: 26px; font-size: 14px; color: var(--fg-2); }
.cine-wins li::before { content: ''; position: absolute; left: 0; top: 6px; width: 14px; height: 14px; border-radius: var(--radius-pill); background: radial-gradient(circle at 35% 30%, var(--accent-bright), var(--accent-deep)); box-shadow: 0 0 10px rgba(255,255,255,0.5); }
.cine-chips { display: flex; gap: 12px; margin-top: 28px; }
.cine-chip { border: 1px solid var(--glass-border); background: var(--glass-fill);  border-radius: var(--radius-xl); padding: 12px 16px; }
.cine-chip .cc-v { display: block; font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #ffffff; letter-spacing: -0.02em; }
.cine-chip .cc-l { display: block; font-family: var(--font-mono); font-size: 10px; color: var(--neutral-500); margin-top: 2px; }
.cine-cta { margin-top: 32px; }

/* RIGHT visual — floating device with swapping screens */
.cine-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.device {
  position: relative; width: 300px; height: 470px; border-radius: 42px;
  background: linear-gradient(160deg, rgba(255,255,255,0.16), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.18); padding: 12px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 40px 90px rgba(0,0,0,0.6), 0 0 60px rgba(255,255,255,0.08);
   overflow: hidden;
  animation: deviceFloat 7s ease-in-out infinite;
}
@keyframes deviceFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
.device-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 96px; height: 22px; background: #000000; border-radius: 0 0 14px 14px; z-index: 5; }
.device-glow { position: absolute; width: 320px; height: 320px; border-radius: var(--radius-pill); background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 65%); filter: blur(30px); z-index: -1; }

.device-screen {
  position: absolute; inset: 12px; border-radius: 32px; overflow: hidden;
  background: linear-gradient(180deg, #0a0f0d, #050706);
  border: 1px solid rgba(255,255,255,0.06);
  transition: opacity 0.55s var(--ease-out-expo), transform 0.65s var(--ease-out-expo);
}
.device-screen.on { opacity: 1; transform: translateY(0) scale(1); z-index: 3; }
.device-screen.up { opacity: 0; transform: translateY(-24px) scale(0.96); z-index: 1; }
.device-screen.down { opacity: 0; transform: translateY(24px) scale(0.96); z-index: 1; }

.screen-body { display: flex; flex-direction: column; gap: 12px; height: 100%; padding: 40px 18px 18px; }
.mock-row { display: flex; align-items: center; gap: 10px; }
.mock-dot { width: 26px; height: 26px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.1); flex-shrink: 0; }
.mock-dot.ok { background: radial-gradient(circle at 35% 30%, var(--accent-bright), var(--accent-deep)); }
.mock-line { height: 8px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.16); margin: 3px 0; }
.mock-line.sm { height: 6px; background: rgba(255,255,255,0.08); }
.mock-line.w70 { width: 70%; } .mock-line.w40 { width: 40%; }
.mock-pill { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.05em; padding: 4px 8px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.08); color: var(--fg-3); white-space: nowrap; }
.mock-pill.ok { background: rgba(255,255,255,0.18); color: var(--accent); }
.mock-eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--neutral-500); margin: 0; }
.mock-email { border: 1px solid var(--glass-border); border-radius: 14px; background: rgba(255,255,255,0.03); padding: 14px; }
.mock-h { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #ffffff; margin: 8px 0 6px; letter-spacing: -0.01em; }
.mock-p { font-size: 11px; line-height: 1.5; color: var(--fg-4); margin: 0 0 12px; }
.mock-btn { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 11px; background: #ffffff; color: #000000; padding: 7px 14px; border-radius: var(--radius-pill); }
.mock-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: auto; }
.mock-thumb { aspect-ratio: 1; border-radius: 10px; background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05)); border: 1px solid rgba(255,255,255,0.06); }
.mock-avatar { width: 26px; height: 26px; border-radius: var(--radius-pill); background: linear-gradient(135deg, var(--accent-bright), var(--accent-deep)); color: #000000; font-family: var(--font-display); font-weight: 800; font-size: 10px; display: flex; align-items: center; justify-content: center; }
.mock-chat { max-width: 80%; font-size: 11px; line-height: 1.45; padding: 9px 12px; border-radius: 14px; }
.mock-chat.them { align-self: flex-start; background: rgba(255,255,255,0.07); color: var(--fg-2); border-bottom-left-radius: 4px; }
.mock-chat.me { align-self: flex-end; background: linear-gradient(180deg, var(--accent-bright), var(--accent-deep)); color: #000000; border-bottom-right-radius: 4px; }
.mock-table { display: flex; flex-direction: column; gap: 6px; }
.mock-trow { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 8px; padding: 8px 10px; border-radius: 10px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); }
.mt-name { font-size: 11px; color: var(--fg-2); }
.mt-num { font-family: var(--font-mono); font-size: 11px; color: #ffffff; }
.mt-tag { font-family: var(--font-mono); font-size: 9px; padding: 2px 7px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.18); color: var(--accent); }
.mt-tag.bad { background: rgba(255,255,255,0.18); color: var(--danger); }
.mock-bars { display: flex; align-items: flex-end; gap: 6px; height: 70px; margin-top: auto; padding-top: 10px; }
.mock-bars span { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, var(--accent-bright), rgba(255,255,255,0.25)); }

@media (max-width: 900px) {
  .cine-wrap { height: auto !important; }
  .cine-stage { position: relative; height: auto; padding: 80px 0; }
  .cine-grid { grid-template-columns: 1fr; gap: 40px; }
  .cine-copy { min-height: 0; }
  .cine-panel { position: relative; opacity: 1 !important; transform: none !important; top: 0; margin-bottom: 64px; pointer-events: auto; }
  .cine-panel:last-child { margin-bottom: 0; }
  .cine-rail { display: none; }
  .cine-visual { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .floaty, .scroll-cue .dot, .device { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   FINAL STORY / PAGE-FEEL PASS
   Tensor styling, Oryzo-like motion mechanics without overlap.
   ============================================================ */
.story-rail {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  transform: translateY(-50%);
}
.story-rail-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.story-rail-track {
  position: relative;
  width: 2px;
  height: 110px;
  background: rgba(255,255,255,.12);
  overflow: hidden;
}
.story-rail-track i {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: top;
  background: #fff;
}

.story-flight {
  --phase-0: 0;
  --phase-1: 0;
  --phase-2: 0;
  height: 420vh;
  background: #000;
  overflow: clip;
}
.story-flight + .section {
  position: relative;
  z-index: 12;
  background: #000;
  box-shadow: 0 -90px 90px #000;
}
.story-sticky {
  min-height: 100vh;
  padding: clamp(86px, 13vh, 130px) clamp(18px, 5vw, 56px) 34px;
  background:
    radial-gradient(circle at calc(44% + var(--story-p) * 18%) 48%, rgba(255,255,255,.1), transparent 27%),
    linear-gradient(180deg, #000, #030303 58%, #000);
}
.story-sticky::before {
  opacity: .42;
  background-size: 46px 46px;
  transform:
    translate3d(calc(var(--story-p) * -32px), calc(var(--story-p) * -96px), 0)
    perspective(1000px)
    rotateX(5deg);
}
.story-sticky::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.3) 45%, rgba(0,0,0,.86)),
    radial-gradient(circle at 50% 48%, transparent 0 36%, rgba(0,0,0,.76) 78%);
}
.oryzo-scanlines { opacity: .1; }
.oryzo-color-wash {
  opacity: calc(var(--phase-1) * .26);
  background:
    radial-gradient(circle at 92% 18%, rgba(255,255,255,.16), transparent 17%),
    radial-gradient(circle at 8% 88%, rgba(255,255,255,.1), transparent 19%);
}
.story-copy {
  position: relative;
  z-index: 8;
  min-height: min(54vh, 460px);
  max-width: min(100%, 760px);
}
.story-copy > .label {
  margin-bottom: 26px;
  color: rgba(255,255,255,.48);
}
.story-panel {
  position: absolute;
  inset: 84px auto auto 0;
  width: min(100%, 760px);
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(42px) scale(.985);
  transition: none;
}
.story-flight[data-chapter="0"] .story-panel.p0,
.story-flight[data-chapter="1"] .story-panel.p1,
.story-flight[data-chapter="2"] .story-panel.p2 {
  opacity: 1 !important;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.story-title {
  max-width: 720px;
  width: auto;
  font-size: clamp(3rem, 12vw, 8.8rem);
  line-height: .86;
  letter-spacing: -.065em;
}
.story-panel.p0 .story-title,
.story-panel.p1 .story-title,
.story-panel.p2 .story-title {
  transform: none;
}
.story-text {
  position: static;
  max-width: 430px;
  margin-top: 22px;
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,.76);
}
.story-note {
  position: static;
  max-width: 420px;
  margin-top: 16px;
  text-align: left;
  color: rgba(255,255,255,.46);
}
.story-product-stage {
  z-index: 4;
}
.story-product-stage::before,
.story-product-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(82vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  transform:
    translate(-50%, -50%)
    scale(calc(.72 + var(--story-p) * .3))
    rotate(calc(var(--story-p) * 140deg));
  opacity: calc(.08 + var(--phase-0) * .2);
}
.story-product-stage::after {
  width: min(72vw, 430px);
  border-style: dashed;
  opacity: calc(.05 + var(--phase-1) * .18);
  transform:
    translate(-50%, -50%)
    scale(calc(.95 - var(--story-p) * .18))
    rotate(calc(var(--story-p) * -190deg));
}
.story-product-object {
  top: 56%;
  width: min(58vw, 360px);
  opacity: .72;
  transform:
    translate(-50%, -50%)
    scale(calc(.72 + var(--phase-0) * .18 + var(--phase-1) * .1))
    rotate(calc(-8deg + var(--story-p) * 22deg));
  mix-blend-mode: screen;
}
.story-hand { display: none; }
.story-model-label {
  right: clamp(18px, 7vw, 86px);
  top: 25%;
  opacity: calc(.08 + var(--phase-1) * .55);
}
.story-callout {
  opacity: calc(var(--phase-2) * .62);
}
.story-readout {
  z-index: 9;
  left: clamp(18px, 5vw, 56px);
  right: clamp(18px, 5vw, 56px);
  bottom: 28px;
  gap: 14px;
}
.story-metric {
  min-width: 0;
  opacity: .24;
}
.story-flight[data-chapter="0"] .story-metric.m0,
.story-flight[data-chapter="1"] .story-metric.m1,
.story-flight[data-chapter="2"] .story-metric.m2 {
  opacity: 1;
}

.section.bordered,
.sparkle-band {
  position: relative;
  isolation: isolate;
}
.section.bordered::before,
.sparkle-band::before {
  content: attr(data-screen-label);
  position: absolute;
  left: clamp(18px, 4vw, 48px);
  top: 22px;
  display: none;
  z-index: -1;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.16);
}
.section.bordered::after,
.sparkle-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255,255,255,.035), transparent),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.04), transparent 24%);
  opacity: .75;
}
.glass {
  transform: translateZ(0);
}

@media (min-width: 780px) {
  .story-text { max-width: 480px; }
  .story-note { max-width: 360px; }
  .story-product-object { left: 67%; width: min(34vw, 400px); }
  .story-product-stage::before,
  .story-product-stage::after { left: 67%; }
  .story-readout {
    left: auto;
    width: 420px;
  }
}
@media (max-width: 779px) {
  .story-rail { display: none; }
  .story-copy { min-height: 440px; }
  .story-panel { inset: 76px 0 auto 0; width: 100%; }
  .story-title { font-size: clamp(2.75rem, 13vw, 4.4rem); }
  .story-product-object {
    top: 62%;
    width: min(76vw, 330px);
    opacity: .5;
  }
  .story-product-stage::before,
  .story-product-stage::after {
    top: 62%;
    width: min(90vw, 380px);
  }
  .story-readout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    bottom: 18px;
  }
  .story-metric span { font-size: clamp(22px, 8vw, 34px); }
  .story-metric small { font-size: 8px; }
}

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

/* --- Hero --- */
.mh-hero {
  position: relative;
  z-index: 12;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}
.mh-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(.8);
}
.mh-hero-fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 256px;
  z-index: 1;
  background: linear-gradient(to top, #000, transparent);
  pointer-events: none;
}
.mh-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 128px 24px 96px;
  max-width: 980px;
}
.mh-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px;
}
.mh-avatar-row { display: inline-flex; }
.mh-avatar-row i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-left: -8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,.85);
  background: radial-gradient(120% 120% at 30% 25%, rgba(255,255,255,.28), rgba(255,255,255,.06) 70%);
  border: 2px solid #000;
}
.mh-avatar-row i:first-child { margin-left: 0; }
.mh-avatar-note { font-size: 14px; color: var(--fg-4); }
.mh-title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(48px, 9vw, 128px);
  letter-spacing: -2px;
  line-height: 1.04;
  color: var(--fg-1);
}
.mh-title .em { font-weight: 400; }
.mh-sub {
  margin: 22px auto 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.65;
  color: #eef1f4;
  opacity: .9;
}
.mh-form {
  margin: 30px auto 0;
  max-width: 512px;
  padding: 8px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mh-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: none;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: #fff;
}
.mh-form input::placeholder { color: rgba(255,255,255,.45); }
.mh-form-btn {
  flex-shrink: 0;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 12px 32px;
  background: #fff;
  color: #000;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform 150ms ease;
}
.mh-form-btn:hover { transform: scale(1.03); }
.mh-form-btn:active { transform: scale(0.98); }
.mh-form-done {
  margin: 34px auto 0;
  font-size: 15px;
  color: rgba(255,255,255,.85);
}

/* --- "E-commerce has changed" --- */
.mh-changed {
  position: relative;
  z-index: 12;
  background: #000;
  padding: clamp(208px, 24vh, 256px) 24px 36px;
  text-align: center;
}
.mh-changed-title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-5xl);
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--fg-1);
}
.mh-changed-sub {
  margin: 22px auto 96px;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-4);
}
.mh-changed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}
.mh-changed-card { text-align: center; }
.mh-changed-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 26px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.9);
}
.mh-changed-icon svg { width: 52px; height: 52px; }
.mh-changed-name {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg-1);
}
.mh-changed-desc {
  margin: 0 auto;
  max-width: 300px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-4);
}
.mh-changed-tagline {
  margin: 0;
  font-size: 14px;
  color: var(--fg-4);
}
@media (max-width: 860px) {
  .mh-changed-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* --- Mission --- */
.mh-mission {
  position: relative;
  z-index: 12;
  background: #000;
  padding: 40px 24px clamp(128px, 18vh, 176px);
}
.mh-mission-video {
  width: min(800px, 92vw);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-3xl);
  margin: 0 auto 72px;
  display: block;
  filter: grayscale(1) contrast(1.06) brightness(.85);
}
.mh-mission-p1 {
  margin: 0 auto;
  max-width: 900px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 3rem);
  letter-spacing: -1px;
  line-height: 1.3;
}
.mh-mission-p2 {
  margin: 40px auto 0;
  max-width: 760px;
  font-weight: 500;
  font-size: clamp(1.25rem, 2.6vw, 1.875rem);
  line-height: 1.4;
}
.mi-w { color: #eef1f4; opacity: .15; will-change: opacity; }
.mi-w.mi-hi { color: #ffffff; }
@media (prefers-reduced-motion: reduce) {
  .mi-w { opacity: 1 !important; }
}

/* Hero CTA row (replaces the email pill) */
.mh-cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Legible text links for "See [X] pricing" */
.pricing-link {
  margin-top: 12px;
  background: none;
  border: 0;
  padding: 0 0 2px;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.35);
  transition: color 150ms ease, border-color 150ms ease;
}
.pricing-link:hover { color: #fff; border-color: #fff; }

/* Benchmark disclaimers near outcome stats */
.bench-note {
  margin: 12px 0 0;
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--fg-5);
}

/* ==== Hero v3 — cinematic staged entrance ========================= */
/* Left-aligned editorial block; headline lines rise out of clip
   masks, then copy and CTAs follow. Sequence ≈ 2s, all CSS-driven. */
.mh2-content {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px clamp(20px, 6vw, 96px) clamp(72px, 12vh, 120px);
  max-width: 1240px;
  margin: 0 auto;
}
.mh2-eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  opacity: 0;
  animation: mh2Fade .9s ease .2s forwards;
}
.mh2-title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-display);
  letter-spacing: -0.028em;
  line-height: 1.02;
  color: var(--fg-1);
}
.mh2-line { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.mh2-line-inner {
  display: block;
  transform: translateY(115%);
  animation: mh2Rise 1.15s cubic-bezier(.16, 1, .3, 1) forwards;
}
.mh2-line-inner.l1 { animation-delay: .45s; }
.mh2-line-inner.l2 { animation-delay: .68s; }
.mh2-title .em { font-weight: 400; }
.mh2-sub {
  margin: 26px 0 0;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.65;
  color: #eef1f4;
  opacity: 0;
  animation: mh2FadeUp 1s ease 1.35s forwards;
}
.mh2-cta {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: mh2FadeUp 1s ease 1.7s forwards;
}
.mh2-pillars {
  margin-top: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  opacity: 0;
  animation: mh2Fade 1.2s ease 2.05s forwards;
}
@keyframes mh2Rise {
  to { transform: translateY(0); }
}
@keyframes mh2Fade {
  to { opacity: 1; }
}
@keyframes mh2FadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .mh2-eyebrow, .mh2-sub, .mh2-cta, .mh2-pillars { animation: none; opacity: 1; }
  .mh2-line-inner { animation: none; transform: none; }
}
@media (max-width: 640px) {
  .mh2-content { justify-content: center; padding-bottom: 96px; }
  .mh2-pillars { margin-top: 34px; }
}

/* Step number in the how-it-works cards */
.mh-changed-step {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: .2em;
  color: rgba(255,255,255,.45);
}

/* ==== 1. Vertical rhythm ==========================================
   Pacing instead of a uniform 96px block: "moment" sections breathe,
   dense content sections tighten, so the page reads in movements. */
.mh-changed { padding-top: clamp(128px, 16vh, 184px); padding-bottom: clamp(88px, 10vh, 120px); }
.mh-mission { padding-top: clamp(64px, 8vh, 104px); padding-bottom: clamp(128px, 16vh, 176px); }
.arc-section { padding-top: clamp(112px, 14vh, 160px); padding-bottom: clamp(112px, 14vh, 160px); }
#packages, #addons, #faq { padding-top: 88px; padding-bottom: 88px; }
#estimator { padding-bottom: 72px; }
#contact { padding-top: clamp(112px, 13vh, 148px); }
@media (max-width: 640px) {
  #packages, #addons, #faq { padding-top: 72px; padding-bottom: 72px; }
}

/* ==== 4. Section watermarks — wide screens only ====================
   The ghost section label collided with content at mid widths, so it
   only renders where there's genuine empty gutter for it. */
@media (min-width: 1440px) {
  .section.bordered::before,
  .sparkle-band::before { display: block; }
}

/* ==== 5. Touch feedback ============================================
   Hover does nothing on touch devices; :active gives phone users the
   same sense of response (most traffic arrives from social links). */
.mbtn:active { transform: scale(0.975) translate(var(--mx, 0), var(--my, 0)); }
.pkg-pick:active { transform: scale(0.99); background: var(--glass-fill-strong); }
.pricing-link:active { color: #fff; opacity: .75; }
.pkgstage-arrow:active, .mobile-toggle:active { transform: scale(0.94); background: rgba(255,255,255,.14); }
.faq-q:active { opacity: .8; }
.footer .links button:active, .footer .links a.footer-legal:active { color: #fff; }
.mbtn, .pkg-pick, .pkgstage-arrow, .mobile-toggle { -webkit-tap-highlight-color: transparent; }
@media (prefers-reduced-motion: reduce) {
  .mbtn:active, .pkg-pick:active, .pkgstage-arrow:active, .mobile-toggle:active { transform: none; }
}
