:root {
  --bg: #f5f5f7;
  --ink: #1d1d1f;
  --muted: #86868b;
  --orange: #ff9500;
  --green: #34c759;
  --line: rgba(255, 255, 255, 0.92);
  --glass: rgba(255, 255, 255, 0.65);
  --shadow: 0 28px 70px rgba(29, 29, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.9), transparent 32rem),
    var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(29, 29, 31, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 29, 31, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 2px;
  background: rgba(29, 29, 31, 0.04);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--orange));
  box-shadow: 0 0 18px rgba(52, 199, 89, 0.45);
}

.section-orbit {
  position: fixed;
  top: 50%;
  right: 1.25rem;
  z-index: 30;
  display: grid;
  gap: 0.65rem;
  transform: translateY(-50%);
}

.section-orbit button {
  width: 0.58rem;
  height: 0.58rem;
  padding: 0;
  border: 1px solid rgba(29, 29, 31, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 22px rgba(29, 29, 31, 0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.section-orbit button.is-active {
  transform: scale(1.65);
  border-color: rgba(52, 199, 89, 0.42);
  background: var(--green);
  box-shadow: 0 0 0 0.35rem rgba(52, 199, 89, 0.12), 0 10px 24px rgba(52, 199, 89, 0.22);
}

.section {
  position: relative;
  min-height: 100vh;
  padding: 7rem 7vw;
  overflow: hidden;
}

.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
}

.keep {
  white-space: nowrap;
}

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

h1 {
  margin-bottom: 1.1rem;
  color: var(--ink);
  font-size: 5.6rem;
  line-height: 1.02;
  font-weight: 800;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: 3.7rem;
  line-height: 1.08;
  font-weight: 800;
}

p {
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.72;
}

.hero {
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-card {
  position: relative;
  display: flex;
  width: min(42rem, 82vw);
  min-height: 22.5rem;
  margin-bottom: 3.2rem;
  padding: 1.15rem;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  overflow: hidden;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -24%;
  background:
    radial-gradient(circle at 50% 38%, rgba(52, 199, 89, 0.16), transparent 24rem),
    linear-gradient(115deg, transparent 0 24%, rgba(255, 255, 255, 0.75) 24% 26%, transparent 26% 100%);
  opacity: 0.85;
  pointer-events: none;
}

.hero-card-top,
.hero-score-wrap,
.hero-metrics {
  position: relative;
  z-index: 1;
}

.hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-card-top b {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--green);
  font-size: 0.78rem;
}

.hero-card-top b::before {
  content: "";
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.5);
  animation: voicePulse 1.8s infinite;
}

.hero-score-wrap {
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) minmax(13rem, 0.85fr);
  gap: 1.2rem;
  align-items: center;
  padding: 0.2rem 1rem 0.5rem;
}

.score-orbit {
  position: relative;
  display: grid;
  width: 17rem;
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
}

.score-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
}

.ring-halo,
.ring-track,
.ring-progress {
  fill: none;
}

.ring-halo {
  stroke: rgba(52, 199, 89, 0.13);
  stroke-width: 1.5;
}

.ring-track {
  stroke: rgba(52, 199, 89, 0.18);
  stroke-width: 13;
}

.ring-progress {
  stroke: var(--green);
  stroke-width: 13;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 18px rgba(52, 199, 89, 0.32));
  animation: scoreSweep 1.9s ease-out both;
}

.score-glow {
  position: absolute;
  inset: 3.2rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 199, 89, 0.18), transparent 70%);
  filter: blur(4px);
  animation: pulseLine 2.8s ease-in-out infinite;
}

.score-mark {
  position: relative;
  color: var(--green);
  font-size: 5.25rem;
  line-height: 0.92;
  font-weight: 800;
  text-shadow: 0 10px 40px rgba(52, 199, 89, 0.25);
}

.score-label {
  position: absolute;
  bottom: 3.35rem;
  padding: 0.36rem 0.64rem;
  border-radius: 999px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(52, 199, 89, 0.1);
  border: 1px solid rgba(52, 199, 89, 0.18);
}

.vital-panel {
  padding: 0.95rem;
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.vital-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.vital-head span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green);
}

.vital-wave {
  width: 100%;
  overflow: visible;
}

.vital-grid {
  fill: none;
  stroke: rgba(29, 29, 31, 0.06);
  stroke-width: 1;
}

.vital-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(52, 199, 89, 0.35));
  animation: vitalBeat 2.4s ease-in-out infinite;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.hero-metrics span {
  display: flex;
  min-width: 0;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid rgba(29, 29, 31, 0.05);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.58);
}

.hero-metrics b {
  color: var(--ink);
  font-size: 1rem;
}

.hero-copy {
  max-width: 76rem;
}

.hero-copy p {
  max-width: 46rem;
  margin: 0 auto;
}

.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  width: 2.5rem;
  height: 2.5rem;
  transform: translateX(-50%);
  border-radius: 999px;
  opacity: 0.9;
  animation: breathe 2.4s ease-in-out infinite;
}

.scroll-cue span {
  position: absolute;
  top: 0.75rem;
  left: 0.85rem;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
}

.comparison {
  display: grid;
  align-items: center;
}

.split-wrap {
  position: relative;
  display: grid;
  max-width: 76rem;
  margin: 0 auto;
  grid-template-columns: 1fr 1px 1.2fr;
  gap: 4rem;
  align-items: center;
}

.split-line {
  width: 1px;
  height: 30rem;
  background: linear-gradient(transparent, rgba(29, 29, 31, 0.16), transparent);
}

.legacy-panel {
  filter: grayscale(1);
  opacity: 0.48;
  transform: translateY(2.5rem);
  transition: transform 900ms ease, opacity 900ms ease;
}

.comparison.in-view .legacy-panel {
  transform: translateY(0);
}

.chat-bubble {
  width: min(25rem, 100%);
  padding: 1.25rem 1.4rem;
  border-radius: 8px;
  background: rgba(29, 29, 31, 0.08);
  color: rgba(29, 29, 31, 0.78);
  font-size: 1.35rem;
  line-height: 1.55;
}

.loss-copy {
  max-width: 26rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.tag-row span {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.52);
}

.digital-panel {
  position: relative;
  overflow: hidden;
  padding: 1.1rem;
  border-radius: 8px;
  transform: translateY(2.5rem) scale(0.96);
  opacity: 0.62;
  transition: transform 900ms ease, opacity 900ms ease;
}

.digital-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 78% 16%, rgba(52, 199, 89, 0.16), transparent 16rem),
    radial-gradient(circle at 12% 90%, rgba(255, 149, 0, 0.08), transparent 18rem);
  pointer-events: none;
}

.digital-panel > * {
  position: relative;
  z-index: 1;
}

.comparison.in-view .digital-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.diagnosis-shot-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.diagnosis-shot-head .eyebrow {
  margin-bottom: 0.5rem;
}

.diagnosis-shot-head strong {
  display: block;
  font-size: 1.18rem;
}

.diagnosis-shot-head span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.diagnosis-shot-head b {
  display: grid;
  min-width: 4rem;
  min-height: 4rem;
  place-items: center;
  border: 1px solid rgba(52, 199, 89, 0.2);
  border-radius: 8px;
  color: var(--green);
  font-size: 1.85rem;
  background: rgba(52, 199, 89, 0.1);
}

.diagnosis-shot-frame {
  position: relative;
  display: block;
  width: min(26rem, 100%);
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 54px rgba(29, 29, 31, 0.15);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.diagnosis-shot-frame:hover,
.diagnosis-shot-frame:focus-visible {
  box-shadow: 0 28px 72px rgba(29, 29, 31, 0.18), 0 0 0 4px rgba(52, 199, 89, 0.12);
}

.diagnosis-shot-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.diagnosis-shot-tags {
  justify-content: center;
  margin-top: 0.9rem;
}

.delivery-standard {
  display: grid;
  align-content: center;
}

.standard-grid {
  display: grid;
  max-width: 72rem;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.standard-card {
  min-height: 20rem;
  padding: 1.5rem;
  border-radius: 8px;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.standard-card:hover {
  box-shadow: 0 30px 74px rgba(29, 29, 31, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.standard-card span {
  display: inline-grid;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 4rem;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(52, 199, 89, 0.12);
}

.standard-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.6rem;
}

.standard-card p {
  margin: 0;
  font-size: 1rem;
}

.diag-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.diag-head .eyebrow {
  margin-bottom: 0.55rem;
}

.diag-head strong {
  display: block;
  font-size: 1.35rem;
}

.diag-head span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.diag-score {
  display: grid;
  min-width: 5.1rem;
  min-height: 5.1rem;
  place-items: center;
  border: 1px solid rgba(52, 199, 89, 0.2);
  border-radius: 8px;
  background: rgba(52, 199, 89, 0.1);
}

.diag-score b {
  color: var(--green);
  font-size: 2.15rem;
  line-height: 1;
}

.diag-score span {
  margin: 0;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
}

.diag-alert {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1rem 0;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(52, 199, 89, 0.18);
  border-radius: 8px;
  background: rgba(52, 199, 89, 0.1);
}

.diag-alert span {
  width: 0.56rem;
  height: 0.56rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.38);
  animation: voicePulse 1.9s infinite;
}

.diag-alert b {
  color: var(--ink);
  font-size: 0.94rem;
}

.diag-alert em {
  margin-left: auto;
  color: var(--green);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 800;
}

.diag-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.18fr;
  gap: 1rem;
}

.diag-radar-card,
.diag-trend-card,
.diag-prescription {
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.diag-radar-card,
.diag-trend-card {
  padding: 1rem;
}

.mini-title {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: baseline;
}

.mini-title b {
  font-size: 0.98rem;
}

.mini-title span {
  color: var(--muted);
  font-size: 0.76rem;
}

.diag-radar-card svg,
.diag-trend-card svg {
  width: 100%;
  height: 11.2rem;
  margin-top: 0.5rem;
  overflow: visible;
}

.radar-labels,
.trend-foot {
  display: grid;
  gap: 0.35rem;
}

.radar-labels {
  grid-template-columns: repeat(5, 1fr);
}

.radar-labels span {
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

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

.trend-foot span {
  padding: 0.6rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
  background: rgba(245, 245, 247, 0.75);
}

.trend-foot b {
  display: block;
  margin-bottom: 0.12rem;
  color: var(--ink);
  font-size: 0.96rem;
}

.diag-prescription {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 0.75rem;
}

.diag-prescription div {
  padding: 0.8rem;
  border-radius: 8px;
  background: rgba(245, 245, 247, 0.72);
}

.diag-prescription b {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--green);
  font-size: 0.92rem;
}

.diag-prescription p {
  margin: 0;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.58;
}

.report-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1rem;
}

.report-head strong {
  display: block;
  font-size: 1.22rem;
}

.report-head span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.report-head b {
  color: var(--green);
  font-size: 2rem;
}

.report-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 1rem;
}

.radar-card,
.trend-card {
  display: grid;
  min-height: 13rem;
  place-items: center;
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.radar-card svg,
.trend-card svg {
  width: 90%;
  max-height: 12rem;
  overflow: visible;
}

.radar-grid {
  fill: none;
  stroke: rgba(29, 29, 31, 0.16);
  stroke-width: 1.5;
}

.radar-grid.muted {
  stroke: rgba(29, 29, 31, 0.08);
}

.radar-shape,
.parent-radar {
  fill: rgba(52, 199, 89, 0.22);
  stroke: var(--green);
  stroke-width: 3;
  transform-origin: center;
  animation: radarOpen 1.8s ease forwards;
}

.radar-card circle {
  fill: var(--green);
}

.grid-line,
.dark-grid {
  fill: none;
  stroke: rgba(29, 29, 31, 0.09);
  stroke-width: 1;
}

.trend-line,
.pb-line {
  fill: none;
  stroke: var(--orange);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: drawLine 2.4s ease forwards;
}

.trend-card circle {
  fill: var(--orange);
}

.tag-row.bright span {
  color: var(--ink);
  background: rgba(52, 199, 89, 0.12);
  border-color: rgba(52, 199, 89, 0.22);
}

.coach {
  display: grid;
  grid-template-columns: minmax(20rem, 32rem) minmax(20rem, 27rem);
  gap: 7rem;
  align-items: center;
  justify-content: center;
}

.section-copy {
  max-width: 36rem;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.compact {
  max-width: 58rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.phone-shell {
  width: min(27rem, 100%);
  padding: 1.1rem;
  border-radius: 8px;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.phone-top {
  display: grid;
  grid-template-columns: 2.5rem 1fr 2.5rem;
  align-items: center;
  padding: 0.4rem 0.3rem 1.1rem;
}

.phone-top span {
  width: 2.2rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.16);
}

.phone-top b {
  justify-self: center;
}

.phone-top em {
  justify-self: end;
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

.score-input {
  padding: 1.25rem;
  border: 1px solid rgba(29, 29, 31, 0.06);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.score-input label {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
}

.score-input strong {
  display: block;
  margin: 0.5rem 0 0.9rem;
  color: var(--ink);
  font-size: 3.1rem;
  line-height: 1;
}

input[type="range"] {
  width: 100%;
  height: 0.35rem;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange) 0 var(--range-progress, 61%), rgba(29, 29, 31, 0.78) var(--range-progress, 61%) 100%);
  accent-color: var(--orange);
}

input[type="range"]::-webkit-slider-thumb {
  width: 1.15rem;
  height: 1.15rem;
  appearance: none;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 8px 20px rgba(255, 149, 0, 0.32);
}

.score-insight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(52, 199, 89, 0.18);
  border-radius: 8px;
  background: rgba(52, 199, 89, 0.1);
}

.score-insight span {
  color: var(--muted);
  font-size: 0.82rem;
}

.score-insight b {
  color: var(--green);
  font-size: 0.82rem;
}

.range-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.voice-button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 4.3rem;
  margin-top: 1rem;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
}

.voice-button.is-recording {
  box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.13), 0 20px 44px rgba(29, 29, 31, 0.22);
}

.voice-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.5);
  animation: voicePulse 1.8s infinite;
}

.voice-button i {
  position: absolute;
  bottom: 0.6rem;
  left: 50%;
  width: 9rem;
  height: 0.8rem;
  transform: translateX(-50%);
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0 3px, transparent 3px 9px);
  clip-path: polygon(0 70%, 7% 20%, 14% 82%, 21% 38%, 28% 68%, 35% 12%, 42% 78%, 49% 32%, 56% 70%, 63% 8%, 70% 76%, 77% 28%, 84% 62%, 91% 14%, 100% 74%, 100% 100%, 0 100%);
  opacity: 0.62;
}

.transcript {
  margin-top: 1rem;
  padding: 1rem;
  border-left: 3px solid var(--green);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(52, 199, 89, 0.1);
  line-height: 1.55;
}

.ai-synthesis {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 149, 0, 0.16);
  border-radius: 8px;
  background: rgba(255, 149, 0, 0.08);
}

.ai-synthesis div {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.45rem;
}

.ai-synthesis span {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
}

.ai-synthesis b {
  color: var(--ink);
  font-size: 0.88rem;
}

.ai-synthesis p {
  margin: 0;
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.58;
}

.transcript span {
  display: inline-flex;
  margin-right: 0.5rem;
  color: var(--green);
  font-weight: 800;
}

.ui-notes {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 0.7rem;
  margin-top: 1rem;
}

.ui-notes span {
  padding: 0.75rem;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.64);
}

.engine {
  padding-top: 6rem;
}

.engine-panel {
  display: grid;
  max-width: 78rem;
  min-height: 36rem;
  margin: 0 auto;
  grid-template-columns: 17rem 1fr;
  gap: 1.2rem;
  padding: 1.2rem;
  border-radius: 8px;
}

.pipeline {
  display: grid;
  align-content: center;
  justify-items: stretch;
  padding: 1.2rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.pipe-node {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.76);
}

.pipe-node.active,
.pipe-node.done {
  color: var(--ink);
}

.pipe-node.highlight {
  color: var(--green);
  border-color: rgba(52, 199, 89, 0.3);
  background: rgba(52, 199, 89, 0.1);
  box-shadow: 0 0 30px rgba(52, 199, 89, 0.16);
}

.pipe-line {
  position: relative;
  width: 2px;
  height: 3.2rem;
  margin-left: 1.35rem;
  overflow: hidden;
  background: rgba(29, 29, 31, 0.08);
}

.pipe-line::after {
  content: "";
  position: absolute;
  inset: -100% 0 100%;
  background: var(--orange);
  animation: pipeFlow 2.3s linear infinite;
}

.code-window {
  overflow: hidden;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.8rem;
  padding: 0 1rem;
  border-bottom: 1px solid rgba(29, 29, 31, 0.07);
  color: var(--muted);
  font-size: 0.82rem;
}

.window-bar span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: #ff5f57;
}

.window-bar span:nth-child(2) {
  background: #ffbd2e;
}

.window-bar span:nth-child(3) {
  background: #28c840;
}

.window-bar b {
  margin-left: 0.5rem;
  font-weight: 600;
}

#codeStream {
  min-height: 32.5rem;
  margin: 0;
  padding: 1.25rem;
  overflow: auto;
  color: var(--ink);
  font: 0.92rem/1.72 "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  white-space: pre-wrap;
}

.code-comment {
  color: #8b949e;
}

.code-role,
.code-task {
  color: #0a84ff;
}

.code-data {
  color: #bf5af2;
}

.code-constraint {
  color: #ff9500;
}

.code-output {
  color: #34c759;
}

.parent-delivery {
  min-height: 106vh;
  background: var(--ink);
  color: #fff;
}

.parent-copy {
  max-width: 58rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.parent-copy h2 {
  color: #fff;
}

.parent-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.parent-stack {
  position: relative;
  display: grid;
  max-width: 67rem;
  min-height: 31rem;
  margin: 0 auto;
  place-items: center;
}

.mini-screen {
  position: absolute;
  width: 22rem;
  min-height: 29rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: var(--ink);
}

.radar-screen {
  transform: translateX(-17rem) rotate(-5deg);
}

.curve-screen {
  z-index: 2;
  transform: translateY(-1.1rem);
}

.prescription-screen {
  transform: translateX(17rem) rotate(5deg);
}

.screen-title strong,
.screen-title span {
  display: block;
}

.screen-title strong {
  font-size: 1.15rem;
}

.screen-title span {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.mini-screen svg {
  width: 100%;
  margin-top: 1.25rem;
  overflow: visible;
}

.ability-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.35rem;
  margin-top: 1rem;
}

.ability-list span {
  color: var(--muted);
  font-size: 0.74rem;
  text-align: center;
}

.dark-grid {
  stroke: rgba(29, 29, 31, 0.08);
}

.pb-node {
  fill: #fff;
  stroke: var(--orange);
  stroke-width: 3;
}

.pb-node.main {
  fill: var(--orange);
}

.pb-badge {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  background: rgba(255, 149, 0, 0.14);
}

.rx-block {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(245, 245, 247, 0.86);
}

.rx-block b {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--green);
}

.rx-block p {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.65;
}

.roi {
  display: grid;
  align-content: center;
}

.roi-grid {
  display: grid;
  max-width: 72rem;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.roi-card {
  min-height: 19rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 60px rgba(29, 29, 31, 0.09);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.roi-card:hover {
  box-shadow: 0 30px 74px rgba(29, 29, 31, 0.12);
}

.roi-card span {
  color: var(--muted);
  font-weight: 700;
}

.roi-card strong {
  display: block;
  margin: 2rem 0 1rem;
  color: var(--orange);
  font-size: 4rem;
  line-height: 1;
}

.roi-card:nth-child(3) strong {
  color: var(--green);
}

.roi-card p {
  margin: 0;
  font-size: 1rem;
}

.cta {
  display: grid;
  min-height: 72vh;
  place-items: center;
  text-align: center;
}

.cta h2 {
  max-width: 54rem;
  margin-bottom: 2.2rem;
}

.cta-subtitle {
  margin: -1.1rem 0 1.8rem;
  color: var(--muted);
}

.cta-button {
  min-width: 17rem;
  min-height: 3.7rem;
  padding: 0 1.6rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 18px 50px rgba(29, 29, 31, 0.22);
  animation: buttonGlow 2.8s ease-in-out infinite;
}

.cta p {
  margin: 1.6rem 0 0;
  font-size: 0.9rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  place-items: center;
  padding: 1.2rem;
}

.report-modal {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: none;
  place-items: center;
  padding: 1.2rem;
}

.report-modal.is-open {
  display: grid;
}

.report-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 29, 31, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.report-modal-card {
  position: relative;
  z-index: 1;
  width: min(34rem, 92vw);
  max-height: 90vh;
  overflow: auto;
  border-radius: 8px;
  padding: 0.8rem;
}

.report-modal-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(29, 29, 31, 0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(27rem, 100%);
  padding: 1.5rem;
  border-radius: 8px;
}

.modal-card h3 {
  margin-bottom: 1.4rem;
  font-size: 1.55rem;
}

.modal-card label {
  display: block;
  margin-bottom: 1rem;
}

.modal-card label span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.modal-card input {
  width: 100%;
  min-height: 3.1rem;
  padding: 0 0.9rem;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 8px;
  outline: none;
  background: rgba(255, 255, 255, 0.8);
}

.modal-card input:focus {
  border-color: rgba(255, 149, 0, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 149, 0, 0.14);
}

.modal-card button[type="submit"] {
  width: 100%;
  min-height: 3.2rem;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 1.35rem;
  line-height: 1;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.9rem 0 0;
  color: var(--green);
  font-size: 0.9rem;
  text-align: center;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.76);
    opacity: 0;
  }
  24% {
    opacity: 0.8;
  }
  100% {
    transform: scale(1.38);
    opacity: 0;
  }
}

@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.68;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-0.25rem);
  }
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.42;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(0.45rem);
  }
}

@keyframes radarOpen {
  from {
    transform: scale(0.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes scoreSweep {
  from {
    stroke-dashoffset: 100;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes vitalBeat {
  0%,
  100% {
    opacity: 0.72;
    filter: drop-shadow(0 0 8px rgba(52, 199, 89, 0.28));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 16px rgba(52, 199, 89, 0.48));
  }
}

@keyframes voicePulse {
  70% {
    box-shadow: 0 0 0 1.1rem rgba(52, 199, 89, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 199, 89, 0);
  }
}

@keyframes pipeFlow {
  to {
    transform: translateY(200%);
  }
}

@keyframes buttonGlow {
  0%,
  100% {
    box-shadow: 0 18px 50px rgba(29, 29, 31, 0.2);
  }
  50% {
    box-shadow: 0 22px 70px rgba(29, 29, 31, 0.34);
  }
}

@media (max-width: 980px) {
  .section {
    padding: 5rem 1.3rem;
  }

  .section-orbit {
    display: none;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  p {
    font-size: 1.05rem;
  }

  .split-wrap,
  .coach,
  .engine-panel,
  .standard-grid,
  .roi-grid {
    grid-template-columns: 1fr;
  }

  .split-line {
    width: 100%;
    height: 1px;
  }

  .coach {
    gap: 3rem;
  }

  .phone-shell {
    margin: 0 auto;
  }

  .standard-card {
    min-height: auto;
  }

  .standard-card span {
    margin-bottom: 2rem;
  }

  .engine-panel {
    min-height: auto;
  }

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

  .parent-stack {
    display: grid;
    min-height: auto;
    gap: 1rem;
  }

  .mini-screen,
  .radar-screen,
  .curve-screen,
  .prescription-screen {
    position: relative;
    width: min(25rem, 100%);
    transform: none;
  }

  .diag-grid,
  .diag-prescription {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section {
    min-height: auto;
    padding: 4.5rem 1rem;
  }

  .hero {
    min-height: 100vh;
  }

  .keep {
    white-space: normal;
  }

  h1 {
    font-size: 2.12rem;
    line-height: 1.12;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-card {
    width: 100%;
    min-height: auto;
    margin-bottom: 2rem;
    padding: 1rem;
  }

  .hero-score-wrap {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 0.5rem 0 0.65rem;
  }

  .score-orbit {
    width: 12.75rem;
  }

  .score-mark {
    font-size: 4rem;
  }

  .score-label {
    bottom: 2.55rem;
  }

  .vital-panel {
    padding: 0.72rem;
  }

  .vital-wave {
    height: 4.7rem;
  }

  .hero-metrics {
    gap: 0.45rem;
  }

  .hero-metrics span {
    min-height: 2.65rem;
    flex-direction: column;
    gap: 0.08rem;
    font-size: 0.64rem;
    text-align: center;
  }

  .hero-metrics b {
    font-size: 0.9rem;
  }

  .report-grid,
  .diag-grid,
  .ui-notes {
    grid-template-columns: 1fr;
  }

  .diag-head {
    align-items: stretch;
  }

  .diag-score {
    min-width: 4.6rem;
  }

  .diag-alert {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .diag-alert em {
    width: 100%;
    margin-left: 1.2rem;
  }

  .mini-title {
    display: block;
  }

  .mini-title span {
    display: block;
    margin-top: 0.25rem;
  }

  .score-input strong,
  .roi-card strong {
    font-size: 2.8rem;
  }

  .standard-card h3 {
    font-size: 1.35rem;
  }

  .score-insight,
  .ai-synthesis div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  #codeStream {
    min-height: 26rem;
    font-size: 0.78rem;
  }

  .parent-delivery {
    padding-top: 5rem;
  }
}

/* Linear-inspired product language */
:root {
  --linear-bg: #08090a;
  --linear-panel: #101113;
  --linear-panel-soft: #17191d;
  --linear-line: rgba(255, 255, 255, 0.1);
  --linear-text: #f7f8f8;
  --linear-muted: #8a8f98;
  --linear-faint: #575d66;
  --page-light: #f7f8fa;
}

body {
  background: var(--page-light);
}

body::before {
  background:
    linear-gradient(rgba(8, 9, 10, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 9, 10, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.7;
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 55;
  display: flex;
  height: 4.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0 3.4vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--linear-text);
  background: rgba(8, 9, 10, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

.topbar-brand,
.topbar-nav,
.topbar-actions,
.command-trigger,
.topbar-cta {
  display: flex;
  align-items: center;
}

.topbar-brand {
  gap: 0.65rem;
  font-size: 0.94rem;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.32rem;
  background: #f4f6fb;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--linear-bg);
}

.brand-mark::before {
  width: 1.05rem;
  height: 0.16rem;
  top: 0.42rem;
  left: 0.08rem;
  transform: rotate(-28deg);
}

.brand-mark::after {
  width: 0.7rem;
  height: 0.16rem;
  right: 0.08rem;
  bottom: 0.33rem;
  transform: rotate(-28deg);
}

.topbar-nav {
  gap: 1.65rem;
  color: var(--linear-muted);
  font-size: 0.88rem;
}

.topbar-nav a {
  transition: color 160ms ease;
}

.topbar-nav a:hover,
.topbar-nav a:focus-visible {
  color: var(--linear-text);
}

.topbar-actions {
  gap: 0.6rem;
}

.command-trigger,
.topbar-cta,
.hero-primary,
.hero-secondary {
  min-height: 2.35rem;
  border-radius: 8px;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.command-trigger {
  gap: 0.52rem;
  padding: 0 0.55rem 0 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--linear-muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.82rem;
}

.command-trigger kbd {
  min-width: 2.3rem;
  padding: 0.2rem 0.38rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: var(--linear-text);
  background: rgba(255, 255, 255, 0.06);
  font: 0.72rem/1.1 "SFMono-Regular", Consolas, monospace;
  text-align: center;
}

.topbar-cta {
  padding: 0 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--linear-bg);
  background: var(--linear-text);
  font-size: 0.84rem;
  font-weight: 720;
}

.command-trigger:hover,
.command-trigger:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--linear-text);
  background: rgba(255, 255, 255, 0.08);
}

.topbar-cta:hover,
.topbar-cta:focus-visible,
.hero-primary:hover,
.hero-primary:focus-visible,
.hero-secondary:hover,
.hero-secondary:focus-visible {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  min-height: 114vh;
  padding: 8.4rem 7vw 5rem;
  align-content: center;
  place-items: initial;
  gap: 3.3rem;
  color: var(--linear-text);
  text-align: left;
  background:
    linear-gradient(180deg, #050506 0%, var(--linear-bg) 44%, #101113 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.6) 62%, transparent 100%);
  pointer-events: none;
}

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

.hero-copy {
  width: min(78rem, 100%);
  max-width: none;
  margin: 0 auto;
}

.hero .eyebrow {
  margin-bottom: 1.1rem;
  color: #d9dcff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 65rem;
  margin-bottom: 1.25rem;
  color: var(--linear-text);
  font-size: clamp(3.6rem, 7.2vw, 6.8rem);
  line-height: 0.98;
  font-weight: 780;
}

.hero-copy p {
  max-width: 43rem;
  margin: 0;
  color: var(--linear-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-primary,
.hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0 1.1rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 720;
}

.hero-primary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--linear-bg);
  background: var(--linear-text);
}

.hero-secondary {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--linear-text);
  background: rgba(255, 255, 255, 0.045);
}

.product-stage {
  width: min(78rem, 100%);
  min-height: 34rem;
  margin: 0 auto;
  padding: 0;
  border-color: var(--linear-line);
  color: var(--linear-text);
  background:
    linear-gradient(180deg, rgba(23, 25, 29, 0.9), rgba(12, 13, 15, 0.92)),
    var(--linear-panel);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-stage::before {
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 24%, rgba(255, 255, 255, 0.06) 24% 24.7%, transparent 24.7% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 46%);
  opacity: 1;
}

.product-chrome {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 3.35rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0 1.05rem;
  border-bottom: 1px solid var(--linear-line);
  color: var(--linear-muted);
}

.chrome-dots {
  display: flex;
  gap: 0.45rem;
}

.chrome-dots span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.product-tabs {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 0.35rem;
  padding: 0.22rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.product-tabs span {
  padding: 0.46rem 0.72rem;
  border-radius: 6px;
  color: var(--linear-muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.product-tabs .is-current {
  color: var(--linear-text);
  background: rgba(255, 255, 255, 0.09);
}

.product-chrome b {
  color: #a6f3bc;
  font-size: 0.76rem;
}

.hero .hero-card-top {
  padding: 1.1rem 1.25rem 0;
  color: var(--linear-muted);
}

.hero .hero-card-top b {
  color: #a6f3bc;
}

.hero .hero-score-wrap {
  grid-template-columns: minmax(16rem, 0.92fr) minmax(18rem, 1.08fr);
  gap: 2.2rem;
  padding: 1rem 2rem 1.4rem;
}

.hero .score-orbit {
  width: min(19rem, 100%);
}

.hero .ring-halo {
  stroke: rgba(52, 199, 89, 0.12);
}

.hero .ring-track {
  stroke: rgba(255, 255, 255, 0.08);
}

.hero .score-mark {
  color: #4de274;
  text-shadow: 0 18px 54px rgba(52, 199, 89, 0.28);
}

.hero .score-label {
  color: #a6f3bc;
  background: rgba(52, 199, 89, 0.09);
  border-color: rgba(52, 199, 89, 0.2);
}

.hero .vital-panel,
.hero .hero-metrics span {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero .vital-panel {
  min-height: 12rem;
  align-self: center;
  padding: 1.1rem;
}

.hero .vital-head {
  color: var(--linear-muted);
}

.hero .vital-grid {
  stroke: rgba(255, 255, 255, 0.07);
}

.hero .hero-metrics {
  padding: 0 1rem 1rem;
}

.hero .hero-metrics span {
  color: var(--linear-muted);
}

.hero .hero-metrics b {
  color: var(--linear-text);
}

.hero .scroll-cue {
  bottom: 2rem;
}

.hero .scroll-cue span {
  border-color: rgba(255, 255, 255, 0.72);
}

.comparison,
.delivery-standard,
.coach,
.engine,
.roi,
.cta {
  background: var(--page-light);
}

.comparison {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.glass {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(8, 9, 10, 0.08);
  box-shadow:
    0 26px 80px rgba(8, 9, 10, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero .product-stage {
  border-color: var(--linear-line);
  background:
    linear-gradient(180deg, rgba(23, 25, 29, 0.9), rgba(12, 13, 15, 0.92)),
    var(--linear-panel);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.digital-panel,
.standard-card,
.phone-shell,
.engine-panel,
.roi-card {
  border-color: rgba(8, 9, 10, 0.08);
  box-shadow: 0 24px 70px rgba(8, 9, 10, 0.08);
}

.digital-panel::before {
  background:
    linear-gradient(120deg, rgba(52, 199, 89, 0.08), transparent 36%),
    linear-gradient(300deg, rgba(255, 149, 0, 0.06), transparent 34%);
}

.standard-card:hover,
.roi-card:hover,
.diagnosis-shot-frame:hover,
.diagnosis-shot-frame:focus-visible {
  box-shadow: 0 30px 82px rgba(8, 9, 10, 0.12);
}

.parent-delivery {
  background:
    linear-gradient(180deg, #101113 0%, #08090a 100%);
}

.parent-delivery .eyebrow {
  color: #aeb3ff;
}

.modal,
.report-modal {
  z-index: 70;
}

.command-menu {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: none;
  place-items: start center;
  padding: 7rem 1.1rem 1.1rem;
}

.command-menu.is-open {
  display: grid;
}

.command-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.command-panel {
  position: relative;
  z-index: 1;
  width: min(42rem, 100%);
  overflow: hidden;
  border: 1px solid var(--linear-line);
  border-radius: 8px;
  color: var(--linear-text);
  background: rgba(16, 17, 19, 0.96);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.55);
}

.command-input-wrap {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  align-items: center;
  min-height: 4rem;
  border-bottom: 1px solid var(--linear-line);
}

.command-input-wrap span {
  color: var(--linear-faint);
  font-size: 1.2rem;
  text-align: center;
}

.command-input-wrap input {
  width: 100%;
  min-height: 4rem;
  border: 0;
  outline: none;
  color: var(--linear-text);
  background: transparent;
  font-size: 1rem;
}

.command-input-wrap input::placeholder {
  color: var(--linear-faint);
}

.command-list {
  display: grid;
  gap: 0.25rem;
  padding: 0.45rem;
}

.command-list button {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.8rem;
  align-items: center;
  min-height: 4.15rem;
  padding: 0 0.75rem;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--linear-text);
  background: transparent;
  text-align: left;
}

.command-list button:hover,
.command-list button:focus-visible {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.command-list button[hidden] {
  display: none;
}

.command-list span {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  color: var(--linear-muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.74rem;
}

.command-list b,
.command-list em {
  display: block;
}

.command-list b {
  margin-bottom: 0.18rem;
  font-size: 0.96rem;
}

.command-list em {
  color: var(--linear-muted);
  font-size: 0.78rem;
  font-style: normal;
}

@media (max-width: 980px) {
  .topbar {
    padding: 0 1rem;
  }

  .topbar-nav {
    display: none;
  }

  .hero {
    min-height: 108vh;
    padding: 7rem 1.3rem 4.5rem;
    gap: 2.4rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 11vw, 5.2rem);
  }

  .product-stage {
    min-height: auto;
  }

  .hero .hero-score-wrap {
    grid-template-columns: 1fr;
    padding: 1rem 1.1rem 1.2rem;
  }
}

@media (max-width: 560px) {
  .topbar {
    height: 3.8rem;
    padding: 0 0.75rem;
  }

  .topbar-brand span:last-child {
    display: none;
  }

  .topbar-actions {
    gap: 0.45rem;
  }

  .command-trigger {
    min-height: 2.25rem;
    padding: 0 0.45rem;
  }

  .command-trigger > span {
    display: none;
  }

  .topbar-cta {
    min-height: 2.25rem;
    padding: 0 0.7rem;
    font-size: 0.78rem;
  }

  .hero {
    min-height: 100vh;
    padding: 6.2rem 1rem 4.4rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .hero-copy p {
    font-size: 0.98rem;
  }

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

  .product-chrome {
    grid-template-columns: auto 1fr;
  }

  .product-chrome > b {
    display: none;
  }

  .product-tabs {
    justify-self: end;
  }

  .product-tabs span:not(.is-current) {
    display: none;
  }

  .hero .hero-score-wrap {
    gap: 0.9rem;
    padding: 0.9rem;
  }

  .hero .hero-metrics {
    padding: 0 0.75rem 0.75rem;
  }

  .command-menu {
    padding-top: 5.5rem;
  }

  .command-list button {
    min-height: 4.4rem;
  }
}

/* Keep the next section peeking into the first viewport. */
.hero {
  min-height: 100vh;
  padding-top: 7.2rem;
  padding-bottom: 3rem;
  gap: 2.65rem;
}

.product-stage {
  min-height: 26.5rem;
}

.hero .score-orbit {
  width: min(15.8rem, 100%);
}

.hero .score-mark {
  font-size: 4.65rem;
}

.hero .score-label {
  bottom: 2.85rem;
}

.hero .vital-panel {
  min-height: 10rem;
}

@media (max-width: 560px) {
  .hero {
    min-height: 100svh;
    padding: 5rem 1rem 1.6rem;
    gap: 1.15rem;
  }

  .hero .eyebrow {
    margin-bottom: 0.62rem;
    font-size: 0.62rem;
  }

  .hero h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(2.18rem, 10.6vw, 3rem);
    line-height: 1.04;
  }

  .hero-copy p {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    margin-top: 0.95rem;
  }

  .hero-primary,
  .hero-secondary {
    min-height: 2.5rem;
    padding: 0 0.45rem;
    font-size: 0.74rem;
  }

  .product-stage {
    min-height: auto;
  }

  .product-chrome {
    min-height: 2.65rem;
    padding: 0 0.7rem;
  }

  .hero .hero-card-top {
    padding: 0.72rem 0.82rem 0;
    font-size: 0.67rem;
  }

  .hero .hero-score-wrap {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 0.62rem;
    padding: 0.7rem 0.75rem 0.55rem;
  }

  .hero .score-orbit {
    width: 8.8rem;
  }

  .hero .score-mark {
    font-size: 2.9rem;
  }

  .hero .score-label {
    bottom: 1.62rem;
    padding: 0.18rem 0.34rem;
    font-size: 0.56rem;
  }

  .hero .vital-panel {
    min-height: auto;
    padding: 0.55rem;
  }

  .hero .vital-head {
    margin-bottom: 0.25rem;
    font-size: 0.58rem;
  }

  .hero .vital-wave {
    height: 4.25rem;
  }

  .hero .hero-metrics {
    padding: 0 0.65rem 0.65rem;
  }

  .hero .hero-metrics span {
    min-height: 2.08rem;
    font-size: 0.55rem;
  }

  .hero .hero-metrics b {
    font-size: 0.78rem;
  }
}

.product-workspace {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 15.5rem minmax(0, 1fr) 17.5rem;
  gap: 0.85rem;
  padding: 1rem;
}

.student-sidebar,
.performance-board,
.ai-board {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.student-sidebar {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 0.95rem;
}

.student-id {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.student-id span,
.board-head span,
.status-score span {
  color: var(--linear-faint);
  font-size: 0.72rem;
  font-weight: 760;
}

.student-id strong {
  color: var(--linear-text);
  font-size: 1.08rem;
}

.student-id em {
  color: var(--linear-muted);
  font-size: 0.76rem;
  font-style: normal;
}

.status-score {
  position: relative;
  min-height: 8.9rem;
  padding: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(52, 199, 89, 0.15);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 18%, rgba(52, 199, 89, 0.18), transparent 5.6rem),
    rgba(52, 199, 89, 0.055);
}

.status-score::after {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(52, 199, 89, 0.2);
  border-radius: 50%;
  opacity: 0.42;
}

.status-score strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 0.52rem;
  color: #54e27b;
  font-size: 4.4rem;
  line-height: 0.9;
}

.status-score em {
  position: relative;
  z-index: 1;
  color: rgba(166, 243, 188, 0.74);
  font-size: 0.8rem;
  font-style: normal;
}

.score-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  min-height: 2.8rem;
  padding: 0 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.score-chip b {
  color: var(--linear-muted);
  font-size: 0.76rem;
}

.score-chip span {
  color: #a6f3bc;
  font-size: 0.9rem;
  font-weight: 820;
}

.module-list {
  display: grid;
  gap: 0.42rem;
}

.module-list span {
  padding: 0.58rem 0.66rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  color: var(--linear-muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.74rem;
  font-weight: 720;
}

.module-list .is-on {
  color: var(--linear-text);
  background: rgba(255, 255, 255, 0.075);
}

.performance-board {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-width: 0;
  padding: 1rem;
}

.board-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.board-head strong {
  display: block;
  margin-top: 0.28rem;
  color: var(--linear-text);
  font-size: 1.05rem;
}

.board-head b {
  flex: 0 0 auto;
  padding: 0.38rem 0.58rem;
  border: 1px solid rgba(52, 199, 89, 0.22);
  border-radius: 999px;
  color: #a6f3bc;
  background: rgba(52, 199, 89, 0.1);
  font-size: 0.72rem;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin: 1rem 0;
}

.metric-strip span {
  min-width: 0;
  padding: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  color: var(--linear-faint);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.68rem;
}

.metric-strip b {
  display: block;
  margin-bottom: 0.16rem;
  color: var(--linear-text);
  font-size: 1.05rem;
}

.growth-chart {
  position: relative;
  min-height: 13.8rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.08);
}

.growth-chart svg {
  width: 100%;
  height: 100%;
  min-height: 13.8rem;
  overflow: visible;
}

.goal-band {
  fill: none;
  stroke: rgba(166, 243, 188, 0.35);
  stroke-dasharray: 5 7;
  stroke-width: 2;
}

.chart-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1;
}

.chart-area {
  fill: url(#growthFill);
}

.growth-line {
  fill: none;
  stroke: #34c759;
  stroke-linecap: round;
  stroke-width: 4;
  filter: drop-shadow(0 0 12px rgba(52, 199, 89, 0.24));
}

.growth-chart circle {
  fill: var(--linear-panel);
  stroke: #34c759;
  stroke-width: 3;
}

.growth-chart circle.main {
  fill: #34c759;
}

.chart-note {
  position: absolute;
  right: 1rem;
  bottom: 0.85rem;
  display: flex;
  gap: 0.48rem;
}

.chart-note span,
.chart-note b {
  padding: 0.42rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
}

.chart-note span {
  color: var(--linear-text);
  background: rgba(255, 149, 0, 0.18);
}

.chart-note b {
  color: #a6f3bc;
  background: rgba(52, 199, 89, 0.12);
}

.ai-board {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  padding: 0.95rem;
}

.ai-board-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ai-board-head span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 0 0.45rem rgba(52, 199, 89, 0.1);
}

.ai-board-head b {
  color: var(--linear-text);
  font-size: 0.92rem;
}

.ai-board p {
  margin: 0;
  color: var(--linear-muted);
  font-size: 0.78rem;
  line-height: 1.64;
}

.prescription-list {
  display: grid;
  gap: 0.5rem;
}

.prescription-list span {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.62rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  color: var(--linear-muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.72rem;
}

.prescription-list b {
  color: #a6f3bc;
}

.hero .hero-metrics,
.hero .hero-score-wrap,
.hero .hero-card-top:not(.diagnosis-card .hero-card-top) {
  display: none;
}

@media (max-width: 980px) {
  .product-workspace {
    grid-template-columns: 12.5rem minmax(0, 1fr);
  }

  .ai-board {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1.35fr;
    align-items: start;
  }

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

@media (max-width: 560px) {
  .product-workspace {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.62rem;
  }

  .student-sidebar {
    grid-template-columns: 1fr auto;
    gap: 0.58rem;
    padding: 0.68rem;
  }

  .student-id {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .student-id strong {
    font-size: 0.92rem;
  }

  .student-id em,
  .student-id span {
    font-size: 0.62rem;
  }

  .status-score {
    min-height: 4.45rem;
    min-width: 5.4rem;
    padding: 0.55rem;
  }

  .status-score::after {
    display: none;
  }

  .status-score strong {
    margin-top: 0.16rem;
    font-size: 2.25rem;
  }

  .status-score em,
  .status-score span {
    font-size: 0.58rem;
  }

  .score-chip,
  .module-list {
    display: none;
  }

  .performance-board {
    padding: 0.68rem;
  }

  .board-head strong {
    font-size: 0.84rem;
  }

  .board-head span {
    font-size: 0.58rem;
  }

  .board-head b {
    padding: 0.28rem 0.42rem;
    font-size: 0.58rem;
  }

  .metric-strip {
    gap: 0.38rem;
    margin: 0.65rem 0;
  }

  .metric-strip span {
    padding: 0.5rem;
    font-size: 0.52rem;
  }

  .metric-strip b {
    font-size: 0.82rem;
  }

  .growth-chart {
    min-height: 8.4rem;
  }

  .growth-chart svg {
    min-height: 8.4rem;
  }

  .chart-note {
    right: 0.55rem;
    bottom: 0.52rem;
  }

  .chart-note span,
  .chart-note b {
    padding: 0.28rem 0.38rem;
    font-size: 0.52rem;
  }

  .ai-board {
    grid-template-columns: 1fr;
    gap: 0.48rem;
    padding: 0.68rem;
  }

  .ai-board p {
    font-size: 0.66rem;
    line-height: 1.52;
  }

  .prescription-list {
    grid-template-columns: 1fr;
    gap: 0.36rem;
  }

  .prescription-list span {
    padding: 0.42rem 0.5rem;
    font-size: 0.58rem;
  }
}

/* Unified page design system: one dark SaaS surface. */
:root {
  --page-bg: #08090a;
  --page-bg-2: #0c0d0f;
  --surface-1: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.07);
  --surface-3: rgba(255, 255, 255, 0.1);
  --stroke-dark: rgba(255, 255, 255, 0.09);
  --text-strong: #f7f8f8;
  --text-soft: #a0a6af;
  --text-faint: #69707a;
}

body {
  background:
    linear-gradient(180deg, var(--page-bg) 0%, var(--page-bg-2) 52%, var(--page-bg) 100%);
  color: var(--text-strong);
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.82;
  mask-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.92) 20%, rgba(0, 0, 0, 0.92) 86%, transparent);
}

.section,
.comparison,
.delivery-standard,
.coach,
.engine,
.parent-delivery,
.roi,
.cta {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 18rem),
    var(--page-bg);
  color: var(--text-strong);
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

h1,
h2,
h3,
.section-copy h2,
.parent-copy h2,
.cta h2 {
  color: var(--text-strong);
}

p,
.section-copy p,
.parent-copy p,
.cta-subtitle,
.cta p,
.loss-copy {
  color: var(--text-soft);
}

.eyebrow,
.section-copy .eyebrow,
.parent-delivery .eyebrow {
  color: #ff9f0a;
}

.glass,
.digital-panel,
.standard-card,
.phone-shell,
.engine-panel,
.roi-card,
.modal-card {
  border-color: var(--stroke-dark);
  background:
    linear-gradient(180deg, var(--surface-2), var(--surface-1)),
    rgba(10, 11, 13, 0.82);
  box-shadow:
    0 26px 86px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.product-stage,
.hero .product-stage {
  border-color: var(--stroke-dark);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #0f1012;
}

.split-line {
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.14), transparent);
}

.legacy-panel {
  opacity: 0.58;
}

.chat-bubble,
.tag-row span,
.tag-row.bright span,
.score-input,
.pipeline,
.pipe-node,
.code-window,
.mini-screen,
.rx-block,
.diag-radar-card,
.diag-trend-card,
.diag-prescription,
.radar-card,
.trend-card {
  border-color: var(--stroke-dark);
  background: var(--surface-1);
  color: var(--text-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.chat-bubble {
  color: var(--text-soft);
}

.tag-row span {
  color: var(--text-faint);
}

.tag-row.bright span {
  color: #a6f3bc;
  background: rgba(52, 199, 89, 0.08);
  border-color: rgba(52, 199, 89, 0.18);
}

.diagnosis-shot-head strong,
.standard-card h3,
.phone-top b,
.score-input strong,
.score-insight b,
.ai-synthesis b,
.transcript,
.pipe-node.active,
.pipe-node.done,
.screen-title strong,
.rx-block p,
.roi-card p,
.diag-alert b,
.trend-foot b,
.diag-prescription p,
.report-head strong {
  color: var(--text-strong);
}

.diagnosis-shot-head span,
.score-input label,
.range-scale,
.score-insight span,
.ui-notes span,
.screen-title span,
.ability-list span,
.roi-card span,
.mini-title span,
.report-head span {
  color: var(--text-soft);
}

.diagnosis-shot-frame {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.diagnosis-shot-frame img {
  border-radius: 7px;
}

.score-input,
.ui-notes span {
  background: rgba(255, 255, 255, 0.045);
}

.score-insight,
.transcript {
  border-color: rgba(52, 199, 89, 0.2);
  background: rgba(52, 199, 89, 0.09);
}

.ai-synthesis {
  border-color: rgba(255, 149, 0, 0.2);
  background: rgba(255, 149, 0, 0.08);
}

.voice-button,
.cta-button,
.modal-card button[type="submit"] {
  background: #f7f8f8;
  color: #08090a;
  box-shadow: 0 18px 52px rgba(255, 255, 255, 0.08);
}

.engine-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(10, 11, 13, 0.9);
}

.pipeline {
  background: rgba(255, 255, 255, 0.035);
}

.pipe-node {
  color: var(--text-soft);
}

.pipe-node.highlight {
  color: #a6f3bc;
  border-color: rgba(52, 199, 89, 0.28);
  background: rgba(52, 199, 89, 0.1);
}

.code-window {
  background: rgba(5, 6, 7, 0.86);
}

.window-bar {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
}

#codeStream {
  color: var(--text-strong);
}

.mini-screen {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    #17191d;
  color: var(--text-strong);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.radar-grid,
.grid-line,
.dark-grid {
  stroke: rgba(255, 255, 255, 0.15);
}

.radar-grid.muted {
  stroke: rgba(255, 255, 255, 0.08);
}

.rx-block {
  background: rgba(255, 255, 255, 0.06);
}

.pb-badge {
  color: var(--text-strong);
  background: rgba(255, 149, 0, 0.16);
}

.roi-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(12, 13, 15, 0.92);
}

.roi-card:hover,
.standard-card:hover,
.diagnosis-shot-frame:hover,
.diagnosis-shot-frame:focus-visible {
  box-shadow:
    0 32px 96px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

  .cta {
    min-height: 78vh;
  }

.voice-button {
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.voice-button.is-recording {
  box-shadow:
    0 0 0 4px rgba(52, 199, 89, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.modal-backdrop,
.report-backdrop {
  background: rgba(0, 0, 0, 0.68);
}

.modal-card input {
  color: var(--text-strong);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.modal-close {
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.08);
}

.section-orbit button {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 560px) {
  .section,
  .comparison,
  .delivery-standard,
  .coach,
  .engine,
  .parent-delivery,
  .roi,
  .cta {
    background: var(--page-bg);
  }
}

/* Productized screenshot framework */
.split-wrap {
  grid-template-columns: 0.82fr 1px 1.5fr;
  max-width: 82rem;
}

.digital-panel {
  padding: 0.9rem;
  opacity: 1;
  transform: none;
}

.diagnosis-shot-head {
  padding: 0.15rem 0.25rem 0.15rem;
}

.diagnosis-shot-frame.product-shot-frame {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(8, 9, 10, 0.84);
  text-align: left;
}

.shot-chrome {
  display: grid;
  min-height: 2.75rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-faint);
  font-size: 0.72rem;
}

.shot-chrome .chrome-dots {
  gap: 0.36rem;
}

.shot-chrome .chrome-dots span {
  width: 0.52rem;
  height: 0.52rem;
  background: rgba(255, 255, 255, 0.22);
}

.shot-chrome b {
  color: #a6f3bc;
  font-size: 0.7rem;
}

.shot-layout {
  display: grid;
  grid-template-columns: 6.5rem minmax(14rem, 1fr) 11.6rem;
  gap: 0.75rem;
  padding: 0.75rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 28px 28px;
}

.shot-rail,
.shot-inspector,
.shot-canvas {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.shot-rail {
  display: grid;
  align-content: start;
  gap: 0.42rem;
  padding: 0.55rem;
}

.shot-rail span {
  padding: 0.5rem 0.5rem;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--text-faint);
  font-size: 0.7rem;
  font-weight: 760;
}

.shot-rail .is-active {
  color: #a6f3bc;
  border-color: rgba(52, 199, 89, 0.18);
  background: rgba(52, 199, 89, 0.09);
}

.shot-canvas {
  position: relative;
  display: grid;
  min-height: 29rem;
  grid-template-rows: auto 1fr;
  justify-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(52, 199, 89, 0.08), transparent 13rem),
    rgba(245, 247, 250, 0.06);
}

.shot-toolbar {
  display: flex;
  width: 100%;
  min-height: 2.6rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-size: 0.72rem;
}

.shot-toolbar b {
  padding: 0.28rem 0.5rem;
  border: 1px solid rgba(52, 199, 89, 0.18);
  border-radius: 999px;
  color: #a6f3bc;
  background: rgba(52, 199, 89, 0.08);
}

.shot-canvas img {
  width: min(18.2rem, 90%);
  align-self: center;
  margin: 0.85rem 0;
  border: 1px solid rgba(8, 9, 10, 0.12);
  border-radius: 8px;
  background: #f8fafc;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.shot-inspector {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  padding: 0.7rem;
}

.shot-inspector span {
  color: var(--text-faint);
  font-size: 0.66rem;
  font-weight: 780;
}

.shot-inspector strong {
  display: block;
  margin-top: 0.32rem;
  color: var(--text-strong);
  font-size: 0.88rem;
}

.shot-inspector p {
  margin: 0.45rem 0 0;
  color: var(--text-soft);
  font-size: 0.68rem;
  line-height: 1.52;
}

.inspector-list {
  display: grid;
  gap: 0.42rem;
}

.inspector-list span {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 7px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.035);
}

.inspector-list b {
  color: #a6f3bc;
}

@media (max-width: 980px) {
  .split-wrap {
    grid-template-columns: 1fr;
  }

  .shot-layout {
    grid-template-columns: 5.8rem minmax(0, 1fr);
  }

  .shot-inspector {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1.35fr;
  }

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

@media (max-width: 560px) {
  .digital-panel {
    padding: 0.65rem;
  }

  .shot-chrome {
    min-height: 2.35rem;
    grid-template-columns: auto 1fr;
    padding: 0 0.62rem;
  }

  .shot-chrome b {
    display: none;
  }

  .shot-layout {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.55rem;
  }

  .shot-rail,
  .shot-inspector {
    display: none;
  }

  .shot-canvas {
    min-height: auto;
  }

  .shot-toolbar {
    min-height: 2.25rem;
    padding: 0 0.62rem;
    font-size: 0.64rem;
  }

  .shot-canvas img {
    width: min(16.4rem, 92%);
    margin: 0.62rem 0;
  }
}

/* White product theme */
:root {
  --bg: #ffffff;
  --ink: #111827;
  --muted: #667085;
  --line: rgba(17, 24, 39, 0.1);
  --glass: rgba(255, 255, 255, 0.86);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
  --linear-bg: #ffffff;
  --linear-panel: #ffffff;
  --linear-panel-soft: #f8fafc;
  --linear-line: rgba(17, 24, 39, 0.1);
  --linear-text: #111827;
  --linear-muted: #667085;
  --linear-faint: #98a2b3;
  --page-bg: #ffffff;
  --page-bg-2: #f8fafc;
  --surface-1: rgba(255, 255, 255, 0.92);
  --surface-2: rgba(248, 250, 252, 0.9);
  --surface-3: rgba(241, 245, 249, 0.96);
  --stroke-dark: rgba(17, 24, 39, 0.1);
  --text-strong: #111827;
  --text-soft: #667085;
  --text-faint: #98a2b3;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(52, 199, 89, 0.08), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 52%, #ffffff 100%);
  color: var(--text-strong);
}

body::before {
  background:
    linear-gradient(rgba(17, 24, 39, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.82;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 82%, transparent);
}

.scroll-progress {
  background: rgba(17, 24, 39, 0.06);
}

.topbar {
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.06);
}

.brand-mark {
  border-color: rgba(17, 24, 39, 0.12);
  background: #111827;
}

.brand-mark::before,
.brand-mark::after {
  background: #ffffff;
}

.topbar-nav {
  color: var(--text-soft);
}

.topbar-nav a:hover,
.topbar-nav a:focus-visible {
  color: var(--text-strong);
}

.command-trigger {
  border-color: rgba(17, 24, 39, 0.1);
  color: var(--text-soft);
  background: rgba(248, 250, 252, 0.78);
}

.command-trigger kbd {
  border-color: rgba(17, 24, 39, 0.1);
  color: var(--text-strong);
  background: #ffffff;
}

.command-trigger:hover,
.command-trigger:focus-visible {
  border-color: rgba(52, 199, 89, 0.3);
  color: var(--text-strong);
  background: rgba(52, 199, 89, 0.08);
}

.topbar-cta,
.hero-primary,
.cta-button,
.modal-card button[type="submit"] {
  border-color: rgba(52, 199, 89, 0.45);
  color: #ffffff;
  background: #16a34a;
  box-shadow: 0 16px 42px rgba(22, 163, 74, 0.2);
}

.hero-secondary {
  border-color: rgba(17, 24, 39, 0.12);
  color: var(--text-strong);
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.section,
.comparison,
.delivery-standard,
.coach,
.engine,
.parent-delivery,
.roi,
.cta {
  background:
    linear-gradient(180deg, rgba(52, 199, 89, 0.035), transparent 16rem),
    var(--page-bg);
  color: var(--text-strong);
}

.section + .section {
  border-top: 1px solid rgba(17, 24, 39, 0.07);
}

.hero {
  color: var(--text-strong);
  background:
    radial-gradient(circle at 78% 12%, rgba(52, 199, 89, 0.12), transparent 24rem),
    radial-gradient(circle at 12% 38%, rgba(255, 149, 0, 0.08), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero::before {
  background:
    linear-gradient(rgba(17, 24, 39, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.48) 64%, transparent 100%);
}

.hero .eyebrow {
  color: #f97316;
}

.hero h1,
h1,
h2,
h3,
.section-copy h2,
.parent-copy h2,
.cta h2 {
  color: var(--text-strong);
}

.hero-copy p,
p,
.section-copy p,
.parent-copy p,
.cta-subtitle,
.cta p,
.loss-copy {
  color: var(--text-soft);
}

.hero .scroll-cue span {
  border-color: rgba(17, 24, 39, 0.66);
}

.glass,
.digital-panel,
.standard-card,
.phone-shell,
.engine-panel,
.roi-card,
.modal-card,
.report-modal-card {
  border-color: rgba(17, 24, 39, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.86)),
    #ffffff;
  box-shadow:
    0 24px 70px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.product-stage,
.hero .product-stage {
  border-color: rgba(17, 24, 39, 0.1);
  color: var(--text-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92)),
    #ffffff;
  box-shadow:
    0 28px 86px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.product-stage::before {
  background:
    linear-gradient(115deg, transparent 0 24%, rgba(255, 255, 255, 0.92) 24% 24.9%, transparent 24.9% 100%),
    radial-gradient(circle at 70% 20%, rgba(52, 199, 89, 0.1), transparent 20rem),
    linear-gradient(180deg, rgba(248, 250, 252, 0.65), transparent 46%);
}

.product-chrome,
.student-id,
.window-bar,
.shot-chrome,
.shot-toolbar,
.command-input-wrap {
  border-color: rgba(17, 24, 39, 0.08);
}

.chrome-dots span,
.shot-chrome .chrome-dots span {
  background: rgba(17, 24, 39, 0.18);
}

.product-tabs {
  border-color: rgba(17, 24, 39, 0.08);
  background: rgba(248, 250, 252, 0.9);
}

.product-tabs span,
.product-chrome,
.student-id span,
.student-id em,
.board-head span,
.status-score span,
.score-chip b,
.module-list span,
.metric-strip span,
.ai-board p,
.prescription-list span,
.shot-chrome,
.shot-rail span,
.shot-inspector span,
.shot-inspector p,
.inspector-list span {
  color: var(--text-soft);
}

.product-tabs .is-current,
.student-id strong,
.board-head strong,
.metric-strip b,
.ai-board-head b,
.module-list .is-on,
.shot-inspector strong,
.diagnosis-shot-head strong,
.standard-card h3,
.phone-top b,
.score-input strong,
.score-insight b,
.ai-synthesis b,
.transcript,
.pipe-node.active,
.pipe-node.done,
.screen-title strong,
.rx-block p,
.roi-card p,
.diag-alert b,
.trend-foot b,
.diag-prescription p,
.report-head strong {
  color: var(--text-strong);
}

.product-tabs .is-current,
.module-list .is-on {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.student-sidebar,
.performance-board,
.ai-board,
.score-chip,
.module-list span,
.metric-strip span,
.growth-chart,
.chat-bubble,
.tag-row span,
.score-input,
.pipeline,
.pipe-node,
.code-window,
.mini-screen,
.rx-block,
.diag-radar-card,
.diag-trend-card,
.diag-prescription,
.radar-card,
.trend-card,
.shot-rail,
.shot-inspector,
.shot-canvas,
.inspector-list span,
.ui-notes span {
  border-color: rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.status-score {
  border-color: rgba(52, 199, 89, 0.2);
  background:
    radial-gradient(circle at 50% 18%, rgba(52, 199, 89, 0.16), transparent 5.6rem),
    rgba(52, 199, 89, 0.07);
}

.status-score strong {
  color: #16a34a;
}

.status-score em,
.score-chip span,
.board-head b,
.product-chrome b,
.prescription-list b,
.shot-chrome b,
.shot-rail .is-active,
.shot-toolbar b,
.inspector-list b {
  color: #16a34a;
}

.score-chip,
.module-list span,
.metric-strip span,
.prescription-list span,
.inspector-list span {
  background: #f8fafc;
}

.module-list .is-on {
  border-color: rgba(52, 199, 89, 0.22);
  color: var(--text-strong);
}

.board-head b,
.shot-toolbar b,
.shot-rail .is-active {
  border-color: rgba(52, 199, 89, 0.22);
  background: rgba(52, 199, 89, 0.09);
}

.growth-chart {
  background:
    linear-gradient(180deg, rgba(52, 199, 89, 0.055), rgba(255, 255, 255, 0.8)),
    #ffffff;
}

.chart-grid,
.radar-grid,
.grid-line,
.dark-grid {
  stroke: rgba(17, 24, 39, 0.1);
}

.radar-grid.muted {
  stroke: rgba(17, 24, 39, 0.06);
}

.growth-chart circle {
  fill: #ffffff;
}

.chart-note span {
  color: #9a3412;
  background: rgba(255, 149, 0, 0.14);
}

.chart-note b {
  color: #15803d;
  background: rgba(52, 199, 89, 0.12);
}

.digital-panel::before {
  background:
    radial-gradient(circle at 78% 16%, rgba(52, 199, 89, 0.1), transparent 16rem),
    radial-gradient(circle at 12% 90%, rgba(255, 149, 0, 0.08), transparent 18rem);
}

.diagnosis-shot-frame,
.diagnosis-shot-frame.product-shot-frame {
  border-color: rgba(17, 24, 39, 0.09);
  color: var(--text-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92)),
    #ffffff;
  box-shadow: 0 22px 62px rgba(15, 23, 42, 0.1);
}

.shot-layout {
  background:
    linear-gradient(rgba(17, 24, 39, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.018) 1px, transparent 1px),
    #f8fafc;
  background-size: 28px 28px;
}

.shot-canvas {
  background:
    radial-gradient(circle at 50% 0%, rgba(52, 199, 89, 0.08), transparent 13rem),
    #ffffff;
}

.shot-canvas img {
  border-color: rgba(17, 24, 39, 0.1);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
}

.tag-row span,
.tag-row.bright span {
  color: var(--text-soft);
  background: #ffffff;
  border-color: rgba(17, 24, 39, 0.08);
}

.tag-row.bright span {
  color: #15803d;
  background: rgba(52, 199, 89, 0.08);
  border-color: rgba(52, 199, 89, 0.18);
}

.legacy-panel {
  opacity: 0.62;
}

.split-line {
  background: linear-gradient(transparent, rgba(17, 24, 39, 0.12), transparent);
}

input[type="range"] {
  background: linear-gradient(90deg, var(--orange) 0 var(--range-progress, 61%), rgba(17, 24, 39, 0.12) var(--range-progress, 61%) 100%);
}

.score-insight,
.transcript {
  border-color: rgba(52, 199, 89, 0.18);
  background: rgba(52, 199, 89, 0.08);
}

.ai-synthesis {
  border-color: rgba(255, 149, 0, 0.18);
  background: rgba(255, 149, 0, 0.08);
}

.voice-button {
  color: #ffffff;
  background: #16a34a;
  border-color: rgba(22, 163, 74, 0.38);
  box-shadow: 0 16px 42px rgba(22, 163, 74, 0.2);
}

.voice-button i {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.48) 0 3px, transparent 3px 9px);
}

.engine-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9)),
    #ffffff;
}

.pipeline {
  background: #f8fafc;
}

.pipe-node {
  color: var(--text-soft);
  background: #ffffff;
}

.pipe-line {
  background: rgba(17, 24, 39, 0.08);
}

.pipe-node.highlight {
  color: #15803d;
  border-color: rgba(52, 199, 89, 0.28);
  background: rgba(52, 199, 89, 0.08);
}

.code-window {
  background: #ffffff;
}

#codeStream {
  color: var(--text-strong);
}

.parent-delivery {
  background:
    radial-gradient(circle at 50% 0%, rgba(52, 199, 89, 0.08), transparent 28rem),
    #ffffff;
}

.parent-copy h2,
.parent-copy p {
  color: var(--text-strong);
}

.parent-copy p {
  color: var(--text-soft);
}

.mini-screen {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92)),
    #ffffff;
  color: var(--text-strong);
  box-shadow: 0 28px 74px rgba(15, 23, 42, 0.12);
}

.pb-badge {
  color: #9a3412;
  background: rgba(255, 149, 0, 0.13);
}

.rx-block {
  background: #f8fafc;
}

.roi-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92)),
    #ffffff;
}

.standard-card:hover,
.roi-card:hover,
.diagnosis-shot-frame:hover,
.diagnosis-shot-frame:focus-visible {
  box-shadow:
    0 30px 82px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.modal-backdrop,
.report-backdrop,
.command-backdrop {
  background: rgba(15, 23, 42, 0.22);
}

.modal-card input {
  color: var(--text-strong);
  border-color: rgba(17, 24, 39, 0.12);
  background: #ffffff;
}

.modal-close {
  color: var(--text-soft);
  background: rgba(248, 250, 252, 0.92);
}

.command-panel {
  border-color: rgba(17, 24, 39, 0.1);
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 34px 100px rgba(15, 23, 42, 0.18);
}

.command-input-wrap span,
.command-input-wrap input::placeholder,
.command-list em,
.command-list span {
  color: var(--text-faint);
}

.command-input-wrap input,
.command-list button {
  color: var(--text-strong);
}

.command-list button:hover,
.command-list button:focus-visible {
  border-color: rgba(52, 199, 89, 0.18);
  background: rgba(52, 199, 89, 0.07);
}

.command-list span {
  border-color: rgba(17, 24, 39, 0.08);
  background: #f8fafc;
}

.section-orbit button {
  border-color: rgba(17, 24, 39, 0.14);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

@media (max-width: 560px) {
  .section,
  .comparison,
  .delivery-standard,
  .coach,
  .engine,
  .parent-delivery,
  .roi,
  .cta {
    background:
      linear-gradient(180deg, rgba(52, 199, 89, 0.028), transparent 14rem),
      #ffffff;
  }
}

/* Make the visual sports report readable instead of treating it like a thumbnail. */
.comparison {
  padding-right: 4vw;
  padding-left: 4vw;
}

.comparison .split-wrap {
  max-width: 96rem;
  grid-template-columns: minmax(14rem, 0.38fr) 1px minmax(0, 1.72fr);
  gap: 2.5rem;
}

.comparison .digital-panel {
  padding: 1rem;
}

.diagnosis-shot-frame.product-shot-frame {
  cursor: zoom-in;
}

.diagnosis-shot-frame.product-shot-frame .shot-layout {
  grid-template-columns: 1fr;
  padding: 1rem;
}

.diagnosis-shot-frame.product-shot-frame .shot-rail,
.diagnosis-shot-frame.product-shot-frame .shot-inspector {
  display: none;
}

.diagnosis-shot-frame.product-shot-frame .shot-canvas {
  min-height: auto;
  overflow: visible;
}

.diagnosis-shot-frame.product-shot-frame .shot-toolbar {
  min-height: 3rem;
  padding: 0 1rem;
  font-size: 0.84rem;
}

.diagnosis-shot-frame.product-shot-frame .shot-canvas img {
  width: min(941px, 100%);
  max-width: none;
  margin: 1rem auto;
}

.report-modal {
  padding: 1.25rem;
}

.report-modal-card {
  width: min(941px, 96vw);
  max-height: 94vh;
  padding: 0.9rem;
}

.report-modal-card img {
  width: 100%;
  max-width: 941px;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .comparison {
    padding-right: 1.3rem;
    padding-left: 1.3rem;
  }

  .comparison .split-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .comparison {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .diagnosis-shot-frame.product-shot-frame .shot-layout {
    padding: 0.7rem;
  }

  .diagnosis-shot-frame.product-shot-frame .shot-canvas {
    overflow-x: hidden;
    justify-items: center;
  }

  .diagnosis-shot-frame.product-shot-frame .shot-toolbar {
    position: sticky;
    left: 0;
    width: 100%;
    min-height: 2.7rem;
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.96);
    z-index: 1;
  }

  .diagnosis-shot-frame.product-shot-frame .shot-canvas img {
    width: 100%;
    max-width: 100%;
    margin: 0.75rem 0;
  }

  .report-modal {
    padding: 0.7rem;
  }

  .report-modal-card {
    width: 96vw;
    padding: 0.6rem;
  }
}
