:root {
  --bg: #ffffff;
  --white: #ffffff;
  --grey: #f4f5f2;
  --teal-soft: #edf9f5;
  --ink: #0a0a0a;
  --ink2: #1c1c1c;
  --muted: #575f5c;
  --muted2: #8b938f;
  --line: #e7e9e5;
  --mint: #00c896;
  --mint-dark: #00926f;
  --teal2: #12b8d0;
  --brand-green-soft: #e8f8f2;
  --sky-soft: #e9f6ff;
  --peach-soft: #fff0e7;
  --lemon-soft: #fff8d9;
  --rose-soft: #fff0f4;
  --shadow: 0 24px 60px rgba(10, 10, 10, 0.08);
  --shadow-soft: 0 10px 30px rgba(10, 10, 10, 0.05);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: -20vh -12vw auto -12vw;
  z-index: -1;
  height: 85vh;
  background:
    radial-gradient(circle at 22% 18%, rgba(0, 204, 151, 0.1), transparent 30%),
    radial-gradient(circle at 78% 28%, rgba(18, 184, 208, 0.08), transparent 28%),
    radial-gradient(circle at 56% 72%, rgba(255, 238, 196, 0.14), transparent 26%);
  content: "";
  opacity: 0.92;
  pointer-events: none;
  animation: radial-shadow-shift 16s ease-in-out infinite alternate;
}

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

p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
}

.brand-logo {
  display: block;
  width: 142px;
  height: auto;
}

.brand-product {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.brand-product::before {
  display: block;
  width: 1px;
  height: 24px;
  background: var(--line);
  content: "";
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 13px;
  color: #3c423f;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background-color 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links .active {
  background: var(--grey);
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.14), transparent 36%),
    linear-gradient(135deg, #111716, #232a28);
  color: #fff;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background-color 0.2s;
}

.button:hover {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(135deg, #18201e, #303936);
}

.button.secondary {
  border: 1px solid #d5d8d2;
  background: transparent;
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--ink);
  background: transparent;
}

.button.light {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #fff;
  color: var(--ink);
}

.hero {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0 72px;
  overflow: clip;
}

.hero::before {
  position: absolute;
  inset: 12% -8% 4% 42%;
  z-index: 0;
  background:
    radial-gradient(circle at 32% 30%, rgba(0, 204, 151, 0.12), transparent 30%),
    radial-gradient(circle at 72% 62%, rgba(18, 184, 208, 0.08), transparent 34%);
  content: "";
  pointer-events: none;
  animation: radial-shadow-shift 14s ease-in-out infinite alternate-reverse;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.eyebrow {
  color: var(--muted2);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 880px;
  margin-top: 20px;
  font-size: clamp(4rem, 7.2vw, 7.75rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

h2 {
  max-width: 850px;
  font-size: clamp(2.5rem, 5vw, 5.25rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.97;
}

h3 {
  font-size: 22px;
}

.hero-copy {
  max-width: 680px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 18px;
}

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

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.report-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 18%, rgba(0, 204, 151, 0.14), transparent 34%),
    radial-gradient(circle at 20% 92%, rgba(18, 184, 208, 0.08), transparent 32%),
    linear-gradient(145deg, #fff, #f9faf7);
  box-shadow: var(--shadow);
  transform: translateZ(0);
}

.report-visual::before {
  position: absolute;
  inset: -18% -12% -20% -12%;
  z-index: 0;
  background:
    radial-gradient(circle at 74% 24%, rgba(0, 204, 151, 0.13), transparent 32%),
    radial-gradient(circle at 24% 78%, rgba(18, 184, 208, 0.08), transparent 28%);
  content: "";
  pointer-events: none;
  animation: radial-shadow-shift 12s ease-in-out infinite alternate;
}

.neural-wrap {
  min-height: 440px;
}

.neural-canvas {
  position: absolute;
  inset: auto -12% -12% auto;
  z-index: 0;
  width: min(112%, 560px);
  height: min(112%, 560px);
  opacity: 0.52;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.neural-touch {
  position: absolute;
  right: 27%;
  bottom: 30%;
  z-index: 0;
  width: 15px;
  height: 15px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(0, 204, 151, 0.52);
  pointer-events: none;
  animation: neural-touch-pulse 1.6s ease-out infinite;
}

@keyframes neural-touch-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 204, 151, 0.5);
  }

  70%,
  100% {
    box-shadow: 0 0 0 24px rgba(0, 204, 151, 0);
  }
}

@keyframes radial-shadow-shift {
  0% {
    filter: hue-rotate(0deg) saturate(0.9);
    opacity: 0.72;
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    filter: hue-rotate(16deg) saturate(1.06);
    opacity: 0.95;
    transform: translate3d(-1.5%, 1%, 0) scale(1.04);
  }

  100% {
    filter: hue-rotate(-10deg) saturate(1);
    opacity: 0.78;
    transform: translate3d(1.2%, -1%, 0) scale(1.02);
  }
}

.visual-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 20px;
}

.visual-title {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.visual-status {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  background: var(--brand-green-soft);
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 500;
}

.visual-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 18px;
}


.snapshot-metric {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 20px rgba(10, 10, 10, 0.035);
}

.snapshot-metric strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
}

.snapshot-metric span {
  color: var(--muted2);
  font-size: 13px;
}

.metric-number {
  color: var(--ink);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.progress-bars {
  display: grid;
  gap: 9px;
  margin-top: 4px;
}

.bar {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: #edf0eb;
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  transform-origin: left center;
}

.bar.green span {
  width: 78%;
  background: var(--mint-dark);
}

.bar.coral span {
  width: 42%;
  background: #dc896b;
}

.bar.blue span {
  width: 63%;
  background: var(--teal2);
}


















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

.section.band {
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--grey);
}

.section.band > .inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.intro {
  max-width: 820px;
}

.intro h2 {
  margin-top: 14px;
}

.intro p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
}

.pain-list,
.feature-grid,
.audience-grid,
.report-grid,
.proof-grid,
.urgency-grid,
.pricing-grid,
.addon-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

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

.feature-grid,
.report-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

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

.card,
.feature,
.report-step,
.urgency-card,
.price-card,
.addon {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(10, 10, 10, 0.03);
}




.card p,
.feature p,
.report-step p,
.urgency-card p,
.price-card p,
.addon span {
  margin-top: 10px;
  color: var(--muted);
}

.loss-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.loss-item {
  min-height: 150px;
  padding: 22px;
  background: #fff;
}

.loss-item b {
  display: block;
  color: var(--ink);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.loss-item span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

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

.urgency-card strong {
  display: block;
  margin-bottom: 14px;
  color: var(--mint-dark);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--grey);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}

.feature:nth-child(4n + 1) .feature-icon,
.report-step:nth-child(4n + 1) .feature-icon {
  background: var(--brand-green-soft);
}

.feature:nth-child(4n + 2) .feature-icon,
.report-step:nth-child(4n + 2) .feature-icon {
  background: var(--sky-soft);
}

.feature:nth-child(4n + 3) .feature-icon,
.report-step:nth-child(4n + 3) .feature-icon {
  background: var(--peach-soft);
}

.feature:nth-child(4n) .feature-icon,
.report-step:nth-child(4n) .feature-icon {
  background: var(--lemon-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.split > div > p {
  margin-bottom: 14px;
}

.dark {
  width: 100%;
  max-width: none;
  background: var(--ink);
  color: #fff;
}

.dark > .split,
.dark .split {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.dark h2,
.dark h3,
.dark .report-row b {
  color: #fff;
}

.dark .eyebrow,
.dark p {
  color: rgba(255, 255, 255, 0.68);
}

.report-shell {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.report-row {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.report-row span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 500;
}

.quote {
  margin: 0;
  border-left: 1px solid var(--ink);
  padding-left: 22px;
  color: var(--ink2);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.price-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.price-card.featured {
  background:
    radial-gradient(circle at 85% 12%, rgba(0, 200, 150, 0.1), transparent 32%),
    #fff;
  border-color: #cbdad2;
  box-shadow: var(--shadow-soft);
}

.plan-label {
  color: var(--muted2);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price {
  margin-top: 12px;
  color: var(--ink);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price small {
  color: var(--muted2);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

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

.plan-stats span {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 10px;
  background: var(--grey);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.plan-stats b {
  display: block;
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
}

.plan-features {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 18px;
  color: #3c423f;
  font-size: 14px;
  line-height: 1.45;
}

.plan-features li::before {
  position: absolute;
  left: 0;
  color: var(--mint-dark);
  content: "+";
  font-weight: 600;
}

.plan-cta {
  width: 100%;
  margin-top: auto;
}

.plan-features + .plan-cta {
  margin-top: 22px;
}

.addon b {
  display: block;
  color: var(--ink);
  font-weight: 500;
}

.cta-band {
  width: min(1180px, calc(100% - 48px));
  margin: 56px auto 72px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 56px);
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 200, 150, 0.1), transparent 30%),
    var(--grey);
}

.cta-band h2 {
  margin-top: 14px;
}

.cta-band p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  font-size: 14px;
}



























@media (max-width: 1080px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    width: min(100% - 40px, 1180px);
  }

  .brand {
    max-width: 100%;
  }

  .nav-links {
    overflow-x: auto;
    width: 100%;
    padding: 2px 0 6px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .hero-grid,
  .split,
  .audience-grid,
  .proof-grid,
  .urgency-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 82px 0 58px;
  }

  .hero::before {
    inset: 8% -12% 12% 16%;
  }

  h1 {
    max-width: 980px;
    font-size: clamp(4rem, 11vw, 6.5rem);
  }

  h2 {
    font-size: clamp(3rem, 8vw, 4.7rem);
  }

  .report-visual {
    max-width: 720px;
  }

  .feature-grid,
  .report-grid,
  .pain-list,
  .loss-strip,
  .pricing-grid,
  .addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section,
  .cta-band {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

@media (max-width: 720px) {
  .nav,
  .hero,
  .section,
  .section.band > .inner,
  .dark > .split,
  .dark .split,
  .cta-band,
  .footer-inner {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    position: sticky;
  }

  .nav {
    padding: 12px 0 10px;
  }

  .brand {
    gap: 10px;
    width: 100%;
  }

  .brand-logo {
    width: 118px;
  }

  .brand-product {
    min-width: 0;
    font-size: 13px;
    white-space: normal;
  }

  .brand-product::before {
    height: 22px;
  }

  .nav-links {
    gap: 4px;
    margin-inline: -2px;
  }

  .nav-links a {
    padding: 8px 12px;
    font-size: 13.5px;
  }

  .hero {
    padding: 58px 0 44px;
  }

  .hero::before {
    inset: 10% -28% 22% 8%;
    opacity: 0.72;
  }

  .hero-grid {
    gap: 28px;
  }

  h1 {
    margin-top: 16px;
    font-size: clamp(3rem, 15vw, 4.5rem);
    letter-spacing: -0.058em;
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.75rem);
    letter-spacing: -0.048em;
    line-height: 1;
  }

  h3 {
    font-size: 20px;
  }

  .hero-copy,
  .intro p:not(.eyebrow),
  .cta-band p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.58;
  }

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

  .button {
    width: 100%;
    min-height: 48px;
    padding: 13px 18px;
    text-align: center;
  }

  .trust-line {
    gap: 8px;
  }

  .pill {
    padding: 7px 10px;
    font-size: 12px;
  }

  .report-visual {
    width: 100%;
    border-radius: 20px;
  }

  .neural-wrap {
    min-height: 390px;
  }

  .visual-top {
    align-items: flex-start;
    padding: 16px;
  }

  .visual-status {
    flex: none;
    padding: 6px 9px;
    font-size: 11.5px;
  }

  .visual-title {
    font-size: 16px;
  }

  .visual-body {
    gap: 10px;
    padding: 14px;
  }

  .snapshot-metric {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }

  .metric-number {
    font-size: 24px;
  }

  .neural-canvas {
    right: -24%;
    bottom: -10%;
    width: min(124%, 520px);
    height: min(124%, 520px);
    opacity: 0.42;
  }

  .neural-touch {
    right: 22%;
    bottom: 28%;
  }

  .section {
    padding: 58px 0;
  }

  .section.band {
    padding: 58px 0;
  }

  .feature-grid,
  .report-grid,
  .pain-list,
  .loss-strip,
  .pricing-grid,
  .addon-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .feature,
  .report-step,
  .urgency-card,
  .price-card,
  .addon,
  .loss-item {
    border-radius: 18px;
    padding: 20px;
  }

  .loss-strip {
    gap: 12px;
    border: 0;
    background: transparent;
  }

  .loss-item {
    border: 1px solid var(--line);
  }

  .loss-item b {
    font-size: 20px;
  }

  .plan-stats {
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 34px;
  }

  .report-row {
    grid-template-columns: 34px 1fr;
  }

  .report-row > span:last-child {
    grid-column: 2;
  }

  .quote {
    padding-left: 16px;
    font-size: clamp(24px, 8vw, 34px);
  }

  .cta-band {
    margin: 36px auto 52px;
    padding: 28px 22px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .nav,
  .hero,
  .section,
  .section.band > .inner,
  .dark > .split,
  .dark .split,
  .cta-band,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .brand-logo {
    width: 106px;
  }

  .brand-product {
    font-size: 12px;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2.08rem, 12vw, 3rem);
  }

  .nav-links a {
    padding: 7px 10px;
    font-size: 13px;
  }

  .neural-wrap {
    min-height: 360px;
  }

  .snapshot-metric span,
  .plan-features li,
  .loss-item span {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .hero::before,
  .report-visual::before,
  .neural-touch {
    animation: none;
  }
}
