:root {
  --ink: #151619;
  --muted: #66615a;
  --paper: #fbfaf7;
  --sand: #e6ded3;
  --sand-light: #f5f1eb;
  --line: #ded8ce;
  --blue: #2f4a73;
  --blue-soft: #a2d3e8;
  --green: #2f6b52;
  --gold: #b28a2e;
  --coral: #fc6558;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(21, 22, 25, .12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

a, button { color: inherit; font: inherit; }
a { text-decoration: none; }
button { border: 0; background: transparent; cursor: pointer; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 30px;
  border-bottom: 1px solid rgba(222, 216, 206, .82);
  background: rgba(251, 250, 247, .9);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.brand-mark {
  width: 25px;
  height: 25px;
  border: 5px solid var(--ink);
  border-radius: 50%;
}

.tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.tabs button,
.tabs a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 780;
}

.tabs button.active,
.tabs a.active {
  background: var(--ink);
  color: var(--white);
}

main { min-height: calc(100vh - 134px); }

.view {
  display: none;
  min-height: calc(100vh - 134px);
  padding: 42px 34px;
}

.view.active { display: block; }

.home-view {
  display: none;
  grid-template-columns: minmax(0, .95fr) minmax(540px, .82fr);
  align-items: center;
  gap: 34px;
  background:
    radial-gradient(circle at 88% 16%, rgba(252,101,88,.16), transparent 20%),
    linear-gradient(90deg, rgba(47,74,115,.07) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(47,74,115,.07) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, var(--paper) 0%, #f6f0e6 46%, #e7f3f2 100%);
  background-size: auto, auto, 42px 42px, auto;
}

.home-view.active { display: grid; }

.home-copy { max-width: 900px; }

.eyebrow,
.small-label {
  display: block;
  color: var(--blue);
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 6.6vw, 6.7rem);
  line-height: .94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.16;
  letter-spacing: 0;
}

.home-copy p,
.page-head p,
.method-flow p,
.oura-theme-panel p,
.competitor-focus-box p,
.deduction-grid p,
.responses-card p,
.testing-takeaway p,
.evolution-detail p {
  color: var(--muted);
  font-size: 1.03rem;
}

.home-actions,
.resource-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-actions {
  max-width: 720px;
}

.primary,
.secondary,
.rank-head a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 820;
}

.primary {
  background: var(--ink);
  color: var(--white);
}

.home-actions .primary {
  min-width: 190px;
}

.secondary,
.rank-head a {
  border: 1px solid var(--line);
  background: var(--white);
}

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

.home-insight-panel {
  min-height: 265px;
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47,107,82,.15), transparent 50%),
    var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.home-insight-panel h2 {
  margin-bottom: 0;
  font-size: 2.65rem;
}

.mini-bars {
  display: grid;
  gap: 12px;
  align-content: center;
}

.mini-bars span {
  position: relative;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 14px;
  border: 1px solid rgba(222,216,206,.82);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  overflow: hidden;
}

.mini-bars span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  background: color-mix(in srgb, var(--color) 20%, transparent);
}

.mini-bars b,
.mini-bars i {
  position: relative;
  z-index: 1;
}

.mini-bars b {
  font-size: .9rem;
}

.mini-bars i {
  color: var(--color);
  font-style: normal;
  font-weight: 900;
}

.home-path {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.home-path span {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--white);
  font-size: .82rem;
  font-weight: 880;
  text-align: center;
}

.home-path span:nth-child(1) { background: var(--blue); }
.home-path span:nth-child(2) { background: var(--green); }
.home-path span:nth-child(3) { background: var(--gold); }
.home-path span:nth-child(4) { background: var(--coral); }
.home-path span:nth-child(5) { background: var(--ink); }

.opportunity-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.opportunity-card h2 {
  max-width: 460px;
  font-size: 2rem;
}

.opportunity-card p:not(.small-label) {
  margin-bottom: 0;
  color: var(--muted);
}

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

.home-proof-grid div {
  min-height: 122px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.home-proof-grid b {
  display: block;
  margin-bottom: 8px;
}

.home-proof-grid span {
  color: var(--muted);
  font-size: .92rem;
}

.page-head {
  max-width: 980px;
  margin-bottom: 30px;
}

.page-head.wide { max-width: 1180px; }

.method-head {
  margin-bottom: 22px;
}

.method-head h2 {
  max-width: 1100px;
}

.method-output-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.method-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.method-flow article,
.questions-card,
.responses-card,
.testing-takeaway,
.evolution-card,
.oura-theme-panel,
.competitor-focus-box,
.deduction-section,
.deduction-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.method-flow article span {
  color: var(--coral);
  font-weight: 900;
}

.method-flow article {
  min-height: 430px;
  display: flex;
  flex-direction: column;
}

.method-flow article h3 {
  min-height: 58px;
}

.method-flow article p {
  margin-bottom: 18px;
}

.method-flow ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.method-flow li {
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sand-light);
  color: var(--muted);
  font-size: .88rem;
  font-weight: 760;
}

.method-output-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.method-output-grid article {
  min-height: 210px;
}

.method-output-grid article:first-child {
  background: var(--green);
  color: var(--white);
}

.method-output-grid article:first-child .small-label {
  color: rgba(255,255,255,.74);
}

.method-output-grid article:first-child h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.method-output-grid article:first-child p {
  color: rgba(255,255,255,.72);
}

.method-output-grid b {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.method-output-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .96rem;
}

.findings-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(500px, .95fr);
  gap: 16px;
  align-items: stretch;
  margin-bottom: 16px;
}

.oura-theme-panel {
  background:
    linear-gradient(135deg, rgba(47,107,82,.08), transparent 48%),
    var(--white);
}

.oura-theme-panel h3 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.focus-chart {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 8px;
  border-radius: 8px;
  background: var(--sand-light);
}

.focus-bar {
  rx: 5;
}

.focus-label {
  fill: var(--ink);
  font-size: 14px;
  font-weight: 760;
}

.focus-value {
  fill: var(--blue);
  font-size: 13px;
  font-weight: 820;
}

.focus-chart .axis {
  fill: var(--muted);
  font-size: 12px;
}

.chart-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.competitor-focus-box {
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.competitor-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.brand-col {
  min-width: 0;
  display: grid;
  grid-template-rows: 56px repeat(4, minmax(0, 1fr));
  border-right: 1px solid var(--line);
  background: var(--sand-light);
}

.brand-col:last-child {
  border-right: 0;
}

.brand-col h3 {
  margin: 0;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--blue);
  font-size: 1rem;
}

.brand-col span {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.25;
}

.brand-col span:last-child {
  border-bottom: 0;
}

.brand-col b {
  color: var(--ink);
  font-size: .95rem;
}

.results-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.results-layout.single {
  margin-bottom: 16px;
}

.card-head,
.rank-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.card-head h3 {
  max-width: 760px;
  font-size: 1.55rem;
}

.card-head a {
  flex: 0 0 auto;
  color: var(--blue);
  font-weight: 820;
  font-size: .92rem;
}

.line-chart {
  border-radius: 8px;
  background: var(--sand-light);
  padding: 18px;
}

.line-chart svg {
  width: 100%;
  height: auto;
  display: block;
}

.gridlines line {
  stroke: rgba(102,97,90,.2);
  stroke-width: 1;
}

.axis text {
  fill: var(--muted);
  font-size: 13px;
}

.line {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .36;
  transition: opacity .18s ease, stroke-width .18s ease;
}

.line.active {
  stroke-width: 5;
  opacity: 1;
}

.point {
  stroke: transparent;
  stroke-width: 0;
  cursor: pointer;
  opacity: 1;
}

.point:hover,
.point.active {
  opacity: 1;
  stroke-width: 0;
}

.chart-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 14px;
  align-items: stretch;
  margin-top: 14px;
}

.theme-key {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.theme-key button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.theme-key button::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--theme-color);
}

.theme-key button.active {
  border-color: var(--theme-color);
  color: var(--ink);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--theme-color);
}

.evolution-detail {
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.evolution-detail b {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.evolution-detail p {
  margin-bottom: 0;
  font-size: .94rem;
}

.deduction-section {
  background: var(--ink);
  color: var(--white);
}

.deduction-section .small-label {
  color: var(--blue-soft);
}

.section-title {
  max-width: 820px;
  margin-bottom: 18px;
}

.section-title h3 {
  font-size: 1.65rem;
}

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

.deduction-grid article {
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.deduction-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--coral);
  font-weight: 900;
}

.deduction-grid p {
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
  font-size: .96rem;
}

.ad-view {
  background:
    radial-gradient(circle at 88% 12%, rgba(252,101,88,.12), transparent 22%),
    linear-gradient(135deg, #fbfaf7 0%, #f4efe7 54%, #e7f2f1 100%);
  color: var(--ink);
}

.ad-view .eyebrow { color: var(--blue); }
.ad-view .page-head p { color: var(--muted); }

.ad-view .page-head {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.ad-view .page-head h1 {
  margin-bottom: 10px;
}

.ad-view video {
  width: min(1080px, 100%);
  margin-top: 28px;
}

video {
  width: min(1060px, 100%);
  aspect-ratio: 16 / 9;
  display: block;
  margin: 34px auto 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.testing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 18%, rgba(252,101,88,.2), transparent 24%),
    linear-gradient(135deg, #fff 0%, #f5f0e8 54%, #e8f3f2 100%);
  box-shadow: var(--shadow);
}

.testing-hero .page-head {
  margin-bottom: 0;
}

.testing-hero .page-head h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
}

.testing-hero .page-head p:last-child {
  max-width: 720px;
  margin-bottom: 0;
}

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

.testing-summary div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid rgba(222,216,206,.9);
  border-radius: 9px;
  background: rgba(255,255,255,.76);
}

.testing-summary strong {
  color: var(--blue);
  font-size: 2.5rem;
  line-height: 1;
}

.testing-summary span {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 760;
}

.testing-summary .summary-accent {
  background: var(--green);
}

.testing-summary .summary-accent strong,
.testing-summary .summary-accent span {
  color: var(--white);
}

.dot-plot-card {
  margin: 0 0 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.dot-plot-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.dot-plot-head h3 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 1.55rem;
}

.dot-plot-head a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 820;
}

.dot-plot-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  mix-blend-mode: multiply;
}

.testing-insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.insight-card {
  min-height: 276px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.insight-card h3 {
  margin-top: 10px;
  font-size: 1.55rem;
}

.insight-card p {
  margin-bottom: 20px;
  color: var(--muted);
}

.insight-card-featured {
  border-color: rgba(47,107,82,.28);
  background: linear-gradient(145deg, rgba(47,107,82,.12), var(--white) 68%);
}

.mini-result {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.mini-result b {
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.mini-result span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 760;
}

.mini-result.blue b { color: var(--blue); }
.mini-result.coral b { color: var(--coral); }

.testing-readout {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
}

.testing-readout .small-label { color: var(--blue-soft); }

.testing-readout h3 {
  max-width: 420px;
  margin-bottom: 0;
  font-size: 2rem;
}

.testing-readout p {
  margin-bottom: 0;
  color: rgba(255,255,255,.75);
  font-size: 1.04rem;
}

.testing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 16px;
  margin-bottom: 16px;
}

.questions-card ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.questions-card li {
  padding-right: 12px;
  color: var(--muted);
}

.response-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.response-metrics div {
  padding: 14px;
  border-radius: 8px;
  background: var(--sand-light);
}

.response-metrics strong {
  display: block;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
}

.response-metrics span {
  color: var(--muted);
  font-size: .85rem;
}

.rank-board {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sand-light);
}

.rank-row {
  display: grid;
  grid-template-columns: minmax(170px, .9fr) minmax(220px, 1fr) minmax(170px, .8fr);
  gap: 14px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.rank-row span { color: var(--muted); }
.rank-row b { font-size: 1.04rem; }
.rank-row i { color: var(--muted); font-style: normal; text-align: right; }
.rank-row.win b { color: var(--green); }

.testing-takeaway {
  margin-top: 16px;
  background: var(--ink);
  color: var(--white);
}

.testing-takeaway p { color: rgba(255,255,255,.74); margin-bottom: 0; }

.testing-dashboard {
  background:
    radial-gradient(circle at 88% 14%, rgba(151,177,168,.22), transparent 26%),
    linear-gradient(180deg, #faf9f5 0%, #f7f9f7 100%);
}

.testing-hero-panel {
  min-height: 245px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, .92fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 8px;
}

.testing-hero-copy h2 {
  max-width: 100%;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 4.2vw, 4.8rem);
  line-height: .95;
}

.testing-hero-copy p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.testing-hero-visual {
  min-height: 230px;
  position: relative;
  display: grid;
  align-items: center;
}

.testing-hero-visual > img {
  width: 66%;
  justify-self: center;
  opacity: .92;
  mix-blend-mode: multiply;
}

.signal-menu {
  position: absolute;
  right: 100px;
  top: 46px;
  display: grid;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(222,216,206,.82);
  border-radius: 8px;
  background: rgba(255,255,255,.8);
  box-shadow: 0 16px 38px rgba(21,22,25,.1);
}

.signal-menu span {
  color: #33466a;
  font-size: .78rem;
  font-weight: 760;
}

.testing-hero-visual p {
  position: absolute;
  right: 10px;
  bottom: 48px;
  margin: 0;
  color: #243550;
  font-family: "Bradley Hand", "Marker Felt", cursive;
  font-size: 1.05rem;
  transform: rotate(-8deg);
}

.testing-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.testing-stat-row article,
.testing-steps-row article,
.survey-card,
.facial-card,
.emotional-card,
.key-takeaways,
.testing-bottom-line {
  border: 1px solid rgba(222,216,206,.9);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 26px rgba(21,22,25,.05);
}

.testing-stat-row article {
  min-height: 100px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 0 14px;
  align-items: center;
  padding: 16px;
}

.stat-icon {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.35rem;
}

.stat-icon.teal { background: #ddf6f3; color: #28b8b8; }
.stat-icon.violet { background: #f0ecff; color: #715eea; }
.stat-icon.blue { background: #eaf3ff; color: #3482eb; }
.stat-icon.green { background: #e9f8eb; color: #1ca348; }
.stat-icon.purple { background: #f8e7fb; color: #b455dc; }

.testing-stat-row strong {
  color: #111d40;
  font-size: 1.9rem;
  line-height: 1;
}

.testing-stat-row small {
  color: #2d3e5f;
  font-size: .78rem;
  line-height: 1.2;
}

.testing-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 10px 6px 10px;
}

.testing-section-head h3 {
  margin: 0;
  font-size: 1.55rem;
}

.testing-section-head p {
  margin: 0;
  color: var(--muted);
}

.testing-steps-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.testing-steps-row article {
  min-height: 198px;
  position: relative;
  display: grid;
  grid-template-rows: auto 96px auto;
  gap: 8px;
  padding: 14px;
}

.testing-steps-row b {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #e5f5f3;
  color: var(--ink);
  font-size: 1rem;
}

.testing-steps-row h4 {
  position: absolute;
  left: 66px;
  top: 20px;
  margin: 0;
  font-size: .98rem;
}

.testing-steps-row img {
  align-self: center;
  width: 90%;
  max-height: 98px;
  object-fit: contain;
  border-radius: 8px;
}

.testing-steps-row p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.25;
}

.testing-steps-row .combine-step p {
  font-size: .82rem;
  letter-spacing: -.01em;
}

.testing-steps-row .follow-step,
.testing-steps-row .combine-step {
  grid-template-rows: auto 1fr auto;
  min-height: 198px;
}

.follow-layout {
  align-self: center;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.follow-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eef7ff;
  color: #3388e9;
  font-size: 2rem;
}

.follow-icon svg,
.combine-icons svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testing-steps-row ul {
  align-self: center;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

.watch-step img {
  justify-self: center;
  width: 92%;
  max-height: 100px;
}

.reaction-step {
  grid-template-rows: auto 96px auto !important;
}

.reaction-visual {
  align-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(86px, .7fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.reaction-visual img {
  width: 100%;
  max-height: 92px;
}

.reaction-visual ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.reaction-visual li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #314361;
  font-size: .65rem;
  line-height: 1;
  white-space: nowrap;
}

.emotion-dot {
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  display: inline-block;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.55);
}

.emotion-dot.attention { background: #48ac5c; }
.emotion-dot.happiness { background: #ff7042; }
.emotion-dot.surprise { background: linear-gradient(135deg, #5d70d7 0 50%, #ef6b64 50%); }
.emotion-dot.confusion { background: linear-gradient(135deg, #f7a36f 0 50%, #6a82ca 50%); }
.emotion-dot.engagement { background: linear-gradient(135deg, #ef594f 0 55%, #ffbd92 55%); }

.testing-steps-row li {
  color: var(--muted);
  font-size: .72rem;
}

.chat-sample {
  align-self: center;
  display: grid;
  gap: 8px;
  max-width: none;
}

.chat-sample span {
  padding: 9px 12px;
  border-radius: 7px;
  background: #eef3f8;
  color: #243550;
  font-size: .72rem;
  line-height: 1.25;
}

.combine-icons {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.combine-icons span {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #edf4ff;
  color: #3a86f4;
  font-size: 1.5rem;
}

.combine-icons span:nth-of-type(2) {
  background: #fff0e8;
  color: #f36b3d;
}

.combine-icons span:nth-of-type(3) {
  background: #edf4ff;
  color: #3a86f4;
}

.combine-icons i {
  color: var(--muted);
  font-style: normal;
}

.testing-results-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: 12px;
  margin-bottom: 12px;
  align-items: stretch;
  grid-auto-rows: 380px;
}

.survey-card,
.facial-card,
.emotional-card {
  margin: 0;
  padding: 14px;
  min-height: 0;
  box-sizing: border-box;
}

.facial-card {
  overflow: visible;
}

.survey-card h3,
.facial-card h3,
.emotional-card h3,
.key-takeaways h3,
.testing-bottom-line h3 {
  margin-bottom: 4px;
  color: #121d3e;
  font-size: 1.35rem;
}

.survey-card p,
.facial-head p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: .82rem;
}

.survey-card img {
  width: calc(100% + 18px);
  max-width: none;
  margin-left: -9px;
  display: block;
}

.emotion-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  margin: 8px 0 14px;
}

.emotion-tabs button {
  flex: 1 1 0;
  min-width: 0;
  padding: 8px 7px;
  border-radius: 6px;
  background: #edf4f2;
  color: #1f3659;
  font-size: .68rem;
  font-weight: 840;
  white-space: nowrap;
}

.emotion-tabs button.active {
  background: #bff0df;
  color: #0a563c;
}

.emotion-chart {
  position: relative;
  min-height: 170px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  padding: 10px 10px 0;
  border-left: 1px solid #cfd8e2;
  border-bottom: 0;
  background:
    linear-gradient(180deg, rgba(207,216,226,.48) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,.88));
  background-size: 100% 48px, auto;
}

.emotion-bar {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  justify-items: center;
  gap: 6px;
  min-height: 145px;
  height: 100%;
}

.emotion-bar strong {
  flex: 0 0 auto;
  color: #13244d;
  font-size: .9rem;
}

.emotion-bar i {
  flex: 0 0 auto;
  width: 100%;
  max-width: 70px;
  display: block;
  border-radius: 7px 7px 0 0;
  background: var(--bar-color);
  box-shadow: inset 0 12px 22px rgba(255,255,255,.18);
}

.emotion-bar span {
  flex: 0 0 42px;
  align-self: stretch;
  height: 42px;
  display: grid;
  justify-items: center;
  gap: 3px;
  color: #243550;
  font-size: .72rem;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}

.emotion-bar span b {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf4ff;
  color: #10244a;
  font-size: .78rem;
}

.emotion-readings {
  display: none;
}

.emotion-readings p {
  margin: 0;
  padding: 8px 10px;
  border-radius: 6px;
  background: #f4f7f8;
  color: #314361;
  font-size: .78rem;
  line-height: 1.25;
}

.emotional-card {
  display: grid;
  align-content: start;
  gap: 7px;
  overflow: hidden;
  padding: 12px;
}

.emotion-video {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.emotion-video img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.emotion-video span {
  position: absolute;
  inset: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: auto;
  border-radius: 50%;
  background: rgba(255,255,255,.86);
}

.emotional-card h4 {
  margin: 0;
  color: #13244d;
  font-size: .98rem;
}

.emotional-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.emotional-card li {
  color: #263b60;
  font-size: .86rem;
}

.emotional-card blockquote {
  margin: 4px 0 0;
  padding: 12px;
  border-radius: 7px;
  background: #f0f7fc;
  color: #244064;
  font-size: .8rem;
  line-height: 1.35;
}

.testing-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, .86fr);
  gap: 12px;
}

.key-takeaways {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
}

.key-takeaways h3 {
  grid-column: 1 / -1;
}

.key-takeaways article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
}

.key-takeaways span {
  color: #4389f6;
  font-size: 1.4rem;
}

.key-takeaways p {
  margin: 0;
  color: #33466a;
  font-size: .82rem;
  line-height: 1.35;
}

.testing-bottom-line {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  padding: 24px;
  background: linear-gradient(120deg, #0d231a, #183a27);
  color: #fff;
}

.testing-bottom-line div {
  position: relative;
  z-index: 1;
  max-width: 440px;
}

.testing-bottom-line .small-label,
.testing-bottom-line h3,
.testing-bottom-line p {
  color: #fff;
}

.testing-bottom-line p {
  margin-bottom: 0;
  color: rgba(255,255,255,.78);
}

.testing-bottom-line img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 230px;
  opacity: .36;
  pointer-events: none;
}

/* Compact insight card and strategy strip for the testing readout. */
.emotional-card h3 {
  font-size: 1rem;
  line-height: 1.1;
}

.emotional-card h4 {
  font-size: .92rem;
}

.emotional-card .emotion-video img {
  aspect-ratio: 2.05 / 1;
}

.emotion-score-list {
  display: grid;
  gap: 5px;
}

.emotion-score-list li {
  display: grid;
  grid-template-columns: 24px 52px minmax(0, 1fr);
  align-items: center;
  gap: 5px;
  font-size: .74rem;
}

.emotion-score-list li span {
  font-size: 1rem;
}

.emotion-score-list li b {
  color: #173e75;
  font-size: .84rem;
}

.emotional-card blockquote {
  margin-top: 2px;
  padding: 9px 10px;
  font-size: .72rem;
  line-height: 1.3;
}

.emotional-card blockquote cite {
  display: block;
  margin-top: 5px;
  color: #5a8fdc;
  font-style: normal;
  text-align: right;
}

.strategy-takeaways {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
}

.strategy-takeaways h3 {
  margin-bottom: 0;
}

.strategy-takeaways article {
  display: block;
  padding: 11px;
  border-radius: 7px;
  background: #f4f7f6;
}

.strategy-takeaways article span {
  display: block;
  margin-bottom: 5px;
  color: #2d8b68;
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.strategy-takeaways article h4 {
  margin: 0 0 5px;
  color: #13244d;
  font-size: .88rem;
}

.strategy-takeaways article p {
  font-size: .74rem;
}

.testing-bottom-panel {
  padding: 20px;
  border: 1px solid rgba(222,216,206,.9);
  border-radius: 10px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 10px 26px rgba(21,22,25,.05);
}

.bottom-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.bottom-panel-head h2 {
  margin: 2px 0 4px;
  color: #121d3e;
  font-size: 1.8rem;
  line-height: 1.05;
}

.bottom-panel-head p {
  max-width: 940px;
  margin: 0;
  color: #556783;
  font-size: .9rem;
}

.bottom-panel-head .small-label {
  color: #2d8b68;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.insight-pill {
  flex: 0 0 auto;
  padding: 11px 16px;
  border-radius: 8px;
  background: #edf4ff;
  color: #2255a8;
  font-size: .78rem;
  font-weight: 800;
}

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

.insight-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 250px;
  padding: 17px;
  border: 1px solid transparent;
  border-radius: 9px;
}

.strength-card {
  background: linear-gradient(135deg, #eefaf5, #f8fcfa);
  border-color: #d8f0e6;
}

.tension-card {
  background: linear-gradient(135deg, #fff2ef, #fff9f7);
  border-color: #f8ddd7;
}

.opportunity-card {
  background: linear-gradient(135deg, #eef5ff, #f8fbff);
  border-color: #dce8fb;
}

.insight-card-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #1b7f61;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tension-card .insight-card-label { color: #df5545; }
.opportunity-card .insight-card-label { color: #2560d5; }

.insight-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(73,190,150,.16);
  font-size: 1.55rem;
  letter-spacing: 0;
}

.insight-icon.target-icon {
  color: #2560d5;
}

.target-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tension-card .insight-icon { background: rgba(255,123,103,.15); }
.opportunity-card .insight-icon { background: rgba(77,135,242,.14); }

.insight-card h3 {
  margin: 0 0 9px;
  color: #111d40;
  font-size: 1.28rem;
  line-height: 1.08;
}

.insight-card p {
  margin: 0 0 15px;
  color: #5b6d8d;
  font-size: .84rem;
  line-height: 1.42;
}

.insight-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 55px;
  padding: 9px 7px;
  border-radius: 8px;
  background: rgba(255,255,255,.46);
}

.insight-proof span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 0 9px;
  border-right: 1px solid rgba(38,92,105,.16);
  color: #49617e;
  font-size: .68rem;
  line-height: 1.15;
}

.opportunity-card .insight-proof span {
  align-items: flex-start;
  gap: 4px;
}

.proof-icon {
  display: block;
  height: 24px;
  color: #2560d5;
  font-style: normal;
}

.proof-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insight-proof span:last-child { border-right: 0; }

.insight-proof b {
  color: #17614f;
  font-size: 1rem;
}

.tension-card .insight-proof b { color: #c84134; }
.opportunity-card .insight-proof span { color: #3f6599; }

/* Findings reference layout */
.findings-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  min-height: 0;
  margin: -34px -34px 8px;
  padding: 26px 34px 4px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 76% 15%, rgba(219,205,187,.45), transparent 29%),
    radial-gradient(ellipse at 94% 78%, rgba(236,228,214,.72), transparent 38%),
    linear-gradient(110deg, #fffefa 0%, #fbfaf7 56%, #f2ede5 100%);
}

.findings-hero::after {
  content: "";
  position: absolute;
  right: 140px;
  top: -80px;
  width: 460px;
  height: 330px;
  border-radius: 50%;
  background: rgba(255,255,255,.38);
  transform: rotate(-25deg);
  pointer-events: none;
}

.findings-hero .page-head {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
}

.findings-hero .page-head h2 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(2.1rem, 3.25vw, 3.45rem);
  line-height: .98;
  letter-spacing: -.045em;
  white-space: nowrap;
}

.findings-hero .page-head h2 span {
  color: #5c7168;
}

.findings-hero .page-head > p:last-child {
  max-width: none;
  margin-bottom: 0;
  color: #686b75;
  font-size: 1rem;
  line-height: 1.45;
}

.findings-hero-callout {
  display: none;
  
  position: relative;
  z-index: 1;
  display: block;
  min-width: 0;
}

.hero-ring-crop {
  position: absolute;
  inset: -34px -34px -18px -120px;
  overflow: hidden;
  opacity: 1;
}

.hero-ring-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.findings-overview {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 12px;
}

.oura-theme-panel,
.competitor-focus-box,
.evolution-card {
  padding: 16px;
  border-radius: 9px;
}

.oura-theme-panel h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  line-height: 1.1;
}

.focus-chart {
  margin-top: 6px;
  background: #faf8f3;
}

.competitor-table {
  display: grid;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #faf8f3;
}

.competitor-table-head,
.competitor-table-row {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 1fr));
}

.competitor-table-head {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.competitor-table-head > span {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 5px;
  padding: 9px 10px;
}

.competitor-table-head > span > strong {
  align-self: end;
  font-size: .74rem;
}

.competitor-table-head > span > img {
  grid-row: 1 / span 2;
  width: 50px;
  height: 24px;
  object-fit: contain;
}

.competitor-table-head > span:nth-child(1) > strong,
.competitor-table-head > span:nth-child(3) > strong,
.competitor-table-head > span:nth-child(4) > strong {
  display: none;
}

.competitor-table-head > span > small {
  grid-column: 2;
  color: #7b8494;
  font-size: .55rem;
  font-weight: 600;
  white-space: nowrap;
}

.competitor-columns {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.competitor-columns > div {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  border-right: 1px solid var(--line);
}

.competitor-columns > div:last-child { border-right: 0; }

.competitor-columns span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-height: 57px;
  padding: 8px 10px;
  border-bottom: 1px solid var(--line);
  color: #6b6d74;
  font-size: .64rem;
  line-height: 1.15;
}

.competitor-columns > div:last-child span:last-child,
.competitor-columns > div:not(:last-child) span:last-child { border-bottom: 0; }

.competitor-columns span b {
  flex: 0 0 auto;
  color: #111827;
  font-size: .72rem;
}

.competitor-table-head > *,
.competitor-table-row > * {
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 10px 9px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.competitor-table-head > *:last-child,
.competitor-table-row > *:last-child { border-right: 0; }
.competitor-table-row:last-child > * { border-bottom: 0; }

.competitor-table-head {
  background: rgba(255,255,255,.82);
  color: #173762;
  font-size: .72rem;
  font-weight: 850;
}

.competitor-table-head span:not(:first-child) {
  justify-content: center;
  gap: 5px;
  white-space: nowrap;
}

.whoop-mark,
.garmin-mark,
.ultrahuman-mark,
.amazfit-mark {
  color: #173762;
  font-size: 1.25rem;
  line-height: 1;
}

.whoop-mark { font-size: .98rem; letter-spacing: -.16em; }
.garmin-mark { font-size: 1rem; }

.findings-hero-callout { display: none; }

.competitor-table-head > span {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  justify-content: start;
  gap: 0 5px;
  padding: 9px 10px;
}

.competitor-table-head > span > img {
  grid-row: 1 / span 2;
  width: 50px;
  height: 24px;
  object-fit: contain;
}

.competitor-table-head > span:nth-child(1) > strong,
.competitor-table-head > span:nth-child(3) > strong,
.competitor-table-head > span:nth-child(4) > strong {
  display: none;
}

.competitor-table-row {
  min-height: 56px;
  color: #696a70;
  font-size: .73rem;
}

.competitor-table-row span {
  line-height: 1.2;
}

.competitor-table-row b {
  justify-content: center;
  color: #151719;
  font-size: .78rem;
}

.competitor-focus-box .chart-note {
  margin: 10px 3px 0;
  font-size: .78rem;
}

.evolution-card .card-head h3 {
  font-size: 1.35rem;
  line-height: 1.08;
  width: 100%;
  max-width: none;
}

.evolution-card .line-chart {
  padding: 10px;
}

.evolution-instruction {
  margin: -2px 0 4px;
  color: #556783;
  font-size: .88rem;
  font-weight: 650;
}

.evolution-card .chart-controls {
  grid-template-columns: 1fr;
  margin-top: 8px;
}

.evolution-detail { display: none; }

.evolution-card .theme-key {
  gap: 6px 18px;
}

.evolution-card .theme-key button {
  min-height: 24px;
  padding: 2px 4px;
  border: 0;
  background: transparent;
  font-size: .72rem;
  font-weight: 650;
}

.evolution-card .theme-key button.active {
  box-shadow: none;
}

.deduction-section {
  padding: 20px;
  background: linear-gradient(105deg, rgba(7,28,22,.96), rgba(13,46,35,.9));
}

.deduction-section .section-title h3 {
  font-size: 1.55rem;
}

.deduction-grid article {
  min-height: 250px;
  padding: 15px;
}

.deduction-grid article h3 {
  font-size: 1.05rem;
  line-height: 1.1;
}

.deduction-grid p {
  font-size: .82rem;
  line-height: 1.35;
}

footer {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 30px;
  background: var(--ink);
  color: rgba(255,255,255,.58);
  font-size: .84rem;
}

.option-page main {
  min-height: calc(100vh - 76px);
}

.option-hero {
  min-height: calc(100vh - 134px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, .8fr);
  gap: 34px;
  align-items: center;
  padding: 42px 34px;
  background:
    radial-gradient(circle at 86% 20%, rgba(252,101,88,.18), transparent 22%),
    radial-gradient(circle at 55% 86%, rgba(47,107,82,.13), transparent 24%),
    linear-gradient(135deg, #fbfaf7 0%, #f4efe7 45%, #e8f3f2 100%);
}

.option-copy {
  max-width: 900px;
}

.option-copy h1 {
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.option-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.option-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 18px;
  background: var(--ink);
  color: var(--white);
  font-weight: 830;
}

.option-panel {
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pitch-cover {
  display: grid;
  grid-template-rows: 1fr auto;
}

.pitch-ring {
  min-height: 340px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(162,211,232,.45), transparent 34%),
    linear-gradient(135deg, #fff, #f2eadf);
}

.pitch-ring span {
  width: 210px;
  height: 210px;
  border: 31px solid var(--sand);
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(255,255,255,.9), 0 26px 70px rgba(21,22,25,.14);
}

.leap-strip,
.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.leap-strip div,
.signal-strip div {
  min-height: 110px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

.leap-strip div:last-child,
.signal-strip div:last-child {
  border-right: 0;
}

.leap-strip b,
.signal-strip b {
  display: block;
  margin-bottom: 8px;
}

.leap-strip span,
.signal-strip span,
.split-side span,
.agent-row span {
  color: var(--muted);
  font-size: .92rem;
}

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

.split-side {
  padding: 26px;
}

.split-side:first-child {
  background: var(--ink);
  color: var(--white);
}

.split-side:first-child span,
.split-side:first-child p {
  color: rgba(255,255,255,.7);
}

.split-side h2 {
  font-size: 2.2rem;
}

.word-stack {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.word-stack b {
  padding: 13px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
}

.split-side:last-child .word-stack b {
  background: var(--sand-light);
}

.thesis-ring-panel {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(47,107,82,.12), transparent 55%),
    var(--white);
}

.thesis-ring-panel .large-ring {
  width: 260px;
  height: 260px;
  border: 37px solid var(--sand);
  border-radius: 50%;
  box-shadow: inset 0 0 46px rgba(255,255,255,.92), 0 28px 90px rgba(47,74,115,.18);
}

.thesis-ring-panel span {
  position: absolute;
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--ink);
  color: var(--white);
  font-weight: 830;
}

.thesis-ring-panel span:nth-of-type(1) { top: 72px; left: 70px; background: var(--green); }
.thesis-ring-panel span:nth-of-type(2) { top: 120px; right: 56px; background: var(--coral); }
.thesis-ring-panel span:nth-of-type(3) { bottom: 122px; left: 48px; background: var(--blue); }
.thesis-ring-panel span:nth-of-type(4) { bottom: 72px; right: 70px; background: var(--gold); }

.agent-panel {
  padding: 22px;
  background: #111316;
  color: var(--white);
}

.agent-window {
  min-height: 516px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  overflow: hidden;
}

.agent-top {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.agent-top i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.agent-top i:nth-child(2) { background: var(--gold); }
.agent-top i:nth-child(3) { background: var(--green); }

.agent-feed {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.agent-row {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
}

.agent-row b {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-soft);
}

.agent-row span {
  color: rgba(255,255,255,.72);
}

.big-insight-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(252,101,88,.14), transparent 42%),
    var(--white);
}

.big-insight-panel h2 {
  font-size: clamp(2.4rem, 4vw, 4.8rem);
}

.symbol-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sand-light);
}

.symbol-card i {
  width: 96px;
  height: 96px;
  border: 15px solid var(--gold);
  border-radius: 50%;
}

.symbol-card b {
  display: block;
  margin-bottom: 6px;
}

.symbol-card span {
  color: var(--muted);
}

.option-six-page {
  background: #f8f5ef;
}

.idea-home {
  min-height: calc(100vh - 76px);
  display: none;
  grid-template-columns: minmax(0, .9fr) minmax(540px, .84fr);
  gap: 36px;
  align-items: center;
  padding: 42px 34px;
  background:
    radial-gradient(circle at 78% 24%, rgba(252,101,88,.2), transparent 18%),
    radial-gradient(circle at 86% 78%, rgba(47,107,82,.18), transparent 22%),
    linear-gradient(120deg, #fbfaf7 0%, #f2ebe0 48%, #e7f2f1 100%);
  overflow: hidden;
}

.idea-home.active { display: grid; }

.method-rebuild {
  width: min(1450px, 100%);
  margin: 0 auto;
}

.method-rebuild-head {
  margin-bottom: 28px;
}

.method-rebuild-head h1 {
  max-width: none;
  margin-bottom: 6px;
  font-size: clamp(2.2rem, 4.1vw, 4.4rem);
  line-height: 1;
  letter-spacing: -.035em;
  white-space: nowrap;
}

.method-rebuild-head p {
  margin-bottom: 0;
  color: var(--blue);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
}

.method-pipeline {
  display: grid;
  grid-template-columns: minmax(180px, .62fr) minmax(0, 2.1fr);
  gap: 18px;
  align-items: stretch;
}

.method-steps {
  position: relative;
  display: grid;
  grid-template-rows: 153px 198px 145px 176px 190px;
  gap: 32px;
  padding: 0;
}

.method-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 23px;
  width: 2px;
  background: #d5e9e8;
}

.method-steps article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.method-steps article > b {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e4f1f0;
  color: var(--ink);
  font-size: 1.2rem;
}

.method-steps h3 {
  margin: 3px 0 7px;
  font-size: 1.08rem;
}

.method-steps p {
  margin-bottom: 0;
  color: var(--blue);
  font-size: .87rem;
  line-height: 1.38;
}

.method-process {
  display: grid;
  align-content: start;
  gap: 7px;
}

.process-card {
  display: grid;
  align-content: start;
  padding: 13px 15px 15px;
  border: 1px solid #dfeceb;
  border-radius: 10px;
  background: rgba(234,245,244,.7);
}

.method-process .process-card:nth-of-type(1),
.method-outputs article:nth-child(1) { height: 153px; }

.method-process .process-card:nth-of-type(2),
.method-outputs article:nth-child(2) { height: 198px; }

.method-process .process-card:nth-of-type(3),
.method-outputs article:nth-child(3) { height: 145px; }

.method-process .process-card:nth-of-type(4),
.method-outputs article:nth-child(4) { height: 176px; }

.method-process .process-card:nth-of-type(5),
.method-outputs article:nth-child(5) { height: 190px; }

.process-card > h3 {
  margin-bottom: 10px;
  color: #15355d;
  font-size: 1rem;
}

.process-card > h3 span {
  font-weight: 500;
}

.process-arrow {
  height: 18px;
  color: #4d8bbb;
  font-size: 1.6rem;
  line-height: .75;
  text-align: center;
}

.source-row,
.module-grid {
  display: grid;
  gap: 9px;
}

.source-row { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.module-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.module-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.source-row > div {
  min-height: 86px;
  display: grid;
  grid-template-rows: 40px auto;
  align-items: center;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 10px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  color: #173762;
  text-align: center;
}

.module-grid > div {
  min-height: 112px;
  display: grid;
  grid-template-rows: 62px auto auto;
  align-items: start;
  align-content: start;
  justify-items: center;
  gap: 7px;
  padding: 12px 8px;
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  color: #173762;
  text-align: center;
}

.source-row span,
.module-grid small {
  font-size: .7rem;
  line-height: 1.22;
}

.source-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.source-logo.google-logo {
  width: 32px;
  height: 32px;
}

.website-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border: 3px solid #2f73d8;
  border-radius: 50%;
  position: relative;
}

.website-icon::before,
.website-icon::after {
  content: "";
  position: absolute;
  border-color: #2f73d8;
}

.website-icon::before {
  width: 15px;
  height: 29px;
  border-width: 0 2px;
  border-style: solid;
  border-radius: 50%;
}

.website-icon::after {
  width: 27px;
  height: 12px;
  border-width: 2px 0;
  border-style: solid;
  border-radius: 50%;
}

.module-image {
  width: 70px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: var(--white);
  font-weight: 900;
}

.video-sample,
.image-sample {
  width: 94px;
  height: 54px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23,55,98,.14);
  border-radius: 7px;
  background: #0e1820;
  box-shadow: 0 7px 14px rgba(19,41,70,.1);
}

.video-sample img,
.image-sample img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-sample i {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 27px;
  height: 27px;
  display: block;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}

.video-sample i::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 10px;
  width: 3px;
  height: 11px;
  background: #214d86;
  box-shadow: 6px 0 0 #214d86;
}

.text-thumb {
  width: 82px;
  height: 48px;
  align-self: center;
  border: 1px solid #dbe7ff;
  background: #edf4ff;
  color: #173762;
  font-size: .66rem;
  font-weight: 760;
  line-height: 1.18;
}

.audio-thumb {
  width: 82px;
  height: 48px;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #fff;
}

.emotion-chart {
  background-position: 0 16px, 0 0;
}

.audio-thumb i {
  width: 4px;
  border-radius: 999px;
  background: #347cf2;
}

.audio-thumb i:nth-child(1),
.audio-thumb i:nth-child(7) { height: 16px; opacity: .72; }
.audio-thumb i:nth-child(2),
.audio-thumb i:nth-child(6) { height: 29px; opacity: .82; }
.audio-thumb i:nth-child(3),
.audio-thumb i:nth-child(5) { height: 42px; }
.audio-thumb i:nth-child(4) { height: 56px; }

.module-grid b { align-self: start; color: #173762; font-size: .77rem; line-height: 1.08; }
.module-grid small { color: #4b6386; }

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

.tag-grid span {
  min-height: 35px;
  display: grid;
  place-items: center;
  padding: 5px;
  border-radius: 8px;
  background: #edf0ff;
  color: #23436d;
  font-size: .72rem;
  text-align: center;
}

.tag-grid span:nth-child(2) { background: #f8eefe; }
.tag-grid span:nth-child(3) { background: #edf5ff; }
.tag-grid span:nth-child(4) { background: #fff3e9; }
.tag-grid span:nth-child(5) { grid-column: span 2; background: #fff0dd; }
.tag-grid span:nth-child(6) { background: #eaf2ff; }
.tag-grid span:nth-child(7) { background: #f5eaff; }
.tag-grid small { font-size: .6rem; }

.agent-grid > div {
  min-height: 112px;
  grid-template-rows: 50px auto auto;
  gap: 5px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.agent-symbol-img {
  width: 35px;
  height: 40px;
  object-fit: contain;
  align-self: center;
}

.agent-symbol-img.mic-img {
  width: 36px;
  height: 42px;
}

.agent-symbol-img.visual-img {
  width: 46px;
  height: 48px;
}

.interview-grid > div {
  min-height: 128px;
  grid-template-rows: 54px auto auto;
  gap: 6px;
}

.interview-shot {
  padding: 8px !important;
}

.interview-photo {
  width: 100%;
  max-width: 158px;
  height: 50px;
  align-self: center;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #f7f7f7;
}

.interview-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.interview-visual { width: 72px; height: 42px; align-self: center; display: grid; place-items: center; border-radius: 7px; font-size: 1.35rem; }
.response-thumb {
  position: relative;
  width: 34px;
  height: 28px;
  margin-bottom: 3px;
  border: 3px solid #347cf2;
  border-radius: 7px;
  background: white;
}
.response-thumb::after {
  content: "";
  position: absolute;
  left: 7px;
  bottom: -9px;
  width: 11px;
  height: 11px;
  border-left: 3px solid #347cf2;
  border-bottom: 3px solid #347cf2;
  background: white;
  transform: skewY(-35deg);
}

.method-outputs {
  display: grid;
  grid-template-rows: repeat(5, auto);
  gap: 32px;
}

.method-outputs article {
  display: grid;
  align-content: center;
  padding: 18px 18px;
  border-radius: 10px;
  background: rgba(237,247,246,.82);
  color: #173762;
}

.method-outputs article > strong {
  display: block;
  margin-bottom: 6px;
  color: #14275c;
  font-size: 2.85rem;
  line-height: 1;
}

.method-outputs h3 { margin-bottom: 8px; font-size: 1.04rem; line-height: 1.08; }
.method-outputs p { margin-bottom: 0; font-size: .92rem; line-height: 1.32; }
.method-outputs ul { display: grid; gap: 6px; margin: 0; padding: 0; list-style: none; }
.method-outputs li { color: #4b6386; font-size: .88rem; line-height: 1.18; }
.method-outputs li::before { content: "✓"; margin-right: 7px; color: #2c9b7c; font-weight: 900; }

.method-endcap {
  margin-top: 22px;
  overflow: hidden;
  border-radius: 10px;
  background: #13232c;
}

.method-endcap img {
  width: 100%;
  display: block;
}

.idea-copy {
  max-width: 920px;
}

.idea-copy h1 {
  max-width: 900px;
  font-size: clamp(4rem, 7.4vw, 7.8rem);
  line-height: .9;
}

.idea-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.18rem;
}

.idea-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.idea-actions a,
.idea-actions button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 860;
}

.idea-primary {
  background: var(--ink);
  color: var(--white);
}

.idea-secondary {
  background: var(--ink);
  color: var(--white);
}

.idea-stage {
  min-height: 650px;
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(222,216,206,.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.52)),
    linear-gradient(160deg, rgba(47,74,115,.12), rgba(252,101,88,.08));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.home-video-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  align-self: start;
  margin-top: 64px;
}

.home-video-stage h2 {
  align-self: flex-start;
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.home-video-subtitle {
  align-self: flex-start;
  max-width: 620px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: .98rem;
}

.home-video-stage video {
  width: 100%;
  height: 340px;
  margin: 0;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(21,22,25,.12);
}

.idea-home {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  column-gap: 46px;
  row-gap: 36px;
  align-content: center;
  padding-top: 48px;
  padding-bottom: 48px;
  background:
    radial-gradient(ellipse at 70% 18%, rgba(252,101,88,.16), transparent 24%),
    radial-gradient(ellipse at 88% 70%, rgba(183,224,220,.42), transparent 28%),
    radial-gradient(ellipse at 32% 28%, rgba(239,236,223,.68), transparent 24%),
    linear-gradient(120deg, #fffefa 0%, #fbfaf7 52%, #eef6f4 100%);
}

.idea-copy .eyebrow {
  margin-bottom: 30px;
  color: #52627c;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .27em;
}

.idea-copy h1 {
  max-width: 900px;
  margin-bottom: 25px;
  font-size: clamp(2.7rem, 3.8vw, 4.2rem);
  line-height: .93;
  letter-spacing: -.045em;
}

.idea-copy h1 span {
  color: #596961;
}

.idea-copy p:not(.eyebrow) {
  max-width: 700px;
  color: #60708c;
  font-size: 1.04rem;
  line-height: 1.48;
}

.home-feature-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-feature-title {
  grid-column: 1 / -1;
  margin: 0 0 -2px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 850;
  line-height: 1.1;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-feature-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(222,216,206,.9);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 22px rgba(21,22,25,.04);
}

.home-feature-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e9f8ee;
  color: #07804d;
}

.multimodal-card .home-feature-icon { background: #eaf3ff; color: #1266e8; }
.interviewer-card .home-feature-icon { background: #f1eaff; color: #7b39d6; }
.facial-card .home-feature-icon { background: #fff0e4; color: #fa6719; }

.home-feature-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-feature-card h3 {
  margin: 0 0 8px;
  color: #11224e;
  font-size: 1.05rem;
}

.home-feature-card p {
  margin: 0;
  color: #657696;
  font-size: .78rem;
  line-height: 1.38;
}

.home-contact {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  margin-top: 2px;
  padding: 12px 24px 10px;
  border-top: 1px solid rgba(47,74,115,.18);
  border-bottom: 1px solid rgba(47,74,115,.12);
  background: rgba(255,255,255,.68);
}

.home-contact .small-label {
  margin: 0;
  color: #173762;
  font-size: .98rem;
  letter-spacing: 0;
  text-transform: none;
}

.home-contact p {
  margin: 0;
  color: var(--muted);
  font-size: .78rem;
}

.home-contact-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 2px;
}

.home-contact-links a {
  color: #294d7a;
  font-size: .72rem;
  font-weight: 700;
  text-decoration: none;
}

.home-contact-links a + a {
  padding-left: 26px;
  border-left: 1px solid rgba(47,74,115,.25);
}

.home-contact-links a span {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  margin-right: 5px;
  border-radius: 3px;
  color: #fff;
  background: #2f6da8;
  font-size: .68rem;
  line-height: 1;
}

.home-contact-links a:first-child span {
  color: #294d7a;
  background: transparent;
  font-size: 1.05rem;
}

.home-contact-links a:hover { text-decoration: underline; }

.map-head h2 {
  max-width: 420px;
  margin-bottom: 0;
  font-size: 1.85rem;
}

.strategy-map {
  position: relative;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(21,22,25,.18) calc(50% - .5px), rgba(21,22,25,.18) calc(50% + .5px), transparent calc(50% + .5px)),
    linear-gradient(180deg, transparent calc(50% - .5px), rgba(21,22,25,.18) calc(50% - .5px), rgba(21,22,25,.18) calc(50% + .5px), transparent calc(50% + .5px)),
    linear-gradient(135deg, rgba(47,74,115,.09), rgba(47,107,82,.08) 48%, rgba(252,101,88,.08));
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(47,74,115,.07) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(47,74,115,.07) 0 1px, transparent 1px 100%);
  background-size: 44px 44px;
}

.strategy-map::after {
  display: none;
}

.axis-label {
  position: absolute;
  z-index: 2;
  color: rgba(21,22,25,.58);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.axis-left { left: 14px; bottom: 16px; }
.axis-right { right: 14px; bottom: 16px; }
.axis-bottom { left: 18px; top: 50%; transform: translateY(-50%) rotate(-90deg); transform-origin: left center; }
.axis-top { right: 18px; top: 50%; transform: translateY(-50%) rotate(90deg); transform-origin: right center; }

.map-node {
  position: absolute;
  z-index: 3;
  width: 128px;
  min-height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 32px rgba(21,22,25,.1);
  text-align: left;
  transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}

.map-node b {
  font-size: .86rem;
}

.map-node span {
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.18;
}

.map-node:hover,
.map-node.active {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(21,22,25,.16);
}

.strategy-map .map-node.active {
  opacity: 1 !important;
  border-color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.88);
  box-shadow: 0 12px 32px rgba(21,22,25,.1);
}

.map-node.whoop { left: 18%; bottom: 35%; }
.map-node.garmin { left: 10%; bottom: 17%; }
.map-node.ultra { left: 36%; bottom: 30%; }
.map-node.amazfit { left: 24%; bottom: 11%; }
.map-node.oura { left: 54%; top: 38%; border-color: rgba(47,107,82,.42); }
.map-node.wedding { right: 8%; top: 12%; width: 150px; border-color: rgba(252,101,88,.45); background: rgba(255,255,255,.94); }

.map-arrow {
  position: absolute;
  inset: 14px 18px 16px 18px;
  z-index: 2;
  width: calc(100% - 36px);
  height: calc(100% - 30px);
  pointer-events: none;
}

.map-arrow path {
  fill: none;
  stroke: var(--coral);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 9 8;
  marker-end: url(#arrow-head);
}

.map-arrow marker path {
  fill: var(--coral);
}

.strategy-map[data-step="category"] .map-node.oura,
.strategy-map[data-step="category"] .map-node.wedding,
.strategy-map[data-step="category"] .map-arrow {
  opacity: .28;
}

.strategy-map[data-step="oura"] .map-node:not(.oura),
.strategy-map[data-step="oura"] .map-node.wedding {
  opacity: .35;
}

.strategy-map[data-step="wedding"] .map-node:not(.oura):not(.wedding) {
  opacity: .28;
}

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

.map-controls button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--muted);
  font-size: .86rem;
  font-weight: 840;
}

.map-controls button.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.map-caption {
  min-height: 58px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  color: var(--muted);
  font-size: .96rem;
}

@media (max-width: 1180px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .tabs {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .home-view,
  .idea-home,
  .option-hero,
  .findings-overview,
  .results-layout,
  .testing-layout,
  .testing-hero {
    grid-template-columns: 1fr;
  }

  .method-flow,
  .method-output-grid,
  .home-path,
  .home-proof-grid,
  .competitor-grid,
  .deduction-grid,
  .testing-insights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-pipeline { grid-template-columns: 1fr; }
  .method-steps { grid-template-columns: repeat(5, minmax(0, 1fr)); grid-template-rows: 1fr; gap: 8px; }
  .method-steps::before { top: 32px; right: 32px; bottom: auto; left: 32px; width: auto; height: 2px; }
  .method-steps article { display: block; }
  .method-steps article > b { margin-bottom: 9px; }
  .method-outputs { grid-template-columns: repeat(5, minmax(0, 1fr)); grid-template-rows: 1fr; gap: 8px; }
  .method-rebuild-head { align-items: start; flex-direction: column; }

  .home-feature-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-video-stage { margin-top: 0; }
  .home-video-stage video { height: auto; aspect-ratio: 16 / 9; }

  .brand-col:nth-child(2) {
    border-right: 0;
  }

  .brand-col:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  .topbar,
  .view,
  footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand { white-space: normal; }
  .tabs { border-radius: 8px; }
  .tabs button,
  .tabs a { white-space: nowrap; }

  h1 { font-size: 3rem; }

  .findings-hero .page-head h2 { white-space: normal; }

  .method-rebuild-head h1 { white-space: normal; }

  .method-flow,
  .method-output-grid,
  .idea-home,
  .home-insight-panel,
  .option-hero,
  .split-panel,
  .leap-strip,
  .signal-strip,
  .home-path,
  .home-proof-grid,
  .competitor-grid,
  .chart-controls,
  .deduction-grid,
  .testing-insights,
  .testing-readout,
  .questions-card ol,
  .response-metrics,
  .rank-row {
    grid-template-columns: 1fr;
  }

  .method-steps,
  .method-outputs { grid-template-columns: 1fr; }
  .home-feature-row { grid-template-columns: 1fr; }
  .home-feature-card { grid-template-columns: 68px minmax(0, 1fr); }
  .home-contact-links { flex-direction: column; gap: 7px; }
  .home-contact-links a + a { padding-left: 0; border-left: 0; }
  .method-steps { gap: 14px; }
  .method-steps::before { top: 35px; right: auto; bottom: 35px; left: 22px; width: 2px; height: auto; }
  .method-steps article { display: grid; }
  .method-outputs { gap: 10px; }
  .source-row,
  .module-grid.four,
  .module-grid.three,
  .tag-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tag-grid span:nth-child(5) { grid-column: span 2; }

  .brand-col,
  .brand-col:nth-child(2) {
    border-right: 0;
  }

  .brand-col:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

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

  .home-path span:last-child {
    grid-column: 1 / -1;
  }

  .idea-stage {
    min-height: 680px;
  }

  .dot-plot-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .dot-plot-card {
    padding: 14px;
  }

  .strategy-map {
    min-height: 420px;
  }

  .map-controls {
    grid-template-columns: 1fr;
  }

  .map-node {
    width: 112px;
    min-height: 58px;
    padding: 8px;
  }

  .map-node.whoop { left: 12%; bottom: 36%; }
  .map-node.garmin { left: 8%; bottom: 18%; }
  .map-node.ultra { left: 38%; bottom: 31%; }
  .map-node.amazfit { left: 30%; bottom: 10%; }
  .map-node.oura { left: 50%; top: 38%; }
  .map-node.wedding { right: 5%; top: 12%; width: 128px; }

  .axis-label {
    display: none;
  }

  .rank-row i {
    text-align: left;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Final presentation refinements */
.topbar {
  gap: 30px;
}

.brand {
  gap: 10px;
}

.brand-mark {
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 3px;
  width: 10px;
  height: 3px;
  border-radius: 3px;
  background: var(--ink);
}

.brand-wordmark {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.brand-divider {
  width: 1px;
  height: 22px;
  margin: 0 3px;
  background: var(--line);
}

.tabs {
  gap: 14px;
  padding: 5px 10px;
}

.tabs button,
.tabs a {
  padding: 8px 19px;
}

main {
  min-height: calc(100vh - 76px);
}

.view {
  min-height: calc(100vh - 76px);
}

.competitor-focus-box {
  min-height: 100%;
}

.competitor-focus-box .competitor-table {
  flex: 1;
  min-height: 390px;
  grid-template-rows: 72px minmax(0, 1fr);
}

.competitor-table-head > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 12px 9px;
}

.competitor-table-head > span > strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: -.02em;
}

.competitor-table-head > span:nth-child(1) > strong,
.competitor-table-head > span:nth-child(3) > strong,
.competitor-table-head > span:nth-child(4) > strong {
  display: block;
}

.competitor-columns {
  min-height: 318px;
}

.competitor-columns span {
  min-height: 79px;
  padding: 12px 14px;
  font-size: .86rem;
  line-height: 1.25;
}

.competitor-columns span b {
  font-size: .96rem;
}

.competitor-focus-box .chart-note {
  margin-top: 14px;
  font-size: .9rem;
  line-height: 1.4;
}

.deduction-section .section-title h3 {
  font-size: 1.8rem;
}

.deduction-grid article {
  min-height: 292px;
  padding: 20px;
}

.deduction-grid article h3 {
  font-size: 1.22rem;
  line-height: 1.14;
}

.deduction-grid p {
  font-size: 1rem;
  line-height: 1.48;
}

.survey-chart-image {
  position: relative;
  width: calc(100% + 16px);
  margin-left: -8px;
  line-height: 0;
}

.survey-card > img {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
}

.survey-chart-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  height: auto;
}

.survey-legend-replacement {
  position: absolute;
  left: 64.5%;
  bottom: 3.1%;
  width: 23.5%;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 0 5px 1.5%;
  overflow: hidden;
  background: #f4f8fd;
  color: #173762;
  font-size: clamp(.55rem, .6vw, .7rem);
  font-weight: 400;
  line-height: 1.15;
  white-space: nowrap;
}

.survey-legend-replacement::before {
  content: "";
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #58a0ff;
}

footer { display: none; }

.home-video-stage video {
  width: 88%;
  height: 400px;
}

.home-video-stage {
  margin-top: 0;
}

.evolution-card .theme-key {
  justify-content: center;
}

@media (max-width: 1180px) {
  .home-video-stage video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

/* Give the testing readout enough room for its longer explanation and visual detail. */
.testing-results-grid {
  grid-auto-rows: 460px;
}

.survey-card p,
.facial-head p {
  font-size: .9rem;
  line-height: 1.32;
}

.facial-card {
  padding: 18px;
}

.facial-card h3 {
  font-size: 1.5rem;
}

.emotion-tabs {
  margin-top: 12px;
  margin-bottom: 16px;
}

.emotion-tabs button {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: .74rem;
}

.emotion-chart {
  min-height: 304px;
  grid-auto-rows: 250px;
  padding: 14px 10px 44px;
  background-size: 100% 62px, auto;
}

.emotion-chart::after {
  content: "";
  position: absolute;
  top: 264px;
  right: 0;
  left: 0;
  border-top: 1px solid #cfd8e2;
  pointer-events: none;
}

.emotion-bar {
  position: relative;
  display: flex;
  height: 250px;
  min-height: 250px;
  justify-content: flex-end;
}

.emotion-bar span {
  position: absolute;
  right: 0;
  bottom: -46px;
  left: 0;
  height: 42px;
  flex: none;
  align-self: auto;
  background: #fff;
}

.emotional-card {
  padding: 16px;
  gap: 10px;
}

.emotional-card h3 {
  font-size: 1.18rem;
}

.emotional-card h4 {
  font-size: 1.05rem;
}

.emotional-card li {
  font-size: .9rem;
}

.emotional-card blockquote {
  font-size: .8rem;
}

.testing-bottom-panel {
  margin-top: 20px;
}

.facial-card .facial-head .small-label {
  display: block;
  margin-bottom: 8px;
}

.facial-card .facial-takeaway {
  max-width: 920px;
  color: #686b75 !important;
  font-size: .96rem;
  line-height: 1.35;
}

.facial-card .facial-note {
  margin-top: 7px;
  color: #686b75;
  font-size: .96rem;
  line-height: 1.35;
}

.facial-static-chart {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: minmax(230px, 1fr) auto;
  column-gap: 8px;
  margin-top: 18px !important;
  padding: 10px 12px 8px 0;
  color: #686b75;
}

.facial-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 0 37px;
  font-size: .72rem;
  text-align: right;
}

.facial-plot {
  position: relative;
  min-width: 0;
}

.facial-gridlines {
  position: absolute;
  inset: 0 0 37px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.facial-gridlines i {
  display: block;
  border-top: 1px dashed #dfe3e8;
}

.facial-groups {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  height: 100%;
}

.facial-group {
  display: grid;
  grid-template-rows: minmax(0, 1fr) 37px;
  min-width: 0;
}

.facial-bars {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 7px;
  min-height: 0;
  padding: 0 4px;
}

.facial-bars > span {
  position: relative;
  flex: 1 1 0;
  min-width: 10px;
  max-width: 54px;
  border-radius: 8px 8px 0 0;
}

.facial-bars b {
  display: none;
}

.bar-smart { background: linear-gradient(#4d8ff3, #3f80e1); }
.bar-teacher { background: linear-gradient(#12a34b, #07953e); }
.bar-finger { background: linear-gradient(#ed5d0a, #df5100); }
.bar-promise { background: linear-gradient(#ffbf19, #ffb600); }

.facial-group label {
  align-self: end;
  color: #686b75;
  font-size: .85rem;
  text-align: center;
}

.facial-legend {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding-top: 10px;
  color: #25272b;
  font-size: .84rem;
}

.facial-legend span::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 7px;
  border-radius: 50%;
  vertical-align: -1px;
}

.facial-legend .legend-smart::before { background: #3f80e1; }
.facial-legend .legend-teacher::before { background: #07953e; }
.facial-legend .legend-finger::before { background: #df5100; }
.facial-legend .legend-promise::before { background: #ffb600; }

.survey-card .survey-summary {
  color: #686b75 !important;
  font-weight: 400;
}

@media (max-width: 720px) {
  .facial-static-chart { grid-template-columns: 36px minmax(0, 1fr); }
  .facial-groups { gap: 7px; }
  .facial-bars { gap: 3px; }
  .facial-group label { font-size: .7rem; }
  .facial-legend { grid-column: 1 / -1; font-size: .72rem; gap: 8px 12px; }
}

.survey-card figcaption .small-label {
  display: block;
  margin-bottom: 7px;
}

.survey-card .survey-summary {
  color: #243b61;
  font-size: .96rem;
  font-weight: 680;
  line-height: 1.3;
}

/* Three linked reference ads sit beside the respondent count. */
.testing-stat-row .tested-ad-card {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  grid-template-rows: 1fr;
  gap: 4px 10px;
  min-height: 100px;
  padding: 10px 12px;
  align-items: center;
}

.tested-ad-card .tested-ad-kicker {
  position: absolute;
  top: -24px;
  left: 0;
  color: #60718e;
  font-size: .66rem;
  font-weight: 780;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.tested-ad-card img {
  width: 88px;
  height: 58px;
  border-radius: 5px;
  object-fit: cover;
  object-position: center;
}

.tested-ad-card a {
  color: #173762;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: underline;
  text-decoration-color: rgba(23,55,98,.35);
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .testing-stat-row { grid-template-columns: 1fr; }
  .testing-stat-row .tested-ad-card { min-height: 92px; }
}
