/* ============================================================
   AUŠRA — dawn-themed marketing site
   ============================================================ */

:root {
  --bg: #06070d;
  --bg-2: #0a0c16;
  --bg-3: #10121f;
  --ink: #eef0fa;
  --ink-dim: #a8adc4;
  --ink-faint: #6b7090;
  --line: rgba(255, 255, 255, 0.08);
  --amber: #ffb36b;
  --rose: #ff5e8a;
  --violet: #7b5cff;
  --teal: #4dd6c1;
  --grad: linear-gradient(100deg, var(--amber) 0%, var(--rose) 45%, var(--violet) 100%);
  --glass: rgba(16, 18, 31, 0.55);
  --radius: 20px;
  --font-display: "Fraunces", Georgia, serif;
  --font-ui: "Sora", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  /* looping demos add/remove nodes; without this, scroll anchoring yanks the viewport */
  overflow-anchor: none;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* film grain */
.grain {
  pointer-events: none;
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.035;
  animation: grain 8s steps(10) infinite;
  z-index: 9999;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  20% { transform: translate(-2%,2%); }
  40% { transform: translate(2%,-1%); }
  60% { transform: translate(-1%,-2%); }
  80% { transform: translate(1%,2%); }
}

.container { width: min(1180px, 92vw); margin: 0 auto; }
.section { padding: clamp(80px, 11vw, 150px) 0; position: relative; }

/* ---------- typography ---------- */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.h2 em, .hero-title em, .cta-title em { font-style: italic; }
.section-sub {
  color: var(--ink-dim);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 640px;
  margin-bottom: 56px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 600; font-size: 15px;
  padding: 12px 22px; border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-solid {
  background: var(--grad); color: #14060b;
  box-shadow: 0 8px 30px rgba(255, 94, 138, 0.35);
}
.btn-solid:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 14px 44px rgba(255, 94, 138, 0.5); }
.btn-ghost { color: var(--ink-dim); }
.btn-ghost:hover { color: var(--ink); }
.btn-glass {
  background: rgba(255,255,255,0.06); color: var(--ink);
  border-color: var(--line); backdrop-filter: blur(12px);
}
.btn-glass:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-mini {
  padding: 7px 14px; font-size: 12.5px;
  background: var(--grad); color: #14060b; border-radius: 8px;
  opacity: .35; transition: opacity .4s;
}
.btn-mini.ready { opacity: 1; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 7, 13, 0.72);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: min(1280px, 94vw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 30px; height: 30px; }
.logo-word {
  font-family: var(--font-display); font-size: 24px; font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 14.5px; color: var(--ink-dim);
  transition: color .2s;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--grad); border-radius: 2px;
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; gap: 8px; align-items: center; }

.nav-burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-burger span { width: 24px; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s; }
.nav-mobile {
  display: none; flex-direction: column; gap: 18px;
  padding: 20px 5vw 30px;
  background: rgba(6,7,13,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-mobile a { font-size: 17px; color: var(--ink-dim); }
.nav-mobile .btn { justify-content: center; color: #14060b; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media video {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.15);
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 110%, rgba(123, 92, 255, 0.25), transparent 60%),
    linear-gradient(180deg, rgba(6,7,13,0.72) 0%, rgba(6,7,13,0.45) 45%, rgba(6,7,13,0.94) 100%);
}
.hero-inner {
  width: min(1180px, 92vw); margin: 0 auto;
  padding-top: 120px; text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em;
  color: var(--ink-dim);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 18px; margin-bottom: 34px;
  background: rgba(255,255,255,0.04); backdrop-filter: blur(8px);
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(77, 214, 193, 0.7);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(77,214,193,0.6); }
  70% { box-shadow: 0 0 0 9px rgba(77,214,193,0); }
  100% { box-shadow: 0 0 0 0 rgba(77,214,193,0); }
}
.hero-title {
  font-family: var(--font-display); font-weight: 350;
  font-size: clamp(44px, 7.4vw, 96px);
  line-height: 1.04; letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.hero-title .line { display: block; }
.hero-sub {
  color: var(--ink-dim); font-size: clamp(16px, 1.8vw, 20px);
  max-width: 680px; margin: 0 auto 40px;
}
.channel-rotator {
  display: inline-block; min-width: 96px;
  font-weight: 700; color: var(--ink);
}
#channelWord {
  display: inline-block;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transition: opacity .3s, transform .3s;
}
#channelWord.swap { opacity: 0; transform: translateY(8px); }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex; justify-content: center; gap: clamp(24px, 5vw, 70px);
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 34px;
  width: min(880px, 100%); margin: 0 auto;
}
.hstat { text-align: center; }
.hstat strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px); font-weight: 500;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hstat span { font-size: 13px; color: var(--ink-faint); }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid var(--ink-faint); border-radius: 14px;
}
.scroll-cue span {
  position: absolute; top: 8px; left: 50%; margin-left: -2px;
  width: 4px; height: 8px; border-radius: 4px; background: var(--amber);
  animation: cue 1.8s infinite;
}
@keyframes cue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden; padding: 18px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; align-items: center; gap: 38px;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-faint); white-space: nowrap;
}
.marquee-track i { color: var(--rose); font-style: normal; font-size: 11px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- problem ---------- */
.problem { background: var(--bg); }
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-bottom: 70px;
}
.pcard {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 30px;
  background: linear-gradient(170deg, var(--bg-3), var(--bg-2));
  transition: transform .35s ease, border-color .35s ease;
  position: relative; overflow: hidden;
}
.pcard::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px 200px at 20% -10%, rgba(255, 94, 138, 0.13), transparent 70%);
  opacity: 0; transition: opacity .4s;
}
.pcard:hover { transform: translateY(-6px); border-color: rgba(255, 94, 138, 0.35); }
.pcard:hover::before { opacity: 1; }
.pcard-num {
  font-family: var(--font-display); font-size: clamp(44px, 4.6vw, 64px);
  font-weight: 500; line-height: 1; margin-bottom: 18px;
}
.pcard-num small { font-size: 0.42em; }
.pcard h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.pcard p { color: var(--ink-dim); font-size: 14.5px; }

.problem-photo {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 0;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
}
.problem-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.problem-photo figcaption {
  background: var(--bg-3); padding: clamp(28px, 4vw, 56px);
  display: flex; flex-direction: column; justify-content: center; gap: 12px;
  color: var(--ink-dim); font-size: 16px; line-height: 1.7;
}
.problem-photo strong {
  color: var(--ink); font-family: var(--font-display);
  font-weight: 500; font-size: clamp(22px, 2.2vw, 28px); line-height: 1.25;
}

/* ---------- how / steps ---------- */
.how { background: var(--bg-2); }
.step {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(36px, 6vw, 90px); align-items: center;
  padding: clamp(48px, 6vw, 90px) 0;
}
.step + .step { border-top: 1px dashed var(--line); }
.step-flip .step-copy { order: 2; }
.step-flip .step-visual { order: 1; }
.step-num {
  font-family: var(--font-mono); font-size: 14px; letter-spacing: .3em;
  color: var(--rose); margin-bottom: 14px;
}
.step-copy h3 {
  font-family: var(--font-display); font-weight: 450;
  font-size: clamp(26px, 3.1vw, 40px); line-height: 1.15; margin-bottom: 16px;
}
.step-copy p { color: var(--ink-dim); margin-bottom: 22px; }
.step-copy p em { color: var(--ink); font-style: italic; }
.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li {
  padding-left: 30px; position: relative; color: var(--ink-dim); font-size: 15px;
}
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 20px; height: 20px; border-radius: 6px;
  background: rgba(77, 214, 193, 0.15); color: var(--teal);
  font-size: 12px; display: grid; place-items: center; font-weight: 700;
}

/* orbit (step 1) */
.orbit-stage {
  position: relative; aspect-ratio: 1; max-width: 460px; margin: 0 auto;
  display: grid; place-items: center;
}
.orbit-rings i {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid var(--line);
}
.orbit-rings i:nth-child(1) { inset: 12%; }
.orbit-rings i:nth-child(2) { inset: 26%; border-style: dashed; opacity: .7; }
.orbit-rings i:nth-child(3) { inset: 0; opacity: .5; }
.orbit-center {
  width: 96px; height: 96px; border-radius: 28px;
  background: linear-gradient(160deg, var(--bg-3), #1a1530);
  border: 1px solid rgba(123, 92, 255, 0.4);
  display: grid; place-items: center;
  box-shadow: 0 0 70px rgba(123, 92, 255, 0.35);
  z-index: 2;
}
.orbit-center svg { width: 46px; height: 46px; }
.orbit {
  position: absolute; inset: 0;
  animation: spin 26s linear infinite;
}
.orbit-chip {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  background: var(--glass); border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  border-radius: 999px; padding: 9px 16px;
  font-size: 13.5px; font-weight: 600; white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
  animation: spin-rev 26s linear infinite;
}
.orbit-a { inset: 12%; animation-delay: 0s; }
.orbit-b { inset: 12%; animation-delay: -5.2s; }
.orbit-c { inset: 12%; animation-delay: -10.4s; }
.orbit-d { inset: 12%; animation-delay: -15.6s; }
.orbit-e { inset: 12%; animation-delay: -20.8s; }
.orbit-b .orbit-chip { animation-delay: -5.2s; }
.orbit-c .orbit-chip { animation-delay: -10.4s; }
.orbit-d .orbit-chip { animation-delay: -15.6s; }
.orbit-e .orbit-chip { animation-delay: -20.8s; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-rev { from { transform: translate(-50%,-50%) rotate(0); } to { transform: translate(-50%,-50%) rotate(-360deg); } }

/* phone chat (step 2) */
.phone {
  width: min(380px, 100%); margin: 0 auto;
  border-radius: 34px; border: 1px solid var(--line);
  background: linear-gradient(180deg, #0d0f1c, #090a13);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6), 0 0 80px rgba(255, 94, 138, 0.08);
  overflow: hidden;
}
.phone-top {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.phone-avatar {
  width: 38px; height: 38px; border-radius: 12px;
  background: #1a1530; display: grid; place-items: center;
  border: 1px solid rgba(123,92,255,.4);
}
.phone-avatar svg { width: 20px; height: 20px; }
.phone-top strong { display: block; font-size: 14.5px; }
.phone-top span { font-size: 11.5px; color: var(--ink-faint); }
.phone-chat {
  height: 360px; padding: 18px; display: flex; flex-direction: column; gap: 10px;
  overflow: hidden; justify-content: flex-end;
}
.bubble {
  max-width: 82%; padding: 10px 14px; border-radius: 16px;
  font-size: 13.8px; line-height: 1.5;
  opacity: 0; transform: translateY(10px) scale(.97);
  animation: bubble-in .45s cubic-bezier(.2,.9,.3,1.2) forwards;
}
@keyframes bubble-in { to { opacity: 1; transform: none; } }
.bubble.bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.07); border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}
.bubble.user {
  align-self: flex-end;
  background: linear-gradient(120deg, rgba(255,179,107,.9), rgba(255,94,138,.9));
  color: #190711; font-weight: 500;
  border-bottom-right-radius: 4px;
}
.bubble.typing { padding: 14px 18px; }
.bubble.typing i {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink-dim); margin-right: 4px;
  animation: blink 1s infinite;
}
.bubble.typing i:nth-child(2) { animation-delay: .15s; }
.bubble.typing i:nth-child(3) { animation-delay: .3s; margin-right: 0; }
@keyframes blink { 0%,100% { opacity: .25; } 50% { opacity: 1; } }
.bubble .infer {
  display: block; margin-top: 6px;
  font-family: var(--font-mono); font-size: 10.5px; color: var(--teal);
}
.phone-meter {
  border-top: 1px solid var(--line); padding: 13px 20px;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-faint);
  display: flex; gap: 8px; justify-content: center;
  background: rgba(255,255,255,0.02);
}
.meter-sep { opacity: .5; }

/* CIOMS (step 3) */
.cioms {
  border-radius: var(--radius); border: 1px solid var(--line);
  background: linear-gradient(180deg, #0e101d, #0a0b14);
  box-shadow: 0 40px 90px rgba(0,0,0,0.55), 0 0 80px rgba(123,92,255,0.08);
  overflow: hidden; max-width: 560px; margin: 0 auto;
}
.cioms-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 22px; border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.cioms-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--ink-dim); }
.cioms-badge {
  font-family: var(--font-mono); font-size: 10.5px; padding: 4px 10px; border-radius: 999px;
  background: rgba(255,179,107,.12); color: var(--amber); border: 1px solid rgba(255,179,107,.3);
  transition: all .4s;
}
.cioms-badge.done { background: rgba(77,214,193,.12); color: var(--teal); border-color: rgba(77,214,193,.35); }
.cioms-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line);
}
.cfield { background: #0c0e19; padding: 13px 18px; min-height: 64px; }
.cfield label {
  display: block; font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 5px;
}
.cfield .cval { font-size: 13.5px; color: var(--ink); }
.cfield .cval::after {
  content: ""; display: inline-block; width: 8px; height: 15px;
  background: var(--amber); margin-left: 2px; vertical-align: text-bottom;
  opacity: 0;
}
.cfield.filling .cval::after { opacity: 1; animation: blink .7s infinite; }
.cfield.done { position: relative; }
.cfield.done::after {
  content: "✓"; position: absolute; top: 12px; right: 14px;
  font-size: 11px; color: var(--teal); font-weight: 700;
}
.cioms-bar { height: 3px; background: rgba(255,255,255,0.06); }
.cioms-bar-fill { height: 100%; width: 0%; background: var(--grad); transition: width .5s ease; }
.cioms-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
}
.cioms-foot span { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-faint); }

/* ---------- platform ---------- */
.platform { overflow: hidden; }
.platform-media { position: absolute; inset: 0; z-index: -2; }
.platform-media video { width: 100%; height: 100%; object-fit: cover; }
.platform-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(6,7,13,0.82) 30%, rgba(6,7,13,0.82) 70%, var(--bg) 100%);
}
.platform .container { position: relative; }

.dash {
  border-radius: 18px; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10, 12, 22, 0.82); backdrop-filter: blur(16px);
  overflow: hidden;
  box-shadow: 0 60px 130px rgba(0,0,0,0.65), 0 0 120px rgba(123, 92, 255, 0.12);
}
.dash-titlebar {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 18px; border-bottom: 1px solid var(--line);
}
.dash-titlebar i { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,0.14); }
.dash-titlebar i:nth-child(1) { background: #ff5f57; }
.dash-titlebar i:nth-child(2) { background: #febc2e; }
.dash-titlebar i:nth-child(3) { background: #28c840; }
.dash-titlebar span {
  margin-left: 12px; font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-faint);
}
.dash-body { display: grid; grid-template-columns: 215px 1fr; }
.dash-side { border-right: 1px solid var(--line); padding: 18px 0; }
.dash-side-item {
  padding: 11px 22px; font-size: 13.5px; color: var(--ink-faint); cursor: default;
}
.dash-side-item.active {
  color: var(--ink);
  background: linear-gradient(90deg, rgba(255,94,138,0.14), transparent);
  border-left: 2px solid var(--rose);
}
.dash-main { padding: 22px; }
.dash-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
.kpi {
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px;
  background: rgba(255,255,255,0.02);
}
.kpi span { display: block; font-size: 11px; color: var(--ink-faint); margin-bottom: 4px; }
.kpi strong { font-family: var(--font-display); font-size: 26px; font-weight: 500; }
.kpi em { display: block; font-style: normal; font-size: 10.5px; margin-top: 3px; }
.kpi .up { color: var(--teal); }
.dash-rows { display: grid; gap: 8px; }
.drow {
  display: grid; grid-template-columns: 14px 130px 1fr auto auto;
  gap: 14px; align-items: center;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px;
  font-size: 13px; background: rgba(255,255,255,0.015);
  transition: background .25s, transform .25s;
}
.drow:hover { background: rgba(255,255,255,0.05); transform: translateX(4px); }
.drow-id { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-dim); }
.drow-t { font-size: 11px; color: var(--ink-faint); }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-green { background: #3ddc97; box-shadow: 0 0 10px rgba(61,220,151,.8); }
.dot-amber { background: var(--amber); box-shadow: 0 0 10px rgba(255,179,107,.8); }
.dot-red { background: #ff5e5e; box-shadow: 0 0 10px rgba(255,94,94,.8); }
.dot-blue { background: #5ea8ff; box-shadow: 0 0 10px rgba(94,168,255,.8); }
.tag {
  font-family: var(--font-mono); font-size: 10px; padding: 4px 9px; border-radius: 999px;
  white-space: nowrap;
}
.tag-green { background: rgba(61,220,151,.12); color: #3ddc97; }
.tag-amber { background: rgba(255,179,107,.12); color: var(--amber); }
.tag-red { background: rgba(255,94,94,.12); color: #ff7a7a; }
.tag-blue { background: rgba(94,168,255,.12); color: #7db5ff; }

/* ---------- features ---------- */
.features { background: var(--bg-2); }
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 56px;
}
.fcard {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; background: var(--bg-3);
  position: relative; overflow: hidden;
  transition: transform .35s ease, border-color .35s ease;
}
.fcard::after {
  content: ""; position: absolute; inset: auto -40% -60% -40%; height: 70%;
  background: radial-gradient(closest-side, rgba(123,92,255,.18), transparent);
  opacity: 0; transition: opacity .4s;
}
.fcard:hover { transform: translateY(-6px); border-color: rgba(123,92,255,.4); }
.fcard:hover::after { opacity: 1; }
.fcard-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 23px; margin-bottom: 20px;
}
.fcard h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.fcard p { color: var(--ink-dim); font-size: 14.5px; }

/* ---------- science ---------- */
.science { background: var(--bg); }
.science-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.science-media { position: sticky; top: 110px; }
.science-media video {
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
  aspect-ratio: 4 / 5; object-fit: cover; width: 100%;
}
.science-copy p { color: var(--ink-dim); margin-bottom: 28px; max-width: 560px; }
.science-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.science-badges span {
  font-family: var(--font-mono); font-size: 11.5px;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px;
  color: var(--ink-dim); background: rgba(255,255,255,0.03);
  transition: border-color .25s, color .25s;
}
.science-badges span:hover { border-color: var(--amber); color: var(--amber); }
.science-photo img {
  border-radius: var(--radius); border: 1px solid var(--line);
  aspect-ratio: 16 / 9; object-fit: cover; width: 100%;
}

/* ---------- statband ---------- */
.statband {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(60% 120% at 50% 0%, rgba(123,92,255,0.12), transparent),
    var(--bg-2);
  padding: clamp(56px, 7vw, 90px) 0;
}
.statband-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.sb strong {
  display: block; font-family: var(--font-display); font-weight: 450;
  font-size: clamp(46px, 5.6vw, 76px); line-height: 1;
  margin-bottom: 10px;
}
.sb span { color: var(--ink-faint); font-size: 14px; }

/* ---------- quote ---------- */
.quote-sec { background: var(--bg); }
.bigquote {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(24px, 3.4vw, 42px); line-height: 1.35;
  max-width: 920px; margin: 0 auto; text-align: center;
  position: relative;
}
.quote-mark {
  display: block; font-size: clamp(70px, 8vw, 120px); line-height: .6; margin-bottom: 18px;
}
.bigquote footer {
  margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 16px;
  font-family: var(--font-ui);
}
.bigquote footer img {
  width: 54px; height: 54px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,94,138,.5);
}
.bigquote footer strong { display: block; font-size: 15px; }
.bigquote footer span { font-size: 13px; color: var(--ink-faint); }

/* ---------- CTA ---------- */
.cta { position: relative; padding: clamp(110px, 14vw, 190px) 0; overflow: hidden; text-align: center; }
.cta-media { position: absolute; inset: 0; z-index: -2; }
.cta-media video { width: 100%; height: 100%; object-fit: cover; }
.cta-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(6,7,13,0.55) 40%, rgba(6,7,13,0.78) 100%);
}
.cta-inner { position: relative; }
.cta-title {
  font-family: var(--font-display); font-weight: 350;
  font-size: clamp(40px, 6.4vw, 84px); line-height: 1.06; margin-bottom: 20px;
}
.cta .section-sub { margin-inline: auto; }
.cta-form {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 18px;
}
.cta-form input {
  width: min(360px, 80vw);
  background: rgba(255,255,255,0.07); backdrop-filter: blur(12px);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 16px 26px; color: var(--ink); font-family: var(--font-ui); font-size: 15px;
  outline: none; transition: border-color .25s, box-shadow .25s;
}
.cta-form input::placeholder { color: var(--ink-faint); }
.cta-form input:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(255,94,138,.15); }
.cta-form input[name="company"] { width: min(280px, 80vw); }
.cta-status {
  flex-basis: 100%; margin-top: 4px; min-height: 20px;
  font-size: 14px; color: var(--ink-dim); font-family: var(--font-ui);
}
.cta-status.ok { color: var(--teal); }
.cta-status.err { color: #ff7a7a; }
.cta-note { font-size: 13px; color: var(--ink-faint); font-family: var(--font-mono); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); padding-top: 70px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 56px;
}
.footer-brand p { color: var(--ink-faint); font-size: 14px; margin-top: 18px; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 18px;
}
.footer-col a { display: block; color: var(--ink-dim); font-size: 14.5px; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--ink); }
.footer-base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  border-top: 1px solid var(--line);
  padding-block: 22px; font-size: 12.5px; color: var(--ink-faint);
}

/* ---------- reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .05s; }
.d2 { transition-delay: .15s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .45s; }
.d5 { transition-delay: .6s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01s !important; transition-duration: .01s !important; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .problem-grid, .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-kpis { grid-template-columns: repeat(2, 1fr); }
  .statband-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-mobile.open { display: flex; }
  .nav-burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .step, .science-grid, .problem-photo { grid-template-columns: 1fr; }
  .step-flip .step-copy { order: 1; }
  .step-flip .step-visual { order: 2; }
  .science-media { position: static; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-side { display: flex; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); padding: 0; }
  .dash-side-item { white-space: nowrap; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .drow { grid-template-columns: 14px 1fr auto; }
  .drow span:nth-child(3), .drow .drow-t { display: none; }
}
@media (max-width: 560px) {
  .problem-grid, .feat-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .cioms-grid { grid-template-columns: 1fr; }
}
