

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: #000;
  color: #fff;
  font-family: 'Inter', -apple-system, 'SF Pro Display', system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; }
.accent { color: #FF7A00; }
.muted  { opacity: .28; }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; gap: 3rem;
  padding: 1.4rem 4rem;
  border-bottom: 1px solid transparent;
  transition: background .5s, border-color .5s;
}
.nav.solid {
  background: rgba(0,0,0,.9);
  -webkit-backdrop-filter: blur(28px); backdrop-filter: blur(28px);
  border-color: rgba(255,255,255,.07);
}
.nav-logo {
  font-size: .95rem; font-weight: 900;
  letter-spacing: .18em; color: #fff;
}
.nav-logo span { color: #FF7A00; }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none; margin: auto;
}
.nav-links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .04em;
  color: #555; transition: color .2s;
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  font-size: .78rem; font-weight: 700;
  color: #000; background: #fff;
  padding: .55rem 1.5rem; border-radius: 100px;
  transition: all .25s cubic-bezier(.16,1,.3,1);
}
.nav-cta:hover { background: #FF7A00; color: #fff; transform: translateY(-1px); }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero-grain {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  background-size: 200px; opacity: .6;
}

.hero-inner {
  display: flex; width: 100%;
  position: relative; z-index: 2;
}

.hero-copy {
  flex: 0 0 46%;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 10rem 4rem 6rem 5rem;
  position: relative; z-index: 3;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .65rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: #555; border: 1px solid rgba(255,255,255,.09);
  padding: 6px 16px; border-radius: 100px;
  width: -webkit-fit-content; width: fit-content; margin-bottom: 2.4rem;
  animation: fadeUp .9s cubic-bezier(.16,1,.3,1) .1s both;
}
.pip {
  width: 6px; height: 6px; border-radius: 50%;
  background: #FF7A00; box-shadow: 0 0 8px #FF7A00;
  animation: pip-blink 2.4s ease infinite;
}
@keyframes pip-blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

.hero-h {
  display: flex; flex-direction: column;
  font-size: clamp(3.8rem, 6.5vw, 7.5rem);
  font-weight: 900; line-height: .95;
  letter-spacing: -.05em; text-transform: uppercase;
  margin-bottom: 2rem;
  
}

.hero-sub {
  font-size: clamp(.9rem, 1.3vw, 1.1rem);
  color: #555; font-weight: 400;
  line-height: 1.6; margin-bottom: 2.8rem;
  max-width: 380px;
  animation: fadeUp .9s cubic-bezier(.16,1,.3,1) .4s both;
}

.hero-btns {
  display: flex; gap: 1rem; align-items: center;
  animation: fadeUp .9s cubic-bezier(.16,1,.3,1) .55s both;
}

.btn-fill {
  font-size: .88rem; font-weight: 700; letter-spacing: .02em;
  color: #000; background: #fff;
  padding: .9rem 2.2rem; border-radius: 100px;
  transition: all .3s cubic-bezier(.16,1,.3,1);
}
.btn-fill:hover {
  background: #FF7A00; color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(255,122,0,.4);
}
.btn-line {
  font-size: .88rem; font-weight: 600;
  color: #444; letter-spacing: .02em;
  transition: color .2s;
}
.btn-line:hover { color: #fff; }

.hero-stage {
  flex: 0 0 54%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}

.orb {
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%,
    rgba(255,160,40,.55) 0%,
    rgba(255,122,0,.45) 30%,
    rgba(200,60,0,.3) 60%,
    rgba(100,20,0,.1) 80%,
    transparent 100%
  );
  filter: blur(2px);
  animation: orb-breathe 5s ease-in-out infinite;
}
@keyframes orb-breathe {
  0%,100%{ transform: scale(1); opacity: .9; }
  50%    { transform: scale(1.04); opacity: 1; }
}

.orbit {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,122,0,.12);
  animation: orbit-pulse 4s ease-in-out infinite;
}
.orbit-a { width: 600px; height: 600px; animation-delay: 0s; }
.orbit-b { width: 700px; height: 700px; animation-delay: 1s; border-color: rgba(255,122,0,.06); }
@keyframes orbit-pulse {
  0%,100%{ opacity:.6; transform:scale(1); }
  50%    { opacity:.2; transform:scale(1.02); }
}

.hdev {
  position: relative; z-index: 10;
  width: 210px; height: 334px;
  background: linear-gradient(160deg, #232323 0%, #191919 25%, #121212 55%, #0c0c0c 100%);
  border-radius: 38px;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.11),
    inset 1px 0 0 rgba(255,255,255,.04),
    0 80px 160px rgba(0,0,0,1),
    0 40px 80px rgba(0,0,0,.85),
    0 16px 32px rgba(0,0,0,.7),
    0 0 0 1px rgba(0,0,0,.5),
    0 0 100px rgba(255,122,0,.08);
  animation: hdev-float 5s ease-in-out infinite;
}
@keyframes hdev-float {
  0%,100%{ transform: translateY(0) rotate(-.5deg); }
  50%    { transform: translateY(-12px) rotate(.5deg); }
}

.hdev-shine {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 38px;
  background: linear-gradient(155deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.02) 25%, transparent 50%);
  pointer-events: none;
}
.hdev-led {
  position: absolute; top: 15px; right: 15px;
  width: 7px; height: 7px; border-radius: 50%;
  background: #FF7A00;
  box-shadow: 0 0 10px #FF7A00, 0 0 20px rgba(255,122,0,.4);
  animation: pip-blink 2s ease infinite;
}
.hdev-screen {
  position: absolute;
  top: 30px; left: 14px; right: 14px; height: 178px;
  background: linear-gradient(135deg, #070505, #050404);
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.055);
  box-shadow: inset 0 3px 12px rgba(0,0,0,.9), 0 0 24px rgba(255,122,0,.05);
  padding: 11px; display: flex; flex-direction: column; gap: 2px;
  overflow: hidden; font-size: 8px; color: rgba(255,255,255,.6);
}
.hs-brand { font-size: 7px; font-weight: 900; letter-spacing: .28em; color: #FF7A00; }
.hs-brand em { font-style: normal; color: rgba(255,255,255,.2); }
.hs-time  { font-size: 7px; color: rgba(255,255,255,.22); }
.hs-sep   { height: 1px; background: rgba(255,255,255,.07); margin: 4px 0; }
.hs-row   { display: flex; align-items: center; gap: 5px; padding: 2px 0; opacity: .45; }
.hs-row.hi { opacity: 1; }
.hs-av {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,122,0,.15); border: 1px solid rgba(255,122,0,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 7px; font-weight: 700; color: #FF7A00; flex-shrink: 0;
}
.hs-av.dim { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); color: rgba(255,255,255,.3); }
.hs-name { font-size: 7px; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,.88); }
.hs-msg  { font-size: 7px; color: rgba(255,255,255,.32); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hs-pip  { width: 5px; height: 5px; border-radius: 50%; background: #FF7A00; flex-shrink: 0; margin-left: auto; }
.hs-footer { font-size: 6px; color: rgba(255,255,255,.18); text-align: center; margin-top: 2px; }
.hs-footer b { color: rgba(255,122,0,.5); }

.hdev-jog { position: absolute; right: -15px; top: 50%; transform: translateY(-50%); width: 16px; height: 58px; }
.hdev-jog-body {
  width: 11px; height: 52px;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(0,0,0,.55) 3px, rgba(0,0,0,.55) 4px),
    linear-gradient(180deg, #2a2a2a, #161616 50%, #2a2a2a);
  border-radius: 5px; border: 1px solid rgba(255,255,255,.10);
  box-shadow: -3px 0 8px rgba(0,0,0,.7), inset 1px 0 0 rgba(255,255,255,.07);
}

.hdev-panic {
  position: absolute; left: -10px; top: 37%; width: 8px; height: 30px;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 1px, transparent 5px),
    linear-gradient(180deg, #1e1e1e, #131313);
  border-radius: 3px; border: 1px solid rgba(255,255,255,.07);
  box-shadow: 2px 0 6px rgba(0,0,0,.6);
}

.hdev-btns { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.hdev-b {
  width: 20px; height: 8px;
  background: linear-gradient(180deg, #1c1c1c, #101010);
  border-radius: 3px; border: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 2px 5px rgba(0,0,0,.6);
}

.pill {
  position: absolute; z-index: 20;
  font-size: .6rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #FF7A00;
  background: rgba(0,0,0,.75);
  border: 1px solid rgba(255,122,0,.28);
  padding: 5px 12px; border-radius: 100px;
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  white-space: nowrap;
}
.p1 { top: 14%;  left: 3%;   animation: float-pill 4s ease-in-out infinite 0s; }
.p2 { top: 28%;  right: 3%;  animation: float-pill 4s ease-in-out infinite .7s; }
.p3 { bottom:30%; left: 2%;  animation: float-pill 4s ease-in-out infinite 1.4s; }
.p4 { bottom:18%; right: 4%; animation: float-pill 4s ease-in-out infinite 2.1s; }
@keyframes float-pill {
  0%,100%{ transform: translateY(0); }
  50%    { transform: translateY(-6px); }
}

.hero-cue {
  position: absolute; bottom: 2.5rem; left: 5%;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: .58rem; letter-spacing: .24em; text-transform: uppercase;
  color: #333; z-index: 3;
  animation: fadeUp .9s cubic-bezier(.16,1,.3,1) 1.2s both;
}
.cue-line {
  width: 1px; height: 50px;
  background: #222; overflow: hidden; position: relative;
}
.cue-line::after {
  content: ''; position: absolute;
  top: -100%; left: 0; width: 100%; height: 100%;
  background: #FF7A00;
  animation: cue-drip 1.9s ease-in-out infinite;
}
@keyframes cue-drip { 0%{top:-100%} 100%{top:200%} }

@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

.marquee-wrap {
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: .85rem 0; overflow: hidden;
  background: #0a0a0a;
}
.marquee-track {
  display: flex; gap: 2rem; align-items: center;
  width: max-content;
  animation: marquee-scroll 24s linear infinite;
}
.marquee-track span {
  font-size: .6rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: #444; white-space: nowrap;
}
.marquee-track i { color: #FF7A00; font-style: normal; font-size: .45rem; }
@keyframes marquee-scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.statement {
  min-height: 80vh; display: flex; align-items: center; justify-content: center;
  padding: 8rem 10%; text-align: center; position: relative; overflow: hidden;
}
.statement::before {
  content: ''; position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,122,0,.06) 0%, transparent 70%);
  left: 50%; top: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.st-inner { position: relative; z-index: 2; }
.st-lead { font-size: clamp(1rem,2vw,1.4rem); font-weight: 300; color: #555; margin-bottom: .4rem; }
.st-num  {
  font-size: clamp(9rem,22vw,22rem);
  font-weight: 900; line-height: .85;
  letter-spacing: -.06em; margin-bottom: -.3rem;
}
.st-mid  { font-size: clamp(1rem,2.5vw,2rem); font-weight: 300; color: #555; margin-bottom: 1.5rem; }
.st-q    { font-size: clamp(1.6rem,4vw,4.5rem); font-weight: 900; letter-spacing: -.035em; }

.story { position: relative; height: 550vh; }
.canvas {
  position: sticky; top: 0; height: 100vh; width: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  filter: blur(160px); opacity: 0;
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
  transition: opacity 1.2s, background 1.2s;
}

.dw {
  position: relative; z-index: 20;
  opacity: 0; transform: scale(.7) translateY(30px);
  transition: opacity 1s cubic-bezier(.16,1,.3,1), transform 1s cubic-bezier(.16,1,.3,1);
}
.dw.on { opacity: 1; transform: scale(1) translateY(0); }

.aura {
  position: absolute; border-radius: 50%;
  border: 1px solid transparent; left: 50%; top: 50%;
  transform: translate(-50%,-50%); pointer-events: none;
  opacity: 0; transition: border-color 1s, opacity 1s;
}
.a1 { width: 240px; height: 240px; }
.a2 { width: 340px; height: 340px; }

.dev {
  width: 192px; height: 308px;
  background: linear-gradient(160deg, #222 0%, #181818 28%, #111 58%, #0c0c0c 100%);
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.09);
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.11),
    inset 1px 0 0 rgba(255,255,255,.04),
    0 70px 140px rgba(0,0,0,1),
    0 35px 70px rgba(0,0,0,.85),
    0 14px 28px rgba(0,0,0,.7);
  transition: box-shadow .8s;
}
.dev.lit {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.11),
    0 0 80px rgba(255,122,0,.14),
    0 70px 140px rgba(0,0,0,1),
    0 35px 70px rgba(0,0,0,.85);
}
.dev-shine {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 36px;
  background: linear-gradient(155deg,rgba(255,255,255,.07) 0%,rgba(255,255,255,.02) 22%,transparent 45%);
  pointer-events: none;
}
.dev-led {
  position: absolute; top: 15px; right: 15px;
  width: 7px; height: 7px; border-radius: 50%;
  background: #333; transition: background .5s, box-shadow .5s;
}
.dev-led.lo { background: #FF7A00; box-shadow: 0 0 10px #FF7A00, 0 0 20px rgba(255,122,0,.4); }
.dev-led.lg { background: #00e676; box-shadow: 0 0 10px #00e676; }
.dev-led.lr { background: #ff3232; box-shadow: 0 0 10px #ff3232; animation: blink .7s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.dev-screen {
  position: absolute;
  top: 30px; left: 14px; right: 14px; height: 166px;
  background: #050404; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.055);
  box-shadow: inset 0 3px 12px rgba(0,0,0,.9);
  overflow: hidden;
}
.sc {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0; padding: 10px;
  opacity: 0; transform: scale(.97);
  transition: opacity .45s cubic-bezier(.16,1,.3,1), transform .45s cubic-bezier(.16,1,.3,1);
  display: flex; flex-direction: column;
  font-size: 8px; color: rgba(255,255,255,.65);
}
.sc.on { opacity: 1; transform: scale(1); }

.sc-boot { align-items: center; justify-content: center; gap: 5px; }
.boot-v  { font-size: 40px; font-weight: 900; color: #FF7A00; line-height: 1; letter-spacing: -.05em; }
.boot-n  { font-size: 8px; font-weight: 800; letter-spacing: .28em; color: rgba(255,255,255,.45); }
.boot-n em { font-style: normal; color: rgba(255,255,255,.18); }
.boot-bar { width: 58px; height: 2px; background: rgba(255,255,255,.07); border-radius: 2px; margin-top: 6px; overflow: hidden; }
.boot-fill { height: 100%; width: 0; background: #FF7A00; border-radius: 2px; transition: width .3s; }

.sm-hd  { display: flex; justify-content: space-between; font-size: 7px; color: rgba(255,255,255,.24); margin-bottom: 3px; }
.sm-sep { height: 1px; background: rgba(255,255,255,.07); margin: 3px 0; }
.sm-row { display: flex; align-items: center; gap: 5px; padding: 2.5px 0; opacity: .45; }
.sm-row.hi { opacity: 1; }
.sm-av  { width: 18px; height: 18px; border-radius: 50%; background: rgba(255,122,0,.14); border: 1px solid rgba(255,122,0,.25); display: flex; align-items: center; justify-content: center; font-size: 7px; font-weight: 700; color: #FF7A00; flex-shrink: 0; }
.sm-who { font-size: 7px; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,.88); }
.sm-wt  { font-size: 7px; color: rgba(255,255,255,.3); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sm-pip { width: 5px; height: 5px; border-radius: 50%; background: #FF7A00; margin-left: auto; flex-shrink: 0; }
.sm-ft  { font-size: 6px; color: rgba(255,255,255,.18); text-align: center; margin-top: 2px; }
.sm-ft b { color: rgba(255,122,0,.5); }

.sc-mus { padding: 8px 10px; justify-content: space-between; }
.mu-app    { font-size: 6px; letter-spacing: .15em; color: #1DB954; font-weight: 700; }
.mu-track  { font-size: 8px; font-weight: 700; color: rgba(255,255,255,.9); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mu-artist { font-size: 7px; color: rgba(255,255,255,.35); }
.mu-prog   { margin-top: 4px; }
.mu-bar    { height: 2px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; }
.mu-fill   { height: 100%; width: 36%; background: #FF7A00; border-radius: 2px; transition: width .25s linear; }
.mu-tt     { display: flex; justify-content: space-between; font-size: 6px; color: rgba(255,255,255,.24); margin-top: 2px; }
.mu-ctrl   { display: flex; justify-content: center; align-items: center; gap: 14px; font-size: 9px; color: rgba(255,255,255,.35); }
.mu-play   { font-size: 12px; color: #FF7A00; }
.mu-vol    { display: flex; align-items: center; gap: 5px; font-size: 6px; color: rgba(255,255,255,.24); }
.mu-viz    { display: flex; align-items: flex-end; gap: 2px; height: 14px; }

.sc-run  { padding: 8px 10px; justify-content: space-between; }
.ru-lbl  { font-size: 6px; letter-spacing: .15em; color: #FF7A00; font-weight: 700; }
.ru-bpm  { display: flex; align-items: baseline; gap: 3px; }
.ru-val  { font-size: 38px; font-weight: 900; color: #FF7A00; letter-spacing: -.04em; line-height: 1; }
.ru-unit { font-size: 9px; color: rgba(255,122,0,.5); font-weight: 700; }
.ru-sep  { height: 1px; background: rgba(255,255,255,.07); }
.ru-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.ru-s    { text-align: center; }
.ru-sv   { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.82); }
.ru-sl   { font-size: 5px; color: rgba(255,255,255,.28); letter-spacing: .1em; }
.ru-graph { display: flex; align-items: flex-end; gap: 2px; height: 22px; }

.dev-jog { position: absolute; right: -15px; top: 50%; transform: translateY(-50%); width: 16px; height: 54px; cursor: pointer; }
.dev-jog-k {
  width: 11px; height: 48px;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(0,0,0,.55) 3px, rgba(0,0,0,.55) 4px),
    linear-gradient(180deg, #2a2a2a, #161616 50%, #2a2a2a);
  border-radius: 5px; border: 1px solid rgba(255,255,255,.10);
  box-shadow: -3px 0 8px rgba(0,0,0,.7), inset 1px 0 0 rgba(255,255,255,.07);
  transition: transform .2s;
}
.dev-jog:hover .dev-jog-k { transform: scaleY(1.05); }

.dev-panic { position: absolute; left: -10px; top: 37%; width: 8px; height: 30px; }
.dev-panic-g {
  width: 100%; height: 100%;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0, rgba(255,255,255,.04) 1px, transparent 1px, transparent 5px),
    linear-gradient(180deg, #1e1e1e, #131313);
  border-radius: 3px; border: 1px solid rgba(255,255,255,.07);
  box-shadow: 2px 0 6px rgba(0,0,0,.6);
}

.dev-btns { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.dev-b { width: 20px; height: 8px; background: linear-gradient(180deg,#1c1c1c,#101010); border-radius: 3px; border: 1px solid rgba(255,255,255,.07); box-shadow: 0 2px 5px rgba(0,0,0,.6); cursor: pointer; transition: transform .1s; }
.dev-b:active { transform: translateY(1px); }
.dev-shadow { position: absolute; bottom: -34px; left: 50%; transform: translateX(-50%); width: 110px; height: 16px; background: #FF7A00; filter: blur(24px); opacity: 0; border-radius: 50%; transition: opacity 1s; }
.dw.on .dev-shadow { opacity: .18; }

.panels { position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; }
.panel {
  position: absolute; top: 50%; width: 36%; max-width: 420px;
  opacity: 0; pointer-events: none;
  transition: opacity .65s cubic-bezier(.16,1,.3,1), transform .65s cubic-bezier(.16,1,.3,1);
}
.pl { left: 4%;  transform: translateY(-50%) translateX(-20px); }
.pr { right: 4%; transform: translateY(-50%) translateX(20px); }
.panel.show { opacity: 1; pointer-events: auto; }
.pl.show { transform: translateY(-50%) translateX(0); }
.pr.show { transform: translateY(-50%) translateX(0); }

.p-ey { font-size: .6rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: #FF7A00; font-family: monospace; margin-bottom: 1.1rem; }
.p-ti { font-size: clamp(2rem,3.2vw,3.6rem); font-weight: 900; line-height: 1.02; letter-spacing: -.035em; text-transform: uppercase; margin-bottom: 1.2rem; }
.p-bd { font-size: .92rem; color: #555; line-height: 1.72; margin-bottom: 1.8rem; }
.p-cap { font-size: .62rem; color: #333; letter-spacing: .08em; border-top: 1px solid rgba(255,255,255,.07); padding-top: .9rem; }
.p-list { display: flex; flex-direction: column; gap: .8rem; }
.p-it { display: flex; gap: 1rem; align-items: flex-start; padding: .9rem 1rem; border: 1px solid rgba(255,255,255,.07); border-radius: 10px; background: rgba(255,255,255,.015); transition: border-color .3s, background .3s; }
.p-it:hover { border-color: rgba(255,122,0,.25); background: rgba(255,122,0,.05); }
.p-bar { width: 2px; min-height: 28px; background: #FF7A00; border-radius: 2px; flex-shrink: 0; }
.p-nm { font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .2rem; }
.p-ds { font-size: .8rem; color: #555; line-height: 1.5; }
.p-nums { display: flex; gap: 2.5rem; margin-bottom: 1.5rem; }
.p-nv { font-size: 3.5rem; font-weight: 900; letter-spacing: -.05em; line-height: 1; color: rgba(255,255,255,.75); }
.p-nv .accent { font-size: 3.5rem; }
.p-nl { font-size: .65rem; color: #555; text-transform: uppercase; letter-spacing: .1em; margin-top: .3rem; }

.jog-anim { display: flex; align-items: center; gap: 1.4rem; margin-top: 1.2rem; }
.ja-ring {
  width: 68px; height: 68px; border-radius: 50%;
  border: 2px solid rgba(255,122,0,.3);
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  background-image: repeating-conic-gradient(rgba(255,255,255,.055) 0deg 9deg, transparent 9deg 18deg);
  position: relative; animation: spin 3s linear infinite;
  box-shadow: 0 0 28px rgba(255,122,0,.14);
}
@keyframes spin { to{transform:rotate(360deg)} }
.ja-notch { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 10px; background: #FF7A00; border-radius: 2px; }
.ja-hints { display: flex; flex-direction: column; gap: .35rem; font-size: .78rem; color: #444; }
.ja-hints span { color: rgba(255,255,255,.55); }

.pdots { position: absolute; right: 2rem; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: .9rem; z-index: 30; }
.pdot { width: 6px; height: 6px; border-radius: 50%; background: #2a2a2a; cursor: pointer; transition: background .3s, transform .3s, box-shadow .3s; }
.pdot.on { background: #FF7A00; transform: scale(1.5); box-shadow: 0 0 8px #FF7A00; }

.scene-tag {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: .55rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: #333; border: 1px solid rgba(255,255,255,.07); padding: 4px 14px; border-radius: 100px;
  transition: color .4s, border-color .4s; z-index: 30;
}
.scene-tag.lit { color: #FF7A00; border-color: rgba(255,122,0,.22); }

.manifesto {
  min-height: 75vh; display: flex; align-items: center; justify-content: center;
  padding: 8rem 10%; text-align: center;
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative; overflow: hidden;
}
.manifesto::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255,122,0,.04) 0%, transparent 70%);
}
.mf-inner { position: relative; z-index: 2; }
.mf-pre { font-size: clamp(1rem,1.6vw,1.3rem); font-weight: 300; color: #444; margin-bottom: .6rem; }
.mf-big {
  font-size: clamp(3rem,7.5vw,9rem);
  font-weight: 900; line-height: 1.02; letter-spacing: -.045em;
  background: linear-gradient(145deg, #fff 40%, rgba(255,255,255,.35) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 1.5rem;
}
.mf-small { font-size: clamp(.85rem,1.2vw,1rem); color: #444; letter-spacing: .04em; }

.stats {
  padding: 6rem 10%;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: #080808;
}
.stats-inner { display: flex; align-items: center; justify-content: center; max-width: 1100px; margin: 0 auto; }
.stat { flex: 1; text-align: center; padding: 0 2rem; }
.stat-row { display: flex; align-items: baseline; justify-content: center; gap: .3rem; }
.stat-v { font-size: clamp(3.5rem,7vw,7rem); font-weight: 900; letter-spacing: -.05em; line-height: 1; }
.stat-u { font-size: clamp(1.4rem,2.5vw,2.5rem); font-weight: 800; letter-spacing: -.02em; }
.stat-l { font-size: .7rem; color: #444; text-transform: uppercase; letter-spacing: .12em; line-height: 1.4; margin-top: .6rem; }
.stat-sep { width: 1px; height: 80px; background: rgba(255,255,255,.07); flex-shrink: 0; }

.feats { padding: 8rem 10%; border-bottom: 1px solid rgba(255,255,255,.06); }
.feats-h {
  font-size: clamp(2.5rem,5vw,5.5rem); font-weight: 900;
  letter-spacing: -.04em; line-height: 1.05; text-transform: uppercase;
  margin-bottom: 4rem;
}

.feats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  overflow: hidden;
  counter-reset: feat;
}

.fc {
  padding: 2.8rem;
  background: #050505;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background .35s;
  counter-increment: feat;
}
.fc:hover { background: #0c0c0c; }

.fc::before {
  content: '0' counter(feat);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .22em;
  font-family: monospace;
  color: #2a2a2a;
  margin-bottom: 2rem;
  display: block;
  transition: color .3s;
}
.fc:hover::before { color: rgba(255,122,0,.5); }

.fc::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,122,0,.07) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.fc:hover::after { opacity: 1; }

.fc-icon {
  font-size: 2.4rem;
  color: #222;
  margin-bottom: 1.4rem;
  display: block;
  transition: color .3s, transform .35s cubic-bezier(.16,1,.3,1);
}
.fc:hover .fc-icon { color: #FF7A00; transform: scale(1.08); }
.fc-icon.accent { color: #FF7A00; }

.fc-name {
  font-size: .72rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: .6rem; color: #fff;
}
.fc-desc { font-size: .88rem; color: #444; line-height: 1.7; }

.fc-hl {
  grid-row: span 2;
  background: linear-gradient(160deg, rgba(255,122,0,.10) 0%, rgba(255,122,0,.03) 50%, #050505 100%);
  justify-content: flex-end;
  padding-bottom: 2.8rem;
}
.fc-hl::before { color: rgba(255,122,0,.35); }
.fc-hl:hover { background: linear-gradient(160deg, rgba(255,122,0,.15) 0%, rgba(255,122,0,.06) 50%, #0a0a0a 100%); }
.fc-hl .fc-icon { font-size: 3.4rem; color: #FF7A00; margin-top: auto; }
.fc-hl .fc-name { font-size: .85rem; color: #fff; }
.fc-hl .fc-desc { color: rgba(255,255,255,.45); }
.fc-hl .fc-icon.accent { color: #FF7A00; }

.fc-hl .top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF7A00 0%, rgba(255,122,0,.2) 100%);
}

.fc:last-child {
  grid-column: span 3;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  padding: 2.4rem 2.8rem;
}
.fc:last-child::before { margin-bottom: 0; flex-shrink: 0; }
.fc:last-child .fc-icon { font-size: 2.8rem; margin-bottom: 0; flex-shrink: 0; }
.fc:last-child .fc-content { display: flex; flex-direction: column; gap: .4rem; }
.fc:last-child .fc-name { margin-bottom: 0; font-size: .78rem; }
.fc:last-child .fc-desc { font-size: .92rem; }

.order { padding: 8rem 10%; position: relative; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.06); }
.order-bg { position: absolute; font-size: 28vw; font-weight: 900; color: rgba(255,122,0,.022); right: -5%; bottom: -5%; letter-spacing: -.06em; pointer-events: none; line-height: 1; }
.order-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.order-badge { display: inline-flex; align-items: center; gap: 9px; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: #444; border: 1px solid rgba(255,255,255,.07); padding: 6px 18px; border-radius: 100px; margin-bottom: 2.5rem; }
.order-h { font-size: clamp(3rem,7vw,8rem); font-weight: 900; line-height: 1.02; letter-spacing: -.045em; text-transform: uppercase; margin-bottom: 4rem; }
.eds { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 3.5rem; }
.ed { border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 2.2rem; position: relative; background: rgba(255,255,255,.012); transition: border-color .3s, transform .3s, background .3s; cursor: pointer; }
.ed:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.14); }
.ed-featured { border-color: rgba(255,122,0,.4); background: rgba(255,122,0,.06); transform: scale(1.02); }
.ed-featured:hover { transform: scale(1.02) translateY(-4px); }
.ed-badge { position: absolute; top: -11px; right: 1.2rem; background: #FF7A00; color: #000; font-size: .52rem; font-weight: 800; letter-spacing: .18em; padding: 3px 12px; border-radius: 100px; }
.ed-name { font-size: .65rem; font-weight: 700; letter-spacing: .2em; color: #444; margin-bottom: .4rem; }
.ed-price { font-size: 1rem; color: #444; margin-bottom: .2rem; }
.ed-price b { font-size: 2.5rem; font-weight: 900; letter-spacing: -.04em; color: #fff; }
.ed-par { font-size: .68rem; color: #FF7A00; font-weight: 700; margin-bottom: 1.5rem; }
.ed-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; font-size: .82rem; color: #555; margin-bottom: 2rem; }
.ed-list li::before { content: '— '; color: #FF7A00; }
.ed-btn { width: 100%; padding: .75rem; border-radius: 10px; font-size: .8rem; font-weight: 700; letter-spacing: .05em; cursor: pointer; border: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.07); color: #fff; transition: all .25s cubic-bezier(.16,1,.3,1); font-family: inherit; }
.ed-btn:hover { background: rgba(255,255,255,.13); }
.ed-btn-hl { background: #FF7A00; color: #fff; border-color: #FF7A00; }
.ed-btn-hl:hover { background: #ff8c00; box-shadow: 0 8px 32px rgba(255,122,0,.4); }
.order-cta { text-align: center; }
.btn-order { display: inline-block; font-size: 1rem; font-weight: 800; color: #000; background: #fff; padding: 1.1rem 4rem; border-radius: 100px; letter-spacing: .03em; transition: all .3s cubic-bezier(.16,1,.3,1); box-shadow: 0 0 60px rgba(255,255,255,.1); margin-bottom: 1.5rem; }
.btn-order:hover { background: #FF7A00; color: #fff; transform: translateY(-3px) scale(1.02); box-shadow: 0 0 90px rgba(255,122,0,.5); }
.order-note { font-size: .72rem; color: #444; letter-spacing: .05em; }

.footer { padding: 4rem 10%; border-top: 1px solid rgba(255,255,255,.06); }
.ft-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 3rem; margin-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.ft-logo { font-size: 1.2rem; font-weight: 900; letter-spacing: .15em; margin-bottom: .5rem; }
.ft-top > div > p { font-size: .78rem; color: #444; }
.ft-nav { display: flex; gap: 2.5rem; align-items: center; }
.ft-nav a { font-size: .78rem; color: #444; transition: color .2s; }
.ft-nav a:hover { color: #fff; }
.ft-bot { display: flex; justify-content: space-between; font-size: .65rem; color: #2a2a2a; }

.cur-dot {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 7px; height: 7px; border-radius: 50%;
  background: #FF7A00;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, opacity .2s;
  mix-blend-mode: normal;
}
.cur-ring {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,122,0,.5);
  transform: translate(-50%,-50%);
  transition: width .35s cubic-bezier(.16,1,.3,1), height .35s cubic-bezier(.16,1,.3,1), border-color .35s, opacity .3s;
}
.cur-ring.hover { width: 56px; height: 56px; border-color: rgba(255,122,0,.8); }
.cur-dot.click  { width: 12px; height: 12px; }
body.no-cursor .cur-dot,
body.no-cursor .cur-ring { opacity: 0; }

.loading {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99999;
  background: #000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  transition: opacity .7s cubic-bezier(.4,0,.2,1), visibility .7s;
}
.loading.out { opacity: 0; visibility: hidden; pointer-events: none; }
.ld-v {
  font-size: 8rem; font-weight: 900;
  color: #FF7A00; letter-spacing: -.06em; line-height: 1;
  animation: ld-pulse 1.2s ease-in-out infinite;
}
@keyframes ld-pulse { 0%,100%{opacity:.35;transform:scale(.95)} 50%{opacity:1;transform:scale(1)} }
.ld-name {
  font-size: .75rem; font-weight: 800; letter-spacing: .35em;
  color: rgba(255,255,255,.35);
}
.ld-name span { color: rgba(255,255,255,.15); }
.ld-bar { width: 120px; height: 1px; background: #111; overflow: hidden; }
.ld-fill { height: 100%; width: 0; background: #FF7A00; transition: width .1s linear; }
.ld-pct { font-size: .6rem; color: #333; letter-spacing: .1em; font-family: monospace; }

.sec-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .65rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: #555; border: 1px solid rgba(255,255,255,.08); padding: 6px 18px; border-radius: 100px;
  margin-bottom: 1.8rem;
}
.sec-h {
  font-size: clamp(2.2rem,4.5vw,5rem);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.05;
  text-transform: uppercase; margin-bottom: 3.5rem;
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

.how { padding: 8rem 10%; border-top: 1px solid rgba(255,255,255,.06); }
.how-inner { max-width: 1100px; margin: 0 auto; }
.steps {
  display: flex; align-items: flex-start; gap: 0;
}
.step {
  flex: 1; padding: 2.5rem; border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px; background: rgba(255,255,255,.015);
  transition: border-color .3s, background .3s, transform .3s;
}
.step:hover { border-color: rgba(255,122,0,.25); background: rgba(255,122,0,.04); transform: translateY(-4px); }
.step-num  { font-size: .6rem; font-weight: 700; letter-spacing: .2em; margin-bottom: 1.2rem; font-family: monospace; }
.step-icon { font-size: 2rem; color: #FF7A00; margin-bottom: 1rem; display: block; }
.step-name { font-size: 1.2rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: .8rem; }
.step-desc { font-size: .88rem; color: #555; line-height: 1.65; }
.step-arrow {
  flex: 0 0 auto; padding: 0 1.5rem;
  font-size: 1.5rem; color: rgba(255,122,0,.3);
  margin-top: 5rem;
}

.compare { padding: 8rem 10%; border-top: 1px solid rgba(255,255,255,.06); }
.cmp-inner { max-width: 1000px; margin: 0 auto; }
.cmp-table {
  border: 1px solid rgba(255,255,255,.07); border-radius: 16px; overflow: hidden;
}
.cmp-head {
  display: grid; grid-template-columns: 2fr 1.2fr 1fr 1fr;
  padding: .9rem 1.4rem;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.cmp-row {
  display: grid; grid-template-columns: 2fr 1.2fr 1fr 1fr;
  padding: .9rem 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .2s;
}
.cmp-row:last-child { border-bottom: none; }
.cmp-row:hover { background: rgba(255,255,255,.02); }
.cmp-col { font-size: .85rem; display: flex; align-items: center; }
.cmp-head .cmp-col { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #444; }
.cmp-feature { color: rgba(255,255,255,.7); }
.cmp-vibe { color: #fff; font-weight: 600; }
.cmp-head .cmp-vibe { color: #FF7A00; }
.yes { color: #FF7A00; font-size: 1.1rem; font-weight: 700; }
.no  { color: #2a2a2a; font-size: 1.1rem; font-weight: 700; }
.mid { color: #444;    font-size: 1.1rem; }

.press {
  padding: 3.5rem 10%; border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: #060606;
}
.press-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 4rem; }
.press-label { font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #333; white-space: nowrap; }
.press-logos { display: flex; gap: 3rem; align-items: center; flex-wrap: wrap; }
.press-logo {
  font-size: .9rem; font-weight: 900; letter-spacing: .2em;
  color: #222; transition: color .3s;
  cursor: default;
}
.press-logo:hover { color: #555; }

.faq { padding: 8rem 10%; border-top: 1px solid rgba(255,255,255,.06); }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.07); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 2rem; padding: 1.4rem 0;
  font-size: .95rem; font-weight: 600; color: #fff;
  background: none; border: none; cursor: pointer;
  font-family: inherit; text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: #FF7A00; }
.faq-icon {
  font-size: 1.4rem; color: #FF7A00; flex-shrink: 0;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .45s cubic-bezier(.16,1,.3,1), padding .45s;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.4rem; }
.faq-a p { font-size: .9rem; color: #555; line-height: 1.75; }

.waitlist {
  padding: 8rem 10%;
  border-top: 1px solid rgba(255,255,255,.06);
  background: #050505;
  position: relative; overflow: hidden;
}
.waitlist::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 70% at 70% 50%, rgba(255,122,0,.06) 0%, transparent 70%);
  pointer-events: none;
}
.wl-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 6rem; align-items: center;
  position: relative; z-index: 2;
}
.wl-left { flex: 1; }
.wl-h { font-size: clamp(2.5rem,4.5vw,5rem); font-weight: 900; letter-spacing: -.04em; text-transform: uppercase; margin: 1rem 0; }
.wl-sub { font-size: .92rem; color: #555; line-height: 1.7; max-width: 380px; }
.wl-right { flex: 1; }
.wl-form { display: flex; flex-direction: column; gap: 1rem; }
.wl-fields { display: flex; flex-direction: column; gap: .8rem; }
.wl-input {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px; padding: .9rem 1.2rem;
  font-size: .9rem; color: #fff; font-family: inherit;
  outline: none; transition: border-color .2s, background .2s;
}
.wl-input::placeholder { color: #333; }
.wl-input:focus { border-color: rgba(255,122,0,.4); background: rgba(255,122,0,.04); }
.wl-btn {
  background: #FF7A00; color: #fff;
  border: none; border-radius: 10px;
  padding: 1rem 2rem; font-size: .9rem; font-weight: 700;
  font-family: inherit; cursor: pointer;
  transition: all .3s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 0 40px rgba(255,122,0,.3);
}
.wl-btn:hover { background: #ff8c00; transform: translateY(-2px); box-shadow: 0 0 60px rgba(255,122,0,.5); }
.wl-note { font-size: .68rem; color: #333; letter-spacing: .05em; text-align: center; }
.wl-success {
  display: none; text-align: center; padding: 2.5rem;
  border: 1px solid rgba(255,122,0,.25); border-radius: 16px;
  background: rgba(255,122,0,.05);
}
.wl-success.show { display: block; animation: fadeUp .6s cubic-bezier(.16,1,.3,1) both; }
.wl-check { font-size: 2.5rem; color: #FF7A00; margin-bottom: .8rem; }
.wl-ok-h { font-size: 1.2rem; font-weight: 800; margin-bottom: .5rem; }
.wl-ok-s { font-size: .85rem; color: #555; }

.countdown {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: .8rem; margin-bottom: 3rem;
  padding: 1.5rem 2.5rem;
  border: 1px solid rgba(255,122,0,.2); border-radius: 16px;
  background: rgba(255,122,0,.05);
}
.cd-label { font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #555; }
.cd-clock { display: flex; align-items: center; gap: .5rem; }
.cd-unit  { text-align: center; min-width: 56px; }
.cd-val   { font-size: clamp(2rem,4vw,3.5rem); font-weight: 900; letter-spacing: -.04em; color: #FF7A00; line-height: 1; font-variant-numeric: tabular-nums; }
.cd-l     { font-size: .55rem; color: #444; letter-spacing: .1em; text-transform: uppercase; margin-top: .2rem; }
.cd-sep   { font-size: 2rem; color: #FF7A00; font-weight: 900; opacity: .5; margin-bottom: .5rem; animation: sep-blink 1s step-end infinite; }
@keyframes sep-blink { 0%,100%{opacity:.5} 50%{opacity:.1} }

.morph-wrap { position: relative; overflow: hidden; }
.morph-word {
  display: inline-block;
  transition: transform .5s cubic-bezier(.16,1,.3,1), opacity .5s;
  color: #FF7A00;
}
.morph-word.out-up   { transform: translateY(-110%); opacity: 0; }
.morph-word.in-down  { transform: translateY(110%);  opacity: 0; }

.mo-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9000;
  background: rgba(0,0,0,.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.mo-overlay.open { display: flex; }

.mo {
  background: #0c0c0c;
  border: 1px solid #1e1e1e;
  border-radius: 22px;
  width: 100%; max-width: 560px;
  max-height: 92vh; overflow-y: auto;
  transform: translateY(32px) scale(.97);
  transition: transform .45s cubic-bezier(.16,1,.3,1);
  scrollbar-width: none;
}
.mo::-webkit-scrollbar { display: none; }
.mo-overlay.open .mo { transform: translateY(0) scale(1); }

.mo-hd {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid #161616;
  position: sticky; top: 0; background: #0c0c0c; z-index: 2;
}
.mo-logo { font-size: .85rem; font-weight: 900; letter-spacing: .16em; white-space: nowrap; }
.mo-logo span { color: #FF7A00; }
.mo-bar { display: flex; align-items: center; flex: 1; justify-content: center; gap: .4rem; }
.mo-step-i {
  display: flex; align-items: center; gap: .4rem;
  font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #333; transition: color .3s;
}
.mo-step-i span {
  width: 20px; height: 20px; border-radius: 50%;
  background: #1a1a1a; border: 1px solid #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800; color: #333;
  transition: background .3s, border-color .3s, color .3s;
}
.mo-step-i.active { color: #fff; }
.mo-step-i.active span { background: #FF7A00; border-color: #FF7A00; color: #000; }
.mo-step-i.done span { background: #1a1a1a; border-color: #FF7A00; color: #FF7A00; }
.mo-step-line { flex: 1; height: 1px; background: #1e1e1e; max-width: 32px; }
.mo-close {
  background: none; border: none; color: #444;
  font-size: 1rem; cursor: pointer; padding: .3rem .5rem;
  transition: color .2s; line-height: 1;
}
.mo-close:hover { color: #fff; }

.mo-body { padding: 2rem 2rem 1.5rem; }
.mo-hide { display: none !important; }
.mo-h { font-size: 1.4rem; font-weight: 900; letter-spacing: -.03em; margin-bottom: 1.5rem; }

.mo-eds { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; margin-bottom: 1.6rem; }
.mo-ed {
  border: 1px solid #1e1e1e; border-radius: 12px;
  padding: 1rem .9rem; cursor: pointer; position: relative;
  background: rgba(255,255,255,.01);
  transition: border-color .25s, background .25s, transform .25s;
}
.mo-ed:hover { border-color: #2e2e2e; transform: translateY(-2px); }
.mo-ed-sel { border-color: #FF7A00 !important; background: rgba(255,122,0,.07) !important; }
.mo-ed-badge {
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  background: #FF7A00; color: #000; font-size: .45rem; font-weight: 800;
  letter-spacing: .14em; padding: 2px 8px; border-radius: 100px; white-space: nowrap;
}
.mo-ed-name { font-size: .65rem; font-weight: 700; letter-spacing: .14em; color: #555; margin-bottom: .3rem; }
.mo-ed-price { font-size: 1.1rem; font-weight: 900; letter-spacing: -.03em; }
.mo-ed-par { font-size: .62rem; color: #444; margin-top: .15rem; }

.mo-summary { background: #0f0f0f; border: 1px solid #1a1a1a; border-radius: 12px; padding: 1.2rem 1.4rem; margin-bottom: 1rem; }
.mo-sr { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; padding: .35rem 0; border-bottom: 1px solid #141414; }
.mo-sr:last-child { border: none; }
.mo-sr span { color: #555; }
.mo-sr-total { padding-top: .6rem; margin-top: .2rem; border-top: 1px solid #1e1e1e; border-bottom: none; }
.mo-sr-total span { color: #fff; font-weight: 700; }
.mo-sr-total b { font-size: 1.2rem; font-weight: 900; letter-spacing: -.02em; }
.mo-sr-inst { font-size: .72rem; color: #FF7A00; text-align: right; margin-top: .4rem; }

.mo-guard { font-size: .68rem; color: #333; text-align: center; margin-bottom: 1.2rem; }

.mo-btn-next {
  width: 100%; padding: .95rem; background: #FF7A00; color: #fff;
  border: none; border-radius: 10px; font-size: .9rem; font-weight: 800;
  letter-spacing: .04em; cursor: pointer; font-family: inherit;
  transition: all .25s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 0 30px rgba(255,122,0,.3);
}
.mo-btn-next:hover { background: #ff8c00; transform: translateY(-1px); box-shadow: 0 0 50px rgba(255,122,0,.5); }
.mo-btn-next:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.mo-btn-back {
  padding: .9rem 1.4rem; background: none; color: #444;
  border: 1px solid #1e1e1e; border-radius: 10px;
  font-size: .85rem; font-weight: 600; cursor: pointer; font-family: inherit;
  transition: all .2s;
}
.mo-btn-back:hover { border-color: #333; color: #fff; }
.mo-btns { display: flex; gap: .8rem; align-items: center; }
.mo-btns .mo-btn-next { flex: 1; }

.mo-form { display: flex; flex-direction: column; gap: .85rem; }
.mo-2col { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.mo-field { display: flex; flex-direction: column; gap: .4rem; }
.mo-field label { font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #444; }
.mo-field input, .mo-select {
  background: rgba(255,255,255,.04); border: 1px solid #1e1e1e;
  border-radius: 8px; padding: .75rem 1rem;
  font-size: .9rem; color: #fff; font-family: inherit;
  outline: none; transition: border-color .2s, background .2s;
  width: 100%;
}
.mo-field input::placeholder { color: #2a2a2a; }
.mo-field input:focus { border-color: rgba(255,122,0,.4); background: rgba(255,122,0,.04); }
.mo-select { cursor: pointer; appearance: none; -webkit-appearance: none; }
.mo-select option { background: #111; }

.mo-tabs { display: flex; gap: .5rem; margin-bottom: 1.5rem; }
.mo-tab {
  flex: 1; padding: .7rem; background: rgba(255,255,255,.04);
  border: 1px solid #1e1e1e; border-radius: 8px;
  font-size: .8rem; font-weight: 700; color: #444;
  cursor: pointer; font-family: inherit;
  transition: all .25s;
}
.mo-tab.active { background: rgba(255,122,0,.1); border-color: #FF7A00; color: #FF7A00; }

.pix-wrap { display: flex; flex-direction: column; align-items: center; gap: .8rem; padding: .5rem 0 1rem; }
.pix-disc { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #FF7A00; background: rgba(255,122,0,.1); border: 1px solid rgba(255,122,0,.2); padding: 4px 14px; border-radius: 100px; }
.pix-price { font-size: 2.4rem; font-weight: 900; letter-spacing: -.04em; color: #FF7A00; }
.pix-sub { font-size: .75rem; color: #444; }
.pix-qr {
  width: 160px; height: 160px;
  background: #fff; border-radius: 10px; padding: 10px;
  display: grid; grid-template-columns: repeat(21,1fr);
  gap: 1px; overflow: hidden;
}
.pix-cell { border-radius: 1px; }
.pix-copy {
  background: #1a1a1a; border: 1px solid #2a2a2a;
  border-radius: 8px; padding: .65rem 1.5rem;
  font-size: .8rem; font-weight: 700; color: #fff;
  cursor: pointer; font-family: inherit; transition: all .2s;
}
.pix-copy:hover { border-color: #FF7A00; color: #FF7A00; }
.pix-timer { font-size: .7rem; color: #333; font-variant-numeric: tabular-nums; }

.card-scene { perspective: 1000px; margin: 0 auto 1.5rem; width: 300px; height: 180px; }
.card-inner  { width: 100%; height: 100%; position: relative; transform-style: preserve-3d; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.card-inner.flipped { transform: rotateY(180deg); }
.card-face   { position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: 14px; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.card-front  {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.4rem 1.6rem;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.card-back   { background: linear-gradient(135deg, #141428, #1a1a3e); transform: rotateY(180deg); border: 1px solid rgba(255,255,255,.08); overflow: hidden; }
.card-top    { display: flex; justify-content: space-between; align-items: center; }
.card-chip   { width: 32px; height: 24px; background: linear-gradient(135deg, #d4af37, #b8962e); border-radius: 4px; }
.card-brand-lbl { font-size: .85rem; font-weight: 900; letter-spacing: .1em; color: rgba(255,255,255,.8); font-style: italic; }
.card-num-disp { font-size: 1.1rem; font-weight: 700; letter-spacing: .2em; color: rgba(255,255,255,.9); font-variant-numeric: tabular-nums; }
.card-bot-row { display: flex; gap: 2rem; }
.card-lbl  { font-size: .5rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .25rem; }
.card-val  { font-size: .75rem; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,.85); }
.card-magstripe { height: 44px; background: #111; margin-top: 2rem; }
.card-cvv-row { display: flex; flex-direction: column; align-items: flex-end; padding: .8rem 1.4rem; }
.card-cvv-strip { width: 100%; height: 32px; background: #fff; border-radius: 3px; display: flex; align-items: center; justify-content: flex-end; padding-right: .6rem; }
.card-cvv-strip span { font-size: .85rem; font-weight: 700; color: #000; letter-spacing: .14em; }

.suc-wrap { display: flex; flex-direction: column; align-items: center; text-align: center; padding: .5rem 0 .5rem; gap: 1rem; }
.suc-ring { width: 80px; height: 80px; border-radius: 50%; background: rgba(255,122,0,.12); border: 2px solid #FF7A00; display: flex; align-items: center; justify-content: center; animation: suc-pop .6s cubic-bezier(.16,1,.3,1) both; }
@keyframes suc-pop { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.suc-check { font-size: 2rem; color: #FF7A00; animation: suc-pop .6s cubic-bezier(.16,1,.3,1) .15s both; }
.suc-h { font-size: 1.6rem; font-weight: 900; letter-spacing: -.03em; }
.suc-code { font-size: .7rem; color: #444; letter-spacing: .1em; font-family: monospace; }
.suc-p { font-size: .88rem; color: #555; line-height: 1.7; max-width: 380px; }
.suc-info { width: 100%; background: #0f0f0f; border: 1px solid #1a1a1a; border-radius: 12px; padding: 1rem 1.4rem; }
.suc-row { display: flex; justify-content: space-between; font-size: .85rem; padding: .35rem 0; border-bottom: 1px solid #141414; }
.suc-row:last-child { border: none; }
.suc-row span { color: #555; }
.suc-row b { font-weight: 700; }

@media (max-width: 1100px) {
  .hero-copy { padding: 8rem 3rem 6rem 4rem; }
  .feats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .nav { padding: 1.2rem 2rem; }
  .nav-links { display: none; }
  .hero-inner { flex-direction: column-reverse; }
  .hero-copy { flex: none; padding: 2rem 2rem 4rem; }
  .hero-stage { flex: none; min-height: 60vw; }
  .orb { width: 380px; height: 380px; }
  .orbit-a { width: 440px; height: 440px; }
  .orbit-b { width: 520px; height: 520px; }
  .panel { width: 46%; }
  .p-ti { font-size: clamp(1.8rem,5vw,2.8rem); }
  .eds { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .ed-featured { transform: none; }
  .stats-inner { flex-wrap: wrap; }
  .stat { flex: 0 0 50%; margin-bottom: 2rem; }
  .stat-sep { display: none; }
  .ft-top { flex-direction: column; gap: 2rem; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .wl-inner { flex-direction: column; gap: 3rem; }
  .press-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .cmp-head, .cmp-row { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .mo-eds { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hdev { width: 160px; height: 255px; border-radius: 28px; }
  .orb { width: 280px; height: 280px; }
  .panel { width: 96%; left: 2%; right: 2%; top: auto; bottom: 0; transform: none; background: linear-gradient(0deg, rgba(0,0,0,.96) 80%, transparent); padding: 1rem 1.2rem 1.8rem; }
  .pl.show, .pr.show { transform: none; }
  .p-list { display: none; }
  .p-nums { display: none; }
  .jog-anim { display: none; }
  .pdots { right: .6rem; }
  .feats-grid { grid-template-columns: 1fr; }
  .fc-hl { grid-row: auto; }
  .fc:last-child { grid-column: auto; flex-direction: column; }
  .fc:last-child .fc-content { display: block; }
  .hero-h { font-size: clamp(3rem,11vw,5rem); }
  .cmp-head, .cmp-row { grid-template-columns: 1.6fr 1fr 1fr 1fr; font-size: .72rem; }
  .cmp-col { font-size: .72rem; padding: .2rem 0; }
  .mo-2col { grid-template-columns: 1fr; }
  .card-scene { width: 100%; height: 160px; }
  .cd-val { font-size: 2.2rem; }
  .cd-unit { min-width: 44px; }
  .cd-sep { font-size: 1.5rem; }
  .countdown { padding: 1rem 1.5rem; }
  .mo-body { padding: 1.5rem 1.2rem 1.2rem; }
}
