:root {
  --dark-bg: #0a0a2e;
  --mid-bg: #0d1157;
  --deep-bg: #07073d;
  --navy-50: #161650;
  --navy-100: #1a1a60;
  --navy-border: #22224a;
  --pink: #c026a0;
  --purple: #8b2fc9;
  --light-purple: #a855f7;
  --light-text: #cbd5e1;
  --gray-text: #94a3b8;
  --light-bg: #f5f5fa;
  --ink-muted: #4a4a6a;
  --border-light: #dddde8;
  --italy-green: #009246;
  --mena-gold: #d4a574;
  --white: #ffffff;
  --font-sans: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Raleway", "Inter Tight", sans-serif;
  --shadow-pink: 0 22px 60px rgba(192, 38, 160, 0.22);
  --shadow-deep: 0 30px 90px rgba(0, 0, 0, 0.38);
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--light-text);
  background: var(--dark-bg);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

img,
svg {
  display: block;
  max-width: 100%;
}

::selection {
  color: var(--white);
  background: var(--pink);
}

:focus-visible {
  outline: 2px solid var(--light-purple);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 0.8rem 1rem;
  border-radius: var(--radius-lg);
  color: var(--deep-bg);
  background: var(--white);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: color-mix(in srgb, var(--navy-border) 70%, transparent);
  background: color-mix(in srgb, var(--dark-bg) 95%, transparent);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px -16px rgba(0, 0, 0, 0.8);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.brand img {
  width: auto;
  height: 48px;
}

.product-mark {
  padding: 0.35rem 0.62rem;
  border: 1px solid var(--navy-border);
  border-radius: 999px;
  color: var(--light-text);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--light-text);
  font-size: 0.94rem;
  font-weight: 500;
}

.site-nav > a:not(.btn) {
  position: relative;
  transition: color 0.2s ease;
}

.site-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1.5px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--pink);
  transition: transform 0.25s ease;
}

.site-nav > a:hover {
  color: var(--white);
}

.site-nav > a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  color: var(--white);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: scale(1.02);
}

.btn-primary {
  background: var(--pink);
  box-shadow: 0 14px 34px rgba(192, 38, 160, 0.24);
}

.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 18px 44px rgba(192, 38, 160, 0.34);
}

.btn-secondary {
  border-color: var(--white);
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--pink);
  background: var(--pink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 80px);
  padding: 92px 0 110px;
  background:
    radial-gradient(circle at 78% 24%, rgba(192, 38, 160, 0.22), transparent 31%),
    radial-gradient(circle at 18% 84%, rgba(168, 85, 247, 0.16), transparent 32%),
    linear-gradient(180deg, var(--dark-bg), var(--deep-bg));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 60% 45%, black, transparent 70%);
}

.hero-orbit {
  position: absolute;
  right: -120px;
  top: 80px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 70px rgba(139, 47, 201, 0.04),
    inset 0 0 0 150px rgba(192, 38, 160, 0.035),
    inset 0 0 0 240px rgba(255, 255, 255, 0.025);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--light-purple);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 4.25rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

h3 {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-lead {
  max-width: 680px;
  color: var(--light-text);
  font-size: 1.22rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.urgency-pill {
  display: inline-flex;
  margin: 22px 0 0;
  padding: 0.58rem 0.86rem;
  border: 1px solid rgba(168, 85, 247, 0.38);
  border-radius: 999px;
  color: var(--light-text);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.84rem;
  font-weight: 800;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span {
  border: 1px solid var(--navy-border);
  border-radius: 999px;
  padding: 0.48rem 0.8rem;
  color: var(--light-text);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
  font-weight: 700;
}

.engine-stage {
  position: relative;
  min-height: 640px;
  border: 1px solid var(--navy-border);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(22, 22, 80, 0.68);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
}

.engine-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 31%, rgba(255, 255, 255, 0.09) 31% 31.2%, transparent 31.2% 66%, rgba(255, 255, 255, 0.09) 66% 66.2%, transparent 66.2%),
    radial-gradient(circle at center, rgba(192, 38, 160, 0.12), transparent 42%);
}

.data-constellation {
  position: absolute;
  left: 26px;
  top: 86px;
  width: 255px;
  height: 330px;
}

.data-constellation svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.data-constellation path {
  fill: none;
  stroke: rgba(203, 213, 225, 0.36);
  stroke-width: 1.5;
  stroke-dasharray: 7 9;
  animation: dash 10s linear infinite;
}

.data-constellation circle {
  fill: var(--light-purple);
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.8));
}

.source {
  position: absolute;
  z-index: 1;
  padding: 0.5rem 0.65rem;
  border: 1px solid rgba(203, 213, 225, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(10, 10, 46, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.source-a { left: 0; top: 16px; }
.source-b { right: 12px; top: 40px; }
.source-c { left: 30px; top: 150px; }
.source-d { right: 0; top: 220px; }
.source-e { left: 68px; bottom: 6px; }

.vsme-engine {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 260px;
  height: 260px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  text-align: center;
}

.engine-ring,
.engine-ring::before,
.engine-ring::after {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 247, 0.34);
}

.engine-ring {
  inset: 0;
  animation: spin 18s linear infinite;
}

.engine-ring::before,
.engine-ring::after {
  content: "";
  inset: 32px;
  border-color: rgba(192, 38, 160, 0.42);
}

.engine-ring::after {
  inset: 70px;
  border-color: rgba(203, 213, 225, 0.2);
}

.vsme-engine p {
  position: relative;
  max-width: 135px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
}

.module-pills {
  position: absolute;
  inset: auto -18px 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.module-pills span {
  padding: 0.34rem 0.48rem;
  border: 1px solid var(--navy-border);
  border-radius: 999px;
  background: var(--deep-bg);
  color: var(--light-text);
  font-size: 0.68rem;
  font-weight: 700;
}

.report-stack {
  position: absolute;
  right: 34px;
  top: 112px;
  width: 260px;
  height: 355px;
}

.report-page {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
}

.page-back {
  transform: rotate(8deg) translate(22px, 18px);
  opacity: 0.35;
}

.page-mid {
  transform: rotate(3deg) translate(9px, 8px);
  opacity: 0.65;
}

.page-front {
  padding: 28px;
  color: var(--deep-bg);
  background:
    linear-gradient(90deg, var(--pink) 0 6px, transparent 6px),
    linear-gradient(180deg, #fff, #f5f5fa);
}

.page-front span {
  color: var(--ink-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-front strong {
  display: block;
  margin: 26px 0 28px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.15;
}

.page-front i {
  display: block;
  height: 9px;
  margin-bottom: 11px;
  border-radius: 999px;
  background: #dddde8;
}

.page-front i:nth-of-type(2) {
  width: 78%;
}

.page-front i:nth-of-type(3) {
  width: 56%;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 90px;
  margin-top: 44px;
}

.mini-bars b {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--pink), var(--purple));
}

.mini-bars b:nth-child(1) { height: 54%; }
.mini-bars b:nth-child(2) { height: 88%; }
.mini-bars b:nth-child(3) { height: 68%; }

.review-layer {
  position: absolute;
  left: 50%;
  bottom: 44px;
  width: min(72%, 450px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  border: 1px solid rgba(192, 38, 160, 0.55);
  border-radius: 18px;
  background: rgba(7, 7, 61, 0.88);
  box-shadow: var(--shadow-pink);
}

.review-layer span,
.review-layer b {
  color: var(--white);
  font-weight: 800;
}

.ai-assist-label {
  position: absolute;
  left: calc(50% - 122px);
  top: calc(52% - 170px);
  z-index: 2;
  padding: 0.52rem 0.72rem;
  border: 1px solid rgba(168, 85, 247, 0.42);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 7, 61, 0.86);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
  font-size: 0.76rem;
  font-weight: 800;
}

.pressure-section,
.modules-section,
.benchmark-section,
.faq-section {
  padding: 118px 0;
  background: var(--deep-bg);
}

.pressure-section {
  padding: 104px 0;
}

.split-heading,
.benchmark-grid,
.problem-grid,
.why-grid,
.form-grid,
.output-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.split-heading p,
.problem-copy p,
.benchmark-copy p,
.why-section p,
.form-section p {
  color: var(--light-text);
  font-size: 1.12rem;
}

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

.pressure-section .section-kicker {
  margin-bottom: 14px;
}

.pressure-section .split-heading {
  grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr);
  gap: 44px;
  align-items: end;
}

.pressure-section .split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 3.45rem;
  line-height: 1.02;
}

.pressure-section .split-heading p {
  max-width: 500px;
  margin: 0 0 8px;
  color: var(--light-text);
  font-size: 1.16rem;
  line-height: 1.55;
}

.pressure-section .pressure-rail {
  margin-top: 38px;
}

.pressure-card,
.module-card,
.why-list article,
.faq-list details {
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  background: rgba(22, 22, 80, 0.72);
}

.pressure-card {
  min-height: 315px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    var(--navy-50);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.pressure-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192, 38, 160, 0.55);
}

.pressure-card span,
.module-card > span {
  color: var(--light-purple);
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
}

.pressure-card p,
.module-card p,
.module-card li,
.why-list span,
.faq-list p {
  color: var(--gray-text);
}

.problem-section,
.output-section,
.form-section {
  padding: 128px 0;
  color: var(--deep-bg);
  background: var(--light-bg);
}

.problem-section h2,
.output-section h2,
.form-section h2 {
  color: var(--deep-bg);
}

.problem-copy {
  padding-top: 18px;
}

.problem-copy p,
.output-section p,
.form-section p {
  color: var(--ink-muted);
}

.system-section,
.audience-section,
.why-section,
.cta-section,
.timeline-section {
  padding: 128px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(192, 38, 160, 0.13), transparent 28%),
    var(--mid-bg);
}

.section-head {
  max-width: 860px;
  margin-bottom: 58px;
}

.section-head p:not(.eyebrow) {
  color: var(--light-text);
  font-size: 1.12rem;
}

.timeline-section {
  background:
    radial-gradient(circle at 84% 18%, rgba(192, 38, 160, 0.13), transparent 30%),
    linear-gradient(180deg, var(--deep-bg), var(--mid-bg));
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--light-purple), var(--pink), transparent);
}

.timeline-card {
  position: relative;
  min-height: 350px;
  padding: 30px 24px 24px;
  border: 1px solid var(--navy-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(22, 22, 80, 0.76);
  box-shadow: var(--shadow-deep);
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 24px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 7px rgba(192, 38, 160, 0.13);
}

.timeline-year {
  display: block;
  margin: 36px 0 18px;
  color: var(--light-purple);
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
}

.timeline-card h3 {
  min-height: 64px;
}

.timeline-card p {
  color: var(--gray-text);
  font-size: 0.96rem;
}

.timeline-card b {
  display: inline-flex;
  margin-top: 16px;
  padding: 0.48rem 0.68rem;
  border: 1px solid rgba(168, 85, 247, 0.34);
  border-radius: 999px;
  color: var(--light-text);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.76rem;
}

.timeline-note {
  max-width: 880px;
  margin: 28px 0 0;
  color: var(--gray-text);
  font-size: 0.92rem;
}

.system-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
}

.system-map,
.analytics-panel {
  border: 1px solid var(--navy-border);
  border-radius: 24px;
  background: rgba(7, 7, 61, 0.62);
  box-shadow: var(--shadow-deep);
}

.system-map {
  padding: 30px;
}

.map-node {
  padding: 16px 18px;
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  background: var(--navy-50);
  color: var(--light-text);
  font-weight: 800;
}

.map-node.active {
  border-color: var(--pink);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(192, 38, 160, 0.12);
}

.map-line {
  width: 1px;
  height: 24px;
  margin-left: 24px;
  background: linear-gradient(var(--navy-border), var(--pink));
}

.analytics-panel {
  padding: 30px;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  color: var(--white);
  font-weight: 800;
}

.panel-top span {
  color: var(--light-purple);
}

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

.heatmap i {
  aspect-ratio: 1;
  border-radius: 12px;
  background: rgba(148, 163, 184, 0.23);
}

.heatmap i.ok {
  background: rgba(0, 146, 70, 0.75);
}

.heatmap i.warn {
  background: rgba(212, 165, 116, 0.82);
}

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

.metric-dashboard div {
  padding: 18px;
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.metric-dashboard span,
.metric-dashboard b {
  display: block;
}

.ai-capability-card {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(168, 85, 247, 0.34);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(192, 38, 160, 0.18), transparent 45%),
    rgba(255, 255, 255, 0.045);
}

.ai-capability-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 0.32rem 0.52rem;
  border: 1px solid var(--navy-border);
  border-radius: 999px;
  color: var(--light-purple);
  font-size: 0.72rem;
  font-weight: 800;
}

.ai-capability-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.ai-capability-card p {
  margin: 0;
  color: var(--gray-text);
  font-size: 0.94rem;
}

.metric-dashboard b {
  margin-top: 12px;
  color: var(--white);
  font-size: 1.8rem;
}

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

.module-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--navy-50);
}

.module-card.featured {
  border-color: rgba(192, 38, 160, 0.7);
  background:
    radial-gradient(circle at top right, rgba(192, 38, 160, 0.28), transparent 48%),
    var(--navy-50);
  box-shadow: var(--shadow-pink);
}

.module-card ul {
  margin: 24px 0 34px;
  padding-left: 18px;
}

.module-card li + li {
  margin-top: 12px;
}

.module-card a {
  margin-top: auto;
  color: var(--white);
  font-weight: 800;
}

.deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.deliverables span,
.market-signals span,
.audience-grid span {
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  background: var(--white);
  color: var(--deep-bg);
  font-weight: 800;
}

.report-theater {
  position: relative;
  min-height: 570px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(192, 38, 160, 0.18), transparent 35%),
    var(--deep-bg);
  box-shadow: var(--shadow-deep);
}

.report-sheet {
  position: absolute;
  width: 260px;
  min-height: 90px;
  padding: 22px;
  border: 1px solid rgba(221, 221, 232, 0.72);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #f5f5fa);
  color: var(--deep-bg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.report-sheet.cover {
  left: 52px;
  top: 54px;
  width: 310px;
  min-height: 360px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(192, 38, 160, 0.75), rgba(13, 17, 87, 0.92)),
    var(--mid-bg);
}

.report-sheet.cover span,
.report-sheet.cover strong {
  display: block;
}

.report-sheet.cover span {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.report-sheet.cover strong {
  margin-top: 150px;
  font-family: var(--font-display);
  font-size: 2.05rem;
  line-height: 1.08;
}

.report-sheet:not(.cover) b {
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.report-sheet:not(.cover) span {
  display: block;
  margin-top: 8px;
  color: var(--ink-muted);
  font-weight: 800;
}

.report-sheet:nth-child(2) { right: 62px; top: 72px; }
.report-sheet:nth-child(3) { right: 30px; top: 180px; }
.report-sheet:nth-child(4) { right: 78px; top: 288px; }
.report-sheet:nth-child(5) { right: 36px; top: 396px; }
.report-sheet.action { left: 72px; bottom: 58px; width: 330px; }

.audience-section {
  background: var(--dark-bg);
}

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

.audience-grid span {
  min-height: 88px;
  display: flex;
  align-items: center;
  border-color: var(--navy-border);
  color: var(--white);
  background: rgba(22, 22, 80, 0.72);
}

.benchmark-copy {
  padding: 34px;
  border: 1px solid var(--navy-border);
  border-radius: 24px;
  background: rgba(22, 22, 80, 0.72);
}

.market-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.market-signals span {
  border-color: var(--navy-border);
  color: var(--light-text);
  background: rgba(255, 255, 255, 0.04);
}

.why-list {
  display: grid;
  gap: 12px;
}

.why-list article {
  padding: 22px;
}

.why-list b,
.why-list span {
  display: block;
}

.why-list b {
  color: var(--white);
  font-size: 1.08rem;
}

.why-list span {
  margin-top: 7px;
}

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 50%, rgba(192, 38, 160, 0.24), transparent 34%),
    var(--deep-bg);
}

.cta-inner {
  max-width: 720px;
}

.cta-inner p:not(.eyebrow) {
  max-width: 580px;
  color: var(--light-text);
  font-size: 1.16rem;
  margin-bottom: 30px;
}

.lead-form {
  padding: 30px;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(7, 7, 61, 0.16);
}

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

label {
  display: block;
  margin-bottom: 14px;
  color: var(--deep-bg);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  outline: none;
  color: var(--deep-bg);
  background: var(--light-bg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(192, 38, 160, 0.12);
}

.hidden-field {
  display: none;
}

.form-success {
  margin: 18px 0 0;
  padding: 14px;
  border-radius: var(--radius-lg);
  color: #0f5132;
  background: rgba(0, 146, 70, 0.12);
  font-weight: 800;
}

.faq-list {
  max-width: 920px;
}

.faq-list details {
  padding: 22px 26px;
}

.faq-list details + details {
  margin-top: 10px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 800;
}

.faq-list p {
  margin: 14px 0 0;
}

.site-footer {
  padding: 64px 0 38px;
  border-top: 1px solid var(--navy-border);
  background: var(--deep-bg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 54px;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 18px;
}

.site-footer p {
  margin: 0 0 6px;
  color: var(--gray-text);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 8px;
  color: var(--light-purple);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--light-text);
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--white);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes dash {
  to { stroke-dashoffset: -160; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 3.45rem;
  }

  .site-nav {
    gap: 18px;
  }

  .hero-layout,
  .system-grid,
  .split-heading,
  .benchmark-grid,
  .problem-grid,
  .why-grid,
  .form-grid,
  .output-grid {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 46px;
  }

  .engine-stage {
    min-height: 620px;
  }

  .pressure-rail,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .module-card {
    min-height: 0;
  }

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

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

  .timeline-track::before {
    display: none;
  }

  .pressure-section .split-heading {
    gap: 18px;
    align-items: start;
  }

  .pressure-section .split-heading h2 {
    max-width: 780px;
    font-size: 3.1rem;
  }

  .pressure-section .split-heading p {
    max-width: 680px;
    margin-bottom: 0;
  }

  .pressure-section .pressure-rail {
    margin-top: 34px;
  }
}

@media (max-width: 860px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 3rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 80px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--navy-border);
    background: var(--dark-bg);
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 0;
  }

  .nav-cta {
    margin-top: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .engine-stage {
    min-height: 760px;
  }

  .data-constellation {
    left: 50%;
    top: 32px;
    transform: translateX(-50%);
  }

  .vsme-engine {
    top: 46%;
  }

  .ai-assist-label {
    left: 50%;
    top: calc(46% - 148px);
    transform: translateX(-50%);
  }

  .report-stack {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 118px;
    transform: translateX(-50%) scale(0.9);
    transform-origin: center bottom;
  }

  .review-layer {
    bottom: 28px;
    width: calc(100% - 42px);
  }

  .report-theater {
    min-height: 720px;
  }

  .report-sheet.cover {
    left: 28px;
    width: calc(100% - 56px);
  }

  .report-sheet:nth-child(2),
  .report-sheet:nth-child(3),
  .report-sheet:nth-child(4),
  .report-sheet:nth-child(5),
  .report-sheet.action {
    left: 48px;
    right: auto;
    width: calc(100% - 96px);
  }

  .report-sheet:nth-child(2) { top: 435px; }
  .report-sheet:nth-child(3) { top: 535px; }
  .report-sheet:nth-child(4) { top: 635px; }
  .report-sheet:nth-child(5) { display: none; }
  .report-sheet.action { display: none; }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .brand img {
    height: 40px;
  }

  .product-mark {
    display: none;
  }

  h1 {
    font-size: 2.35rem;
    line-height: 1.03;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero,
  .pressure-section,
  .modules-section,
  .benchmark-section,
  .faq-section,
  .system-section,
  .audience-section,
  .why-section,
  .cta-section,
  .timeline-section,
  .problem-section,
  .output-section,
  .form-section {
    padding-block: 78px;
  }

  .hero-lead {
    font-size: 1.06rem;
  }

  .pressure-section .split-heading {
    gap: 14px;
  }

  .pressure-section .split-heading h2 {
    font-size: 2.25rem;
    line-height: 1.04;
  }

  .pressure-section .split-heading p {
    font-size: 1.02rem;
  }

  .pressure-section .pressure-rail {
    margin-top: 28px;
  }

  .timeline-track {
    grid-template-columns: 1fr;
  }

  .timeline-card {
    min-height: 0;
  }

  .timeline-year {
    margin-top: 28px;
  }

  .engine-stage {
    min-height: 710px;
    border-radius: 20px;
  }

  .vsme-engine {
    width: 220px;
    height: 220px;
  }

  .data-constellation {
    width: 230px;
  }

  .report-stack {
    transform: translateX(-50%) scale(0.78);
  }

  .review-layer {
    align-items: flex-start;
    flex-direction: column;
  }

  .metric-dashboard,
  .form-row,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .panel-top {
    flex-direction: column;
  }

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