:root {
  color-scheme: dark;
  --bg: #050607;
  --bg-soft: #0b0d10;
  --bg-deep: #030406;
  --panel: rgba(16, 19, 23, 0.72);
  --panel-solid: #101317;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f6f7f4;
  --muted: rgba(246, 247, 244, 0.68);
  --dim: rgba(246, 247, 244, 0.44);
  --brand-navy: #07145c;
  --brand-navy-soft: #0c1d76;
  --blue: #2fa8ff;
  --blue-soft: #84ccff;
  --ice: #e2f5ff;
  --violet: #8f9bff;
  --shadow: 0 32px 120px rgba(0, 0, 0, 0.65);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  --pointer-x: 50%;
  --pointer-y: 20%;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 50% -8%, rgba(255, 255, 255, 0.22), transparent 30rem),
    radial-gradient(circle at 74% 18%, rgba(47, 168, 255, 0.18), transparent 24rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 54%, var(--bg) 100%);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.035) 42.1% 42.35%, transparent 42.45%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.07), transparent 0.08rem),
    radial-gradient(circle at 78% 34%, rgba(255, 255, 255, 0.08), transparent 0.07rem);
  background-size: auto, 3rem 3rem, 4rem 4rem;
  opacity: 0.55;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(47, 168, 255, 0.12), transparent 22rem),
    radial-gradient(circle at calc(var(--pointer-x) + 14%) calc(var(--pointer-y) + 8%), rgba(143, 155, 255, 0.08), transparent 18rem);
  opacity: 0.88;
  transition: opacity 220ms ease;
}

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

.site-shell {
  overflow: hidden;
}

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: 62px;
  padding: 9px 12px 9px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(8, 10, 12, 0.72);
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.28),
    inset 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.topbar.is-elevated {
  border-color: rgba(132, 204, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 12, 0.9);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.34),
    0 0 24px rgba(47, 168, 255, 0.08),
    inset 0 1px rgba(255, 255, 255, 0.05);
}

.brand,
.nav-actions,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 160px;
}

.brand-logo {
  display: block;
  width: 142px;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 12px rgba(47, 168, 255, 0.24))
    drop-shadow(0 10px 24px rgba(0, 0, 0, 0.42));
}

.nav-links {
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.nav-links a,
.ghost-link {
  position: relative;
  padding: 8px 2px;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.ghost-link:hover {
  color: var(--text);
}

.nav-links a::after,
.ghost-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(132, 204, 255, 0.84), transparent);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover::after,
.ghost-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  gap: 12px;
  justify-content: flex-end;
}

.ghost-link {
  color: rgba(214, 233, 255, 0.76);
  padding: 8px 12px;
  border: 1px solid rgba(132, 204, 255, 0.14);
  border-radius: 999px;
  background: rgba(47, 168, 255, 0.05);
  font-size: 13px;
  font-weight: 650;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 760;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-light {
  color: #06101a;
  background: linear-gradient(180deg, #c7eeff, #7fd0ff);
  border-color: rgba(132, 204, 255, 0.32);
  box-shadow:
    0 14px 34px rgba(47, 168, 255, 0.2),
    0 0 22px rgba(47, 168, 255, 0.14);
}

.button-light:hover {
  border-color: rgba(160, 218, 255, 0.56);
  box-shadow:
    0 18px 40px rgba(47, 168, 255, 0.24),
    0 0 26px rgba(47, 168, 255, 0.18);
}

.button-dark {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
}

.button-dark:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-large {
  min-height: 46px;
  padding: 0 20px;
  font-size: 14px;
}

.hero-section {
  position: relative;
  min-height: 100svh;
  padding: 142px 24px 70px;
}

.hero-section::before {
  position: absolute;
  top: 96px;
  right: max(24px, calc((100vw - 1180px) / 2));
  z-index: 0;
  width: min(560px, 42vw);
  height: min(560px, 42vw);
  pointer-events: none;
  content: "";
  border: 1px solid rgba(47, 168, 255, 0.12);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.08) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 49.8%, rgba(255, 255, 255, 0.08) 50%, transparent 50.2%),
    radial-gradient(circle, transparent 0 38%, rgba(47, 168, 255, 0.08) 38.2% 38.6%, transparent 38.8% 62%, rgba(255, 255, 255, 0.07) 62.2% 62.5%, transparent 62.7%);
  opacity: 0.42;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
}

.hero-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 150px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-light {
  position: absolute;
  left: 50%;
  z-index: 0;
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-grid-lines {
  position: absolute;
  inset: 130px 24px auto;
  z-index: 0;
  width: min(1180px, calc(100% - 48px));
  height: 520px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  background:
    linear-gradient(90deg, transparent 0 24.8%, rgba(255, 255, 255, 0.045) 25%, transparent 25.2%, transparent 49.8%, rgba(255, 255, 255, 0.045) 50%, transparent 50.2%, transparent 74.8%, rgba(255, 255, 255, 0.045) 75%, transparent 75.2%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 34%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  mask-image: linear-gradient(180deg, #000 0 70%, transparent 100%);
}

.hero-light-a {
  top: -190px;
  width: min(860px, 86vw);
  height: 430px;
  background: radial-gradient(ellipse at center, rgba(255, 244, 218, 0.46), rgba(243, 217, 164, 0.14) 34%, transparent 70%);
  filter: blur(14px);
  opacity: 0.84;
}

.hero-light-b {
  top: 52%;
  width: min(640px, 74vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(132, 204, 255, 0.94), transparent);
  box-shadow:
    0 0 22px rgba(132, 204, 255, 0.56),
    0 0 110px rgba(47, 168, 255, 0.24);
  opacity: 0.74;
}

.hero-hologram-bg {
  position: absolute;
  top: 88px;
  left: 50%;
  z-index: 0;
  display: grid;
  justify-items: center;
  gap: 10px;
  width: min(980px, 84vw);
  min-height: 560px;
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-hologram-bg::before {
  position: absolute;
  inset: 4% 10% 10%;
  content: "";
  background:
    radial-gradient(circle at 52% 54%, rgba(47, 168, 255, 0.2), transparent 18rem),
    radial-gradient(circle at 58% 42%, rgba(255, 250, 240, 0.16), transparent 18rem),
    radial-gradient(circle at 74% 34%, rgba(214, 179, 117, 0.16), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%, transparent 72%, rgba(243, 217, 164, 0.05));
  filter: blur(22px);
  opacity: 0.96;
}

.hero-watermark {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin-top: 18px;
  opacity: 0.21;
  filter:
    drop-shadow(0 0 24px rgba(132, 204, 255, 0.52))
    drop-shadow(0 0 110px rgba(47, 168, 255, 0.22));
  mix-blend-mode: screen;
  transform: none;
}

.hero-hologram-bg::after {
  position: absolute;
  inset: 0 2% 6%;
  content: "";
  background:
    radial-gradient(circle at 50% 48%, rgba(47, 168, 255, 0.18), transparent 14rem),
    repeating-linear-gradient(180deg, rgba(132, 204, 255, 0.08) 0 1px, transparent 1px 8px),
    linear-gradient(90deg, transparent 0 14%, rgba(132, 204, 255, 0.08) 14.2% 14.35%, transparent 14.5% 32%, rgba(255, 255, 255, 0.045) 32.2% 32.35%, transparent 32.5% 68%, rgba(132, 204, 255, 0.08) 68.2% 68.35%, transparent 68.5% 86%, rgba(255, 255, 255, 0.045) 86.2% 86.35%, transparent 86.5%);
  opacity: 0.86;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.96), transparent 76%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(520px, 1.04fr);
  gap: 54px;
  align-items: center;
  width: min(1180px, 100%);
  min-height: calc(100svh - 212px);
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 680px;
  min-width: 0;
}

.eyebrow,
.section-kicker,
.muted-label {
  color: var(--dim);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(47, 168, 255, 0.9);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 760px;
  margin-top: 28px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: 0.98;
  font-weight: 820;
  letter-spacing: -0.04em;
}

h1 span {
  display: block;
  color: var(--ice);
  font-weight: 800;
}

.hero-lead {
  max-width: 580px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 46px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 700;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 16px;
  margin-top: 28px;
}

.proof-card,
.proof-metrics {
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.proof-card {
  padding: 18px 18px 20px;
}

.proof-kicker {
  color: var(--blue-soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-card strong {
  display: block;
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.4;
}

.proof-metrics {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.proof-metrics div {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.proof-metrics div:last-child {
  border-bottom: 0;
}

.proof-metrics strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}

.proof-metrics span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-width: 0;
  perspective: 1400px;
}

.hero-visual::before {
  position: absolute;
  inset: 22px -10px 28px 18px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(8, 12, 18, 0.08), rgba(8, 12, 18, 0.5)),
    linear-gradient(90deg, rgba(8, 12, 18, 0.72), rgba(8, 12, 18, 0.08) 42%, rgba(8, 12, 18, 0.26)),
    radial-gradient(circle at 76% 18%, rgba(47, 168, 255, 0.26), transparent 14rem),
    radial-gradient(circle at 14% 68%, rgba(255, 244, 218, 0.1), transparent 18rem),
    radial-gradient(circle at 88% 72%, rgba(214, 179, 117, 0.1), transparent 12rem),
    linear-gradient(125deg, transparent 0 52%, rgba(255, 244, 218, 0.14) 52.2% 52.45%, transparent 52.7%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%, transparent 82%, rgba(243, 217, 164, 0.06)),
    url("/assets/hero-cinematic-premium.png"),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 70%);
  background-position: center, center, center, center, center, center, center, center right, center;
  background-size: auto, auto, auto, auto, auto, auto, auto, cover, auto;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 30px 90px rgba(0, 0, 0, 0.34),
    0 0 96px rgba(47, 168, 255, 0.07);
  content: "";
}

.hero-visual::after {
  position: absolute;
  inset: 38px 22px 46px 42px;
  z-index: 1;
  border-radius: 24px;
  background:
    linear-gradient(90deg, transparent 0 10%, rgba(132, 204, 255, 0.12) 10.2% 10.35%, transparent 10.5% 28%, rgba(255, 255, 255, 0.05) 28.2% 28.35%, transparent 28.5% 52%, rgba(132, 204, 255, 0.09) 52.2% 52.35%, transparent 52.5% 78%, rgba(255, 255, 255, 0.05) 78.2% 78.35%, transparent 78.5% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%, transparent 76%, rgba(132, 204, 255, 0.08)),
    radial-gradient(circle at 70% 16%, rgba(132, 204, 255, 0.12), transparent 12rem);
  opacity: 0.72;
  content: "";
  pointer-events: none;
  mix-blend-mode: screen;
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: 210px;
  padding: 14px;
  border: 1px solid rgba(132, 204, 255, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(47, 168, 255, 0.18), transparent 7rem),
    radial-gradient(circle at 84% 16%, rgba(243, 217, 164, 0.08), transparent 7rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(8, 10, 14, 0.76);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    0 0 54px rgba(47, 168, 255, 0.12),
    inset 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  animation: floatCard 7s ease-in-out infinite;
  transform: translate3d(var(--float-x, 0), var(--float-y, 0), 0);
}

.floating-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(160, 218, 255, 0.2), transparent 34%, rgba(47, 168, 255, 0.08));
  opacity: 0.64;
  mask-image: linear-gradient(#000, transparent);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong {
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.25;
}

.floating-card small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.float-kicker {
  color: var(--blue-soft);
  font-size: 10px;
  font-weight: 780;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(47, 168, 255, 0.16);
}

.float-call {
  top: 74px;
  left: -62px;
}

.float-booking {
  top: 382px;
  left: -34px;
  width: 172px;
  animation-delay: -2.6s;
}

.float-booking strong {
  color: var(--ice);
  font-size: 30px;
  line-height: 1;
}

.float-sync {
  right: -44px;
  bottom: 76px;
  width: 224px;
  animation-delay: -4.1s;
}

.float-chart {
  top: 118px;
  right: -26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  align-items: end;
  width: 156px;
  height: 92px;
  animation-delay: -1.4s;
}

.float-chart span {
  display: block;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, rgba(160, 218, 255, 0.98), rgba(47, 168, 255, 0.2));
  box-shadow: 0 0 22px rgba(47, 168, 255, 0.22);
}

.float-chart span:nth-child(1) { height: 38px; }
.float-chart span:nth-child(2) { height: 62px; }
.float-chart span:nth-child(3) { height: 46px; }
.float-chart span:nth-child(4) { height: 74px; }

@keyframes floatCard {
  0%,
  100% {
    transform: translate3d(var(--float-x, 0), var(--float-y, 0), 0);
  }
  50% {
    transform: translate3d(var(--float-x, 0), calc(var(--float-y, 0) - 14px), 0);
  }
}

.console-frame {
  position: relative;
  width: 100%;
  min-height: 620px;
  border: 1px solid rgba(243, 217, 164, 0.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 10%, rgba(243, 217, 164, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%),
    rgba(10, 12, 14, 0.86);
  box-shadow:
    var(--shadow),
    0 0 110px rgba(243, 217, 164, 0.08),
    inset 0 1px rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transform: rotateX(2deg) rotateY(-6deg);
  transform-origin: center;
}

.console-frame::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 74% 12%, rgba(243, 217, 164, 0.14), transparent 18rem),
    linear-gradient(115deg, transparent 0 64%, rgba(255, 255, 255, 0.08) 64.1% 64.3%, transparent 64.4%);
}

.frame-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.window-controls {
  display: flex;
  gap: 7px;
}

.window-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(132, 204, 255, 0.32);
  border-radius: 50%;
  background: rgba(47, 168, 255, 0.14);
  box-shadow: 0 0 0 1px rgba(8, 12, 18, 0.28) inset;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.window-dot:hover,
.window-dot.is-active {
  border-color: rgba(132, 204, 255, 0.68);
  background: linear-gradient(180deg, rgba(132, 204, 255, 0.96), rgba(47, 168, 255, 0.82));
  box-shadow: 0 0 16px rgba(47, 168, 255, 0.42);
  transform: scale(1.08);
}

.frame-title {
  justify-self: center;
  color: rgba(214, 233, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  text-shadow: 0 0 14px rgba(47, 168, 255, 0.14);
}

.live-pill,
.outcome,
.signal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 25px;
  padding: 0 10px;
  border: 1px solid rgba(132, 204, 255, 0.34);
  border-radius: 999px;
  color: rgba(223, 239, 255, 0.92);
  background:
    linear-gradient(180deg, rgba(47, 168, 255, 0.12), rgba(47, 168, 255, 0.05)),
    rgba(255, 255, 255, 0.02);
  font-size: 11px;
  font-weight: 760;
}

.dashboard-preview {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 572px;
}

.dashboard-preview-stack {
  display: block;
  padding: 18px;
}

.preview-stage {
  position: absolute;
  inset: 18px;
  display: grid;
  grid-template-columns: 140px 1fr;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(7, 10, 14, 0.58);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 22px, 0) scale(0.98);
  transition: opacity 260ms ease, transform 260ms ease, box-shadow 260ms ease;
  overflow: hidden;
}

.preview-stage.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

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

.preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 24px 16px;
  border-right: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.16);
}

.sidebar-logo {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(7, 20, 92, 0.98), rgba(47, 168, 255, 0.84));
  box-shadow:
    0 0 0 1px rgba(132, 204, 255, 0.24) inset,
    0 0 36px rgba(47, 168, 255, 0.34);
}

.preview-sidebar span {
  display: flex;
  align-items: center;
  min-height: 32px;
  padding: 0 9px;
  border-radius: 7px;
  color: var(--dim);
  font-size: 11px;
  font-weight: 700;
}

.preview-sidebar .side-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.preview-main {
  padding: 24px;
  min-width: 0;
}

.preview-main-wide {
  padding: 24px 24px 20px;
}

.preview-header,
.conversation-head,
.timeline-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.preview-header strong,
.conversation-head strong {
  display: block;
  margin-top: 5px;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.signal {
  color: var(--blue-soft);
  border-color: rgba(132, 204, 255, 0.26);
  background: rgba(47, 168, 255, 0.07);
}

.signal span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-soft);
  box-shadow: 0 0 12px rgba(47, 168, 255, 0.42);
}

.call-stack,
.booking-board {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.call-stack-card,
.booking-board-row {
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(0, 0, 0, 0.18);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.call-stack-card {
  width: 100%;
  padding: 16px;
  color: var(--text);
  text-align: left;
}

.call-stack-card.is-selected {
  border-color: rgba(47, 168, 255, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 168, 255, 0.14), transparent 9rem),
    linear-gradient(180deg, rgba(47, 168, 255, 0.12), rgba(255, 255, 255, 0.03));
}

.call-stack-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.call-stack-top small,
.booking-board-row em {
  font-style: normal;
  color: var(--blue-soft);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.call-stack-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.booking-board-row {
  display: grid;
  grid-template-columns: 74px 1fr 1.2fr auto;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 0 16px;
}

.booking-board-row span,
.booking-board-row small {
  color: var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.metric-card,
.conversation-card,
.launch-card,
.feature-card,
.workflow-step,
.ops-panel,
.ops-card,
.signal-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.metric-card {
  min-height: 124px;
  padding: 16px;
}

.metric-card span,
.metric-card small,
.timeline-row span,
.launch-card span {
  color: var(--dim);
}

.metric-card span {
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 14px;
  font-size: 34px;
  line-height: 1;
}

.metric-card small {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  line-height: 1.4;
}

.metric-card.accent {
  border-color: rgba(47, 168, 255, 0.28);
  background: linear-gradient(180deg, rgba(47, 168, 255, 0.13), rgba(255, 255, 255, 0.04));
}

.conversation-card {
  margin-top: 14px;
  padding: 18px;
}

.outcome {
  color: var(--blue-soft);
}

.dialogue {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.dialogue p {
  padding: 12px 13px;
  border-radius: 7px;
  color: rgba(246, 247, 244, 0.78);
  background: rgba(0, 0, 0, 0.18);
  font-size: 13px;
  line-height: 1.45;
}

.dialogue span {
  display: block;
  margin-bottom: 4px;
  color: var(--dim);
  font-size: 11px;
  font-weight: 760;
}

.timeline {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.timeline-row {
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.16);
  font-size: 12px;
}

.timeline-row .time {
  color: var(--violet);
  font-weight: 760;
}

.timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(47, 168, 255, 0.7);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.05),
    0 18px 48px rgba(0, 0, 0, 0.18);
}

.signal-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 18px auto 0;
  padding: 26px 28px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 50%, rgba(47, 168, 255, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.16);
}

.signal-copy p {
  max-width: 560px;
  margin-top: 12px;
  font-size: 21px;
  line-height: 1.5;
}

.signal-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.signal-points span,
.ops-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(132, 204, 255, 0.16);
  border-radius: 999px;
  color: rgba(246, 247, 244, 0.86);
  background:
    linear-gradient(180deg, rgba(47, 168, 255, 0.07), rgba(47, 168, 255, 0.03)),
    rgba(255, 255, 255, 0.025);
  font-size: 12px;
  font-weight: 760;
}

.stat-item {
  min-height: 138px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-item strong {
  display: block;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  color: rgba(232, 241, 255, 0.96);
  text-shadow: 0 0 18px rgba(47, 168, 255, 0.08);
}

.stat-item span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.section,
.workflow-section,
.integrations-section,
.pricing-section,
.final-cta {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.product-section {
  padding: 132px 0 82px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.compact {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

h2 {
  margin-top: 13px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-heading p,
.workflow-copy p,
.pricing-section p {
  max-width: 650px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.section-heading.compact p {
  margin-right: auto;
  margin-left: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 292px;
  padding: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 168, 255, 0.08), transparent 10rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover,
.workflow-step:hover,
.launch-card:hover,
.ops-card:hover {
  transform: translateY(-4px);
  border-color: rgba(132, 204, 255, 0.24);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.18),
    0 0 24px rgba(47, 168, 255, 0.07);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.feature-icon::before,
.feature-icon::after {
  content: "";
}

.call-icon::before {
  width: 16px;
  height: 16px;
  border: 2px solid var(--blue);
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-42deg);
}

.calendar-icon::before {
  width: 17px;
  height: 15px;
  border: 2px solid var(--blue-soft);
  border-radius: 4px;
  box-shadow: inset 0 5px rgba(132, 204, 255, 0.18);
}

.insight-icon::before {
  width: 20px;
  height: 14px;
  border-bottom: 2px solid var(--violet);
  background: linear-gradient(90deg, var(--violet) 0 12%, transparent 12% 28%, var(--violet) 28% 42%, transparent 42% 58%, var(--violet) 58% 72%, transparent 72%);
}

.feature-card h3 {
  margin-top: 72px;
  font-size: 22px;
}

.feature-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.workflow-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 64px;
  align-items: start;
  padding: 62px 0 110px;
}

.ops-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 72px;
}

.ops-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: 24px;
  padding: 28px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 26%, rgba(47, 168, 255, 0.12), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 20px 48px rgba(0, 0, 0, 0.16);
}

.ops-copy p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.ops-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ops-stack {
  display: grid;
  gap: 14px;
}

.ops-card {
  min-height: 172px;
  padding: 22px;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  transition: transform 220ms ease, border-color 220ms ease;
}

.ops-card.accent {
  border-color: rgba(47, 168, 255, 0.24);
  background:
    radial-gradient(circle at 100% 20%, rgba(47, 168, 255, 0.12), transparent 12rem),
    linear-gradient(180deg, rgba(47, 168, 255, 0.11), rgba(255, 255, 255, 0.03));
}

.ops-label {
  color: var(--blue-soft);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.ops-card strong {
  display: block;
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.22;
}

.ops-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.workflow-copy {
  position: sticky;
  top: 118px;
}

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

.workflow-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0 18px;
  min-height: 150px;
  padding: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 168, 255, 0.08), transparent 10rem),
    rgba(255, 255, 255, 0.045);
}

.workflow-step span {
  grid-row: span 2;
  color: var(--blue);
  font-size: 13px;
  font-weight: 780;
}

.workflow-step strong {
  font-size: 20px;
}

.workflow-step p {
  max-width: 540px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.integrations-section {
  padding: 0 0 108px;
}

.integration-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 46px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 75% 50%, rgba(47, 168, 255, 0.14), transparent 22rem),
    rgba(255, 255, 255, 0.04);
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.integration-grid span {
  display: grid;
  place-items: center;
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: rgba(246, 247, 244, 0.78);
  background: rgba(0, 0, 0, 0.16);
  font-size: 14px;
  font-weight: 760;
}

.pricing-section {
  padding: 18px 0 112px;
}

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

.price-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 520px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 168, 255, 0.08), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.028);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.price-card-featured {
  border-color: rgba(132, 204, 255, 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 168, 255, 0.18), transparent 15rem),
    radial-gradient(circle at 0% 100%, rgba(143, 155, 255, 0.1), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.034)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 28px 72px rgba(47, 168, 255, 0.13);
}

.price-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(132, 204, 255, 0.22);
  border-radius: 999px;
  color: var(--blue-soft);
  background: rgba(47, 168, 255, 0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.price-row {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.price-row strong {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.price-row span,
.price-card p,
.pricing-note span {
  color: var(--muted);
}

.price-card p,
.pricing-note span {
  margin: 0;
  line-height: 1.7;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(246, 247, 244, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.price-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--blue-soft);
  box-shadow: 0 0 14px rgba(47, 168, 255, 0.45);
  transform: translateY(-50%);
}

.pricing-note {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 20px;
  border: 1px solid rgba(132, 204, 255, 0.18);
  border-radius: 16px;
  background: rgba(47, 168, 255, 0.055);
}

.pricing-compare {
  margin-top: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 84% 0%, rgba(47, 168, 255, 0.13), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.026);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.pricing-compare-head {
  max-width: 760px;
}

.pricing-compare h3 {
  margin: 10px 0 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.pricing-compare p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.pricing-compare-scroll {
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.16);
}

.pricing-compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.pricing-compare-table th,
.pricing-compare-table td {
  min-height: 54px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
  vertical-align: middle;
}

.pricing-compare-table th {
  color: rgba(246, 247, 244, 0.9);
  font-size: 13px;
  font-weight: 800;
}

.pricing-compare-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(8, 11, 15, 0.94);
}

.pricing-compare-table th:first-child,
.pricing-compare-table td:first-child {
  width: 42%;
  text-align: left;
}

.pricing-compare-table tbody th {
  color: rgba(246, 247, 244, 0.78);
  font-weight: 650;
  line-height: 1.45;
}

.pricing-compare-table tbody td {
  color: rgba(246, 247, 244, 0.86);
  font-size: 14px;
  font-weight: 760;
}

.pricing-compare-table tbody tr:last-child th,
.pricing-compare-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-compare-table th:nth-child(3),
.pricing-compare-table td:nth-child(3) {
  background: rgba(47, 168, 255, 0.055);
}

.compare-check,
.compare-dash {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
}

.compare-check {
  background: rgba(132, 204, 255, 0.14);
  box-shadow: 0 0 18px rgba(47, 168, 255, 0.16);
}

.compare-check::before {
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--blue-soft);
  border-left: 2px solid var(--blue-soft);
  content: "";
  transform: rotate(-45deg) translate(1px, -1px);
}

.compare-dash::before {
  width: 10px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: rgba(246, 247, 244, 0.28);
}

.faq-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 108px;
}

.faq-grid {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.faq-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 168, 255, 0.08), transparent 10rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.faq-item:hover {
  border-color: rgba(132, 204, 255, 0.22);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 18px 36px rgba(0, 0, 0, 0.14);
}

.faq-item summary {
  position: relative;
  padding-right: 36px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(132, 204, 255, 0.24);
  color: var(--blue-soft);
  content: "+";
  display: grid;
  place-items: center;
  font-size: 14px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

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

.faq-item[open] summary::after {
  background: rgba(47, 168, 255, 0.08);
  border-color: rgba(132, 204, 255, 0.32);
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 360ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    margin-top 260ms ease;
  opacity: 0;
}

.faq-item[open] .faq-answer {
  max-height: var(--faq-open-height, 240px);
  margin-top: 14px;
  opacity: 1;
}

.faq-answer p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
  margin: 0;
}

.launch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.launch-card {
  min-height: 172px;
  padding: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 168, 255, 0.08), transparent 10rem),
    rgba(255, 255, 255, 0.045);
}

.launch-card strong {
  display: block;
  font-size: 19px;
}

.launch-card span {
  display: block;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.62;
}

.final-cta {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 24% 20%, rgba(47, 168, 255, 0.16), transparent 22rem),
    radial-gradient(circle at 86% 72%, rgba(132, 204, 255, 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
  box-shadow:
    var(--shadow),
    0 0 38px rgba(47, 168, 255, 0.08);
}

.final-cta h2 {
  max-width: 760px;
}

.demo-dialog {
  width: min(680px, calc(100% - 28px));
  padding: 0;
  border: 0;
  color: var(--text);
  background: transparent;
}

.demo-dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.demo-dialog.is-visible::backdrop {
  opacity: 1;
}

.demo-dialog-shell {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid rgba(132, 204, 255, 0.2);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(47, 168, 255, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    #080b0f;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transform-origin: 50% 18%;
  transition:
    opacity 240ms ease,
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.demo-dialog.is-visible .demo-dialog-shell {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.demo-dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-size: 24px;
  cursor: pointer;
}

.demo-dialog h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

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

.demo-phone-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(132, 204, 255, 0.2);
  border-radius: 18px;
  background: rgba(47, 168, 255, 0.07);
}

.demo-phone-card span,
.demo-scripts strong {
  color: var(--blue-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-phone-card strong {
  font-size: clamp(30px, 6vw, 54px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.demo-phone-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.demo-scripts {
  display: grid;
  gap: 10px;
}

.demo-scripts span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: rgba(246, 247, 244, 0.82);
  background: rgba(255, 255, 255, 0.035);
  font-size: 14px;
}

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

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

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: auto auto;
    gap: 12px;
    padding-right: 10px;
  }

  .nav-links {
    display: none;
  }

  .hero-section {
    padding-top: 126px;
    padding-bottom: 56px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-copy,
  .hero-visual,
  .section-heading,
  .workflow-copy {
    max-width: none;
  }

  .console-frame {
    min-height: 580px;
  }

  .dashboard-preview-stack {
    min-height: 580px;
  }

  .floating-card {
    transform: scale(0.92);
    transform-origin: center;
  }

  .preview-header,
  .conversation-head,
  .call-stack-top,
  .timeline-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-row {
    min-height: auto;
    padding: 14px;
  }

  .timeline-dot {
    display: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    max-width: 820px;
    margin: 0 auto;
    width: 100%;
  }

  .console-frame {
    transform: none;
  }

  .float-call {
    left: -18px;
  }

  .float-booking {
    left: 18px;
  }

  .float-sync {
    right: -18px;
  }

  .float-chart {
    right: 18px;
  }

  .workflow-section,
  .integration-panel,
  .signal-band,
  .ops-panel,
  .hero-proof {
    grid-template-columns: 1fr;
  }

  .workflow-copy {
    position: static;
  }
}

@media (max-width: 820px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: stretch;
    top: 12px;
  }

  .ghost-link {
    display: none;
  }

  .nav-actions {
    width: 100%;
  }

  .nav-actions .button {
    width: 100%;
  }

  .hero-section {
    padding-top: 118px;
  }

  .hero-grid {
    min-height: auto;
  }

  h1 {
    font-size: clamp(38px, 11vw, 64px);
    line-height: 1.02;
  }

  h2 {
    line-height: 1.04;
  }

  .hero-lead,
  .section-heading p,
  .workflow-copy p,
  .pricing-section p,
  .ops-copy p,
  .signal-copy p {
    font-size: 16px;
  }

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

  .preview-sidebar {
    display: none;
  }

  .preview-stage {
    grid-template-columns: 1fr;
    inset: 14px;
  }

  .metric-grid,
  .feature-grid,
  .stats-band,
  .launch-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .booking-board-row,
  .signal-band,
  .ops-panel,
  .integration-panel,
  .workflow-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .signal-points {
    justify-content: flex-start;
  }

  .dashboard-preview-stack {
    min-height: 680px;
  }

  .frame-top {
    grid-template-columns: 1fr auto;
    gap: 10px;
    height: auto;
    padding: 12px 14px;
  }

  .frame-title {
    order: 3;
    grid-column: 1 / -1;
    justify-self: start;
  }

  .signal,
  .live-pill,
  .outcome {
    max-width: 100%;
    white-space: normal;
  }

  .preview-main,
  .preview-main-wide {
    padding: 18px;
  }

  .metric-card strong {
    font-size: 30px;
  }

  .feature-card,
  .launch-card,
  .ops-card {
    min-height: auto;
  }

  .feature-card h3 {
    margin-top: 44px;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 96px;
  }

  .topbar {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    padding: 8px 10px 8px 12px;
  }

  .brand {
    min-width: 130px;
  }

  .brand-logo {
    width: 122px;
  }

  .nav-actions {
    gap: 8px;
  }

  .floating-card {
    display: none;
  }

  .hero-hologram-bg {
    top: 116px;
    left: 50%;
    width: min(720px, 92vw);
  }

  .hero-watermark {
    max-width: 520px;
  }

  .button {
    padding: 0 12px;
    white-space: normal;
    text-align: center;
  }

  .hero-section {
    padding-right: 14px;
    padding-left: 14px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: 36px;
    letter-spacing: -0.03em;
  }

  h2 {
    font-size: clamp(28px, 9vw, 42px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 28px;
  }

  .button-large {
    width: 100%;
  }

  .demo-dialog {
    width: 100%;
    max-width: none;
    max-height: 100dvh;
    margin: 0;
  }

  .demo-dialog-shell {
    min-height: 100dvh;
    padding: 28px 16px 18px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    align-content: start;
    overflow: auto;
  }

  .demo-dialog-close {
    top: 10px;
    right: 10px;
  }

  .demo-phone-card {
    padding: 16px;
  }

  .demo-phone-card strong {
    font-size: clamp(28px, 11vw, 42px);
    overflow-wrap: anywhere;
  }

  .demo-phone-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .demo-phone-actions .button {
    width: 100%;
  }

  .console-frame {
    min-height: auto;
  }

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

  .proof-card strong {
    font-size: 16px;
  }

  .proof-metrics strong {
    font-size: 24px;
  }

  .preview-main {
    padding: 16px;
  }

  .preview-header,
  .conversation-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-row {
    display: grid;
    grid-template-columns: auto auto 1fr;
    min-height: auto;
    padding: 12px;
  }

  .timeline-row span:last-child {
    grid-column: 1 / -1;
  }

  .section,
  .workflow-section,
  .integrations-section,
  .faq-section,
  .pricing-section,
  .final-cta,
  .stats-band,
  .signal-band,
  .ops-section {
    width: calc(100% - 28px);
  }

  .hero-grid-lines,
  .hero-light-b {
    display: none;
  }

  .hero-hologram-bg::after {
    opacity: 0.48;
  }

  .product-section {
    padding-top: 92px;
  }

  .feature-card,
  .price-card,
  .pricing-compare,
  .workflow-step,
  .integration-panel,
  .final-cta,
  .signal-band,
  .ops-panel,
  .launch-card {
    padding: 22px;
  }

  .workflow-step {
    grid-template-columns: 1fr;
  }

  .workflow-step span {
    grid-row: auto;
    margin-bottom: 18px;
  }

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

  .signal-copy p {
    font-size: 17px;
  }

  .dashboard-preview-stack {
    padding: 12px;
    min-height: 620px;
  }

  .preview-stage {
    inset: 12px;
  }

  .booking-board-row {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: auto;
    padding: 14px;
  }

  .call-stack-card,
  .faq-item {
    padding: 18px;
  }

  .faq-item summary {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .topbar {
    width: calc(100% - 16px);
    padding: 8px 8px 8px 10px;
  }

  .brand-logo {
    width: 114px;
  }

  .nav-actions .button {
    min-height: 42px;
    font-size: 12px;
  }

  .hero-section {
    padding-top: 108px;
  }

  .eyebrow {
    width: 100%;
    justify-content: flex-start;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .trust-strip {
    margin-top: 34px;
    gap: 8px;
  }

  .trust-strip span,
  .signal-points span,
  .ops-tags span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  .dashboard-preview-stack {
    min-height: 560px;
  }

  .preview-stage,
  .preview-main,
  .preview-main-wide,
  .feature-card,
  .pricing-compare,
  .workflow-step,
  .integration-panel,
  .final-cta,
  .signal-band,
  .ops-panel,
  .launch-card {
    padding: 16px;
  }

  .hero-visual {
    display: block;
  }

  .dashboard-preview-stack .preview-main,
  .dashboard-preview-stack .preview-main-wide {
    max-height: 500px;
    overflow: hidden;
  }

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

  .dashboard-preview-stack .conversation-card:nth-child(n + 3),
  .dashboard-preview-stack .booking-board-row:nth-child(n + 4) {
    display: none;
  }

  .hero-grid {
    gap: 20px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-proof {
    gap: 12px;
  }

  .proof-card,
  .proof-metrics {
    border-radius: 10px;
  }

  .section-heading,
  .workflow-copy {
    margin-bottom: 28px;
  }

  .final-cta .button {
    width: 100%;
  }
}

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