:root {
  --bg: #04060b;
  --bg-2: #0a1018;
  --panel: rgba(255, 255, 255, 0.048);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #eef4fb;
  --muted: rgba(238, 244, 251, 0.72);
  --dim: rgba(238, 244, 251, 0.48);
  --cyan: #9fe6ff;
  --cyan-strong: #d8f8ff;
  --cyan-soft: rgba(159, 230, 255, 0.14);
  --blue-soft: rgba(89, 141, 255, 0.18);
  --amber: #ffbf72;
  --amber-soft: rgba(255, 191, 114, 0.18);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.28);
  --shadow-hero: 0 60px 180px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 120px rgba(159, 230, 255, 0.16);
  --radius: 28px;
  --radius-lg: 40px;
  --max: 1320px;
  --page-pad: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Sora", system-ui, sans-serif;
  background:
    radial-gradient(circle at 16% 10%, rgba(119, 159, 255, 0.11), transparent 28%),
    radial-gradient(circle at 84% 8%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #03050a 0%, #070d16 35%, #04060b 100%);
  overflow-x: hidden;
  min-height: 100vh;
}

body.cursor-active,
body.cursor-active a,
body.cursor-active button {
  cursor: none;
}

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

button {
  font: inherit;
}

#cloud-field,
.noise,
.page-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#cloud-field {
  z-index: 0;
  opacity: 0.84;
}

.noise {
  z-index: 1;
  opacity: 0.06;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 0.6px, transparent 0.7px);
  background-size: 12px 12px;
  mix-blend-mode: soft-light;
}

.page-vignette {
  z-index: 2;
  background:
    radial-gradient(circle at 50% -10%, transparent 22%, rgba(0, 0, 0, 0.38) 85%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.22));
}

.cursor-shell {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 100;
  width: 110px;
  height: 110px;
  transform: translate3d(-50%, -50%, 0);
  display: none;
  mix-blend-mode: screen;
}

body.cursor-active.is-ready .cursor-shell {
  display: block;
}

.intro-screen {
  display: none;
}

.js .intro-screen {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(159, 230, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(4, 6, 11, 0.96), rgba(4, 6, 11, 0.98));
  transition: opacity 900ms cubic-bezier(.16, 1, .3, 1), visibility 900ms ease;
}

.intro-fog {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.8;
}

.intro-fog-a {
  width: 460px;
  height: 320px;
  background: rgba(255, 255, 255, 0.08);
  top: 14%;
  left: 12%;
  animation: driftA 8s ease-in-out infinite;
}

.intro-fog-b {
  width: 520px;
  height: 360px;
  background: rgba(159, 230, 255, 0.16);
  right: 8%;
  top: 22%;
  animation: driftB 9s ease-in-out infinite;
}

.intro-fog-c {
  width: 420px;
  height: 320px;
  background: rgba(91, 126, 255, 0.14);
  left: 28%;
  bottom: 12%;
  animation: driftC 10s ease-in-out infinite;
}

.intro-shell {
  position: relative;
  z-index: 1;
  width: min(460px, calc(100vw - 48px));
  padding: 30px 28px;
  display: grid;
  gap: 20px;
  justify-items: center;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at top center, rgba(159, 230, 255, 0.12), transparent 38%);
  box-shadow: 0 30px 140px rgba(0, 0, 0, 0.46);
  transition: transform 900ms cubic-bezier(.16, 1, .3, 1), opacity 900ms ease;
}

.intro-mark {
  width: 108px;
  height: 108px;
  filter: drop-shadow(0 0 26px rgba(159, 230, 255, 0.18));
}

.intro-copy {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.intro-copy strong {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(2rem, 6vw, 2.8rem);
  letter-spacing: -0.04em;
}

.intro-bar {
  width: 100%;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.intro-bar span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(216, 248, 255, 1), rgba(159, 230, 255, 0));
  animation: sweep 1.5s ease-in-out infinite;
}

body.is-ready .intro-screen {
  opacity: 0;
  visibility: hidden;
}

body.is-ready .intro-shell {
  opacity: 0;
  transform: translateY(-16px) scale(1.02);
}

.cursor-core,
.cursor-shell::before {
  position: absolute;
  inset: 0;
  border-radius: 999px;
}

.cursor-shell::before {
  content: "";
  border: 1px solid rgba(216, 248, 255, 0.3);
  background: radial-gradient(circle, rgba(159, 230, 255, 0.16), rgba(159, 230, 255, 0.02) 60%, transparent 72%);
  box-shadow: 0 0 36px rgba(159, 230, 255, 0.18);
}

.cursor-core {
  inset: 42px;
  background: rgba(216, 248, 255, 0.92);
  box-shadow: 0 0 16px rgba(216, 248, 255, 0.4);
}

.cursor-label {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  color: rgba(238, 244, 251, 0.72);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  width: min(var(--max), calc(100vw - 32px));
  margin: 20px auto 0;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 10, 16, 0.54);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.site-header.scrolled {
  transform: translateY(-2px);
  background: rgba(7, 10, 16, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
}

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

.brand-mark-image {
  width: 28px;
  height: 28px;
  display: block;
  filter: drop-shadow(0 0 18px rgba(159, 230, 255, 0.14));
}

.brand-type {
  display: grid;
  line-height: 1;
}

.brand-type strong {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.brand-type em {
  margin-top: 4px;
  font-style: normal;
  font-size: 0.56rem;
  color: rgba(238, 244, 251, 0.58);
  letter-spacing: 0.26em;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 160ms ease;
}

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

.nav-cta,
.btn {
  border-radius: 999px;
  font-weight: 700;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

main section {
  width: min(var(--max), calc(100vw - 2 * var(--page-pad)));
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 84px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 44px;
  align-items: center;
  width: 100%;
}

.eyebrow,
.section-kicker,
.mono,
.signal-pill,
.status {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-copy h1,
.section-head h2,
.final-cta h2,
.showcase-copy h3 {
  font-family: "Bodoni Moda", Georgia, serif;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  margin: 16px 0 22px;
  font-size: clamp(4rem, 7.8vw, 7.5rem);
  max-width: 8.5ch;
}

.hero-text {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.9;
}

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

.btn {
  padding: 15px 22px;
  border: 1px solid transparent;
}

.btn-primary {
  color: #07111b;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(195, 236, 255, 0.96));
  box-shadow: 0 24px 60px rgba(159, 230, 255, 0.2);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.hero-metrics,
.corridor-grid,
.wall-grid,
.evidence-grid,
.gallery-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.metric-card,
.corridor-card,
.receipt-card,
.wall-card,
.scenario-shell,
.scenario-panel,
.evidence-card,
.gallery-panel,
.price-card,
.faq-list details,
.thesis-band,
.final-cta {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(159, 230, 255, 0.08), transparent 32%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.metric-card,
.corridor-card,
.wall-card,
.evidence-card,
.price-card {
  padding: 24px;
  border-radius: 22px;
}

.metric-card strong,
.receipt-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 0.96rem;
  line-height: 1.6;
}

.dim {
  color: var(--dim);
}

.hero-stage {
  position: relative;
  min-height: 740px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-haze {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.7;
  pointer-events: none;
}

.haze-a {
  width: 260px;
  height: 260px;
  top: 10%;
  left: 6%;
  background: rgba(255, 255, 255, 0.08);
}

.haze-b {
  width: 340px;
  height: 340px;
  right: 0;
  top: 24%;
  background: rgba(159, 230, 255, 0.14);
}

.haze-c {
  width: 320px;
  height: 220px;
  left: 18%;
  bottom: 8%;
  background: rgba(110, 146, 255, 0.12);
}

.monolith-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.truth-beam {
  position: absolute;
  width: 160px;
  height: 560px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(159, 230, 255, 0.26), rgba(159, 230, 255, 0.02));
  filter: blur(36px);
  opacity: 0.65;
}

.monolith-shadow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 230, 255, 0.22), rgba(159, 230, 255, 0.04) 48%, transparent 72%);
  filter: blur(10px);
  transform: translateY(60px);
}

.orbital {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.02);
}

.orbital-a {
  width: 280px;
  height: 280px;
  animation: spin 18s linear infinite;
}

.orbital-b {
  width: 410px;
  height: 410px;
  animation: spinReverse 24s linear infinite;
}

.orbital-c {
  width: 540px;
  height: 540px;
  animation: pulse 6.2s ease-in-out infinite;
}

.monolith {
  position: relative;
  width: 170px;
  height: 310px;
  transform-style: preserve-3d;
  filter: drop-shadow(0 28px 90px rgba(0, 0, 0, 0.42));
}

.monolith-face {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.face-front {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.05) 30%, rgba(255, 255, 255, 0.015)),
    linear-gradient(160deg, rgba(159, 230, 255, 0.18), rgba(255, 255, 255, 0.03));
  box-shadow:
    inset 0 0 40px rgba(255, 255, 255, 0.05),
    inset 0 0 120px rgba(159, 230, 255, 0.08);
}

.face-side {
  width: 34px;
  right: -16px;
  left: auto;
  transform: rotateY(76deg);
  transform-origin: left center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
}

.monolith-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 84px;
  height: 176px;
  transform: translate(-50%, -50%);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(216, 248, 255, 0.92), rgba(159, 230, 255, 0.68) 48%, rgba(159, 230, 255, 0.04));
  filter: blur(0.2px);
  box-shadow:
    0 0 22px rgba(216, 248, 255, 0.22),
    0 0 90px rgba(159, 230, 255, 0.16);
}

.signal-pill {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(238, 244, 251, 0.82);
  font-size: 0.72rem;
}

.pill-a { left: 8%; top: 16%; }
.pill-b { right: 4%; top: 20%; }
.pill-c { left: 5%; bottom: 20%; }
.pill-d { right: 8%; bottom: 14%; }

.stage-caption {
  margin-top: -12px;
  max-width: 420px;
  align-self: flex-end;
  padding: 18px 20px 0;
  color: var(--muted);
  line-height: 1.8;
}

.thesis-band,
.verdict-showcase,
.final-cta {
  border-radius: var(--radius-lg);
  padding: 30px;
}

.thesis-band {
  margin-top: 4px;
  text-align: center;
}

.thesis-band p {
  margin: 16px auto 20px;
  max-width: 880px;
  font-size: 1.28rem;
  line-height: 1.7;
  color: var(--muted);
}

.thesis-rail {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.thesis-rail span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.signal-corridor,
.modality-wall,
.scenario-theater,
.evidence-engine,
.product-gallery,
.pricing,
.faq {
  padding: 120px 0 16px;
}

.section-head {
  margin-bottom: 34px;
}

.section-head h2,
.final-cta h2 {
  margin: 10px 0 0;
  max-width: 11ch;
  font-size: clamp(2.9rem, 5vw, 5rem);
}

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

.corridor-card h3,
.wall-card h3,
.evidence-card h3,
.gallery-panel h3,
.showcase-copy h3,
.scenario-copy h3,
.price-card h3 {
  margin: 12px 0 12px;
  font-size: 1.36rem;
  line-height: 1.34;
}

.corridor-card p,
.wall-card p,
.evidence-card p,
.scenario-copy p,
.price-card p,
.showcase-copy p,
.final-cta p {
  color: var(--muted);
  line-height: 1.8;
}

.step-no {
  color: var(--cyan);
}

.verdict-showcase {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.showcase-copy h3 {
  font-size: 2.4rem;
  margin-top: 14px;
}

.receipt-card {
  padding: 24px;
  border-radius: 28px;
}

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

.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.status-warn {
  color: var(--amber);
  background: rgba(255, 191, 114, 0.12);
  border: 1px solid rgba(255, 191, 114, 0.28);
}

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

.receipt-grid > div {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.receipt-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

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

.wall-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.scenario-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.scenario-tab {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

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

.scenario-tab.active {
  color: #07111b;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(198, 237, 255, 0.94));
}

.scenario-shell {
  position: relative;
  min-height: 280px;
  margin-top: 22px;
  padding: 28px;
  border-radius: 32px;
  overflow: hidden;
}

.scenario-shell::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 230, 255, 0.14), transparent 70%);
  filter: blur(18px);
}

.scenario-panel {
  display: none;
  position: relative;
  z-index: 1;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  border-radius: 24px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.scenario-panel.active {
  display: grid;
}

.scenario-evidence {
  margin: 0;
  padding: 20px 24px;
  list-style: none;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.scenario-evidence li {
  color: var(--muted);
  line-height: 1.8;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.scenario-evidence li:last-child {
  border-bottom: 0;
}

.evidence-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
}

.evidence-lens {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.lens-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lens-ring-a {
  width: 220px;
  height: 220px;
  animation: spinReverse 18s linear infinite;
}

.lens-ring-b {
  width: 340px;
  height: 340px;
  animation: pulse 5.2s ease-in-out infinite;
}

.lens-center {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(159, 230, 255, 0.6) 36%, rgba(159, 230, 255, 0.1) 72%, transparent 78%);
  box-shadow: var(--shadow-glow);
}

.lens-center strong {
  display: block;
  margin-top: 6px;
  font-size: 1.24rem;
}

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

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

.gallery-panel {
  min-height: 200px;
  padding: 28px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gallery-panel-large {
  grid-column: span 2;
  min-height: 320px;
}

.gallery-panel-wide {
  grid-column: span 3;
  min-height: 180px;
}

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

.price-card {
  min-height: 220px;
}

.price-card-featured {
  border-color: rgba(159, 230, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(159, 230, 255, 0.14), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top right, rgba(159, 230, 255, 0.12), transparent 32%);
  transform: translateY(-6px);
}

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

.faq-list details {
  padding: 20px 22px;
  border-radius: 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.8;
}

.final-cta {
  margin: 120px auto 90px;
  text-align: center;
}

.final-cta h2 {
  max-width: none;
}

.final-cta p {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 1.06rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 850ms cubic-bezier(.2, .8, .2, 1), transform 850ms cubic-bezier(.2, .8, .2, 1);
}

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

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 200ms ease, border-color 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.tilt-card:hover {
  border-color: var(--line-strong);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    0 0 48px rgba(159, 230, 255, 0.08);
}

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

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 0.82; }
}

@keyframes sweep {
  0% { transform: translateX(-140%); }
  100% { transform: translateX(340%); }
}

@keyframes driftA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(24px, -14px, 0); }
}

@keyframes driftB {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-30px, 18px, 0); }
}

@keyframes driftC {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(18px, 22px, 0); }
}

@media (max-width: 1160px) {
  .hero-grid,
  .verdict-showcase,
  .corridor-grid,
  .wall-grid,
  .evidence-layout,
  .gallery-grid,
  .pricing-grid,
  .scenario-panel,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 640px;
  }

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

  .gallery-panel-large,
  .gallery-panel-wide {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 14px;
  }

  body.cursor-active,
  body.cursor-active a,
  body.cursor-active button {
    cursor: auto;
  }

  .cursor-shell {
    display: none !important;
  }

  .intro-shell {
    width: min(420px, calc(100vw - 28px));
    padding: 24px 22px;
  }

  .site-header {
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

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

  .hero-copy h1 {
    font-size: clamp(3.2rem, 15vw, 4.9rem);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 540px;
  }

  .stage-caption,
  .thesis-band,
  .verdict-showcase,
  .scenario-shell,
  .final-cta {
    padding: 22px;
  }

  .monolith {
    width: 136px;
    height: 250px;
  }

  .monolith-core {
    width: 70px;
    height: 146px;
  }

  .orbital-a {
    width: 220px;
    height: 220px;
  }

  .orbital-b {
    width: 320px;
    height: 320px;
  }

  .orbital-c {
    width: 420px;
    height: 420px;
  }

  .signal-pill {
    font-size: 0.62rem;
    padding: 8px 10px;
  }

  .pill-a { left: 0; top: 14%; }
  .pill-b { right: 0; top: 18%; }
  .pill-c { left: 0; bottom: 18%; }
  .pill-d { right: 0; bottom: 12%; }

  .section-head h2,
  .final-cta h2 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .showcase-copy h3 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .tilt-card,
  .btn,
  .nav-cta,
  .intro-fog-a,
  .intro-fog-b,
  .intro-fog-c,
  .intro-bar span,
  .orbital-a,
  .orbital-b,
  .orbital-c,
  .lens-ring-a,
  .lens-ring-b {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}
