@font-face {
  font-family: "Work Sans";
  src: url("fonts/work-sans-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

@font-face {
  font-family: "Darker Grotesque";
  src: url("fonts/darker-grotesque-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300 900;
}

@font-face {
  font-family: "Fira Code";
  src: url("fonts/work-sans-latin.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300 700;
}

:root {
  color-scheme: light;
  --ink: #151512;
  --muted: #6a6a63;
  --quiet: #92928a;
  --canvas: #f4f3ee;
  --paper: #fffefa;
  --soft: #eae9e3;
  --line: #d8d7d0;
  --green: #1f765a;
  --green-bright: #2bad7e;
  --green-soft: #dff3e9;
  --red: #bb4d43;
  --red-soft: #f6e5e1;
  --amber: #a16a1f;
  --shadow: 0 24px 80px rgba(30, 32, 27, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--canvas);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button,
summary,
tr[tabindex] {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
input:focus-visible,
summary:focus-visible,
tr[tabindex]:focus-visible,
.series-point:focus-visible {
  outline: 3px solid rgba(31, 118, 90, 0.3);
  outline-offset: 3px;
}

.page-wash {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 0%, rgba(158, 229, 199, 0.34), transparent 31rem),
    radial-gradient(circle at 94% 16%, rgba(255, 255, 255, 0.85), transparent 34rem),
    var(--canvas);
}

.dashboard {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
  padding: 28px 0 52px;
  transition: filter 280ms ease, opacity 280ms ease, transform 280ms ease;
}

.is-locked {
  overflow: hidden;
}

.is-locked .dashboard {
  max-height: 100vh;
  overflow: hidden;
  filter: blur(13px);
  opacity: 0.48;
  pointer-events: none;
  transform: scale(0.99);
  user-select: none;
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand img {
  display: block;
  width: 55px;
  height: 68px;
  object-fit: contain;
}

.partner-note {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.partner-note img {
  display: block;
  width: 69px;
  height: auto;
}

.topbar-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.62);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.status i,
.gate-footer span i,
.best-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(43, 173, 126, 0.12);
}

.text-button {
  min-height: 36px;
  padding: 6px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.text-button:hover {
  background: var(--soft);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 72px;
  align-items: end;
  padding: 96px 20px 76px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--green);
  font-family: "Fira Code", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.intro h1 {
  margin: 0;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: clamp(56px, 6.6vw, 92px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.83;
}

.intro h1 span,
.gate-copy h2 span {
  color: var(--green);
}

.intro-copy > p:last-child {
  max-width: 650px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.snapshot-facts {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.snapshot-facts > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.snapshot-facts dt {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 550;
}

.snapshot-facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.result-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(350px, 0.7fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.strategy-side {
  min-width: 0;
  padding: 44px 46px 48px;
}

.section-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 21px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 550;
}

.best-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 11px;
  font-weight: 650;
}

.best-badge[hidden] {
  display: none;
}

.strategy-side h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 65px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.strategy-side h2 span:first-child {
  color: var(--green);
}

.strategy-side h2 span:last-child {
  color: var(--red);
}

.strategy-side h2 small {
  color: var(--quiet);
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.strategy-help {
  margin: 13px 0 40px;
  color: var(--muted);
  font-size: 14px;
}

.picker-group + .picker-group {
  margin-top: 27px;
}

.picker-label {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 11px;
}

.picker-label span {
  font-size: 13px;
  font-weight: 650;
}

.picker-label small {
  color: var(--quiet);
  font-size: 11px;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-row button {
  min-width: 67px;
  min-height: 43px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8f8f4;
  cursor: pointer;
  font-family: "Fira Code", monospace;
  font-size: 12px;
  font-weight: 550;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.choice-row button:hover {
  border-color: #a5a69f;
  transform: translateY(-1px);
}

.choice-row button.active {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.choice-row.secondary button.active {
  border-color: var(--ink);
  background: var(--ink);
}

.performance-side {
  display: flex;
  min-height: 520px;
  padding: 46px 42px 39px;
  flex-direction: column;
  background: var(--ink);
  color: #fff;
}

.performance-side > p {
  margin: 0 0 auto;
  color: #aaa9a1;
  font-size: 13px;
}

.performance-side > strong {
  display: block;
  margin-top: 34px;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: clamp(76px, 8vw, 116px);
  font-weight: 550;
  letter-spacing: -0.065em;
  line-height: 0.78;
}

.performance-side > strong.positive {
  color: #a9edcf;
}

.performance-side > strong.negative {
  color: #ffaaa0;
}

.performance-side > span {
  max-width: 310px;
  margin-top: 25px;
  color: #aaa9a1;
  font-size: 13px;
  line-height: 1.55;
}

.return-gauge {
  position: relative;
  width: min(100%, 260px);
  margin: 33px auto 0;
}

.return-gauge svg {
  display: block;
  width: 100%;
  overflow: visible;
}

.gauge-track,
.gauge-progress {
  fill: none;
  stroke-linecap: round;
  stroke-width: 13;
}

.gauge-track {
  stroke: #32322f;
}

.gauge-progress {
  stroke: #a9edcf;
  transition: stroke-dasharray 500ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.return-gauge.negative .gauge-progress {
  stroke: #ffaaa0;
}

.gauge-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
}

.gauge-label small {
  display: block;
  color: #85857f;
  font-size: 10px;
}

.gauge-label b {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  font-weight: 600;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 254, 250, 0.78);
}

.metric-grid article {
  min-width: 0;
  padding: 27px 28px 29px;
}

.metric-grid article + article {
  border-left: 1px solid var(--line);
}

.metric-grid p {
  margin: 0 0 19px;
  color: var(--muted);
  font-size: 12px;
}

.metric-grid strong {
  display: block;
  overflow: hidden;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-grid strong.positive {
  color: var(--green);
}

.metric-grid strong.negative {
  color: var(--red);
}

.metric-grid span {
  display: block;
  margin-top: 12px;
  overflow: hidden;
  color: var(--quiet);
  font-size: 11px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chart-card,
.more-card {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
}

.chart-card {
  padding: 37px 38px 25px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.section-heading .eyebrow {
  margin-bottom: 10px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: clamp(34px, 3.8vw, 49px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.section-heading > p {
  max-width: 300px;
  margin: 0 0 2px;
  color: var(--quiet);
  font-size: 12px;
  text-align: right;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  min-height: 23px;
  margin: 32px 0 12px 57px;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 10px;
}

.chart-legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.chart-swatch-0 { background: #1f765a; }
.chart-swatch-1 { background: #282825; }
.chart-swatch-2 { background: #9b752e; }
.chart-swatch-3 { background: #7772a4; }
.chart-swatch-4 { background: #ba5d53; }
.chart-swatch-5 { background: #6e8f9b; }

.chart-shell {
  width: 100%;
  overflow-x: auto;
  scrollbar-color: #bebdb6 transparent;
  scrollbar-width: thin;
}

#responseChart {
  display: block;
  width: 100%;
  min-width: 680px;
  height: auto;
  overflow: visible;
}

.grid-line {
  stroke: #e5e4de;
  stroke-width: 1;
}

.zero-line {
  stroke: #acaea8;
  stroke-dasharray: 4 5;
  stroke-width: 1.2;
}

.axis-label,
.axis-title {
  fill: #8b8b84;
  font-family: "Work Sans", Arial, sans-serif;
}

.axis-label {
  font-size: 11px;
}

.axis-title {
  font-size: 10px;
  font-weight: 550;
}

.series-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
  opacity: 0.72;
}

.series-point {
  cursor: pointer;
  stroke: var(--paper);
  stroke-width: 2;
  transition: r 140ms ease;
}

.series-point:hover,
.series-point.selected {
  r: 7px;
}

.point-halo {
  fill: none;
  stroke: #1f765a;
  stroke-width: 2;
  opacity: 0.3;
}

.more-card {
  overflow: hidden;
}

.more-card summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 91px;
  padding: 21px 27px;
  cursor: pointer;
  list-style: none;
}

.more-card summary::-webkit-details-marker {
  display: none;
}

.more-card summary::after {
  display: grid;
  width: 32px;
  height: 32px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--soft);
  content: "+";
  font-size: 20px;
  font-weight: 400;
  place-items: center;
}

.more-card[open] summary::after {
  content: "−";
}

.more-card summary > span:first-child {
  display: flex;
  flex-direction: column;
}

.more-card summary small {
  margin-bottom: 3px;
  color: var(--quiet);
  font-size: 10px;
  font-weight: 550;
  text-transform: uppercase;
}

.more-card summary strong {
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
}

.more-card summary > span:last-of-type {
  margin-left: auto;
  color: var(--quiet);
  font-size: 12px;
}

.table-scroll {
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 25px;
  border-bottom: 1px solid #ecebe6;
  font-size: 12px;
  text-align: left;
}

th {
  color: var(--quiet);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

th.number,
td.number {
  text-align: right;
}

tbody tr {
  cursor: pointer;
  transition: background 130ms ease;
}

tbody tr:hover {
  background: #f7f6f1;
}

tbody tr.selected {
  background: var(--green-soft);
}

td.positive {
  color: var(--green);
  font-weight: 650;
}

td.negative {
  color: var(--red);
  font-weight: 650;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.method-grid > div {
  padding: 29px 27px 34px;
}

.method-grid > div + div {
  border-left: 1px solid var(--line);
}

.method-grid h3 {
  margin: 0 0 12px;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.method-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.outcome-chart {
  margin-top: 17px;
}

.outcome-chart svg {
  display: block;
  width: 100%;
  max-height: 88px;
}

.outcome-label {
  fill: #77776f;
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 9px;
}

.outcome-count {
  fill: #252522;
  font-family: "Fira Code", monospace;
  font-size: 9px;
  font-weight: 600;
}

.outcome-track {
  fill: #ecebe5;
}

.outcome-bar-0 { fill: #2bad7e; }
.outcome-bar-1 { fill: #bb4d43; }
.outcome-bar-2 { fill: #7d7d76; }
.outcome-bar-3 { fill: #b2843a; }
.outcome-bar-4 { fill: #b8b8b1; }

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 45px 20px 3px;
  color: var(--quiet);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}

.footer-brand img {
  width: 40px;
  height: 50px;
  object-fit: contain;
}

.footer-brand span {
  font-size: 11px;
  font-weight: 550;
}

footer > p {
  max-width: 720px;
  margin: 0;
  font-size: 10px;
  line-height: 1.6;
  text-align: right;
}

.access-gate {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  overflow-y: auto;
  padding: 30px;
  background: rgba(241, 240, 234, 0.66);
  backdrop-filter: blur(9px);
  place-items: center;
  min-height: 100dvh;
}

.access-gate[hidden] {
  display: none;
}

.gate-card {
  width: min(600px, 100%);
  padding: 31px 34px 27px;
  border: 1px solid rgba(201, 200, 192, 0.9);
  border-radius: 24px;
  background: rgba(255, 254, 250, 0.96);
  box-shadow: 0 34px 100px rgba(30, 32, 27, 0.19);
}

.gate-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}

.gate-logos > span {
  color: #adaca5;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
}

.gate-playfair {
  width: 61px;
  height: 75px;
  object-fit: contain;
}

.gate-forbes {
  width: 84px;
  height: auto;
}

.gate-copy {
  padding-top: 34px;
}

.gate-copy h2 {
  margin: 0;
  font-family: "Darker Grotesque", Arial, sans-serif;
  font-size: clamp(46px, 6vw, 57px);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 0.84;
}

.gate-copy > p:last-child {
  max-width: 595px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

#accessForm {
  margin-top: 27px;
}

#accessForm label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 650;
}

#accessForm label span {
  color: var(--quiet);
  font-size: 9px;
  font-weight: 500;
  text-align: right;
}

.email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 5px;
  border: 1px solid #bcbbb4;
  border-radius: 15px;
  background: white;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.email-row:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(31, 118, 90, 0.1);
}

#viewerEmail {
  min-width: 0;
  min-height: 53px;
  padding: 12px 15px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
}

#viewerEmail::placeholder {
  color: #aaa9a2;
}

#accessButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 53px;
  padding: 12px 20px;
  border: 0;
  border-radius: 11px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: background 150ms ease, transform 150ms ease;
}

#accessButton:hover:not(:disabled) {
  background: var(--green);
  transform: translateY(-1px);
}

#accessButton:disabled {
  cursor: wait;
  opacity: 0.68;
}

#accessButton b {
  font-size: 18px;
  font-weight: 400;
}

.gate-error {
  min-height: 20px;
  margin: 9px 0 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.gate-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  margin-top: 13px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.gate-footer > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: var(--green);
  font-size: 11px;
  font-weight: 650;
}

.gate-footer p {
  max-width: 430px;
  margin: 0;
  color: #5f655f;
  font-size: 11px;
  font-weight: 550;
  line-height: 1.55;
  text-align: right;
}

noscript {
  display: block;
  margin-top: 18px;
  color: var(--red);
  font-size: 12px;
}

@media (max-width: 960px) {
  .dashboard {
    width: min(100% - 36px, 820px);
  }

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

  .partner-note {
    display: none;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 70px;
  }

  .snapshot-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .snapshot-facts > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .snapshot-facts > div + div {
    padding-left: 30px;
    border-left: 1px solid var(--line);
  }

  .result-card {
    grid-template-columns: 1fr;
  }

  .performance-side {
    min-height: 420px;
  }

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

  .metric-grid article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .metric-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }

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

  .method-grid > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .dashboard {
    width: min(100% - 16px, 560px);
    padding-top: 10px;
    padding-bottom: calc(38px + env(safe-area-inset-bottom));
  }

  .topbar {
    min-height: 76px;
    padding: 8px 5px;
  }

  .text-button,
  .choice-row button {
    min-height: 44px;
  }

  .brand img {
    width: 46px;
    height: 57px;
  }

  .status {
    padding: 7px 9px;
    font-size: 10px;
  }

  .intro {
    gap: 38px;
    padding: 58px 5px 52px;
  }

  .intro h1 {
    font-size: clamp(51px, 16vw, 70px);
  }

  .intro-copy > p:last-child {
    margin-top: 25px;
    font-size: 15px;
  }

  .snapshot-facts > div {
    padding: 14px 0;
  }

  .snapshot-facts > div + div {
    padding-left: 18px;
  }

  .strategy-side,
  .performance-side {
    padding: 27px 19px 30px;
  }

  .section-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .strategy-side h2 {
    font-size: 43px;
  }

  .strategy-help {
    margin-bottom: 32px;
  }

  .picker-label small {
    display: none;
  }

  .choice-row button {
    min-width: 61px;
    min-height: 41px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .performance-side {
    min-height: 390px;
  }

  .performance-side > strong {
    font-size: 86px;
  }

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

  .metric-grid article + article,
  .metric-grid article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .chart-card {
    padding: 25px 14px 17px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .section-heading > p {
    text-align: left;
  }

  .chart-legend {
    margin-left: 38px;
  }

  .more-card summary {
    min-height: 83px;
    padding: 18px;
  }

  .more-card summary > span:last-of-type {
    display: none;
  }

  th,
  td {
    padding-right: 17px;
    padding-left: 17px;
  }

  .table-scroll,
  .chart-shell {
    -webkit-overflow-scrolling: touch;
  }

  footer {
    align-items: flex-start;
    padding-right: 5px;
    padding-left: 5px;
    flex-direction: column;
    gap: 19px;
  }

  footer > p {
    text-align: left;
  }

  .access-gate {
    align-items: start;
    min-height: 100dvh;
    padding:
      max(8px, env(safe-area-inset-top))
      max(8px, env(safe-area-inset-right))
      max(8px, env(safe-area-inset-bottom))
      max(8px, env(safe-area-inset-left));
  }

  .gate-card {
    margin: auto 0;
    padding: 23px 18px 20px;
    border-radius: 20px;
  }

  .gate-logos {
    padding-bottom: 17px;
  }

  .gate-playfair {
    width: 46px;
    height: 57px;
  }

  .gate-forbes {
    width: 71px;
  }

  .gate-copy {
    padding-top: 27px;
  }

  .gate-copy h2 {
    font-size: clamp(42px, 13vw, 53px);
    line-height: 0.88;
  }

  .gate-copy > p:last-child {
    margin-top: 17px;
    font-size: 12px;
  }

  #accessForm {
    margin-top: 22px;
  }

  #accessForm label {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  #accessForm label span {
    text-align: left;
  }

  .email-row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 5px;
  }

  #accessButton {
    width: 100%;
    justify-content: space-between;
    padding-right: 17px;
    padding-left: 17px;
  }

  .gate-footer {
    flex-direction: column;
    gap: 10px;
    margin-top: 9px;
    padding-top: 16px;
  }

  .gate-footer p {
    text-align: left;
  }
}

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

/* Calm product motion with a full reduced-motion fallback. */
@keyframes simpleReveal {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes simplePulse {
  0%, 44% { box-shadow: 0 0 0 0 rgba(31, 118, 90, 0.22); }
  80%, 100% { box-shadow: 0 0 0 9px rgba(31, 118, 90, 0); }
}

@keyframes simpleWash {
  0%, 100% { opacity: 0.82; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.025); }
}

.page-wash { animation: simpleWash 15s ease-in-out infinite; transform-origin: 80% 10%; }
.status i,
.gate-footer span i { animation: simplePulse 2.8s ease-out infinite; }
.gate-card { animation: simpleReveal 0.62s cubic-bezier(0.2, 0.8, 0.2, 1) backwards; }

body:not(.is-locked) .intro,
body:not(.is-locked) .result-card,
body:not(.is-locked) .metric-grid,
body:not(.is-locked) .chart-card,
body:not(.is-locked) .more-card {
  animation: simpleReveal 0.68s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

body:not(.is-locked) .result-card { animation-delay: 0.06s; }
body:not(.is-locked) .metric-grid { animation-delay: 0.12s; }
body:not(.is-locked) .chart-card { animation-delay: 0.18s; }
body:not(.is-locked) .more-card:nth-of-type(1) { animation-delay: 0.23s; }
body:not(.is-locked) .more-card:nth-of-type(2) { animation-delay: 0.28s; }

.result-card,
.chart-card,
.more-card,
.metric-grid {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.result-card:hover,
.chart-card:hover,
.more-card:hover {
  transform: translateY(-3px);
  border-color: #bccfc2;
  box-shadow: 0 25px 62px rgba(30, 32, 27, 0.1);
}

.gauge-progress,
.series-line,
.series-point,
.outcome-chart span { transition: all 0.65s cubic-bezier(0.2, 0.8, 0.2, 1); }

@media (prefers-reduced-motion: reduce) {
  .page-wash,
  .status i,
  .gate-footer span i,
  .gate-card,
  body:not(.is-locked) .intro,
  body:not(.is-locked) .result-card,
  body:not(.is-locked) .metric-grid,
  body:not(.is-locked) .chart-card,
  body:not(.is-locked) .more-card { animation: none !important; }
}
