:root {
  --bg: #05101b;
  --bg2: #061827;
  --bg3: #071d2d;
  --text: #e8f6ff;
  --muted: #9ebccc;
  --line: rgba(129, 196, 230, 0.26);
  --line-strong: rgba(129, 196, 230, 0.42);
  --accent: #76efc7;
  --accent2: #6fd2ff;
  --accent3: #ffd58e;
  --warn: #ffcd78;
  --radius: 24px;
  --radius-sm: 14px;
  --maxw: 1240px;
  --surface: linear-gradient(160deg, rgba(8, 33, 49, 0.9), rgba(6, 25, 37, 0.88));
  --surface-deep: linear-gradient(165deg, rgba(6, 26, 39, 0.96), rgba(4, 17, 27, 0.94));
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  --glow: 0 0 32px rgba(118, 239, 199, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
details > summary { list-style: none; }
details > summary::marker { content: ""; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.5;
  background:
    radial-gradient(900px 420px at 90% -5%, rgba(111, 210, 255, 0.22), transparent 68%),
    radial-gradient(720px 420px at -10% 8%, rgba(118, 239, 199, 0.18), transparent 68%),
    linear-gradient(180deg, var(--bg), var(--bg2) 42%, var(--bg3) 100%);
  overflow-x: hidden;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(165, 217, 245, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165, 217, 245, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, #000 32%, transparent 85%);
}

.fx-blob,
.aurora,
.sparkle-layer {
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

.fx-blob {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.32;
}

.fx-blob-a { left: -120px; top: 120px; background: rgba(99, 226, 188, 0.48); }
.fx-blob-b { right: -130px; top: 420px; background: rgba(103, 216, 255, 0.44); }

.aurora {
  filter: blur(20px);
  opacity: 0.34;
  mix-blend-mode: screen;
}

.aurora-a {
  width: 42vw;
  height: 20vh;
  left: -8vw;
  top: 26vh;
  background: linear-gradient(110deg, rgba(99, 230, 190, 0.44), rgba(103, 216, 255, 0.1));
}

.aurora-b {
  width: 40vw;
  height: 20vh;
  right: -10vw;
  top: 62vh;
  background: linear-gradient(120deg, rgba(103, 216, 255, 0.35), rgba(255, 213, 142, 0.14));
}

.sparkle-layer { inset: 0; overflow: hidden; }
.sparkle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(220, 250, 255, 0.82);
  box-shadow: 0 0 12px rgba(110, 220, 255, 0.54);
  transform: scale(0.7);
  opacity: 0;
  animation: sparkleFloat var(--dur, 8s) linear infinite;
  animation-delay: var(--delay, 0s);
}

.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  z-index: 100;
  background: rgba(8, 27, 39, 0.8);
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 0 16px rgba(98, 232, 188, 0.7);
}

.wrap {
  width: min(100% - 40px, var(--maxw));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(143, 203, 236, 0.14);
  background: linear-gradient(180deg, rgba(3, 14, 24, 0.9), rgba(3, 14, 24, 0.58));
  padding: 16px 0 12px;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}


.brand {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 28px;
  font-weight: 700;
  position: relative;
}

.brand::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 44%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

section {
  padding: 30px 0;
  position: relative;
  scroll-margin-top: 92px;
}

section + section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(122, 199, 234, 0.25), transparent);
  transform: scaleX(0.3);
  opacity: 0.35;
  transform-origin: center;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.reveal.show::before {
  transform: scaleX(1);
  opacity: 1;
}

.hero-main,
.hero-card,
.kpi,
.card,
.proof-card,
.roi-card,
.final,
.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero-main { padding: 18px; }
.hero-card { padding: 16px; }
.hero-card-secondary { background: linear-gradient(160deg, rgba(8, 34, 48, 0.9), rgba(7, 27, 39, 0.86)); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(18px, 2.4vw, 32px);
  align-items: stretch;
  margin-top: 44px;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(680px 340px at 0% 18%, rgba(98, 232, 188, 0.16), transparent 70%),
    radial-gradient(520px 300px at 88% 12%, rgba(103, 216, 255, 0.16), transparent 72%),
    linear-gradient(160deg, rgba(10, 36, 52, 0.88), rgba(7, 25, 35, 0.82));
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(165, 217, 245, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165, 217, 245, 0.055) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at 58% 42%, #000 18%, transparent 78%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  z-index: 1;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--accent), rgba(103, 216, 255, 0.5), transparent);
  opacity: 0.72;
  animation: heroScan 4.8s ease-in-out infinite;
}

.hero-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  align-self: stretch;
}

.hero-side {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  width: 100%;
  align-self: stretch;
}

.publish-console {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 0;
  height: 100%;
  width: min(100%, 520px);
  justify-self: end;
  align-self: stretch;
  padding: 0;
  border-radius: 24px;
  background: rgba(4, 20, 31, 0.8);
  box-shadow: 0 28px 68px rgba(1, 8, 14, 0.46), 0 0 0 1px rgba(118, 239, 199, 0.08);
  isolation: isolate;
}

.publish-console::before,
.publish-console::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.publish-console .console-panel {
  transform-origin: center;
  animation: consoleBoot 0.9s cubic-bezier(.2,.8,.2,1) both;
}

.publish-console::before {
  z-index: -2;
  background:
    radial-gradient(420px 220px at 18% 12%, rgba(98, 232, 188, 0.16), transparent 68%),
    radial-gradient(360px 240px at 88% 20%, rgba(103, 216, 255, 0.15), transparent 72%),
    linear-gradient(165deg, rgba(8, 34, 48, 0.96), rgba(6, 24, 36, 0.94));
}

.publish-console::after {
  z-index: -1;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(165, 217, 245, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(165, 217, 245, 0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at 52% 40%, #000 16%, transparent 74%);
}

.console-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(144, 198, 226, 0.18);
  background: rgba(4, 18, 29, 0.72);
}

.console-window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(144, 198, 226, 0.45);
}

.console-window-bar span:first-child { background: rgba(255, 116, 116, 0.72); }
.console-window-bar span:nth-child(2) { background: rgba(255, 213, 142, 0.76); }
.console-window-bar span:nth-child(3) { background: rgba(98, 232, 188, 0.76); }

.console-window-bar b {
  margin-left: 8px;
  color: #d9eff9;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.console-panel {
  display: grid;
  grid-template-rows: auto auto minmax(120px, 1fr) auto auto;
  gap: 9px;
  height: 100%;
  min-height: 0;
  padding: 16px;
}

.console-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 0;
}

.console-kicker {
  margin: 0 0 5px;
  color: #8de4ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.console-top h3 {
  margin: 0;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.08;
}

.console-status {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(98, 232, 188, 0.48);
  border-radius: 999px;
  background: rgba(98, 232, 188, 0.12);
  color: #9bf4d3;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.console-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(98, 232, 188, 0.78);
}

.flow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 0;
  padding: 7px;
  border: 1px solid rgba(129, 196, 230, 0.2);
  border-radius: 18px;
  background: rgba(4, 18, 29, 0.58);
  overflow: hidden;
}

.flow-rail::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(118, 239, 199, 0.22), rgba(111, 210, 255, 0.18));
}

.flow-rail i {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 78px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(118, 239, 199, 0.95), rgba(111, 210, 255, 0.42), transparent);
  box-shadow: 0 0 18px rgba(118, 239, 199, 0.58);
  transform: translateY(-50%);
  animation: flowSweep 3.8s ease-in-out infinite;
}

.flow-node {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  min-height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(129, 196, 230, 0.24);
  background: rgba(5, 28, 41, 0.82);
  color: #b8d6e5;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color .26s ease, background .26s ease, color .26s ease, box-shadow .26s ease, transform .26s ease;
}

.flow-node.is-passed {
  border-color: rgba(118, 239, 199, 0.32);
  color: #c7fce8;
  background: rgba(98, 232, 188, 0.08);
}

.flow-node.is-active {
  border-color: rgba(118, 239, 199, 0.7);
  color: #061827;
  background: linear-gradient(135deg, rgba(118, 239, 199, 0.96), rgba(111, 210, 255, 0.78));
  box-shadow: 0 0 22px rgba(118, 239, 199, 0.24);
  transform: translateY(-1px);
}

.console-doc {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(150px, 0.95fr);
  align-items: stretch;
  gap: 10px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  min-height: 0;
  padding: 10px;
  border: 1px solid rgba(144, 198, 226, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(5, 28, 41, 0.78);
  box-shadow: 0 18px 36px rgba(2, 10, 18, 0.28);
}

.doc-preview {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 2px 0;
}

.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.doc-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 8px;
  border: 1px solid rgba(118, 239, 199, 0.22);
  border-radius: 999px;
  background: rgba(98, 232, 188, 0.07);
  color: #bff5e3;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.doc-label {
  margin: 0 0 6px;
  color: #9bdff5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.console-doc h4 {
  max-width: 270px;
  margin: 0;
  color: #f4fbff;
  font-size: clamp(16px, 1.26vw, 20px);
  line-height: 1.16;
}

.artifact-panel {
  display: grid;
  min-width: 0;
  gap: 7px;
  align-content: center;
}

.artifact-panel span {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid rgba(144, 198, 226, 0.18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(103, 216, 255, 0.07), transparent 62%),
    rgba(3, 18, 29, 0.45);
}

.artifact-panel span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(118, 239, 199, 0.82);
  box-shadow: 0 0 14px rgba(118, 239, 199, 0.36);
}

.artifact-panel b {
  color: #e5f6ff;
  font-size: 12px;
  line-height: 1.12;
}

.artifact-panel small {
  color: #91b5c5;
  font-size: 10px;
  line-height: 1.24;
}

.publish-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 0;
}

.publish-step {
  display: grid;
  grid-template-columns: 20px 1fr;
  column-gap: 7px;
  min-width: 0;
  min-height: 52px;
  padding: 8px 7px;
  border: 1px solid rgba(144, 198, 226, 0.2);
  border-radius: 14px;
  background: rgba(5, 28, 41, 0.54);
  opacity: 0;
  transform: translateY(8px);
  animation: stepBoot 0.52s ease forwards;
  animation-delay: var(--step-delay, 0s);
  transition: border-color .26s ease, background .26s ease, opacity .26s ease, box-shadow .26s ease;
}

.publish-step span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(98, 232, 188, 0.16);
  color: #98f2d1;
  font-weight: 900;
  transition: background .26s ease, color .26s ease, box-shadow .26s ease;
}

.publish-step.is-pending {
  opacity: 0.68;
}

.publish-step.is-pending span {
  background: rgba(129, 196, 230, 0.1);
  color: #9ebccc;
}

.publish-step.is-current {
  border-color: rgba(111, 210, 255, 0.46);
  background: rgba(12, 52, 75, 0.66);
  box-shadow: inset 0 0 0 1px rgba(111, 210, 255, 0.08), 0 0 20px rgba(111, 210, 255, 0.1);
}

.publish-step.is-current span {
  background: rgba(111, 210, 255, 0.2);
  color: #bdeeff;
  box-shadow: 0 0 14px rgba(111, 210, 255, 0.2);
}

.publish-step.is-done {
  border-color: rgba(118, 239, 199, 0.32);
}

.publish-step.is-done span {
  background: rgba(98, 232, 188, 0.18);
  color: #98f2d1;
}

.live-log {
  display: grid;
  gap: 4px;
  margin-top: 0;
  padding: 8px 10px;
  border: 1px solid rgba(144, 198, 226, 0.18);
  border-radius: 16px;
  background: rgba(3, 15, 24, 0.46);
}

.live-log p {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px;
  align-items: baseline;
  margin: 0;
  color: #9ebdcc;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  line-height: 1.3;
}

.live-log p:not(.is-active) {
  display: none;
}

.live-log span {
  color: #6fd2ff;
  opacity: 0.72;
}

.live-log b {
  color: #cde8f5;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-log p.is-active b {
  color: #9bf4d3;
}

.publish-step b,
.publish-step small {
  min-width: 0;
}

.publish-step b {
  color: #eefaff;
  font-size: 12px;
  line-height: 1.2;
}

.publish-step small {
  display: none;
  margin-top: 3px;
  color: #9ebdcc;
  font-size: 10px;
  line-height: 1.25;
}

.channel-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 0;
}

.channel-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(144, 198, 226, 0.24);
  border-radius: 999px;
  background: rgba(5, 28, 41, 0.56);
  color: #cde8f5;
  font-size: 11px;
  font-weight: 800;
  animation: channelPing 3.6s ease-in-out infinite;
  animation-delay: var(--channel-delay, 0s);
  transition: border-color .24s ease, background .24s ease, color .24s ease, transform .24s ease, box-shadow .24s ease;
}

.channel-strip span.is-active,
.channel-strip span:hover {
  border-color: rgba(118, 239, 199, 0.56);
  background: rgba(98, 232, 188, 0.12);
  color: #eafff8;
  box-shadow: 0 0 18px rgba(118, 239, 199, 0.14);
}

.channel-strip span:hover {
  transform: translateY(-1px);
}

.doc-lines {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.doc-lines span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(154, 211, 240, 0.32), rgba(154, 211, 240, 0.08));
}

.doc-lines span:nth-child(1) { width: 86%; }
.doc-lines span:nth-child(2) { width: 68%; }
.doc-lines span:nth-child(3) { width: 46%; }

.console-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 18px auto;
  width: min(100%, 440px);
}

.console-route span {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(98, 232, 188, 0.58), rgba(103, 216, 255, 0.22));
}

.console-route span:last-child {
  background: linear-gradient(90deg, rgba(98, 232, 188, 0.58), rgba(103, 216, 255, 0.22), transparent);
}

.console-route strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(98, 232, 188, 0.62);
  border-radius: 999px;
  background: rgba(6, 27, 40, 0.92);
  color: #eafff8;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 15px;
  box-shadow: 0 0 26px rgba(98, 232, 188, 0.2);
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.channel-card {
  min-width: 0;
  min-height: 92px;
  padding: 12px;
  border: 1px solid rgba(144, 198, 226, 0.24);
  border-radius: 16px;
  background: rgba(5, 28, 41, 0.72);
}

.channel-card b,
.channel-card small {
  display: block;
  min-width: 0;
}

.channel-card b {
  margin-top: 8px;
  color: #f1fbff;
  font-size: 16px;
  line-height: 1.1;
}

.channel-card small {
  margin-top: 5px;
  color: #a9c8d8;
  font-size: 12px;
  line-height: 1.25;
}

.channel-check {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(98, 232, 188, 0.16);
  color: #93f3d0;
  font-weight: 900;
}

.channel-card.is-done {
  border-color: rgba(98, 232, 188, 0.34);
}

.channel-card.is-next {
  border-style: dashed;
  opacity: 0.9;
}

.console-caption {
  display: none;
  align-items: center;
  min-height: 0;
  margin: 0;
  padding: 11px 12px;
  border: 1px solid rgba(144, 198, 226, 0.2);
  border-radius: 14px;
  background: rgba(5, 28, 41, 0.5);
  color: #c4ddeb;
  font-size: 12px;
  line-height: 1.3;
  overflow: hidden;
}

.chip {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid rgba(146, 214, 247, 0.3);
  background: rgba(7, 32, 46, 0.62);
  color: #cfefff;
  font-size: 13px;
  padding: 7px 12px;
  margin: 0 0 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero h1 {
  margin: 0 0 12px;
  font-family: "Unbounded", "Manrope", sans-serif;
  max-width: 820px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  color: #f5fcff;
}

.lead { max-width: 840px; margin: 0 0 18px; color: #d5e7f1; font-size: clamp(18px, 1.95vw, 21px); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  text-decoration: none;
  border-radius: 16px;
  padding: 13px 19px;
  border: 1px solid rgba(129, 196, 230, 0.34);
  font-weight: 800;
  letter-spacing: -0.01em;
  isolation: isolate;
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.btn::before {
  z-index: -2;
  background:
    radial-gradient(circle at var(--px, 50%) var(--py, 50%), rgba(118, 239, 199, 0.32), transparent 34%),
    linear-gradient(135deg, rgba(11, 45, 61, 0.96), rgba(5, 21, 33, 0.96));
  opacity: 0.96;
}

.btn::after {
  z-index: -1;
  width: 46%;
  inset: -1px auto -1px -60%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
}

.btn:hover {
  transform: translate3d(var(--mx, 0), calc(var(--my, 0) - 2px), 0);
  border-color: rgba(118, 239, 199, 0.68);
  box-shadow: 0 18px 34px rgba(2, 10, 18, 0.42), 0 0 30px rgba(118, 239, 199, 0.16);
}

.btn:hover::after {
  left: 118%;
}

.btn:focus-visible {
  outline: 2px solid rgba(118, 239, 199, 0.9);
  outline-offset: 3px;
}

.btn-primary {
  color: #eafff8;
  border-color: rgba(118, 239, 199, 0.72);
  box-shadow: inset 0 0 0 1px rgba(118, 239, 199, 0.16), 0 0 0 1px rgba(118, 239, 199, 0.08), 0 18px 34px rgba(2, 10, 18, 0.34);
}

.btn-secondary {
  color: #d9eff9;
  background: rgba(5, 28, 41, 0.55);
}

.btn-secondary::before {
  background:
    radial-gradient(circle at var(--px, 50%) var(--py, 50%), rgba(111, 210, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(7, 31, 45, 0.74), rgba(5, 21, 33, 0.84));
}

.btn-secondary::after {
  opacity: 0.72;
}

.kpis {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.kpi {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  text-align: left;
  padding: 12px 13px;
}
.kpi strong {
  display: block;
  color: var(--accent2);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  white-space: nowrap;
}
.kpi span { color: #adc7d5; font-size: 13px; line-height: 1.3; }

.hero-route {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.1vw, 14px);
  width: 100%;
  margin-top: clamp(8px, 1.5vw, 18px);
  padding: 12px 14px;
  border: 1px solid rgba(129, 196, 230, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(98, 232, 188, 0.08), rgba(111, 210, 255, 0.06), rgba(98, 232, 188, 0.08)),
    rgba(4, 18, 29, 0.46);
  color: #cde8f5;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
}

.hero-route span {
  color: #dff5ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-route i {
  flex: 1 1 34px;
  max-width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(118, 239, 199, 0.12), rgba(118, 239, 199, 0.62), rgba(111, 210, 255, 0.14));
  box-shadow: 0 0 12px rgba(118, 239, 199, 0.16);
}

.list { margin: 0; padding-left: 18px; color: #b7cfdb; }
.list li { margin: 8px 0; }

h2 {
  margin: 0 0 12px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.12;
}

h3 { margin: 0 0 9px; font-size: 21px; }
.sub { margin: 0 0 16px; color: var(--muted); max-width: 960px; }

.proof-head {
  max-width: 1040px;
  margin-bottom: 18px;
}

.proof-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border: 1px solid rgba(98, 232, 188, 0.5);
  border-radius: 999px;
  color: #9cf1d7;
  background: rgba(98, 232, 188, 0.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-board {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  grid-template-areas:
    "main timeline"
    "control control";
  gap: 14px;
  align-items: stretch;
}

.proof-card {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2vw, 26px);
  isolation: isolate;
}

.proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(142, 216, 251, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 216, 251, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 76%);
}

.proof-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  opacity: 0.42;
  filter: blur(34px);
  pointer-events: none;
}

.proof-card-main {
  grid-area: main;
  background:
    radial-gradient(520px 280px at 22% 24%, rgba(98, 232, 188, 0.14), transparent 70%),
    linear-gradient(150deg, rgba(10, 38, 53, 0.94), rgba(6, 22, 32, 0.9));
}

.proof-card-main::after {
  right: -60px;
  bottom: -88px;
  background: rgba(98, 232, 188, 0.45);
}

.proof-card-timeline {
  grid-area: timeline;
  background:
    radial-gradient(360px 190px at 88% 10%, rgba(103, 216, 255, 0.16), transparent 70%),
    linear-gradient(155deg, rgba(9, 34, 49, 0.92), rgba(6, 23, 33, 0.88));
}

.proof-card-timeline::after {
  right: -70px;
  top: -86px;
  background: rgba(103, 216, 255, 0.42);
}

.proof-card-control {
  grid-area: control;
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(0, 1fr);
  align-items: stretch;
  column-gap: clamp(20px, 3vw, 46px);
  background:
    radial-gradient(460px 220px at 88% 50%, rgba(255, 213, 142, 0.13), transparent 72%),
    radial-gradient(420px 220px at 12% 50%, rgba(103, 216, 255, 0.1), transparent 72%),
    linear-gradient(155deg, rgba(9, 34, 49, 0.92), rgba(6, 23, 33, 0.88));
}

.proof-card-control::after {
  left: -90px;
  bottom: -100px;
  background: rgba(255, 213, 142, 0.3);
}

.proof-control-copy {
  display: grid;
  align-content: center;
}

.proof-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.proof-index {
  color: rgba(156, 241, 215, 0.8);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.proof-label {
  padding: 7px 10px;
  border: 1px solid rgba(134, 204, 238, 0.32);
  border-radius: 999px;
  color: #b9d8e7;
  background: rgba(4, 22, 34, 0.46);
  font-size: 12px;
  font-weight: 800;
}

.proof-card h3 {
  max-width: 760px;
  margin-bottom: 12px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.08;
}

.proof-card:not(.proof-card-main) h3 {
  font-size: clamp(20px, 1.6vw, 27px);
}

.proof-card p {
  color: #c8dfea;
}

.before-after {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 12px;
  margin: 20px 0 16px;
}

.time-box {
  min-height: 142px;
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 16px;
  border: 1px solid rgba(132, 203, 238, 0.3);
  border-radius: 20px;
  background: rgba(5, 26, 39, 0.74);
}

.time-box span {
  color: #9bbdcc;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.time-box strong {
  color: #eaf7ff;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(25px, 2.75vw, 42px);
  line-height: 1;
}

.time-box p {
  margin: 0;
  color: #b7d2df;
}

.time-box-before {
  opacity: 0.82;
  background:
    linear-gradient(160deg, rgba(8, 27, 40, 0.82), rgba(5, 20, 30, 0.78));
}

.time-box-after {
  border-color: rgba(98, 232, 188, 0.54);
  background:
    radial-gradient(220px 140px at 78% 16%, rgba(98, 232, 188, 0.18), transparent 72%),
    linear-gradient(160deg, rgba(13, 52, 58, 0.86), rgba(5, 27, 35, 0.82));
  box-shadow: inset 0 0 0 1px rgba(98, 232, 188, 0.1), 0 20px 48px rgba(3, 18, 24, 0.28);
}

.time-box-after strong {
  color: #96f3d5;
}

.time-arrow {
  display: grid;
  place-items: center;
  width: 42px;
  color: #8ff1d1;
  font-size: 28px;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(98, 232, 188, 0.45);
}

.proof-note {
  margin: 0;
  color: #9ec3d4;
  font-size: 14px;
}

.proof-timeline {
  --timeline-axis: 18px;
  --timeline-dot: 12px;
  --timeline-gutter: 34px;
  position: relative;
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding-left: var(--timeline-gutter);
}

.proof-timeline::before {
  content: "";
  position: absolute;
  left: calc(var(--timeline-axis) - 1px);
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, rgba(98, 232, 188, 0.78), rgba(103, 216, 255, 0.22));
  border-radius: 999px;
}

.proof-timeline div {
  position: relative;
  padding: 12px 16px;
  border: 1px solid rgba(132, 203, 238, 0.24);
  border-radius: 16px;
  background: rgba(5, 26, 39, 0.58);
}

.proof-timeline div::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  left: calc(var(--timeline-axis) - var(--timeline-gutter) - (var(--timeline-dot) / 2));
  top: 18px;
  width: var(--timeline-dot);
  height: var(--timeline-dot);
  border-radius: 50%;
  background: #8ff1d1;
  border: 2px solid rgba(8, 31, 44, 0.95);
  box-shadow: 0 0 16px rgba(98, 232, 188, 0.55);
}

.proof-timeline span {
  display: block;
  margin-bottom: 5px;
  color: #9cf1d7;
  font-weight: 900;
}

.proof-timeline p {
  margin: 0;
  color: #bfd8e4;
  font-size: 14px;
}

.metric-dashboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.metric-widget {
  position: relative;
  min-height: 154px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(132, 203, 238, 0.28);
  border-radius: 18px;
  background:
    radial-gradient(160px 110px at 80% 10%, rgba(103, 216, 255, 0.1), transparent 70%),
    rgba(5, 26, 39, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.metric-widget::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #83dfff;
  box-shadow: 0 0 14px rgba(103, 216, 255, 0.48);
}

.metric-widget span {
  padding-left: 18px;
  color: #89dffc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.metric-widget strong {
  color: #e8f6ff;
  font-size: clamp(17px, 1.2vw, 22px);
  line-height: 1.12;
}

.metric-widget p {
  margin: 0;
  color: #a9c7d6;
  font-size: 14px;
  line-height: 1.35;
}

.grid-2,
.grid-3 { display: grid; gap: 12px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { padding: 14px; }
.card p { margin: 0; color: #b9d1de; }

.content-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}

.flow-step {
  position: relative;
  z-index: 1;
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(132, 203, 238, 0.28);
  border-radius: 22px;
  background:
    radial-gradient(260px 160px at 72% 12%, rgba(103, 216, 255, 0.1), transparent 68%),
    linear-gradient(160deg, rgba(10, 36, 52, 0.9), rgba(7, 25, 35, 0.88));
  box-shadow: var(--shadow);
  overflow: visible;
}

.flow-step:not(:last-child)::before {
  content: "→";
  position: absolute;
  right: -23px;
  top: 50%;
  z-index: 4;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(132, 203, 238, 0.3);
  border-radius: 999px;
  color: #9cf1d7;
  background: rgba(6, 25, 38, 0.96);
  font-size: 15px;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(98, 232, 188, 0.38);
  transform: translateY(-50%);
}

.flow-step-accent {
  border-color: rgba(132, 203, 238, 0.3);
  background:
    radial-gradient(260px 160px at 72% 12%, rgba(103, 216, 255, 0.1), transparent 68%),
    linear-gradient(160deg, rgba(10, 36, 52, 0.9), rgba(7, 25, 35, 0.88));
}

.flow-step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(132, 203, 238, 0.16);
}

.flow-step-top span {
  color: #9cf1d7;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.flow-step-top b {
  padding: 6px 9px;
  border: 1px solid rgba(132, 203, 238, 0.3);
  border-radius: 999px;
  color: #b9d8e7;
  background: rgba(4, 22, 34, 0.48);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.flow-step h3 {
  margin: 0;
  font-size: clamp(20px, 1.45vw, 25px);
  line-height: 1.12;
}

.flow-step p {
  margin: 0;
  color: #bdd6e2;
}

.flow-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}

.flow-channels span {
  padding: 6px 9px;
  border: 1px solid rgba(132, 203, 238, 0.34);
  border-radius: 999px;
  color: #d7edf7;
  background: rgba(4, 22, 34, 0.48);
  font-size: 12px;
  font-weight: 800;
}

.value-economy {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.value-ledger {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.value-card,
.value-outcome {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(132, 203, 238, 0.28);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.value-card {
  min-height: 360px;
  padding: clamp(18px, 2.2vw, 28px);
  background:
    linear-gradient(160deg, rgba(10, 36, 52, 0.9), rgba(7, 25, 35, 0.86));
}

.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(142, 216, 251, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142, 216, 251, 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 32%, black, transparent 78%);
}

.value-card-minus {
  background:
    radial-gradient(420px 220px at 14% 12%, rgba(103, 216, 255, 0.09), transparent 70%),
    linear-gradient(160deg, rgba(10, 36, 52, 0.92), rgba(7, 25, 35, 0.86));
}

.value-card-plus {
  border-color: rgba(132, 203, 238, 0.28);
  background:
    radial-gradient(420px 220px at 86% 12%, rgba(103, 216, 255, 0.09), transparent 70%),
    linear-gradient(160deg, rgba(10, 36, 52, 0.92), rgba(7, 25, 35, 0.86));
}

.value-card-head {
  position: relative;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(132, 203, 238, 0.18);
}

.value-card-head span,
.value-outcome span {
  color: #a8dff4;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.value-card-head h3 {
  margin: 0;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.1;
}

.value-list {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-list li {
  display: grid;
  grid-template-columns: minmax(140px, 0.42fr) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(132, 203, 238, 0.22);
  border-radius: 16px;
  background: rgba(5, 26, 39, 0.56);
}

.value-list b {
  color: #e8f6ff;
  line-height: 1.25;
}

.value-list span {
  color: #b7d1de;
  line-height: 1.38;
}

.value-outcome {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  column-gap: clamp(16px, 3vw, 44px);
  row-gap: 8px;
  align-items: center;
  padding: clamp(18px, 2.2vw, 28px);
  border-color: rgba(132, 203, 238, 0.28);
  background:
    radial-gradient(460px 180px at 12% 50%, rgba(103, 216, 255, 0.1), transparent 70%),
    linear-gradient(120deg, rgba(10, 36, 52, 0.92), rgba(7, 25, 35, 0.84));
}

.value-outcome span {
  grid-column: 1;
}

.value-outcome strong {
  grid-column: 1;
  color: #eaf7ff;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(22px, 2.1vw, 36px);
  line-height: 1.1;
}

.value-outcome p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  color: #bdd6e2;
}

/* Audience */
.audience-desktop { display: block; }
.audience-mobile-lab { display: none; }

.audience-galaxy {
  margin-top: 14px;
  min-height: 610px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(132, 201, 236, 0.26);
  border-radius: var(--radius);
  isolation: isolate;
  display: grid;
  gap: 14px;
  padding: clamp(16px, 2.2vw, 26px);
  background:
    radial-gradient(680px 300px at 50% 52%, rgba(105, 224, 255, 0.14), transparent 66%),
    radial-gradient(500px 220px at 14% 18%, rgba(97, 232, 188, 0.1), transparent 68%),
    radial-gradient(500px 240px at 86% 82%, rgba(103, 216, 255, 0.11), transparent 72%),
    linear-gradient(165deg, rgba(8, 30, 44, 0.96), rgba(6, 23, 33, 0.95));
}

.audience-galaxy::before,
.audience-galaxy::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.audience-galaxy::before {
  background-image:
    radial-gradient(circle at 14% 22%, rgba(206, 245, 255, 0.28) 0 1px, transparent 2px),
    radial-gradient(circle at 28% 74%, rgba(206, 245, 255, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 26%, rgba(206, 245, 255, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 66%, rgba(206, 245, 255, 0.2) 0 1px, transparent 2px),
    radial-gradient(circle at 64% 82%, rgba(206, 245, 255, 0.18) 0 1px, transparent 2px);
  opacity: 0.75;
}

.audience-galaxy::after {
  border-radius: inherit;
  box-shadow: inset 0 0 120px rgba(3, 15, 24, 0.45);
}

.audience-orbit-field {
  position: relative;
  min-height: 368px;
  z-index: 2;
}

.audience-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.audience-lines path {
  fill: none;
  stroke: rgba(147, 220, 252, 0.26);
  stroke-width: 0.18;
  stroke-linecap: round;
  stroke-dasharray: 1.2 1.4;
  animation: lineDrift 10s linear infinite;
}

.audience-lines path.is-active {
  stroke: rgba(98, 232, 188, 0.88);
  stroke-width: 0.32;
  stroke-dasharray: 1.6 0.6;
  filter: drop-shadow(0 0 8px rgba(98, 232, 188, 0.6));
}

.aud-core,
.aud-node {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 999px;
  border: 1px solid rgba(140, 206, 238, 0.42);
  background: #072031;
  color: #e9f8ff;
  font-weight: 800;
}

.aud-core {
  width: 166px;
  height: 166px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(98, 232, 188, 0.82);
  box-shadow: 0 0 34px rgba(98, 232, 188, 0.36);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 24px;
  background: radial-gradient(circle at 35% 35%, rgba(20, 74, 84, 0.99), rgba(6, 24, 36, 0.99));
  overflow: hidden;
  isolation: isolate;
  animation: corePulse 3.8s ease-in-out infinite;
  z-index: 5;
  gap: 4px;
  align-content: center;
}

.aud-core strong {
  font-size: 26px;
}

.aud-core span {
  color: #a9d1de;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.aud-node {
  min-width: 174px;
  min-height: 58px;
  padding: 10px 16px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 0 0 1px rgba(5, 24, 36, 0.9), 0 8px 20px rgba(2, 11, 18, 0.42);
}

.aud-node:hover,
.aud-node.is-active {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(98, 232, 188, 0.82);
  box-shadow: 0 0 0 1px rgba(98, 232, 188, 0.24), 0 14px 28px rgba(2, 11, 18, 0.48);
}

.aud-node-1 { left: 11%; top: 18%; }
.aud-node-2 { left: 50%; top: 7%; transform: translateX(-50%); }
.aud-node-2:hover,
.aud-node-2.is-active { transform: translateX(-50%) translateY(-3px) scale(1.03); }
.aud-node-3 { right: 11%; top: 18%; }
.aud-node-4 { left: 11%; bottom: 12%; }
.aud-node-5 { left: 50%; bottom: 4%; transform: translateX(-50%); }
.aud-node-5:hover,
.aud-node-5.is-active { transform: translateX(-50%) translateY(-3px) scale(1.03); }
.aud-node-6 { right: 11%; bottom: 12%; }

.audience-detail-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr) auto;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
  border: 1px solid rgba(140, 206, 238, 0.42);
  border-radius: 20px;
  background:
    radial-gradient(360px 140px at 12% 20%, rgba(98, 232, 188, 0.12), transparent 70%),
    linear-gradient(165deg, rgba(7, 30, 44, 0.96), rgba(6, 24, 35, 0.92));
  box-shadow: 0 18px 44px rgba(1, 9, 15, 0.6);
  padding: clamp(16px, 2vw, 22px);
}

.audience-detail-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: #9cf1d7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-popover-kicker {
  margin: 0 0 6px;
  color: #8de4ff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 800;
}

.audience-detail-panel h3 {
  margin: 0;
  font-size: clamp(22px, 1.9vw, 32px);
  line-height: 1.2;
}

.audience-detail-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #cbe0ec;
  display: grid;
  gap: 9px;
}

.audience-detail-panel li {
  position: relative;
  padding-left: 18px;
}

.audience-detail-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8de4ff;
  box-shadow: 0 0 14px rgba(103, 216, 255, 0.42);
}

.audience-popover-cta {
  white-space: nowrap;
}

/* Managed launch */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #9cf1d7;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9cf1d7;
  box-shadow: 0 0 18px rgba(98, 232, 188, 0.62);
}

.launch-board {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: stretch;
}

.launch-roadmap,
.launch-control {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(132, 201, 236, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(520px 220px at 12% 14%, rgba(98, 232, 188, 0.12), transparent 66%),
    linear-gradient(165deg, rgba(9, 31, 45, 0.94), rgba(6, 22, 33, 0.94));
  box-shadow: 0 22px 52px rgba(0, 8, 14, 0.38);
}

.launch-roadmap {
  --launch-pad: clamp(18px, 2.3vw, 28px);
  --launch-axis: calc(var(--launch-pad) + 12px);
  display: grid;
  gap: 0;
  padding: var(--launch-pad);
}

.launch-roadmap::before {
  content: "";
  position: absolute;
  left: var(--launch-axis);
  top: 44px;
  bottom: 44px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(98, 232, 188, 0.82), rgba(103, 216, 255, 0.22));
}

.launch-phase {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 18px;
  padding: 0 0 26px;
}

.launch-phase:last-child {
  padding-bottom: 0;
}

.launch-phase-dot {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: 17px;
  height: 17px;
  margin-top: 7px;
  border-radius: 50%;
  background: #9cf1d7;
  box-shadow: 0 0 0 7px rgba(98, 232, 188, 0.1), 0 0 20px rgba(98, 232, 188, 0.5);
}

.launch-phase div {
  border: 1px solid rgba(132, 201, 236, 0.22);
  border-radius: 20px;
  padding: clamp(16px, 1.8vw, 22px);
  background: rgba(5, 22, 33, 0.64);
}

.launch-phase-meta {
  margin: 0 0 8px;
  color: #9cf1d7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-phase h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2vw, 34px);
}

.launch-phase p:last-child {
  margin: 0;
  color: #c3d9e5;
}

.launch-control {
  padding: clamp(20px, 2.5vw, 32px);
  background:
    radial-gradient(520px 280px at 80% 0%, rgba(103, 216, 255, 0.18), transparent 72%),
    radial-gradient(420px 240px at 12% 78%, rgba(98, 232, 188, 0.1), transparent 70%),
    linear-gradient(165deg, rgba(8, 32, 47, 0.96), rgba(6, 22, 33, 0.94));
}

.launch-control::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(132, 201, 236, 0.12);
  border-radius: 22px;
  pointer-events: none;
}

.launch-control-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(140, 206, 238, 0.34);
  border-radius: 999px;
  color: #aee6f6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.launch-control h3 {
  margin: 0 0 22px;
  max-width: 680px;
  font-size: clamp(30px, 3vw, 52px);
  line-height: 0.98;
}

.launch-assets {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.launch-assets li {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(132, 201, 236, 0.25);
  border-radius: 17px;
  background: rgba(5, 22, 33, 0.62);
}

.launch-assets b {
  color: #eef8ff;
}

.launch-assets span {
  color: #c1d8e5;
}

.launch-control-note {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(98, 232, 188, 0.34);
  border-radius: 18px;
  background: rgba(98, 232, 188, 0.08);
}

.launch-control-note strong {
  color: #9cf1d7;
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.launch-control-note p {
  margin: 0;
  color: #d2e4ed;
}

/* Pricing + terms */
.term-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.term-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.term-help {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(130, 199, 231, 0.54);
  background: rgba(6, 28, 41, 0.9);
  color: #d9f1ff;
  font-weight: 800;
  font-size: 14px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1;
  text-align: center;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.term-pop {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%);
  width: min(460px, calc(100vw - 44px));
  border: 1px solid rgba(136, 205, 239, 0.38);
  border-radius: 12px;
  background: linear-gradient(165deg, rgba(8, 31, 44, 0.98), rgba(7, 24, 35, 0.95));
  color: #d2e8f4;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.4;
  z-index: 12;
  box-shadow: 0 14px 30px rgba(2, 10, 16, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.term-wrap:hover .term-pop,
.term-wrap:focus-within .term-pop,
.term-pop.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.price-card {
  border: 1px solid rgba(133, 201, 236, 0.31);
  border-radius: var(--radius);
  background: linear-gradient(164deg, rgba(8, 31, 45, 0.84), rgba(7, 24, 35, 0.84));
  padding: 14px;
  box-shadow: var(--shadow);
}

.price-card-featured {
  border-color: rgba(98, 232, 188, 0.62);
  box-shadow: 0 0 0 1px rgba(98, 232, 188, 0.28), var(--shadow);
}

.price-badge {
  margin: 0 0 8px;
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 800;
  color: #043120;
  background: linear-gradient(95deg, var(--accent), #89f6d3);
}

.price-format {
  margin: 0 0 8px;
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(131, 200, 233, 0.38);
  color: #bfe0ee;
  background: rgba(7, 28, 40, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.price-line {
  margin: 0 0 6px;
  color: #c8deea;
}

.price-line b {
  color: #e8f9ff;
  font-size: 26px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 700;
}

.price-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: #c5dbe7;
}

/* ROI + forms */
.roi-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(133, 203, 239, 0.35);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.roi-form,
.lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.roi-form label,
.lead-form label { display: grid; gap: 6px; color: #c7dfeb; font-size: 13px; }
.roi-default-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: #9ec4d8;
  font-size: 12px;
}

.roi-default-btn {
  grid-column: 1 / -1;
  margin-top: -2px;
  justify-content: center;
  min-height: 42px;
}


input,
textarea {
  width: 100%;
  border: 1px solid rgba(130, 197, 227, 0.36);
  border-radius: 12px;
  background-color: rgba(6, 25, 38, 0.76);
  color: #e9f8ff;
  padding: 10px 12px;
  font: inherit;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

select {
  width: 100%;
  border: 1px solid rgba(130, 197, 227, 0.36);
  border-radius: 12px;
  background-color: rgba(6, 25, 38, 0.76);
  color: #e9f8ff;
  padding: 10px 44px 10px 12px;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10'%3E%3Cpath d='M1 2.25L7 8L13 2.25' stroke='%238fdaf8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"),
    linear-gradient(180deg, rgba(120, 239, 199, 0.18), rgba(108, 206, 243, 0.12));
  background-size: 14px 10px, 34px 100%;
  background-position: calc(100% - 14px) center, right top;
  background-repeat: no-repeat;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(98, 232, 188, 0.9);
  box-shadow: 0 0 0 3px rgba(98, 232, 188, 0.15);
}

.roi-result {
  border: 1px solid rgba(133, 203, 239, 0.33);
  border-radius: 14px;
  padding: 12px;
  background: rgba(7, 28, 41, 0.72);
  display: grid;
  gap: 9px;
}

.roi-result span { color: #78efc7; font-weight: 800; }
.case p { margin: 0 0 8px; }
.case-metric {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(126, 200, 235, 0.35);
  color: #a2e8ff;
  font-weight: 700;
}

.handoff-near-pricing {
  margin-top: 14px;
  border-color: rgba(255, 205, 120, 0.46);
  background: linear-gradient(160deg, rgba(46, 35, 19, 0.52), rgba(7, 27, 39, 0.84));
}

.handoff-near-pricing h3 {
  margin-bottom: 8px;
}

.format-price {
  margin: 10px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(129, 198, 232, 0.32);
  border-radius: 10px;
  color: #cbe3ef;
  background: rgba(7, 28, 40, 0.62);
  font-size: 14px;
}

.warn {
  margin-top: 12px;
  border-left: 4px solid var(--warn);
  border-radius: 10px;
  background: rgba(87, 59, 14, 0.5);
  color: #ffe7c3;
  padding: 12px 14px;
}

.final { padding: 22px; }
.lead-form {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(138, 203, 235, 0.26);
}

.form-actions { margin-top: 14px; }
.form-hint { margin: 8px 0 0; color: #a2c9da; font-size: 13px; }

footer { padding: 32px 0 40px; color: #a3bfcd; font-size: 14px; }

.mobile-sticky-cta,
.mobile-only-section,
.mobile-section-cta,
.hero-mobile-proof {
  display: none;
}

/* Card motion + reveal */
.hero-main,
.hero-card,
.kpi,
.card,
.price-card,
.proof-card,
.flow-step,
.value-card,
.value-outcome,
.launch-roadmap,
.launch-control,
.roi-card,
.final,
.step,
.case {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.reveal { opacity: 1; transform: none; }
body.is-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
body.is-ready .reveal.show { opacity: 1; transform: translateY(0); }

body.is-ready .reveal .kpis > *,
body.is-ready .reveal .grid-2 > *,
body.is-ready .reveal .grid-3 > *,
body.is-ready .reveal .pricing-grid > *,
body.is-ready .reveal .proof-board > *,
body.is-ready .reveal .content-flow > *,
body.is-ready .reveal .value-ledger > *,
body.is-ready .reveal .value-outcome,
body.is-ready .reveal .launch-board > * {
  opacity: 0;
  transform: translateY(20px) scale(0.985);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

body.is-ready .reveal.show .kpis > *,
body.is-ready .reveal.show .grid-2 > *,
body.is-ready .reveal.show .grid-3 > *,
body.is-ready .reveal.show .pricing-grid > *,
body.is-ready .reveal.show .proof-board > *,
body.is-ready .reveal.show .content-flow > *,
body.is-ready .reveal.show .value-ledger > *,
body.is-ready .reveal.show .value-outcome,
body.is-ready .reveal.show .launch-board > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.is-ready .reveal.show .kpis > *:nth-child(1),
body.is-ready .reveal.show .grid-2 > *:nth-child(1),
body.is-ready .reveal.show .grid-3 > *:nth-child(1),
body.is-ready .reveal.show .pricing-grid > *:nth-child(1),
body.is-ready .reveal.show .proof-board > *:nth-child(1),
body.is-ready .reveal.show .content-flow > *:nth-child(1),
body.is-ready .reveal.show .value-ledger > *:nth-child(1),
body.is-ready .reveal.show .launch-board > *:nth-child(1) { transition-delay: 50ms; }

body.is-ready .reveal.show .kpis > *:nth-child(2),
body.is-ready .reveal.show .grid-2 > *:nth-child(2),
body.is-ready .reveal.show .grid-3 > *:nth-child(2),
body.is-ready .reveal.show .pricing-grid > *:nth-child(2),
body.is-ready .reveal.show .proof-board > *:nth-child(2),
body.is-ready .reveal.show .content-flow > *:nth-child(2),
body.is-ready .reveal.show .value-ledger > *:nth-child(2),
body.is-ready .reveal.show .launch-board > *:nth-child(2) { transition-delay: 120ms; }

body.is-ready .reveal.show .kpis > *:nth-child(3),
body.is-ready .reveal.show .grid-2 > *:nth-child(3),
body.is-ready .reveal.show .grid-3 > *:nth-child(3),
body.is-ready .reveal.show .pricing-grid > *:nth-child(3),
body.is-ready .reveal.show .proof-board > *:nth-child(3),
body.is-ready .reveal.show .content-flow > *:nth-child(3) { transition-delay: 190ms; }

body.is-ready .reveal.show .content-flow > *:nth-child(4) { transition-delay: 260ms; }

body.is-ready .hero .chip,
body.is-ready .hero h1,
body.is-ready .hero .lead,
body.is-ready .hero .hero-actions,
body.is-ready .hero .kpis,
body.is-ready .hero .publish-console {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

body.is-ready .hero.show .chip,
body.is-ready .hero.show h1,
body.is-ready .hero.show .lead,
body.is-ready .hero.show .hero-actions,
body.is-ready .hero.show .kpis,
body.is-ready .hero.show .publish-console {
  opacity: 1;
  transform: translateY(0);
}

body.is-ready .hero.show h1 { transition-delay: 90ms; }
body.is-ready .hero.show .lead { transition-delay: 160ms; }
body.is-ready .hero.show .hero-actions { transition-delay: 230ms; }
body.is-ready .hero.show .kpis { transition-delay: 300ms; }
body.is-ready .hero.show .publish-console { transition-delay: 220ms; }

.ripple {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  transform: translate(-50%, -50%) scale(0);
  animation: rippleWave 0.55s ease-out;
  pointer-events: none;
}

@keyframes rippleWave {
  to {
    transform: translate(-50%, -50%) scale(16);
    opacity: 0;
  }
}

@keyframes consoleBoot {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes flowSweep {
  0% { transform: translate(-20%, -50%); opacity: 0; }
  12% { opacity: 1; }
  52% { opacity: 1; }
  78% { transform: translate(420%, -50%); opacity: 0; }
  100% { transform: translate(420%, -50%); opacity: 0; }
}

@keyframes flowNodePulse {
  0%, 100% {
    border-color: rgba(129, 196, 230, 0.24);
    color: #b8d6e5;
    box-shadow: none;
  }
  36%, 50% {
    border-color: rgba(118, 239, 199, 0.62);
    color: #eafff8;
    box-shadow: 0 0 18px rgba(118, 239, 199, 0.14);
  }
}

@keyframes stepBoot {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes channelPing {
  0%, 100% {
    border-color: rgba(144, 198, 226, 0.24);
    box-shadow: none;
  }
  42%, 54% {
    border-color: rgba(118, 239, 199, 0.62);
    box-shadow: 0 0 18px rgba(118, 239, 199, 0.16);
  }
}

@keyframes heroScan {
  0%, 100% {
    opacity: 0.62;
    transform: scaleX(0.82);
    transform-origin: left center;
  }
  48% {
    opacity: 0.95;
    transform: scaleX(1);
  }
}

@keyframes sparkleFloat {
  0% { transform: translateY(14px) scale(0.6); opacity: 0; }
  14% { opacity: 0.8; }
  100% { transform: translateY(-24px) scale(1.1); opacity: 0; }
}

@keyframes orbitFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes corePulse {
  0% { box-shadow: 0 0 22px rgba(98, 232, 188, 0.28); }
  50% { box-shadow: 0 0 38px rgba(98, 232, 188, 0.42); }
  100% { box-shadow: 0 0 22px rgba(98, 232, 188, 0.28); }
}

@keyframes lineDrift {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -12; }
}

/* mobile */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
  }
  .hero-main,
  .hero-side {
    align-self: auto;
  }
  .publish-console {
    justify-self: stretch;
    width: 100%;
    height: auto;
  }
  .console-panel {
    height: auto;
    grid-template-rows: auto;
  }
  .publish-console { min-height: auto; }
  .grid-3,
  .grid-2,
  .pricing-grid,
  .content-flow,
  .value-ledger,
  .kpis,
  .roi-card,
  .roi-form,
  .lead-grid,
  .proof-board,
  .launch-board { grid-template-columns: 1fr; }

  .content-flow::before,
  .flow-step::before,
  .flow-step::after,
  .value-card::before {
    display: none;
  }

  .flow-step,
  .value-card {
    min-height: 0;
  }

  .value-outcome {
    grid-template-columns: 1fr;
  }

  .value-outcome span,
  .value-outcome strong,
  .value-outcome p {
    grid-column: 1;
    grid-row: auto;
  }

  .proof-board {
    grid-template-areas:
      "main"
      "timeline"
      "control";
  }

  .proof-card-control {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }

  .proof-card-main { min-height: 0; }

  .metric-dashboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .time-arrow {
    width: auto;
    height: 28px;
    transform: rotate(90deg);
  }

  .launch-assets li {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .term-wrap { display: inline-flex; flex-direction: column; align-items: flex-start; width: 100%; }
  .term-pop {
    position: static;
    width: 100%;
    margin-top: 8px;
    transform: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 12px;
    pointer-events: none;
  }
  .term-wrap:hover .term-pop,
  .term-wrap:focus-within .term-pop,
  .term-pop.is-open {
    opacity: 1;
    max-height: 220px;
    padding: 10px 12px;
    transform: none;
    pointer-events: auto;
  }

  .audience-desktop { display: none !important; }
  .audience-mobile-lab { display: grid !important; }

  .mobile-variant.mv2 {
    border: 1px solid rgba(132, 201, 236, 0.22);
    border-radius: 16px;
    padding: 14px 12px 12px;
    background:
      radial-gradient(340px 120px at 50% 0%, rgba(98, 232, 188, 0.14), transparent),
      linear-gradient(165deg, rgba(8, 30, 44, 0.82), rgba(6, 23, 33, 0.82));
  }

  .mobile-variant.mv2 h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.2;
  }

  .mv2-core-wrap {
    margin: 0 0 10px;
    min-height: 102px;
    position: relative;
    display: block;
    text-align: center;
  }

  .mv2-core {
    width: min(240px, 86%);
    margin: 0 auto;
    height: 60px;
    border-radius: 999px;
    border: 1px solid rgba(98, 232, 188, 0.65);
    background: rgba(6, 27, 40, 0.94);
    box-shadow: 0 0 22px rgba(98, 232, 188, 0.22);
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: 24px;
    letter-spacing: 0.2px;
    display: grid;
    place-items: center;
  }

  .mv2-connector {
    position: absolute;
    top: 62px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 36px;
    background: linear-gradient(180deg, rgba(98, 232, 188, 0.5), rgba(139, 207, 238, 0.05));
  }

  .mv2-list {
    position: relative;
    display: grid;
    gap: 8px;
    padding-top: 2px;
  }

  .mv2-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    padding: 10px 10px 10px 26px;
    border: 1px solid rgba(139, 207, 238, 0.28);
    border-radius: 12px;
    background: rgba(8, 30, 43, 0.62);
    box-shadow: inset 0 0 0 1px rgba(7, 30, 44, 0.5);
  }

  .mv2-item::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 20px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(139, 207, 238, 0.55);
  }

  .mv2-item summary {
    font-size: 15px;
    font-weight: 800;
    color: #e5f7ff;
    list-style: none;
    cursor: pointer;
    margin: 0;
    position: relative;
    padding-right: 24px;
  }

  .mv2-item summary::-webkit-details-marker { display: none; }

  .mv2-item summary::after {
    content: "+";
    position: absolute;
    right: 2px;
    top: -1px;
    color: #8de4ff;
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
  }

  .mv2-item[open] summary::after { content: "−"; }

  .mv2-item p {
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.45;
    color: #c8dfea;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-bottom: 86px;
  }

  .wrap { width: min(100% - 28px, var(--maxw)); }

  header {
    padding: 10px 0;
  }

  .top {
    min-height: 46px;
  }

  .brand {
    font-size: clamp(23px, 7.2vw, 28px);
  }

  .top-actions {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    min-width: 0;
  }

  .top-actions .btn {
    width: auto;
    min-height: 44px;
    white-space: nowrap;
    padding: 9px 12px;
    font-size: 13px;
    border-radius: 14px;
  }

  .top-actions .btn:first-child {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    z-index: 90;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(118, 239, 199, 0.78);
    border-radius: 16px;
    background: linear-gradient(135deg, #092b35, #061621 72%);
    color: #ecfff8;
    box-shadow: 0 18px 42px rgba(0, 8, 13, 0.82), 0 0 0 1px rgba(118, 239, 199, 0.2);
    font-weight: 900;
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .proof-card {
    padding: 14px;
  }
  .proof-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 12px;
  }
  .proof-head {
    margin-bottom: 12px;
  }
  .proof-kicker {
    margin-bottom: 9px;
    padding: 6px 10px;
    font-size: 11px;
  }
  .proof-card h3,
  .proof-card:not(.proof-card-main) h3 {
    font-size: clamp(21px, 7vw, 27px);
    line-height: 1.08;
    margin-bottom: 8px;
  }
  .proof-card p {
    margin: 0;
  }
  .before-after {
    gap: 8px;
    margin: 14px 0 10px;
  }
  .time-box {
    min-height: 96px;
    padding: 13px;
    border-radius: 16px;
  }
  .time-box strong {
    font-size: clamp(24px, 8vw, 32px);
  }
  .proof-timeline {
    --timeline-axis: 20px;
    --timeline-dot: 14px;
    --timeline-gutter: 40px;
    gap: 8px;
    margin: 12px 0;
  }
  .proof-timeline::before {
    left: calc(var(--timeline-axis) - 1px);
  }
  .proof-timeline div {
    padding: 12px 13px;
  }
  .proof-timeline div::before {
    left: calc(-1 * (var(--timeline-gutter) - var(--timeline-axis) + (var(--timeline-dot) / 2)));
    top: 50%;
    transform: translateY(-50%);
    width: var(--timeline-dot);
    height: var(--timeline-dot);
  }
  .metric-dashboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .metric-widget {
    min-height: 112px;
    padding: 12px;
  }
  .metric-widget strong {
    font-size: 16px;
  }
  .metric-widget p {
    font-size: 12px;
  }
  .value-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .hero {
    margin-top: 16px;
    padding: 14px;
    border-radius: 22px;
    gap: 12px;
  }
  .hero::after {
    left: 16px;
    right: 16px;
  }
  .hero-main { padding: 0; }
  .chip {
    margin-bottom: 9px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.25;
  }
  .hero h1 {
    margin-bottom: 10px;
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.03;
  }
  .lead {
    margin-bottom: 13px;
    font-size: 15px;
    line-height: 1.45;
  }
  .hero .hero-actions {
    gap: 8px;
  }
  .hero .hero-actions .btn {
    min-height: 48px;
    width: min(100%, 190px);
    padding: 12px 15px;
  }
  .hero .hero-actions .btn-secondary {
    display: none;
  }
  .kpis {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 12px;
  }
  .kpi {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 76px;
    gap: 4px;
    padding: 10px 8px;
    border-radius: 15px;
  }
  .kpi strong {
    font-size: clamp(16px, 5.2vw, 21px);
  }
  .kpi span {
    font-size: 11px;
    line-height: 1.25;
  }
  .hero-mobile-proof {
    display: block;
    margin: 10px 0 0;
    padding: 10px 12px;
    border: 1px solid rgba(118, 239, 199, 0.32);
    border-radius: 14px;
    background: rgba(98, 232, 188, 0.08);
    color: #c9f5e8;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
  }
  .publish-console {
    height: auto;
    min-height: 0;
    border-radius: 18px;
  }
  .console-window-bar {
    min-height: 30px;
    padding: 0 12px;
  }
  .console-window-bar b {
    font-size: 12px;
  }
  .console-panel {
    display: flex;
    flex-direction: column;
    gap: 7px;
    height: auto;
    padding: 12px;
    overflow: visible;
  }
  .hero-route {
    display: none;
  }
  .console-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 7px;
    margin-bottom: 0;
  }
  .console-top h3 {
    max-width: none;
    font-size: clamp(18px, 5.4vw, 22px);
  }
  .console-kicker {
    margin-bottom: 4px;
    font-size: 10px;
  }
  .console-status {
    grid-column: 2;
    grid-row: 1;
    min-height: 28px;
    padding: 5px 8px;
    font-size: 10px;
  }
  .flow-rail {
    gap: 4px;
    padding: 6px;
    border-radius: 14px;
  }
  .flow-rail i {
    display: none;
  }
  .flow-node {
    min-height: 29px;
    padding: 6px 5px;
    font-size: 10px;
  }
  .console-doc {
    display: none;
    grid-template-columns: minmax(0, 1fr);
    flex: 0 0 auto;
    min-height: 0;
    padding: 10px;
    border-radius: 16px;
  }
  .doc-preview {
    min-height: 0;
    overflow: hidden;
  }
  .doc-meta {
    gap: 5px;
    margin-bottom: 8px;
  }
  .doc-meta span,
  .doc-label {
    font-size: 9px;
  }
  .console-doc h4 {
    max-width: none;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 15px;
    line-height: 1.12;
  }
  .artifact-panel {
    display: none;
  }
  .doc-lines {
    display: none;
    margin-top: 9px;
    gap: 6px;
  }
  .doc-lines span {
    height: 7px;
  }
  .doc-lines span:nth-child(3) {
    display: none;
  }
  .publish-steps,
  .live-log,
  .channel-strip,
  .console-caption {
    display: none;
  }
  .console-route {
    gap: 8px;
    margin: 14px auto;
  }
  .console-route strong {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 13px;
  }
  .channel-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .channel-card {
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 8px;
    min-height: 68px;
    padding: 10px;
  }
  .channel-card b {
    margin-top: 1px;
  }
  .channel-card small {
    grid-column: 2;
    margin-top: 2px;
  }

  .content-flow {
    overflow: hidden;
  }

  .flow-step {
    overflow: hidden;
  }

  .flow-step::before,
  .flow-step::after,
  .flow-step:not(:last-child)::before {
    display: none !important;
    content: none !important;
  }

  .mobile-only-section {
    display: block;
  }

  .mobile-budget {
    padding-top: 26px;
  }

  .mobile-budget .section-kicker {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .mobile-budget h2 {
    font-size: clamp(24px, 7.5vw, 31px);
  }

  .mobile-budget-grid {
    display: grid;
    gap: 9px;
    margin-top: 14px;
  }

  .mobile-budget-grid article {
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(132, 203, 238, 0.28);
    border-radius: 17px;
    background:
      radial-gradient(220px 110px at 86% 0%, rgba(98, 232, 188, 0.12), transparent 72%),
      rgba(5, 26, 39, 0.64);
    box-shadow: var(--shadow);
  }

  .mobile-budget-grid span {
    color: #9cf1d7;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-budget-grid strong {
    color: #f0fbff;
    font-family: "Unbounded", "Manrope", sans-serif;
    font-size: clamp(22px, 7vw, 30px);
    line-height: 1.05;
  }

  .mobile-budget-grid p {
    margin: 0;
    color: #b9d2df;
    font-size: 13px;
    line-height: 1.35;
  }

  .mobile-section-cta {
    display: grid;
    gap: 8px;
    margin-top: 14px;
  }

  .mobile-section-cta .btn {
    width: 100%;
    min-height: 50px;
  }

  .mobile-section-cta span {
    color: #a8c8d8;
    font-size: 13px;
    line-height: 1.35;
  }

  .proof-cta {
    grid-column: 1 / -1;
    margin-top: 2px;
  }

  .final-mobile-cta {
    margin-top: 18px;
  }

  .final {
    padding: 18px;
  }

  .grid-overlay,
  .fx-blob,
  .aurora,
  .sparkle-layer {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
