:root {
  color-scheme: dark;
  --bg: #080c14;
  --bg-soft: #0d1421;
  --surface: #111a29;
  --surface-2: #162235;
  --text: #f4f8ff;
  --muted: #9aa9bf;
  --line: rgba(185, 211, 255, 0.16);
  --cyan: #38d9ff;
  --blue: #6b8cff;
  --violet: #9b7cff;
  --mint: #6ef3b4;
  --amber: #ffbf5e;
  --rose: #ff6f8d;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.34);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 58% 6%, rgba(56, 217, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 18% 18%, rgba(155, 124, 255, 0.12), transparent 28rem),
    var(--bg);
  background-size: 42px 42px, 42px 42px, auto, auto, auto;
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 12, 20, 0) 0%, rgba(8, 12, 20, 0.9) 78%);
  z-index: -1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(var(--max), calc(100% - 32px));
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 17, 28, 0.82);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 760;
  white-space: nowrap;
}

.logo::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(56, 217, 255, 0.95), rgba(110, 243, 180, 0.7)),
    #0d1421;
  box-shadow: 0 0 28px rgba(56, 217, 255, 0.35);
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

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

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 54px;
  padding-top: 54px;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-subhead {
  max-width: 720px;
  margin: 26px 0 0;
  color: #c8d4e5;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

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

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

.centered {
  justify-content: center;
}

.button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 14px;
  font-weight: 760;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.button.primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #04111d;
  border-color: rgba(99, 221, 255, 0.82);
  box-shadow: 0 16px 42px rgba(56, 217, 255, 0.25);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.055);
}

.button.small {
  min-height: 38px;
  padding-inline: 14px;
}

.button.full {
  width: 100%;
}

.proof-line {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.report-mockup {
  border: 1px solid rgba(128, 184, 255, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(14, 23, 38, 0.88);
  box-shadow: var(--shadow);
  padding: 18px;
  overflow: hidden;
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #b8c7dc;
  font-size: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.mockup-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #304056;
}

.mockup-topbar strong {
  margin-left: auto;
  color: var(--mint);
  font-size: 11px;
  font-weight: 760;
}

.score-grid,
.bug-card,
.prompt-block,
.score-tile,
.report-preview-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.score-grid {
  margin-top: 18px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
}

.mock-label,
.section-label {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.score {
  display: block;
  font-size: 64px;
  line-height: 0.9;
}

.score-notes {
  display: grid;
  align-content: center;
  gap: 8px;
}

.status-pill,
.plan-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  border-radius: 999px;
  padding: 3px 9px;
  font-size: 12px;
  font-weight: 800;
}

.status-pill.pass {
  background: rgba(110, 243, 180, 0.13);
  color: var(--mint);
}

.status-pill.warn {
  background: rgba(255, 191, 94, 0.13);
  color: var(--amber);
}

.bug-card {
  margin-top: 12px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 100px;
  gap: 14px;
}

.bug-card.compact {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.bug-card h3,
.bug-card p {
  margin: 6px 0 0;
}

.bug-card p,
.prompt-block code {
  color: #b6c4d8;
  line-height: 1.55;
}

.severity {
  display: inline-flex;
  border-radius: 5px;
  padding: 4px 7px;
  font-size: 11px;
  font-weight: 850;
}

.severity.high {
  color: var(--rose);
  background: rgba(255, 111, 141, 0.13);
}

.severity.medium {
  color: var(--amber);
  background: rgba(255, 191, 94, 0.13);
}

.thumb,
.sample-screenshot {
  min-height: 84px;
  border: 1px dashed rgba(200, 216, 238, 0.35);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 111, 141, 0.18), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  display: grid;
  place-items: center;
  color: #dfe8f7;
  font-size: 12px;
  font-weight: 800;
}

.prompt-block {
  margin-top: 12px;
  padding: 14px;
}

.prompt-block code {
  display: block;
  white-space: normal;
  font-size: 12px;
}

.audience-strip {
  width: min(var(--max), calc(100% - 32px));
  margin: -36px auto 0;
  padding: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.audience-strip span {
  border: 1px solid rgba(151, 178, 214, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  color: #cbd7e7;
  font-size: 13px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 48px;
  align-items: start;
}

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

.section-heading.narrow {
  max-width: 660px;
  text-align: center;
  margin-inline: auto;
}

.section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p:not(.section-label),
.split p,
.final-cta p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 17px;
}

.pain-list,
.feature-grid article,
.price-card,
.comparison-wrap,
.faq-list details,
.intake-form,
.final-cta,
.before-after > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.042);
}

.pain-list {
  padding: 14px;
  display: grid;
  gap: 10px;
}

.pain-list p {
  margin: 0;
  padding: 14px;
  border-radius: 7px;
  color: #d9e4f5;
  background: rgba(255, 255, 255, 0.04);
}

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

.feature-grid article {
  min-height: 170px;
  padding: 18px;
}

.feature-grid h3,
.price-card h3 {
  margin: 0 0 10px;
}

.feature-grid p,
.price-card p,
.price-card li {
  color: var(--muted);
  line-height: 1.58;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  min-height: 138px;
  border-top: 2px solid var(--cyan);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #d8e4f4;
  line-height: 1.45;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 850;
}

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

.price-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(56, 217, 255, 0.58);
  background:
    linear-gradient(180deg, rgba(56, 217, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 80px rgba(56, 217, 255, 0.15);
  transform: translateY(-10px);
}

.plan-badge {
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #dbe7f7;
}

.plan-badge.best {
  color: #03141d;
  background: linear-gradient(135deg, var(--cyan), var(--mint));
}

.price {
  margin: 4px 0 10px;
  color: var(--text) !important;
  font-size: 46px;
  line-height: 1;
  font-weight: 850;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
  padding: 0;
  list-style: none;
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--mint);
}

.price-card .button {
  margin-top: auto;
}

.comparison-wrap {
  margin-top: 24px;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  color: #cdd9ea;
}

.comparison-table th {
  color: var(--text);
  font-size: 13px;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.preview-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.preview-tabs button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 780;
}

.preview-tabs button[aria-selected="true"] {
  color: #03141d;
  background: var(--cyan);
}

.preview-panel {
  margin-top: 18px;
}

.report-preview-card {
  padding: 22px;
  box-shadow: var(--shadow);
}

.risk-grid,
.bug-preview-grid,
.agent-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.report-preview-card li,
.report-preview-card p,
.json-snippet {
  color: #c4d0e1;
  line-height: 1.6;
}

.recommendation {
  margin: 16px 0 0;
  color: var(--mint) !important;
}

.sample-screenshot {
  min-height: 220px;
}

.score-tile {
  padding: 18px;
  display: grid;
  align-content: center;
}

.score-tile span {
  color: var(--muted);
}

.score-tile strong {
  margin-top: 10px;
  font-size: 48px;
}

.prompt-block.large {
  margin-top: 0;
}

.json-snippet {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #07101b;
  white-space: pre-wrap;
  overflow-x: auto;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.before-after > div {
  padding: 28px;
}

.before-after span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

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

.faq-list details {
  padding: 18px 20px;
}

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

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

.final-cta {
  padding: 50px 24px;
  text-align: center;
}

.intake-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 22px;
}

.intake-form label {
  display: grid;
  gap: 8px;
  color: #dce6f4;
  font-size: 14px;
  font-weight: 760;
}

.intake-form .wide {
  grid-column: 1 / -1;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 9, 15, 0.72);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(56, 217, 255, 0.12);
}

.intake-form textarea {
  min-height: 114px;
  resize: vertical;
}

.checkbox {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 12px !important;
  color: var(--muted) !important;
}

.checkbox input {
  width: 18px;
  height: 18px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
}

.form-status[data-type="error"] {
  color: var(--rose);
}

.form-status[data-type="success"] {
  color: var(--mint);
}

.mobile-sticky {
  display: none;
}

.simple-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.simple-shell {
  width: min(680px, calc(100% - 32px));
}

.simple-card {
  margin-top: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.052);
  box-shadow: var(--shadow);
}

.simple-card h1 {
  margin: 14px 0;
  font-size: clamp(34px, 6vw, 54px);
  line-height: 1;
}

.simple-card p {
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .hero,
  .split,
  .pricing-grid,
  .before-after {
    grid-template-columns: 1fr;
  }

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

  .report-mockup {
    max-width: 620px;
  }

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

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

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 82px;
  }

  .site-header {
    width: min(100% - 20px, var(--max));
    margin-top: 10px;
  }

  .site-header .button {
    display: none;
  }

  .section {
    width: min(100% - 24px, var(--max));
    padding: 62px 0;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 46px);
  }

  .hero-subhead {
    font-size: 16px;
  }

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

  .report-mockup {
    padding: 14px;
  }

  .mockup-topbar strong {
    display: none;
  }

  .score-grid,
  .bug-card,
  .risk-grid,
  .bug-preview-grid,
  .agent-preview,
  .intake-form {
    grid-template-columns: 1fr;
  }

  .thumb {
    min-height: 104px;
  }

  .audience-strip {
    width: min(100% - 24px, var(--max));
    margin-top: 0;
  }

  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .feature-grid article,
  .steps li {
    min-height: auto;
  }

  .preview-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .mobile-sticky {
    position: fixed;
    z-index: 30;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    padding: 12px;
    border-top: 1px solid var(--line);
    background: rgba(8, 12, 20, 0.9);
    backdrop-filter: blur(14px);
  }
}

/* 2026 visual refresh: alternating lab-dark and report-light sections. */
:root {
  color-scheme: light dark;
  --paper: #f7fbff;
  --paper-strong: #ffffff;
  --paper-ink: #07111f;
  --paper-muted: #536173;
  --paper-line: rgba(7, 17, 31, 0.13);
  --paper-cyan: #00b8c7;
  --lime: #3ee884;
  --section-skew: polygon(0 0, 100% 3.5vw, 100% 100%, 0 calc(100% - 3.5vw));
}

body {
  overflow-x: hidden;
  background:
    linear-gradient(rgba(97, 235, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 235, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 76% 7%, rgba(56, 217, 255, 0.22), transparent 29rem),
    radial-gradient(circle at 18% 9%, rgba(62, 232, 132, 0.13), transparent 24rem),
    #07101b;
}

body::before {
  opacity: 0.85;
  background:
    linear-gradient(180deg, rgba(8, 12, 20, 0) 0%, rgba(8, 12, 20, 0.78) 82%),
    radial-gradient(circle at 50% 52%, rgba(40, 255, 235, 0.05), transparent 34rem);
}

.site-header {
  border-color: rgba(97, 235, 255, 0.22);
  background: rgba(5, 12, 22, 0.76);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 217, 255, 0.72), transparent);
  opacity: 0.72;
}

.logo::before {
  animation: markPulse 3.5s ease-in-out infinite;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 82px);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero::before {
  inset: 7% -7% 10% 38%;
  background:
    linear-gradient(90deg, transparent, rgba(56, 217, 255, 0.45), transparent),
    repeating-linear-gradient(0deg, rgba(56, 217, 255, 0.1) 0 1px, transparent 1px 17px);
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 78%, transparent);
  opacity: 0.55;
  transform: perspective(760px) rotateX(61deg) translateY(42px);
  animation: scanSweep 5.8s linear infinite;
}

.hero::after {
  width: min(520px, 52vw);
  aspect-ratio: 1;
  right: 2%;
  top: 15%;
  border: 1px solid rgba(56, 217, 255, 0.16);
  background:
    radial-gradient(circle, rgba(110, 243, 180, 0.18), transparent 42%),
    conic-gradient(from 180deg, transparent, rgba(56, 217, 255, 0.16), transparent 45%);
  filter: blur(2px);
  opacity: 0.8;
  animation: slowOrbit 16s linear infinite;
}

.hero h1 {
  max-width: 760px;
}

.hero h1::selection,
.hero-subhead::selection {
  background: rgba(56, 217, 255, 0.32);
}

.hero-subhead {
  color: #d5e0ef;
}

.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 28%, rgba(255, 255, 255, 0.45) 45%, transparent 62% 100%);
  transform: translateX(-140%);
  transition: transform 520ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, #4effe3, var(--lime));
  border-color: rgba(78, 255, 227, 0.92);
  box-shadow: 0 18px 48px rgba(56, 217, 255, 0.24), 0 0 0 1px rgba(62, 232, 132, 0.2);
}

.report-mockup {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.026)),
    linear-gradient(135deg, rgba(56, 217, 255, 0.12), transparent 42%),
    rgba(8, 18, 31, 0.9);
  transform:
    perspective(1100px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translateY(var(--lift, 0));
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.report-mockup::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(56, 217, 255, 0.42), transparent);
  opacity: 0;
  z-index: 0;
  transition: opacity 220ms ease;
}

.report-mockup::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(78, 255, 227, 0.9), transparent);
  opacity: 0.32;
  z-index: 0;
  animation: mockupScan 4.2s ease-in-out infinite;
}

.report-mockup > * {
  position: relative;
  z-index: 1;
}

.report-mockup:hover {
  --lift: -5px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42), 0 0 72px rgba(56, 217, 255, 0.15);
}

.report-mockup:hover::before {
  opacity: 0.35;
}

.audience-strip {
  position: relative;
  overflow: hidden;
  border-color: rgba(78, 255, 227, 0.18);
  background: rgba(3, 9, 17, 0.72);
}

.audience-strip span {
  background: rgba(255, 255, 255, 0.035);
  animation: chipBreathe 5s ease-in-out infinite;
}

.audience-strip span:nth-child(2n) {
  animation-delay: 700ms;
}

.audience-strip span:nth-child(3n) {
  animation-delay: 1400ms;
}

.pain-section,
.process-section,
.pricing-section,
.before-after,
.faq-section,
.intake-section {
  color: var(--paper-ink);
  background:
    radial-gradient(circle at 88% 20%, rgba(56, 217, 255, 0.16), transparent 20rem),
    radial-gradient(circle at 12% 72%, rgba(62, 232, 132, 0.09), transparent 24rem),
    linear-gradient(180deg, var(--paper-strong), var(--paper));
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.pain-section,
.pricing-section,
.intake-section {
  padding-top: 104px;
  padding-bottom: 104px;
}

.process-section,
.faq-section {
  background:
    linear-gradient(90deg, rgba(0, 184, 199, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper-strong), #f2f8fc);
  background-size: 34px 100%, auto;
  box-shadow: 0 0 0 100vmax #f4f9fd;
}

.sample-section,
.final-cta {
  position: relative;
  color: var(--text);
  background:
    linear-gradient(rgba(97, 235, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 235, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 85% 26%, rgba(56, 217, 255, 0.14), transparent 24rem),
    #07101b;
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow: 0 0 0 100vmax #07101b;
  clip-path: inset(0 -100vmax);
}

.section-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 4px 7px;
  border: 1px solid rgba(56, 217, 255, 0.34);
  background: rgba(56, 217, 255, 0.07);
  letter-spacing: 0.03em;
}

.pain-section .section-label,
.process-section .section-label,
.pricing-section .section-label,
.before-after span,
.faq-section .section-label,
.intake-section .section-label {
  color: #007d89;
  border-color: rgba(0, 184, 199, 0.34);
  background: rgba(0, 184, 199, 0.09);
}

.pain-section h2,
.process-section h2,
.pricing-section h2,
.before-after h2,
.faq-section h2,
.intake-section h2 {
  color: var(--paper-ink);
}

.pain-section .section-heading p:not(.section-label),
.pain-section.split p,
.process-section .section-heading p:not(.section-label),
.pricing-section .section-heading p:not(.section-label),
.faq-section .section-heading p:not(.section-label),
.intake-section .section-heading p:not(.section-label) {
  color: var(--paper-muted);
}

.pain-list,
.pricing-section .comparison-wrap,
.faq-list details,
.intake-form,
.before-after > div {
  border-color: var(--paper-line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 60px rgba(31, 50, 76, 0.08);
}

.pain-list {
  position: relative;
}

.pain-list::before {
  content: "$ launch_risk.exe";
  position: absolute;
  left: 16px;
  top: -22px;
  color: #dd334f;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}

.pain-list p {
  position: relative;
  color: #182335;
  background: #fff;
  border: 1px solid var(--paper-line);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.pain-list p:hover {
  transform: translateX(4px);
  border-color: rgba(0, 184, 199, 0.36);
  box-shadow: 0 10px 24px rgba(0, 184, 199, 0.1);
}

#what-you-get {
  position: relative;
  color: var(--text);
}

#what-you-get::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 100vw;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(78, 255, 227, 0.75), transparent);
  transform: translateX(-50%);
  animation: scanSweepFlat 5.5s linear infinite;
}

.feature-grid {
  gap: 0;
  border-top: 1px solid rgba(56, 217, 255, 0.2);
  border-left: 1px solid rgba(56, 217, 255, 0.2);
}

.feature-grid article {
  min-height: 188px;
  border: 0;
  border-right: 1px solid rgba(56, 217, 255, 0.2);
  border-bottom: 1px solid rgba(56, 217, 255, 0.2);
  background: rgba(255, 255, 255, 0.026);
  transition: transform 190ms ease, background 190ms ease;
}

.feature-grid article:hover {
  transform: translateY(-4px);
  background: rgba(56, 217, 255, 0.075);
}

.feature-grid h3::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  border: 1px solid rgba(78, 255, 227, 0.64);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(78, 255, 227, 0.24), transparent),
    radial-gradient(circle at 68% 28%, rgba(62, 232, 132, 0.85) 0 3px, transparent 4px);
}

.steps {
  position: relative;
  gap: 0;
}

.steps::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 184, 199, 0.1), rgba(0, 184, 199, 0.7), rgba(0, 184, 199, 0.1));
}

.steps li {
  position: relative;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1c2838;
  min-height: 162px;
  padding-top: 72px;
}

.steps li::before {
  position: absolute;
  top: 14px;
  left: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 999px;
  color: #04111d;
  background: linear-gradient(135deg, #4effe3, var(--lime));
  box-shadow: 0 10px 28px rgba(0, 184, 199, 0.25);
}

.price-card {
  border-color: var(--paper-line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(31, 50, 76, 0.09);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 184, 199, 0.4);
  box-shadow: 0 28px 70px rgba(31, 50, 76, 0.14);
}

.price-card.featured {
  border-color: rgba(0, 184, 199, 0.72);
  background:
    linear-gradient(180deg, rgba(78, 255, 227, 0.18), rgba(255, 255, 255, 0.94) 42%),
    #fff;
  box-shadow: 0 28px 90px rgba(0, 184, 199, 0.2);
}

.pricing-section .price-card h3,
.pricing-section .price {
  color: var(--paper-ink) !important;
}

.pricing-section .price-card p,
.pricing-section .price-card li {
  color: var(--paper-muted);
}

.pricing-section .button.secondary {
  color: var(--paper-ink);
  background: #fff;
  border-color: rgba(7, 17, 31, 0.18);
  box-shadow: 0 10px 26px rgba(31, 50, 76, 0.07);
}

.pricing-section .button.secondary:hover {
  border-color: rgba(0, 184, 199, 0.44);
  box-shadow: 0 14px 34px rgba(0, 184, 199, 0.12);
}

.pricing-section .plan-badge {
  background: rgba(0, 184, 199, 0.09);
  color: #007d89;
}

.pricing-section .comparison-table th,
.pricing-section .comparison-table td {
  color: #182335;
  border-color: var(--paper-line);
}

.pricing-section .comparison-table th {
  background: rgba(0, 184, 199, 0.06);
}

.preview-tabs {
  background: rgba(255, 255, 255, 0.05);
}

.preview-tabs button {
  transition: background 170ms ease, color 170ms ease, transform 170ms ease;
}

.preview-tabs button:hover {
  transform: translateY(-1px);
  color: var(--text);
}

.report-preview-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(56, 217, 255, 0.07), transparent 44%),
    rgba(255, 255, 255, 0.048);
}

.report-preview-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(78, 255, 227, 0.8), transparent);
}

.before-after {
  align-items: stretch;
}

.before-after > div {
  position: relative;
  overflow: hidden;
}

.before-after > div::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, transparent 65%, rgba(0, 184, 199, 0.13));
}

.faq-list details {
  color: var(--paper-ink);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  transform: translateX(3px);
  border-color: rgba(0, 184, 199, 0.36);
}

.faq-list p {
  color: var(--paper-muted);
}

.final-cta {
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 45%, rgba(62, 232, 132, 0.12), transparent 18rem),
    radial-gradient(circle at 80% 52%, rgba(56, 217, 255, 0.16), transparent 18rem);
  animation: slowOrbit 18s linear infinite;
}

.final-cta > * {
  position: relative;
}

.intake-form label {
  color: #1b2737;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  border-color: rgba(7, 17, 31, 0.16);
  background: #fff;
  color: var(--paper-ink);
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  border-color: var(--paper-cyan);
  box-shadow: 0 0 0 3px rgba(0, 184, 199, 0.12);
}

.checkbox {
  color: var(--paper-muted) !important;
}

.reveal {
  opacity: 1;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@keyframes markPulse {
  0%, 100% {
    box-shadow: 0 0 22px rgba(56, 217, 255, 0.28);
  }
  50% {
    box-shadow: 0 0 38px rgba(78, 255, 227, 0.5);
  }
}

@keyframes scanSweep {
  0% {
    background-position: -220px 0, 0 0;
  }
  100% {
    background-position: 220px 0, 0 170px;
  }
}

@keyframes scanSweepFlat {
  0% {
    transform: translateX(-55%) scaleX(0.85);
    opacity: 0.25;
  }
  50% {
    opacity: 0.95;
  }
  100% {
    transform: translateX(-45%) scaleX(1.08);
    opacity: 0.25;
  }
}

@keyframes mockupScan {
  0%, 100% {
    transform: translateY(-28px);
    opacity: 0;
  }
  18%, 78% {
    opacity: 0.64;
  }
  50% {
    transform: translateY(292px);
  }
}

@keyframes slowOrbit {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.04);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes chipBreathe {
  0%, 100% {
    border-color: rgba(151, 178, 214, 0.2);
  }
  50% {
    border-color: rgba(78, 255, 227, 0.45);
    box-shadow: 0 0 22px rgba(78, 255, 227, 0.1);
  }
}

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

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

@media (max-width: 980px) {
  .steps::before {
    display: none;
  }

  .steps {
    gap: 12px;
  }

  .steps li {
    border: 1px solid var(--paper-line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.62);
  }

  .price-card:hover,
  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
  }

  .hero::before {
    inset: 20% -35% 16% 14%;
    opacity: 0.32;
  }

  .hero::after {
    width: 88vw;
    right: -28vw;
    top: 30%;
  }

  .pain-section,
  .pricing-section,
  .intake-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .feature-grid {
    border-left: 0;
  }

  .feature-grid article {
    border-left: 1px solid rgba(56, 217, 255, 0.2);
  }

  .steps li {
    min-height: auto;
  }

  .mobile-sticky {
    background: rgba(5, 12, 22, 0.92);
  }
}

html,
body {
  overflow-x: hidden;
}

.pain-section,
.process-section,
.pricing-section,
.before-after,
.faq-section,
.intake-section,
.sample-section,
.final-cta {
  position: relative;
  isolation: isolate;
  background: transparent;
  box-shadow: none;
  clip-path: none;
}

.pain-section::before,
.process-section::before,
.pricing-section::before,
.before-after::before,
.faq-section::before,
.intake-section::before,
.sample-section::before,
.final-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
}

.pain-section::before,
.pricing-section::before,
.intake-section::before,
.before-after::before {
  background:
    radial-gradient(circle at 88% 20%, rgba(56, 217, 255, 0.16), transparent 20rem),
    radial-gradient(circle at 12% 72%, rgba(62, 232, 132, 0.09), transparent 24rem),
    linear-gradient(180deg, var(--paper-strong), var(--paper));
}

.process-section::before,
.faq-section::before {
  background:
    linear-gradient(90deg, rgba(0, 184, 199, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper-strong), #f2f8fc);
  background-size: 34px 100%, auto;
}

  .sample-section::before,
  .final-cta::after {
    background:
      linear-gradient(rgba(97, 235, 255, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(97, 235, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 85% 26%, rgba(56, 217, 255, 0.14), transparent 24rem),
      #07101b;
    background-size: 42px 42px, 42px 42px, auto, auto;
  }

/* Kinetic scanner pass: make the page feel like a live diagnostic is running. */
.hero.section {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(112deg, rgba(78, 255, 227, 0.11), transparent 32%),
    repeating-linear-gradient(90deg, rgba(78, 255, 227, 0.055) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(78, 255, 227, 0.035) 0 1px, transparent 1px 72px);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 10px;
  border: 1px solid rgba(78, 255, 227, 0.36);
  border-radius: 999px;
  background: rgba(78, 255, 227, 0.08);
  color: #a9fff0;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow-live span,
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(62, 232, 132, 0.55);
  animation: livePulse 1.55s ease-out infinite;
}

.live-dot {
  display: inline-block;
  margin-right: 7px;
  vertical-align: 1px;
}

.hero h1 {
  text-wrap: balance;
}

.signal-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.signal-stack span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(200, 230, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #c8d8eb;
  font-size: 13px;
}

.signal-stack strong {
  color: var(--mint);
  font-size: 17px;
}

.hero .eyebrow-live,
.hero h1,
.hero-subhead,
.hero-actions,
.proof-line,
.signal-stack {
  opacity: 0;
  transform: translateY(18px);
}

.hero.is-loaded .eyebrow-live,
.hero.is-loaded h1,
.hero.is-loaded .hero-subhead,
.hero.is-loaded .hero-actions,
.hero.is-loaded .proof-line,
.hero.is-loaded .signal-stack {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero.is-loaded h1 {
  transition-delay: 70ms;
}

.hero.is-loaded .hero-subhead {
  transition-delay: 150ms;
}

.hero.is-loaded .hero-actions {
  transition-delay: 230ms;
}

.hero.is-loaded .proof-line {
  transition-delay: 310ms;
}

.hero.is-loaded .signal-stack {
  transition-delay: 390ms;
}

.report-mockup.live-scan {
  overflow: visible;
  padding: 16px;
  border-color: rgba(78, 255, 227, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    repeating-linear-gradient(135deg, rgba(78, 255, 227, 0.055) 0 1px, transparent 1px 18px),
    rgba(8, 18, 31, 0.92);
  animation: floatPanel 5.2s ease-in-out infinite;
}

.hero.is-loaded .report-mockup.live-scan {
  animation: reportDrop 760ms cubic-bezier(0.16, 1, 0.3, 1) both, floatPanel 5.2s ease-in-out 800ms infinite;
}

.scan-orbit {
  position: absolute;
  inset: -26px -18px;
  pointer-events: none;
  z-index: 3;
}

.scan-orbit span {
  position: absolute;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid rgba(78, 255, 227, 0.36);
  border-radius: 999px;
  background: rgba(5, 13, 24, 0.82);
  color: #cffff8;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  animation: orbitChip 6s ease-in-out infinite;
}

.scan-orbit span:nth-child(1) {
  top: 8%;
  right: -8px;
}

.scan-orbit span:nth-child(2) {
  left: -10px;
  top: 45%;
  animation-delay: 900ms;
}

.scan-orbit span:nth-child(3) {
  right: 24px;
  bottom: 0;
  animation-delay: 1800ms;
}

.scan-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  margin-top: 16px;
}

.mini-browser,
.agent-lane,
.crawl-stream {
  border: 1px solid rgba(180, 222, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.mini-browser {
  position: relative;
  min-height: 218px;
  overflow: hidden;
  padding: 12px;
}

.mini-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: -2px 0 14px;
  color: #8ea2bc;
  font-size: 11px;
}

.mini-browser-bar span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #34445a;
}

.mini-browser-bar strong {
  margin-left: auto;
  color: #d8e8fb;
  font-size: 11px;
}

.mini-page-hero,
.mini-page-line,
.mini-page-actions span {
  border-radius: 6px;
  background: rgba(217, 231, 247, 0.13);
}

.mini-page-hero {
  height: 48px;
  background:
    linear-gradient(90deg, rgba(78, 255, 227, 0.22), transparent 70%),
    rgba(217, 231, 247, 0.13);
}

.mini-page-line {
  height: 9px;
  width: 68%;
  margin-top: 12px;
}

.mini-page-line.wide {
  width: 88%;
}

.mini-page-actions {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.mini-page-actions span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  color: #dff7ff;
  font-size: 11px;
  font-weight: 800;
}

.mini-page-actions .action-ok {
  background: rgba(62, 232, 132, 0.16);
}

.mini-page-actions .action-bug {
  position: relative;
  background: rgba(255, 111, 141, 0.17);
  outline: 1px solid rgba(255, 111, 141, 0.45);
  animation: bugPulse 1.8s ease-in-out infinite;
}

.bug-pin {
  position: absolute;
  right: 18px;
  bottom: 28px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 111, 141, 0.55);
  border-radius: 999px;
  background: rgba(64, 15, 29, 0.82);
  color: #ffd8df;
  font-size: 12px;
  font-weight: 900;
  animation: pinPop 2.2s ease-in-out infinite;
}

.scan-beam {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 52%;
  background:
    linear-gradient(90deg, transparent, rgba(78, 255, 227, 0.22), transparent),
    linear-gradient(90deg, transparent 48%, rgba(78, 255, 227, 0.72) 50%, transparent 52%);
  transform: translateX(-125%) skewX(-10deg);
  animation: liveScanBeam 3.6s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.agent-lane {
  padding: 12px;
  display: grid;
  gap: 9px;
}

.agent-lane div {
  position: relative;
  display: grid;
  gap: 4px;
  padding-left: 14px;
}

.agent-lane div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 14px rgba(62, 232, 132, 0.5);
}

.agent-lane span {
  color: #d8e7f8;
  font-size: 12px;
}

.agent-lane strong {
  color: var(--amber);
  font-size: 11px;
  text-transform: uppercase;
}

.status-pill.fail {
  background: rgba(255, 111, 141, 0.14);
  color: var(--rose);
}

.crawl-stream {
  margin-top: 12px;
  overflow: hidden;
}

.crawl-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(180, 222, 255, 0.13);
  color: #d8e7f8;
  font-size: 13px;
  animation: crawlRows 4.2s ease-in-out infinite;
}

.crawl-row:last-child {
  border-bottom: 0;
}

.crawl-row:nth-child(2) {
  animation-delay: 300ms;
}

.crawl-row:nth-child(3) {
  animation-delay: 600ms;
}

.crawl-row strong {
  font-size: 11px;
  text-transform: uppercase;
}

.crawl-row.ok strong {
  color: var(--mint);
}

.crawl-row.warn strong {
  color: var(--amber);
}

.crawl-row.bug strong {
  color: var(--rose);
}

.audience-strip {
  overflow: hidden;
  flex-wrap: nowrap;
  padding: 0;
  background: rgba(3, 9, 17, 0.82);
}

.audience-track {
  display: flex;
  gap: 10px;
  width: max-content;
  padding: 16px;
  animation: audienceRail 28s linear infinite;
}

.audience-strip:hover .audience-track {
  animation-play-state: paused;
}

.audience-strip span {
  white-space: nowrap;
}

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 0 38%, rgba(0, 184, 199, 0.15) 48%, transparent 58% 100%);
  transform: translateX(-130%);
  transition: transform 640ms ease;
}

.price-card:hover::after {
  transform: translateX(130%);
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.preview-panel.is-visible .report-preview-card {
  animation: panelPop 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes livePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(62, 232, 132, 0.55);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(62, 232, 132, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(62, 232, 132, 0);
  }
}

@keyframes reportDrop {
  0% {
    opacity: 0;
    transform: perspective(1100px) rotateX(10deg) rotateY(-10deg) translateY(26px) scale(0.96);
  }
  100% {
    opacity: 1;
  }
}

@keyframes floatPanel {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes orbitChip {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(8px, -10px, 0);
  }
}

@keyframes liveScanBeam {
  0%, 18% {
    transform: translateX(-125%) skewX(-10deg);
    opacity: 0;
  }
  28%, 72% {
    opacity: 1;
  }
  90%, 100% {
    transform: translateX(170%) skewX(-10deg);
    opacity: 0;
  }
}

@keyframes bugPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 111, 141, 0.3);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(255, 111, 141, 0);
  }
}

@keyframes pinPop {
  0%, 100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.08);
  }
}

@keyframes crawlRows {
  0%, 100% {
    background: transparent;
  }
  45% {
    background: rgba(78, 255, 227, 0.055);
  }
}

@keyframes audienceRail {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes panelPop {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .hero.section {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .agent-lane {
    grid-template-columns: repeat(3, 1fr);
  }

  .agent-lane .mock-label {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .hero.section {
    gap: 22px;
    padding-top: 28px;
  }

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

  .signal-stack span {
    min-width: 0;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 6px 7px;
    text-align: center;
    font-size: 11px;
  }

  .signal-stack strong {
    font-size: 15px;
  }

  .scan-orbit {
    display: none;
  }

  .report-mockup.live-scan {
    overflow: hidden;
    animation: none;
  }

  .mini-browser {
    min-height: 194px;
  }

  .agent-lane {
    grid-template-columns: 1fr;
  }

  .audience-track {
    animation-duration: 34s;
  }
}
