:root {
  --site-width: 1520px;
  --gutter: clamp(24px, 3.5vw, 56px);
  --bg-0: #050914;
  --bg-1: #091323;
  --bg-2: #10203a;
  --panel: rgba(12, 19, 34, 0.9);
  --panel-strong: rgba(16, 27, 45, 0.96);
  --panel-soft: rgba(10, 16, 30, 0.74);
  --text: #eef6ff;
  --muted: #98aec6;
  --line: rgba(152, 174, 198, 0.16);
  --line-strong: rgba(45, 226, 230, 0.26);
  --accent: #2de2e6;
  --accent-2: #1dd1a1;
  --accent-3: #f7b64b;
  --danger: #ff6b6b;
  --shadow: 0 24px 80px rgba(3, 8, 20, 0.54);
  --glow: 0 0 24px rgba(45, 226, 230, 0.18);
  --sans: "Space Grotesk", "IBM Plex Sans", "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", "IBM Plex Mono", "SFMono-Regular", monospace;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 8% 12%, rgba(45, 226, 230, 0.15), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(29, 209, 161, 0.14), transparent 26%),
    radial-gradient(circle at 72% 80%, rgba(247, 182, 75, 0.09), transparent 22%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 48%, #07111e 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background:
    linear-gradient(transparent 0, rgba(255, 255, 255, 0.03) 2px, transparent 2px) 0 0 / 100% 150px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px) 0 0 / 140px 100%;
  mask-image: radial-gradient(circle at center, black 38%, transparent 90%);
  opacity: 0.35;
}

body::after {
  content: "";
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: -2;
  background: repeating-linear-gradient(
    125deg,
    rgba(45, 226, 230, 0.035) 0 2px,
    transparent 2px 12px
  );
  animation: drift-grid 26s linear infinite;
  opacity: 0.24;
}

@keyframes drift-grid {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-120px, 120px, 0);
  }
}

.page-backdrop {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(10, 20, 36, 0.2), rgba(3, 6, 14, 0.84));
}

.signal-orbit {
  position: fixed;
  border: 1px solid rgba(45, 226, 230, 0.14);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(0.2px);
}

.orbit-a {
  width: 38rem;
  height: 38rem;
  top: -10rem;
  right: -9rem;
  animation: orbit-pulse 10s ease-in-out infinite;
}

.orbit-b {
  width: 26rem;
  height: 26rem;
  left: -9rem;
  top: 32rem;
  border-color: rgba(247, 182, 75, 0.12);
  animation: orbit-pulse 12s ease-in-out infinite reverse;
}

@keyframes orbit-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.48;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.9;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header,
.site-main,
.site-footer {
  max-width: var(--site-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
  background: linear-gradient(180deg, rgba(5, 9, 20, 0.92), rgba(5, 9, 20, 0.68));
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45, 226, 230, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow:
    0 0 0 8px rgba(45, 226, 230, 0.09),
    0 0 20px rgba(45, 226, 230, 0.42);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  position: relative;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform: scaleX(0.75);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(45, 226, 230, 0.08);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-main {
  padding-top: 40px;
  padding-bottom: 96px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(45, 226, 230, 0.08);
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-meta {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.section {
  margin-top: 110px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
  min-height: calc(100vh - 180px);
  margin-top: 26px;
}

.hero-copy {
  max-width: 720px;
}

.hero-premium,
.feature-premium,
.showcase-premium {
  position: relative;
  isolation: isolate;
}

.hero-premium {
  padding: 44px 0 52px;
}

.hero-premium::before,
.feature-premium::before,
.showcase-premium::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -2;
}

.hero-premium::before {
  top: -60px;
  bottom: -48px;
  background:
    radial-gradient(circle at 18% 30%, rgba(45, 226, 230, 0.12), transparent 24%),
    radial-gradient(circle at 84% 46%, rgba(45, 226, 230, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(6, 12, 24, 0.9), rgba(6, 12, 24, 0.18) 16%, rgba(6, 12, 24, 0.18) 84%, rgba(6, 12, 24, 0.9)),
    linear-gradient(180deg, rgba(8, 14, 28, 0.42), rgba(8, 14, 28, 0.08));
  border-top: 1px solid rgba(45, 226, 230, 0.08);
  border-bottom: 1px solid rgba(45, 226, 230, 0.08);
}

.feature-premium {
  padding: 42px 0 34px;
}

.feature-premium::before {
  top: -22px;
  bottom: -24px;
  background:
    radial-gradient(circle at 16% 50%, rgba(45, 226, 230, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(10, 18, 34, 0.5), rgba(8, 14, 27, 0.18));
  border-top: 1px solid rgba(45, 226, 230, 0.06);
  border-bottom: 1px solid rgba(45, 226, 230, 0.06);
}

.showcase-premium {
  padding: 52px 0 58px;
}

.showcase-premium::before {
  top: -30px;
  bottom: -34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(247, 182, 75, 0.1), transparent 20%),
    radial-gradient(circle at 14% 58%, rgba(45, 226, 230, 0.09), transparent 24%),
    linear-gradient(180deg, rgba(10, 18, 34, 0.56), rgba(8, 14, 27, 0.24));
  border-top: 1px solid rgba(45, 226, 230, 0.07);
  border-bottom: 1px solid rgba(45, 226, 230, 0.07);
}

.hero h1 {
  max-width: 8.6ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--mono);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 5.8vw, 5.7rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.1rem, 3.7vw, 3.45rem);
  max-width: 12ch;
}

h3 {
  font-size: 1.32rem;
  line-height: 1.12;
}

.story-grid .surface h1 {
  font-size: clamp(2.8rem, 4.4vw, 4.8rem);
  max-width: 10ch;
}

.section-heading h2,
.launch-band h2,
.timeline-panel h2 {
  max-width: 14ch;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

h1 + p:not(.lede),
h2 + p,
h3 + p,
h2 + ul {
  margin-top: 14px;
}

.lede {
  margin-top: 22px;
  max-width: 52ch;
  font-size: 1.02rem;
}

.hero-actions,
.site-actions,
.band-actions,
.chapter-actions,
.form-actions,
.inline-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: translateX(-140%);
  transition: transform 320ms ease;
}

.button:hover::before {
  transform: translateX(140%);
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, rgba(45, 226, 230, 0.96), rgba(29, 209, 161, 0.86));
  color: #04121e;
  box-shadow: 0 18px 40px rgba(14, 152, 167, 0.22);
}

.button.ghost {
  border-color: var(--line-strong);
  background: rgba(9, 18, 34, 0.54);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(45, 226, 230, 0.06);
}

.button.subtle {
  border-color: rgba(247, 182, 75, 0.22);
  background: rgba(247, 182, 75, 0.08);
  color: var(--text);
}

.hero-proof,
.trust-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-proof {
  margin-top: 26px;
}

.proof-pill,
.trust-pill,
.chip,
.section-kicker,
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(10, 17, 31, 0.72);
  color: var(--muted);
  font-size: 0.84rem;
}

.proof-pill::before,
.trust-pill::before,
.status-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 14px rgba(45, 226, 230, 0.5);
}

.metric-row-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.metric-row-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.metric-card,
.metric-tile,
.surface,
.feature-card,
.shot-card,
.chapter-card,
.workflow-step,
.benefit-card,
.form-card,
.launch-band {
  background:
    linear-gradient(180deg, rgba(14, 24, 40, 0.94), rgba(8, 14, 26, 0.88));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.metric-card,
.metric-tile {
  border-radius: 20px;
  padding: 18px;
}

.metric-card span,
.metric-tile span {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
  margin-bottom: 8px;
}

.metric-card strong,
.metric-tile strong {
  display: block;
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.metric-card small,
.metric-tile small {
  color: var(--muted);
  line-height: 1.5;
}

.metric-tile.strong strong {
  color: var(--accent);
}

.hero-stage {
  position: relative;
  padding-right: clamp(0px, 2.5vw, 28px);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 10% -6% -10% 18%;
  z-index: -1;
  background:
    radial-gradient(circle at 40% 46%, rgba(45, 226, 230, 0.18), transparent 34%),
    radial-gradient(circle at 82% 52%, rgba(247, 182, 75, 0.12), transparent 24%);
  filter: blur(38px);
}

.preview-window,
.shot-frame,
.video-stage {
  position: relative;
  background: linear-gradient(180deg, rgba(10, 16, 28, 0.96), rgba(4, 10, 18, 0.92));
  border: 1px solid rgba(45, 226, 230, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.preview-window {
  padding: 16px;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.preview-window::after,
.shot-frame::after,
.video-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(45, 226, 230, 0.08), transparent 30%);
}

.preview-toolbar,
.shot-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(13, 21, 36, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.preview-dot.danger {
  background: var(--danger);
}

.preview-dot.warn {
  background: var(--accent-3);
}

.preview-dot.ok {
  background: var(--accent-2);
}

.preview-url,
.shot-url {
  margin-left: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-family: var(--mono);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 16px;
  margin-top: 16px;
}

.pulse-card,
.list-panel {
  border-radius: 24px;
  padding: 18px;
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pulse-card {
  display: grid;
  gap: 16px;
}

.list-panel.wide {
  grid-column: 1 / -1;
}

.section-kicker {
  width: fit-content;
  margin-bottom: 6px;
}

.pulse-meter {
  position: relative;
  display: grid;
  place-items: center;
  width: 164px;
  height: 164px;
  margin: 8px auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(45, 226, 230, 0.12), transparent 56%),
    conic-gradient(from 200deg, rgba(45, 226, 230, 0.15), rgba(29, 209, 161, 0.78), rgba(247, 182, 75, 0.6), rgba(45, 226, 230, 0.15));
}

.pulse-meter::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: rgba(3, 8, 18, 0.92);
  border: 1px solid rgba(45, 226, 230, 0.14);
}

.pulse-meter::after {
  content: "";
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  border: 1px solid rgba(45, 226, 230, 0.15);
  animation: ping 4.6s ease-out infinite;
}

@keyframes ping {
  0% {
    transform: scale(0.72);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

.pulse-core {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 6px;
}

.pulse-core strong {
  font-size: 2.4rem;
  letter-spacing: -0.04em;
}

.pulse-core span {
  color: var(--muted);
  font-size: 0.84rem;
}

.tile-row,
.shot-columns {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.list-item,
.feed-row,
.signal-row {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.list-item:first-of-type,
.feed-row:first-of-type,
.signal-row:first-of-type {
  border-top: 0;
}

.list-item strong,
.feed-row strong,
.signal-row strong {
  font-size: 0.95rem;
}

.shot-card {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.shot-copy h3,
.feature-card h3,
.workflow-step h3,
.chapter-card h3 {
  margin-bottom: 10px;
}

.shot-frame {
  padding: 14px;
  overflow: hidden;
}

.shot-body {
  display: grid;
  gap: 14px;
  padding: 14px 2px 2px;
}

.shot-stack .chip-cluster {
  margin-top: 4px;
}

.chip-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border-color: rgba(45, 226, 230, 0.12);
}

.activity-feed {
  display: grid;
}

.surface {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.surface.highlight {
  background:
    linear-gradient(180deg, rgba(13, 24, 42, 0.96), rgba(7, 12, 22, 0.92)),
    radial-gradient(circle at top right, rgba(45, 226, 230, 0.12), transparent 30%);
  border-color: rgba(45, 226, 230, 0.16);
}

.story-grid,
.showcase-grid,
.faq-grid,
.workflow-grid,
.demo-layout,
.waitlist-shell,
.product-hero,
.feature-mosaic {
  display: grid;
  gap: 24px;
}

.story-grid,
.demo-layout,
.waitlist-shell {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid,
.workflow-grid,
.faq-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.showcase-grid,
.feature-mosaic {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.workflow-step,
.chapter-card,
.benefit-card,
.form-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.feature-card,
.shot-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.shot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(45, 226, 230, 0.08), transparent 34%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02));
  opacity: 0.85;
}

.feature-card > *,
.shot-card > * {
  position: relative;
  z-index: 1;
}

.feature-card p,
.workflow-step p,
.chapter-card p,
.benefit-card p {
  margin-bottom: 16px;
}

.feature-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(45, 226, 230, 0.16), rgba(29, 209, 161, 0.2));
  border: 1px solid rgba(45, 226, 230, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 14px 34px rgba(2, 9, 20, 0.32);
  overflow: hidden;
}

.feature-icon::before {
  content: "";
  position: absolute;
  inset: -28%;
  background: conic-gradient(from 90deg, transparent, rgba(45, 226, 230, 0.18), transparent 58%);
  opacity: 0.7;
  animation: icon-rotate 9s linear infinite;
}

.feature-icon svg {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  overflow: visible;
}

.feature-icon svg * {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    stroke 220ms ease,
    fill 220ms ease;
}

.feature-card:hover .feature-icon::before {
  opacity: 1;
}

.feature-card:hover .feature-icon svg {
  transform: scale(1.06);
}

.icon-firewall .icon-orbit {
  stroke: rgba(45, 226, 230, 0.55);
  stroke-width: 1.6;
  stroke-dasharray: 5 5;
  animation: icon-rotate 8s linear infinite;
  transform-origin: center;
}

.icon-firewall .icon-shield {
  fill: rgba(45, 226, 230, 0.12);
  stroke: var(--accent);
  stroke-width: 1.9;
}

.icon-firewall .icon-scan {
  stroke: var(--accent-3);
  stroke-width: 1.8;
  animation: scan-sweep 2.8s ease-in-out infinite;
}

.icon-fingerprint .fp-line {
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 42;
  stroke-dashoffset: 42;
  animation: draw-print 4.2s ease-in-out infinite;
}

.icon-fingerprint .fp-a {
  animation-delay: 0.1s;
}

.icon-fingerprint .fp-b {
  animation-delay: 0.3s;
}

.icon-fingerprint .fp-c {
  animation-delay: 0.5s;
}

.icon-fingerprint .fp-d {
  animation-delay: 0.7s;
}

.icon-fingerprint .fp-dot {
  fill: var(--accent-3);
  stroke: rgba(247, 182, 75, 0.18);
}

.icon-containment .contain-shell {
  fill: rgba(45, 226, 230, 0.08);
  stroke: var(--accent);
  stroke-width: 1.9;
}

.icon-containment .contain-split {
  stroke: rgba(45, 226, 230, 0.6);
  stroke-width: 1.6;
}

.icon-containment .contain-node {
  fill: var(--accent-3);
  stroke: rgba(247, 182, 75, 0.16);
  animation: node-pulse 2.7s ease-in-out infinite;
}

.icon-story .story-wave {
  stroke: var(--accent-3);
  stroke-width: 1.9;
  animation: wave-bob 2.8s ease-in-out infinite;
}

.icon-story .story-arc {
  stroke: var(--accent);
  stroke-width: 1.8;
}

.icon-story .story-core {
  fill: var(--accent);
  stroke: rgba(45, 226, 230, 0.18);
  animation: eye-pulse 2.8s ease-in-out infinite;
}

@keyframes icon-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes scan-sweep {
  0%,
  100% {
    transform: translateY(-5px);
    opacity: 0.45;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}

@keyframes draw-print {
  0%,
  18%,
  100% {
    stroke-dashoffset: 42;
    opacity: 0.25;
  }
  42%,
  72% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes node-pulse {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes wave-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.5px);
  }
}

@keyframes eye-pulse {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.feature-list,
.benefit-list,
.timeline-list,
.signal-list-plain {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li,
.benefit-list li,
.timeline-list li,
.signal-list-plain li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.feature-list li::before,
.benefit-list li::before,
.timeline-list li::before,
.signal-list-plain li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(45, 226, 230, 0.35);
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
  max-width: 760px;
}

.section-heading p {
  max-width: 64ch;
}

.trust-strip {
  justify-content: center;
}

.launch-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.band-stats {
  display: grid;
  gap: 16px;
  align-content: center;
}

.stat-block {
  padding: 18px;
  border-radius: 20px;
  background: rgba(8, 14, 26, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-block span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.stat-block strong {
  display: block;
  font-size: 2rem;
}

.demo-stage {
  min-height: 430px;
  padding: 14px;
  overflow: hidden;
}

.video-player {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.video-fallback {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  min-height: 400px;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(7, 13, 24, 0.88), rgba(4, 10, 18, 0.96)),
    url("assets/demo-poster.svg") center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.video-stage.has-video .video-fallback {
  display: none;
}

.video-fallback-badge,
.fallback-timestamp {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 16, 31, 0.78);
  border: 1px solid rgba(45, 226, 230, 0.18);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.82rem;
}

.video-fallback-copy {
  align-self: center;
  max-width: 34rem;
}

@media (min-width: 1180px) {
  .showcase-premium .showcase-grid {
    grid-template-columns: 1.05fr 0.95fr 0.95fr;
    align-items: stretch;
  }

  .showcase-premium .showcase-grid .shot-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
    gap: 26px;
  }

  .showcase-premium .showcase-grid .shot-card:nth-child(2) {
    grid-column: 3 / 4;
  }

  .showcase-premium .showcase-grid .shot-card:nth-child(3) {
    grid-column: 1 / 4;
    grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.32fr);
    align-items: center;
    gap: 26px;
  }
}

.video-fallback-copy h2 {
  max-width: 12ch;
}

.video-fallback-copy p {
  margin-top: 16px;
}

.video-fallback-ui {
  display: grid;
  gap: 14px;
}

.progress-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-fill {
  width: 62%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  animation: sweep 3.8s ease-in-out infinite alternate;
}

@keyframes sweep {
  from {
    transform: translateX(-10%);
  }
  to {
    transform: translateX(20%);
  }
}

.chapter-list {
  display: grid;
  gap: 14px;
}

.chapter-card strong {
  display: inline-block;
  color: var(--accent);
  font-family: var(--mono);
  margin-bottom: 10px;
}

.waitlist-shell {
  align-items: start;
}

.form-card {
  display: grid;
  gap: 20px;
}

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

.field,
.field.full {
  display: grid;
  gap: 10px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.checkbox-line span {
  color: var(--text);
  font-size: 0.94rem;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(152, 174, 198, 0.16);
  background: rgba(7, 13, 25, 0.9);
  color: var(--text);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

input::placeholder,
textarea::placeholder {
  color: #6f849c;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(45, 226, 230, 0.52);
  box-shadow: 0 0 0 4px rgba(45, 226, 230, 0.11);
  transform: translateY(-1px);
}

textarea {
  min-height: 136px;
  resize: vertical;
}

.checkbox-line {
  display: flex;
  align-items: start;
  gap: 12px;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  padding: 0;
}

.form-status {
  min-height: 24px;
  color: var(--accent);
}

.form-status.is-error {
  color: var(--danger);
}

.meta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.timeline-panel {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.92), rgba(7, 12, 22, 0.88));
  border: 1px solid var(--line);
}

.timeline-list li {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.timeline-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-tilt] {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
  transform-style: preserve-3d;
}

[data-tilt]:hover {
  border-color: rgba(45, 226, 230, 0.22);
  box-shadow: 0 28px 90px rgba(3, 8, 20, 0.66);
}

@media (max-width: 1120px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: relative;
    flex-wrap: wrap;
  }

  .footer-meta {
    justify-items: start;
  }

  .hero,
  .story-grid,
  .demo-layout,
  .waitlist-shell,
  .launch-band {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .faq-grid,
  .showcase-grid,
  .feature-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-main,
  .site-header,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: auto;
  }

  .metric-row-grid,
  .feature-grid,
  .faq-grid,
  .showcase-grid,
  .feature-mosaic,
  .workflow-grid,
  .tile-row,
  .shot-columns,
  .form-grid,
  .metric-row-grid.compact {
    grid-template-columns: 1fr;
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }

  .site-nav,
  .site-actions,
  .hero-actions,
  .band-actions {
    width: 100%;
  }

  .site-actions .button,
  .hero-actions .button,
  .band-actions .button {
    flex: 1 1 180px;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .preview-window,
  .surface,
  .feature-card,
  .shot-card,
  .chapter-card,
  .benefit-card,
  .form-card,
  .launch-band,
  .timeline-panel {
    border-radius: 22px;
  }

  .video-player,
  .video-fallback {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
