:root {
  color-scheme: dark;
  --bg: #05070a;
  --surface: #0d1117;
  --surface-2: #141b24;
  --surface-3: #182333;
  --text: #f3f8ff;
  --soft: #d8e7f5;
  --muted: #9fb0c3;
  --cyan: #43d9ff;
  --green: #6cffb3;
  --violet: #9d7cff;
  --amber: #ffcf66;
  --rose: #ff7f9f;
  --line: rgba(154, 219, 255, 0.16);
  --line-strong: rgba(108, 255, 179, 0.38);
  --shadow: rgba(0, 0, 0, 0.48);
  --max: 1180px;
  --font: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 94%);
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
p, h1, h2, h3 { margin: 0; }
svg { flex: 0 0 auto; }

.progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  z-index: 100;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--violet), var(--amber));
  box-shadow: 0 0 18px rgba(67, 217, 255, 0.65);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  overflow-x: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 10, 0.86);
  backdrop-filter: blur(18px);
}
.nav-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--soft);
  text-transform: uppercase;
}
.brand img {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(108, 255, 179, 0.24);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 0 1 auto;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  flex: 0 0 auto;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
  border-color: var(--line-strong);
  background: rgba(108, 255, 179, 0.07);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.scene {
  position: relative;
  min-height: 76vh;
  padding: 96px 0;
  display: flex;
  align-items: center;
  scroll-margin-top: 82px;
  border-bottom: 1px solid rgba(154, 219, 255, 0.08);
  isolation: isolate;
}
.scene.compact { min-height: 58vh; }
.scene.deep { min-height: 88vh; }
.scene-band { background: rgba(13, 17, 23, 0.52); }
.scene::after {
  content: "";
  position: absolute;
  left: max(20px, calc((100vw - var(--max)) / 2));
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  opacity: 0.6;
}

.hero {
  min-height: 86vh;
  padding: 74px 0 82px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.98) 0%, rgba(5, 7, 10, 0.92) 43%, rgba(5, 7, 10, 0.38) 76%, rgba(5, 7, 10, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.12), var(--bg)),
    url("assets/orion-demo-comercial-hero.webp") center right / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  z-index: -1;
  background: linear-gradient(transparent, var(--bg));
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 228px;
  align-items: end;
  gap: 64px;
}
.hero-copy { max-width: 790px; }
.hero-kicker {
  margin-top: 16px;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 18px;
  text-transform: uppercase;
}
.hero-metrics {
  display: grid;
  gap: 10px;
}
.metric {
  min-height: 112px;
  padding: 18px;
  display: grid;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.78);
  backdrop-filter: blur(12px);
}
.metric strong {
  color: var(--green);
  font-family: var(--mono);
  font-size: 34px;
  line-height: 1;
}
.metric span { margin-top: 9px; color: var(--muted); font-size: 13px; line-height: 1.35; }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue svg { width: 16px; animation: cue 1.7s ease-in-out infinite; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}
.pulse, .live-dot, .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(108, 255, 179, 0.9);
}
.pulse { animation: pulse 1.8s ease-in-out infinite; }
h1 {
  max-width: 790px;
  font-size: 72px;
  line-height: 1.01;
  font-weight: 780;
  letter-spacing: 0;
  text-wrap: balance;
}
h2 {
  max-width: 940px;
  font-size: 50px;
  line-height: 1.08;
  font-weight: 740;
  letter-spacing: 0;
  text-wrap: balance;
}
h3 {
  font-size: 22px;
  line-height: 1.22;
  font-weight: 690;
  letter-spacing: 0;
}
.lead {
  max-width: 790px;
  margin-top: 24px;
  color: var(--soft);
  font-size: 21px;
  line-height: 1.56;
}
.gradient-text {
  color: var(--text);
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  min-height: 50px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--text);
  background: rgba(108, 255, 179, 0.06);
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); border-color: var(--green); }
.button.primary {
  border-color: var(--green);
  color: #04120d;
  background: var(--green);
  box-shadow: 0 10px 34px rgba(108, 255, 179, 0.17);
}
.button.primary:hover { background: #93ffc8; }
.button.wide { width: 100%; }

.statement { max-width: 980px; }
.statement .lead { max-width: 830px; }
.choice-line {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}
.choice-line > div {
  min-height: 104px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.56);
  color: var(--soft);
  font-weight: 700;
}
.choice-line > div svg { color: var(--cyan); }
.choice-line > div.active { border-color: var(--line-strong); background: rgba(108, 255, 179, 0.06); }
.choice-line > div.active svg { color: var(--green); }
.choice-arrow { color: var(--muted); }

.section-heading { max-width: 900px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .lead { margin-inline: auto; }
.evolution {
  margin-top: 58px;
  display: grid;
  grid-template-columns: 1fr 52px 1fr 52px 1fr;
  align-items: center;
}
.evolution-step {
  position: relative;
  min-height: 260px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 17, 23, 0.78);
}
.evolution-step > svg { width: 42px; height: 42px; margin-bottom: 24px; color: var(--cyan); }
.evolution-step p { margin-top: 12px; color: var(--muted); line-height: 1.55; }
.evolution-step.featured { border-color: var(--line-strong); background: rgba(108, 255, 179, 0.055); }
.evolution-step.featured > svg { color: var(--green); }
.evolution-step.muted-step { opacity: 0.68; }
.step-number, .expert-number {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}
.flow-arrow { display: flex; justify-content: center; color: var(--muted); }

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  align-items: end;
  gap: 70px;
}
.split-head .lead { margin-top: 0; }
.mechanism-figure {
  margin: 46px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #02040a;
}
.mechanism-figure img { width: 100%; max-height: 420px; object-fit: cover; object-position: center top; }
.mechanism-figure figcaption,
.platform-figure figcaption {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}
.module-index {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.module-index a {
  min-height: 58px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--soft);
  background: rgba(5, 7, 10, 0.5);
  font-size: 13px;
}
.module-index a:hover { border-color: var(--cyan); }
.module-index span { color: var(--cyan); font-family: var(--mono); }

.module-scene { min-height: 84vh; }
.module-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 86px;
}
.module-layout.reverse .module-copy { order: 2; }
.module-copy { max-width: 620px; }
.module-label {
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}
.module-label span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.check-list {
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--soft);
  line-height: 1.45;
}
.check-list svg { width: 19px; height: 19px; margin-top: 2px; color: var(--green); }

.radar-panel {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.72);
}
.radar-panel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}
.radar-panel::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line);
}
.radar-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(67, 217, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 78%; height: 78%; }
.ring-2 { width: 54%; height: 54%; }
.ring-3 { width: 30%; height: 30%; }
.radar-axis { position: absolute; left: 10%; right: 10%; top: 50%; height: 1px; background: var(--line); }
.axis-a { transform: rotate(45deg); }
.axis-b { transform: rotate(-45deg); }
.radar-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  background: var(--surface);
  box-shadow: 0 0 34px rgba(108, 255, 179, 0.18);
  transform: translate(-50%, -50%);
}
.radar-tag {
  position: absolute;
  z-index: 3;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--soft);
  background: var(--surface-2);
  font-family: var(--mono);
  font-size: 11px;
}
.tag-a { left: 12%; top: 16%; }
.tag-b { right: 12%; top: 16%; }
.tag-c { left: 12%; bottom: 16%; }
.tag-d { right: 12%; bottom: 16%; }

.campaign-board {
  min-height: 430px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  grid-template-rows: 1fr 28px 1fr;
  align-items: center;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.72);
}
.campaign-stage {
  position: relative;
  min-height: 148px;
  padding: 22px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--soft);
  text-align: center;
}
.campaign-stage span { position: absolute; top: 10px; left: 11px; color: var(--muted); font-family: var(--mono); font-size: 10px; }
.campaign-stage svg { color: var(--cyan); }
.campaign-stage.active { border-color: var(--green); background: rgba(108, 255, 179, 0.06); }
.campaign-stage.active svg { color: var(--green); }
.campaign-link { height: 1px; background: var(--line-strong); }
.campaign-link:nth-of-type(2) { width: 1px; height: 28px; justify-self: center; grid-column: 3; }
.signal-row { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 8px; }
.signal-row span { padding: 8px 10px; border: 1px solid var(--line); border-radius: 5px; color: var(--muted); font-family: var(--mono); font-size: 11px; }

.message-stack { position: relative; min-height: 450px; }
.message-card {
  position: absolute;
  width: min(86%, 360px);
  min-height: 142px;
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 4px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 17, 23, 0.96);
  box-shadow: 0 22px 50px var(--shadow);
}
.message-card svg { grid-row: 1 / 3; width: 32px; height: 32px; color: var(--cyan); }
.message-card span { color: var(--muted); font-size: 13px; }
.message-card b { font-size: 22px; }
.message-one { top: 20px; left: 0; }
.message-two { top: 154px; right: 0; border-color: rgba(157, 124, 255, 0.34); }
.message-two svg { color: var(--violet); }
.message-three { bottom: 4px; left: 8%; border-color: var(--line-strong); }
.message-three svg { color: var(--green); }

.filter-visual {
  min-height: 440px;
  padding: 34px;
  display: grid;
  grid-template-columns: 76px 138px minmax(150px, 1fr);
  align-items: center;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.72);
}
.lead-stream { display: grid; justify-items: center; gap: 22px; }
.lead-dot { width: 14px; height: 14px; border-radius: 50%; }
.lead-dot.low, .score.low { background: var(--rose); }
.lead-dot.medium, .score.medium { background: var(--amber); }
.lead-dot.high, .score.high { background: var(--green); }
.filter-core {
  min-height: 150px;
  padding: 20px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 1px solid var(--cyan);
  border-radius: 8px;
  color: var(--cyan);
  text-align: center;
  font-size: 12px;
}
.lead-output { display: grid; gap: 10px; }
.lead-output > div {
  min-height: 64px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--soft);
  font-size: 12px;
}
.score { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: #07100b; font-family: var(--mono); }

.handoff {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}
.handoff > div { min-height: 112px; padding: 16px; display: grid; grid-template-columns: auto 1fr; gap: 5px 10px; align-content: center; border: 1px solid var(--line); border-radius: 8px; }
.handoff > div svg { grid-row: 1 / 3; color: var(--cyan); }
.handoff > div span { color: var(--muted); font-size: 12px; }
.handoff > div b { color: var(--soft); }
.handoff > svg { color: var(--green); }
.phone-shell {
  width: min(100%, 390px);
  min-height: 540px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(67, 217, 255, 0.34);
  border-radius: 8px;
  background: #09111a;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}
.phone-top { height: 64px; padding: 0 18px; display: grid; grid-template-columns: 12px 1fr auto; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); }
.phone-top span { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgba(108, 255, 179, 0.8); }
.phone-top b { font-size: 14px; }
.phone-top svg { width: 18px; color: var(--muted); }
.chat-body { padding: 24px 18px; display: flex; flex-direction: column; gap: 14px; }
.bubble { max-width: 86%; padding: 13px 15px; border-radius: 8px; font-size: 13px; line-height: 1.52; }
.bubble.agent { align-self: flex-start; border: 1px solid var(--line); background: var(--surface-2); }
.bubble.person { align-self: flex-end; border: 1px solid var(--line-strong); background: rgba(108, 255, 179, 0.1); }
.typing { width: 58px; padding: 12px; display: flex; gap: 5px; border: 1px solid var(--line); border-radius: 8px; }
.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: typing 1.2s ease-in-out infinite; }
.typing span:nth-child(2) { animation-delay: 120ms; }
.typing span:nth-child(3) { animation-delay: 240ms; }

.platform-figure { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: #02040a; }
.platform-figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; }

.channel-orbit {
  position: relative;
  width: min(100%, 500px);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.channel-orbit::before { content: ""; position: absolute; inset: 18%; border: 1px dashed rgba(157, 124, 255, 0.34); border-radius: 50%; animation: spin 26s linear infinite; }
.orbit-core {
  position: absolute;
  left: 50%; top: 50%;
  z-index: 3;
  width: 112px; height: 112px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  border: 1px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  background: var(--surface);
  transform: translate(-50%, -50%);
}
.orbit-item {
  position: absolute;
  z-index: 3;
  min-width: 94px;
  min-height: 68px;
  padding: 9px;
  display: grid;
  place-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cyan);
  background: var(--surface-2);
  font-size: 11px;
}
.orbit-item svg { width: 19px; height: 19px; }
.orbit-a { left: 50%; top: -18px; transform: translateX(-50%); }
.orbit-b { right: -14px; top: 28%; }
.orbit-c { right: 8%; bottom: 2%; }
.orbit-d { left: 8%; bottom: 2%; }
.orbit-e { left: -14px; top: 28%; }

.support-visual {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1;
  margin-inline: auto;
}
.support-ring { position: absolute; inset: 14%; border: 1px dashed rgba(67, 217, 255, 0.33); border-radius: 50%; animation: spin 26s linear infinite reverse; }
.support-core { position: absolute; left: 50%; top: 50%; z-index: 2; width: 130px; height: 130px; display: grid; place-items: center; align-content: center; border: 1px solid var(--green); border-radius: 50%; background: var(--surface); transform: translate(-50%, -50%); }
.support-core strong { color: var(--green); font-family: var(--mono); font-size: 44px; line-height: 1; }
.support-core span { margin-top: 5px; color: var(--muted); font-size: 12px; text-transform: uppercase; }
.expert { position: absolute; z-index: 3; width: 144px; min-height: 96px; padding: 15px; display: grid; place-items: center; gap: 7px; border: 1px solid var(--line); border-radius: 8px; color: var(--cyan); background: var(--surface-2); font-size: 12px; text-align: center; }
.expert-one { left: 50%; top: 0; transform: translateX(-50%); }
.expert-two { right: 0; bottom: 9%; color: var(--violet); }
.expert-three { left: 0; bottom: 9%; color: var(--amber); }

.timeline {
  position: relative;
  margin-top: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr);
  align-items: stretch;
}
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 6px; height: 3px; background: linear-gradient(90deg, var(--cyan) 0 50%, var(--green) 50% 100%); }
.timeline-phase { margin-top: 18px; padding: 30px; border: 1px solid var(--line); border-radius: 8px; background: rgba(13, 17, 23, 0.8); }
.timeline-phase.launch { border-color: var(--line-strong); background: rgba(108, 255, 179, 0.045); }
.phase-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--cyan); font-family: var(--mono); font-size: 13px; }
.timeline-phase.launch .phase-head { color: var(--green); }
.timeline-phase h3 { margin-top: 28px; font-size: 30px; }
.timeline-phase ul { margin: 24px 0 0; padding-left: 20px; color: var(--soft); line-height: 1.9; }
.timeline-center { position: relative; z-index: 2; display: grid; place-items: center; align-content: center; gap: 18px; color: var(--green); }
.day-marker { padding: 7px 9px; border: 1px solid var(--green); border-radius: 5px; background: var(--bg); color: var(--green); font-family: var(--mono); font-size: 11px; }
.timeline-note { max-width: 850px; margin: 26px auto 0; display: flex; align-items: flex-start; justify-content: center; gap: 10px; color: var(--muted); font-size: 13px; line-height: 1.5; text-align: center; }
.timeline-note svg { width: 17px; margin-top: 1px; }

.channel-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.channel-grid article { min-height: 220px; padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: rgba(5, 7, 10, 0.52); }
.channel-grid svg { color: var(--cyan); }
.channel-grid article:nth-child(2) svg { color: var(--green); }
.channel-grid article:nth-child(3) svg { color: var(--violet); }
.channel-grid article:nth-child(4) svg { color: var(--amber); }
.channel-grid h3 { margin-top: 36px; }
.channel-grid p { margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.expertise-line { margin-top: 18px; min-height: 88px; padding: 16px 20px; display: flex; align-items: center; gap: 16px; border: 1px solid var(--line-strong); border-radius: 8px; background: rgba(108, 255, 179, 0.045); }
.portrait-mark { width: 48px; height: 48px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--green); border-radius: 50%; color: var(--green); font-family: var(--mono); font-weight: 800; }
.expertise-line b { color: var(--soft); }
.expertise-line p { margin-top: 5px; color: var(--muted); font-size: 13px; line-height: 1.45; }

.experts-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.expert-card { position: relative; min-height: 310px; padding: 32px; border: 1px solid var(--line); border-radius: 8px; background: rgba(13, 17, 23, 0.78); }
.expert-card > svg { width: 42px; height: 42px; color: var(--cyan); }
.expert-card:nth-child(2) > svg { color: var(--violet); }
.expert-card:nth-child(3) > svg { color: var(--amber); }
.expert-card h3 { margin-top: 54px; }
.expert-card p { margin-top: 14px; color: var(--muted); line-height: 1.6; }
.cadence { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cadence > div { min-height: 106px; padding: 19px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; align-items: center; gap: 3px 11px; border: 1px solid var(--line); border-radius: 8px; }
.cadence .status-dot { grid-row: 1 / 3; }
.cadence .steady { background: var(--violet); box-shadow: 0 0 18px rgba(157, 124, 255, 0.72); }
.cadence p { color: var(--muted); font-size: 13px; }

.scope-layout { margin-top: 50px; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr); gap: 18px; align-items: stretch; }
.scope-included { padding: 26px; border: 1px solid var(--line-strong); border-radius: 8px; background: rgba(108, 255, 179, 0.04); }
.scope-title { display: flex; align-items: center; gap: 10px; color: var(--green); font-family: var(--mono); text-transform: uppercase; }
.scope-grid { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.scope-grid span { min-height: 52px; padding: 12px; display: flex; align-items: center; border: 1px solid var(--line); border-radius: 6px; color: var(--soft); background: rgba(5, 7, 10, 0.48); font-size: 14px; }
.scope-note { padding: 26px; display: flex; align-items: flex-start; gap: 16px; border: 1px solid rgba(255, 207, 102, 0.35); border-radius: 8px; background: rgba(255, 207, 102, 0.04); }
.scope-note > svg { color: var(--amber); }
.scope-note p { margin-top: 14px; color: var(--muted); line-height: 1.65; }

.path-compare { max-width: 920px; margin: 54px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.path-compare article { min-height: 300px; padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 8px; background: rgba(13, 17, 23, 0.72); }
.path-compare article.recommended { border-color: var(--line-strong); background: rgba(108, 255, 179, 0.05); }
.path-tag { align-self: flex-start; padding: 6px 8px; border: 1px solid var(--line); border-radius: 4px; color: var(--muted); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.recommended .path-tag { border-color: var(--line-strong); color: var(--green); }
.path-compare h3 { margin-top: 42px; font-size: 28px; }
.path-compare p { margin-top: 15px; color: var(--muted); line-height: 1.6; }
.path-footer { margin-top: auto; padding-top: 26px; display: flex; align-items: center; gap: 9px; color: var(--soft); font-size: 13px; }
.path-footer svg { color: var(--cyan); }
.recommended .path-footer svg { color: var(--green); }
.choice-close { margin-top: 28px; color: var(--muted); text-align: center; }
.choice-close strong { color: var(--green); }

.price-scene { min-height: 92vh; overflow: hidden; background: linear-gradient(135deg, rgba(67, 217, 255, 0.04), rgba(108, 255, 179, 0.05) 56%, rgba(157, 124, 255, 0.04)); }
.price-layout { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(410px, 0.66fr); align-items: center; gap: 88px; }
.price-panel { padding: 40px; border: 1px solid var(--green); border-radius: 8px; background: rgba(5, 7, 10, 0.86); box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44), 0 0 70px rgba(108, 255, 179, 0.08); }
.price-overline { color: var(--muted); font-family: var(--mono); font-size: 12px; text-transform: uppercase; }
.price { margin-top: 22px; display: flex; align-items: flex-start; gap: 8px; color: var(--green); }
.price span { margin-top: 9px; font-family: var(--mono); font-size: 28px; }
.price strong { font-family: var(--mono); font-size: 62px; line-height: 1; }
.price-currency { margin-top: 9px; color: var(--soft); font-family: var(--mono); }
.price-includes { margin: 30px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.price-includes span { display: flex; align-items: center; gap: 7px; color: var(--soft); font-size: 13px; }
.price-includes svg { width: 16px; color: var(--green); }

.closing { min-height: 78vh; text-align: center; }
.closing-inner { max-width: 940px; }
.closing img { width: 100%; max-height: 180px; margin: 0 auto 46px; object-fit: cover; border: 1px solid var(--line); border-radius: 8px; }
.closing .lead { margin-inline: auto; }
.closing .button { margin-top: 30px; }
.fine-print { max-width: 820px; margin: 32px auto 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.stagger > * { opacity: 0; transform: translateY(16px); transition: opacity 520ms ease, transform 520ms ease; }
.stagger.in-view > * { opacity: 1; transform: translateY(0); }
.stagger.in-view > *:nth-child(2) { transition-delay: 70ms; }
.stagger.in-view > *:nth-child(3) { transition-delay: 140ms; }
.stagger.in-view > *:nth-child(4) { transition-delay: 210ms; }
.stagger.in-view > *:nth-child(5) { transition-delay: 280ms; }
.stagger.in-view > *:nth-child(6) { transition-delay: 350ms; }
.stagger.in-view > *:nth-child(7) { transition-delay: 420ms; }
.stagger.in-view > *:nth-child(8) { transition-delay: 490ms; }

@keyframes pulse { 0%, 100% { opacity: 0.55; transform: scale(0.9); } 50% { opacity: 1; transform: scale(1.16); } }
@keyframes cue { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@keyframes typing { 0%, 100% { opacity: 0.35; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-3px); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  h1 { font-size: 58px; }
  h2 { font-size: 42px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-metrics { grid-template-columns: repeat(3, 1fr); }
  .metric { min-height: 86px; }
  .metric strong { font-size: 28px; }
  .evolution { grid-template-columns: 1fr; gap: 12px; }
  .flow-arrow { transform: rotate(90deg); }
  .split-head, .module-layout, .price-layout { grid-template-columns: 1fr; gap: 54px; }
  .module-layout.reverse .module-copy { order: initial; }
  .module-layout.reverse > :first-child { order: 2; }
  .module-layout.reverse .module-copy { order: 1; }
  .module-copy { max-width: 760px; }
  .module-index { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .radar-panel, .channel-orbit, .support-visual { max-width: 460px; }
  .campaign-board, .filter-visual, .message-stack { max-width: 620px; width: 100%; margin-inline: auto; }
  .platform-figure { max-width: 720px; width: 100%; margin-inline: auto; }
  .phone-shell { margin-top: 4px; }
  .channel-grid { grid-template-columns: 1fr 1fr; }
  .scope-layout { grid-template-columns: 1fr; }
  .price-copy { max-width: 760px; }
  .price-panel { width: min(100%, 620px); }
}

@media (max-width: 720px) {
  .nav-inner { width: 100%; min-height: 60px; padding: 0 14px; }
  .brand span { display: none; }
  .nav-links { justify-content: flex-start; }
  .nav-links a { padding: 8px 9px; font-size: 12px; }
  .container { width: min(100% - 30px, var(--max)); }
  .scene, .module-scene { min-height: 0; padding: 74px 0; scroll-margin-top: 72px; }
  .scene.deep { min-height: 0; }
  .hero { min-height: calc(92svh - 60px); padding: 44px 0 48px; background-position: 58% center; }
  .hero::after { display: none; }
  #decision { padding-top: 32px; }
  .hero-grid { gap: 28px; }
  h1 { font-size: 46px; }
  h2 { font-size: 36px; }
  h3 { font-size: 20px; }
  .lead { margin-top: 18px; font-size: 18px; line-height: 1.5; }
  .hero-kicker { font-size: 14px; }
  .hero-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .metric { min-height: 80px; padding: 10px; }
  .metric strong { font-size: 24px; }
  .metric span { font-size: 10px; }
  .scroll-cue { display: none; }
  .choice-line { grid-template-columns: 1fr; margin-top: 32px; gap: 10px; }
  .choice-arrow { justify-self: center; transform: rotate(90deg); }
  .choice-line > div { min-height: 84px; }
  .evolution { margin-top: 38px; }
  .evolution-step { min-height: 218px; padding: 24px; }
  .split-head { gap: 24px; }
  .split-head .lead { margin-top: 0; }
  .mechanism-figure { margin-top: 32px; }
  .mechanism-figure img { min-height: 220px; object-position: 60% top; }
  .module-index { grid-template-columns: 1fr; }
  .module-layout { gap: 40px; }
  .check-list { margin-top: 26px; }
  .radar-panel { width: 100%; }
  .radar-core { width: 66px; height: 66px; }
  .radar-tag { font-size: 9px; }
  .campaign-board { min-height: 370px; padding: 18px; }
  .campaign-stage { min-height: 126px; padding: 16px 8px; }
  .campaign-stage b { font-size: 12px; }
  .message-stack { min-height: 400px; }
  .message-card { min-height: 126px; padding: 18px; }
  .message-one { top: 0; }
  .message-two { top: 126px; }
  .message-three { bottom: 0; }
  .filter-visual { min-height: 390px; padding: 20px 14px; grid-template-columns: 38px 94px minmax(120px, 1fr); gap: 8px; }
  .filter-core { min-height: 132px; padding: 8px; font-size: 10px; }
  .lead-output > div { min-height: 58px; padding: 7px; font-size: 10px; }
  .score { width: 26px; height: 26px; }
  .handoff { grid-template-columns: 1fr; }
  .handoff > svg { justify-self: center; transform: rotate(90deg); }
  .phone-shell { min-height: 510px; }
  .channel-orbit { width: calc(100% - 18px); margin-top: 18px; }
  .orbit-item { min-width: 78px; min-height: 58px; font-size: 9px; }
  .orbit-a { top: -14px; }
  .orbit-b { right: -19px; }
  .orbit-c { right: 2%; bottom: -1%; }
  .orbit-d { left: 2%; bottom: -1%; }
  .orbit-e { left: -19px; }
  .orbit-core { width: 88px; height: 88px; font-size: 11px; }
  .support-visual { width: calc(100% - 10px); }
  .expert { width: 112px; min-height: 82px; padding: 9px; font-size: 9px; }
  .support-core { width: 102px; height: 102px; }
  .support-core strong { font-size: 34px; }
  .timeline { grid-template-columns: 1fr; gap: 10px; }
  .timeline::before { top: 0; bottom: 0; left: 7px; right: auto; width: 2px; height: auto; background: linear-gradient(var(--cyan), var(--green)); }
  .timeline-phase { margin: 0 0 0 24px; padding: 24px; }
  .timeline-center { min-height: 54px; margin-left: 24px; display: flex; justify-content: center; }
  .timeline-center > svg { transform: rotate(90deg); }
  .timeline-note { text-align: left; }
  .channel-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .channel-grid article { min-height: 174px; }
  .channel-grid h3 { margin-top: 28px; }
  .expertise-line { align-items: flex-start; }
  .experts-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .expert-card { min-height: 238px; padding: 26px; }
  .expert-card h3 { margin-top: 38px; }
  .cadence { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: 1fr; }
  .scope-note { flex-direction: column; }
  .path-compare { grid-template-columns: 1fr; }
  .path-compare article { min-height: 258px; }
  .price-scene { min-height: 0; }
  .price-layout { gap: 38px; }
  .price-panel { padding: 28px 22px; }
  .price strong { font-size: 44px; }
  .price span { font-size: 22px; }
  .price-includes { grid-template-columns: 1fr; }
  .closing img { min-height: 120px; object-fit: cover; }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 24px); }
  h1 { font-size: 41px; }
  h2 { font-size: 32px; }
  .lead { font-size: 17px; }
  .metric { padding-inline: 8px; }
  .filter-visual { grid-template-columns: 30px 82px minmax(112px, 1fr); padding-inline: 8px; }
  .orbit-item { min-width: 70px; }
  .expert { width: 100px; }
  .price strong { font-size: 39px; }
  .button { width: 100%; padding-inline: 12px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .stagger > * { opacity: 1; transform: none; }
}
