:root {
  color-scheme: light;
  --ink: #111816;
  --ink-soft: #5d6965;
  --paper: #f4f0e8;
  --surface: #fffefa;
  --surface-soft: #ebe7de;
  --line: #d5d2ca;
  --brand: #3d887b;
  --brand-dark: #173936;
  --brand-mid: #28645b;
  --positive: #08765a;
  --negative: #c63f57;
  --neutral: #77807d;
  --yellow: #f3c84b;
  --max: 1180px;
  --radius: 24px;
  --shadow: 0 24px 60px rgb(17 24 22 / 12%);
  --display: "Arial Narrow", "Avenir Next Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

[data-product-screenshot] {
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), 1280px);
  min-height: 82px;
  margin-inline: auto;
  border-bottom: 1px solid rgb(17 24 22 / 12%);
}

.wordmark {
  display: inline-block;
  width: 58px;
  height: 40px;
  overflow: hidden;
  background: url("/assets/doji-wordmark.png") left center / contain no-repeat;
  line-height: 40px;
  text-decoration: none;
  text-indent: 100%;
  white-space: nowrap;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header nav a,
.site-footer nav a {
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}

.site-header nav a:hover,
.site-footer nav a:hover {
  text-decoration: underline;
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 999px;
}

.menu-button {
  display: none;
  min-width: 48px;
  min-height: 44px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-mid);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgb(255 255 255 / 68%);
}

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

h1,
h2 {
  font-family: var(--display);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

h1 {
  margin-bottom: 26px;
  font-size: clamp(4rem, 8.4vw, 7.7rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 5.8vw, 5.5rem);
}

h3 {
  font-size: 1.2rem;
  line-height: 1.2;
}

h1 em,
h2 em {
  color: var(--brand);
  font-style: normal;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: start;
  gap: clamp(44px, 6vw, 84px);
  padding-block: clamp(44px, 4vw, 60px);
}

.hero-copy {
  max-width: 650px;
}

.hero h1 {
  font-size: clamp(4rem, 7.2vw, 6.7rem);
}

.hero .lede {
  max-width: 630px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero .lede strong {
  color: var(--ink);
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  color: #fff;
  background: var(--ink);
}

.button.secondary {
  background: transparent;
}

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

.release-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.release-note span {
  width: 9px;
  height: 9px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(61 136 123 / 13%);
}

.app-proof {
  position: relative;
  margin: 0;
}

.hero-proof {
  justify-self: end;
  width: min(100%, 650px);
}

.product-crop-frame {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.product-crop-frame img {
  border-radius: 23px;
}

.app-proof figcaption {
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-align: center;
}

.app-proof figcaption strong {
  color: var(--brand-mid);
  letter-spacing: 0.05em;
}

.thesis-band {
  color: #fff;
  background: var(--brand-dark);
}

.thesis-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 255px;
  padding-block: 54px;
}

.thesis-grid p {
  margin: 0;
  color: rgb(255 255 255 / 63%);
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  line-height: 1.35;
}

.thesis-grid strong {
  color: #fff;
}

.thesis-after {
  text-align: right;
}

.thesis-shift {
  color: var(--yellow);
  font-size: 2.4rem;
}

.entry-story,
.portfolio-story,
.actual-product,
.capabilities,
.access-section,
.boundary {
  padding-block: clamp(86px, 11vw, 150px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 52px;
}

.section-heading p:not(.eyebrow) {
  max-width: 670px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: clamp(34px, 7vw, 100px);
  max-width: none;
}

.split-heading h2 {
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 4px;
}

.entry-chart {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgb(17 24 22 / 7%);
}

.entry-chart-label {
  display: grid;
  grid-template-columns: 41% 59%;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.entry-chart-label span:last-child {
  color: var(--brand-mid);
}

.entry-chart svg {
  width: 100%;
  height: 310px;
  margin-top: 10px;
}

.chart-grid {
  fill: none;
  stroke: var(--line);
  stroke-width: 1;
}

.history-line,
.personal-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.history-line {
  stroke: var(--neutral);
  stroke-dasharray: 5 10;
  opacity: 0.46;
}

.personal-line {
  stroke: var(--brand);
}

.purchase-guide {
  fill: none;
  stroke: var(--ink-soft);
  stroke-dasharray: 4 7;
  stroke-width: 1.5;
}

.purchase-point {
  fill: var(--surface);
  stroke: var(--brand);
  stroke-width: 5;
}

.purchase-label {
  position: absolute;
  top: 83px;
  left: 41.1%;
  padding: 8px 12px;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}

.history-caption,
.personal-caption {
  position: absolute;
  bottom: 24px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 750;
}

.history-caption {
  left: 30px;
}

.personal-caption {
  left: 43%;
  color: var(--brand-mid);
}

.market-you-section {
  padding-block: clamp(90px, 12vw, 160px);
  color: #fff;
  background: #101716;
}

.market-you-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.market-you-copy h2 {
  max-width: 630px;
}

.market-you-copy > p:not(.eyebrow):not(.lesson) {
  color: rgb(255 255 255 / 65%);
}

.contradiction-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-block: 34px 18px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 18px;
}

.contradiction-summary div {
  padding: 16px;
}

.contradiction-summary div + div {
  border-left: 1px solid rgb(255 255 255 / 18%);
}

.contradiction-summary span,
.ticker-contrast span {
  display: block;
  margin-bottom: 4px;
  color: rgb(255 255 255 / 54%);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.contradiction-summary strong {
  display: block;
  font-family: var(--display);
  font-size: 1.65rem;
  letter-spacing: -0.02em;
}

.market-result strong {
  color: #4be0ae;
}

.you-result strong {
  color: #ff6882;
}

.lesson {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 750;
}

.holding-gallery {
  overflow: hidden;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 26px;
  box-shadow: 0 30px 90px rgb(0 0 0 / 28%);
}

.holding-shot {
  margin: 0;
}

.holding-shot figcaption {
  padding: 12px 16px 14px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
  text-align: center;
}

.wipe-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 10px;
  background: #fffefa;
}

.wipe-tabs button,
.state-controls button {
  min-height: 44px;
  padding: 8px 12px;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  border-radius: 12px;
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.wipe-tabs button[aria-pressed="true"],
.state-controls button[aria-pressed="true"] {
  color: #fff;
  background: var(--brand-dark);
}

.wipe-stage {
  --market-reveal: 50%;
  position: relative;
  min-height: 440px;
  overflow: hidden;
}

.wipe-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 34px;
}

.personal-panel {
  align-items: flex-end;
  background: #962d43;
}

.market-panel {
  align-items: flex-start;
  background: #126c55;
  clip-path: inset(0 calc(100% - var(--market-reveal)) 0 0);
}

.frame-kicker,
.frame-sub,
.frame-foot {
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.frame-kicker,
.frame-sub,
.frame-foot {
  color: rgb(255 255 255 / 84%);
}

.frame-result {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  font-family: var(--display);
  font-size: 2.4rem;
  letter-spacing: -0.035em;
  line-height: 1;
}

.solid-triangle {
  width: 0;
  height: 0;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}

.solid-triangle.up {
  border-bottom: 13px solid currentColor;
}

.solid-triangle.down {
  border-top: 13px solid currentColor;
}

.frame-money {
  margin-top: 7px;
  font-size: 1.2rem;
  font-weight: 850;
}

.frame-sub {
  margin-top: 8px;
}

.frame-chart {
  width: 100%;
  height: 150px;
  margin-top: 32px;
}

.frame-chart path {
  fill: none;
  stroke: rgb(255 255 255 / 90%);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.frame-chart circle {
  fill: #126c55;
  stroke: #fff;
  stroke-width: 4;
}

.frame-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 22px;
  width: 100%;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgb(255 255 255 / 25%);
}

.frame-price span {
  color: rgb(255 255 255 / 88%);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.frame-price strong {
  font-size: 1.12rem;
}

.personal-instrument {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 230px;
  margin-top: 12px;
}

.instrument-range,
.instrument-result {
  position: absolute;
  left: 50%;
  width: 6px;
  border-radius: 999px;
  transform: translateX(-50%);
}

.instrument-range {
  top: 12%;
  bottom: 10%;
  background: rgb(255 255 255 / 65%);
}

.instrument-result {
  top: 50%;
  bottom: 18%;
  width: 8px;
  background: #fff;
}

.instrument-zero {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgb(255 255 255 / 88%);
}

.instrument-now {
  position: absolute;
  top: 80%;
  left: 50%;
  width: 25px;
  height: 25px;
  background: #962d43;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgb(0 0 0 / 25%);
  transform: translate(-50%, -50%);
}

.instrument-ahead,
.instrument-behind,
.instrument-money {
  position: absolute;
  right: 0;
  color: rgb(255 255 255 / 74%);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.instrument-ahead {
  top: 10%;
}

.instrument-behind {
  bottom: 8%;
}

.instrument-money {
  top: 50%;
  padding-left: 8px;
  background: #962d43;
  transform: translateY(-50%);
}

.wipe-divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--market-reveal);
  width: 2px;
  background: rgb(255 255 255 / 92%);
  box-shadow: 0 0 10px rgb(0 0 0 / 28%);
  transform: translateX(-1px);
  pointer-events: none;
}

.wipe-divider i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid rgb(0 0 0 / 14%);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgb(0 0 0 / 25%);
  transform: translate(-50%, -50%);
}

.wipe-divider i::after {
  position: absolute;
  top: 8px;
  left: 15px;
  width: 4px;
  height: 18px;
  background: var(--neutral);
  border-radius: 999px;
  content: "";
}

.wipe-control {
  display: block;
  padding: 18px 22px 20px;
  color: var(--ink);
  background: #fffefa;
}

.wipe-control span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
}

.wipe-control input {
  width: 100%;
  min-height: 28px;
  accent-color: var(--brand);
}

.reverse-proof {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  padding-block: 42px;
  border-bottom: 1px solid var(--line);
}

.reverse-proof p {
  margin: 0;
  color: var(--ink-soft);
}

.reverse-proof p strong {
  color: var(--ink);
}

.reverse-values {
  display: flex;
  gap: 8px;
}

.reverse-values > span {
  min-width: 180px;
  padding: 13px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.reverse-values b {
  float: right;
  font-size: 0.94rem;
  letter-spacing: 0;
}

.reverse-values i {
  font-style: normal;
}

.positive {
  color: var(--positive) !important;
}

.negative {
  color: var(--negative) !important;
}

.portfolio-story .section-heading {
  margin-inline: auto;
  text-align: center;
}

.portfolio-story .section-heading p:not(.eyebrow) {
  margin-inline: auto;
}

.portfolio-state-demo {
  display: grid;
  grid-template-columns: minmax(310px, 0.65fr) minmax(350px, 0.8fr);
  justify-content: center;
  gap: 44px;
  max-width: 940px;
  margin-inline: auto;
}

.state-controls {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: min(100%, 520px);
  margin: 0 auto -18px;
  padding: 6px;
  background: var(--surface-soft);
  border-radius: 16px;
}

.state-shot {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.state-shot img {
  border-radius: 23px 23px 0 0;
}

.state-shot figcaption {
  padding: 12px 10px 13px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
  text-align: center;
}

.baseline-key {
  position: relative;
  align-self: center;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  align-items: center;
  min-height: 550px;
  overflow: hidden;
  padding: 40px 28px;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 26px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
}

.baseline-key::before {
  position: absolute;
  z-index: 0;
  top: 20%;
  bottom: 18%;
  left: 50%;
  width: 7px;
  background: linear-gradient(to bottom, var(--ink-soft) 0 23%, var(--positive) 23% 50%, var(--ink-soft) 50% 100%);
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
}

.baseline-key::after {
  position: absolute;
  z-index: 2;
  top: 34%;
  left: 50%;
  width: 27px;
  height: 27px;
  background: var(--surface);
  border: 6px solid var(--positive);
  border-radius: 50%;
  box-shadow: 0 3px 9px rgb(17 24 22 / 22%);
  content: "";
  transform: translate(-50%, -50%);
}

.baseline-key .ahead {
  position: relative;
  z-index: 3;
  align-self: end;
  margin-bottom: 70px;
  color: var(--positive);
}

.baseline-key .behind {
  position: relative;
  z-index: 3;
  align-self: start;
  margin-top: 70px;
  color: var(--negative);
}

.baseline-key .baseline {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: var(--brand-mid);
}

.baseline-key .baseline i {
  height: 2px;
  background: var(--brand);
}

.ticker-section {
  overflow: hidden;
  padding-block: clamp(86px, 11vw, 145px);
  color: #fff;
  background: var(--brand-dark);
}

.ticker-heading {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 56px;
}

.ticker-heading h2 {
  margin: 0;
}

.ticker-contrast {
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 18px;
}

.ticker-contrast p {
  margin: 0;
  padding: 15px 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.86rem;
}

.ticker-contrast p + p {
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.ticker-contrast .positive {
  color: #50e0b0 !important;
}

.ticker-contrast .negative {
  color: #ff8ba0 !important;
}

.personal-ticker {
  overflow: hidden;
  color: #fff;
  background: #070a09;
  border-block: 1px solid rgb(255 255 255 / 15%);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}

.personal-ticker:hover .ticker-track,
.personal-ticker:focus-within .ticker-track {
  animation-play-state: paused;
}

.ticker-group {
  display: flex;
  flex: none;
}

.ticker-cell {
  display: grid;
  grid-template-columns: 44px auto;
  grid-template-rows: auto auto auto;
  align-items: center;
  column-gap: 15px;
  min-width: 245px;
  min-height: 190px;
  padding: 28px 30px;
  border-right: 1px solid rgb(255 255 255 / 16%);
}

.ticker-cell img,
.ticker-cell > i {
  grid-row: 1 / 4;
  width: 42px;
  height: auto;
}

.ticker-cell > i {
  position: relative;
  height: 42px;
}

.ticker-cell > i::after {
  position: absolute;
  top: 50%;
  right: 6px;
  left: 6px;
  height: 4px;
  background: var(--neutral);
  border-radius: 999px;
  content: "";
}

.ticker-cell strong {
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.ticker-cell span,
.ticker-cell b {
  font-size: 1.02rem;
  font-variant-numeric: tabular-nums;
}

.ticker-cell b {
  font-size: 0.85rem;
}

.ticker-cell.positive span,
.ticker-cell.positive b {
  color: #28d9a3;
}

.ticker-cell.negative span,
.ticker-cell.negative b {
  color: #f05b74;
}

.ticker-cell.neutral span,
.ticker-cell.neutral b {
  color: #b4bcba;
}

.ticker-note {
  margin-top: 20px;
  color: rgb(255 255 255 / 58%);
  font-size: 0.76rem;
}

.ticker-proof {
  margin-block: 0;
  overflow: hidden;
  background: #070a09;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgb(0 0 0 / 24%);
}

@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

.screenshot-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
  gap: 24px;
}

.screenshot-row figure {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 22px 50px rgb(17 24 22 / 13%);
}

.screenshot-row img {
  border-radius: 23px 23px 0 0;
}

.screenshot-row .ticker-crop-card {
  grid-column: 1 / -1;
}

.screenshot-row figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  min-height: 65px;
  padding: 12px 13px;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.screenshot-row figcaption span {
  color: var(--ink-soft);
  font-size: 0.66rem;
  text-align: right;
}

.capabilities {
  padding-top: 0;
}

.capabilities-primary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.capabilities-primary > div {
  padding: 30px 24px;
}

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

.capabilities-primary span {
  color: var(--brand-mid);
  font-size: 0.7rem;
  font-weight: 900;
}

.capabilities-primary h3 {
  margin: 22px 0 9px;
}

.capabilities-primary p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.secondary-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.secondary-capabilities li {
  padding: 9px 14px;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 750;
}

.privacy-band {
  padding-block: clamp(80px, 10vw, 130px);
  color: #fff;
  background: #172320;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(50px, 10vw, 140px);
}

.privacy-grid h2 {
  max-width: 650px;
}

.privacy-grid p:not(.eyebrow) {
  color: rgb(255 255 255 / 65%);
}

.privacy-grid a {
  color: #fff;
  font-weight: 750;
}

.privacy-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.privacy-grid li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  font-weight: 700;
}

.privacy-grid li span {
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 900;
}

.access-section {
  display: grid;
  grid-template-columns: 1fr minmax(330px, 0.62fr);
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
}

.access-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--ink-soft);
}

.access-copy p strong {
  color: var(--ink);
}

.store-price {
  font-size: 0.8rem;
}

.access-card {
  padding: 38px;
  color: #fff;
  background: var(--brand-mid);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.access-card > span {
  display: block;
  color: rgb(255 255 255 / 88%);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.access-card strong {
  display: block;
  margin: 24px 0 12px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.access-card p {
  margin-bottom: 3px;
  font-weight: 750;
}

.access-card i {
  color: rgb(255 255 255 / 84%);
  font-size: 0.78rem;
  font-style: normal;
}

.boundary {
  padding-top: 0;
  text-align: center;
}

.boundary h2 {
  margin-bottom: 16px;
}

.boundary > p:last-child {
  max-width: 900px;
  margin: 0 auto;
  color: var(--ink-soft);
}

.closing {
  overflow: hidden;
  color: #fff;
  background: var(--brand-dark);
}

.closing-inner {
  position: relative;
  padding-block: clamp(90px, 12vw, 160px);
}

.closing-inner > img {
  position: absolute;
  top: 50%;
  right: 3%;
  width: clamp(170px, 25vw, 300px);
  height: auto;
  border-radius: 22%;
  box-shadow: 0 26px 80px rgb(0 0 0 / 35%);
  transform: translateY(-50%) rotate(4deg);
}

.closing h2 {
  max-width: 780px;
  margin-bottom: 20px;
}

.closing p:not(.eyebrow) {
  margin-bottom: 28px;
  color: rgb(255 255 255 / 67%);
}

.closing h2 em {
  color: var(--yellow);
}

.light-button {
  color: var(--brand-dark);
  background: #fff;
  border-color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding-inline: 10px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 750;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  width: min(calc(100% - 40px), 1280px);
  margin-inline: auto;
  padding-block: 48px 38px;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.footer-brand p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.site-footer small {
  grid-column: 1 / -1;
  padding-top: 20px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
}

.site-footer small a {
  color: inherit;
}

/* Content pages */

.page-hero {
  padding-block: clamp(80px, 10vw, 130px) clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 930px;
  font-size: clamp(3.8rem, 8vw, 7.2rem);
}

.page-hero > p:last-child {
  max-width: 710px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.prose {
  width: min(calc(100% - 40px), 820px);
  margin: 0 auto;
  padding-block: clamp(60px, 9vw, 110px);
}

.prose.wide {
  width: min(calc(100% - 40px), var(--max));
}

.prose h2 {
  margin-top: 70px;
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
}

.prose h3 {
  margin-top: 34px;
}

.prose p,
.prose li {
  color: #303b38;
}

.prose li + li {
  margin-top: 9px;
}

.stamp {
  color: var(--ink-soft) !important;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.callout {
  margin-block: 34px;
  padding: 24px 26px;
  background: rgb(61 136 123 / 10%);
  border-left: 5px solid var(--brand);
  border-radius: 0 16px 16px 0;
}

.callout p:last-child,
.callout:last-child {
  margin-bottom: 0;
}

.page-nav-current {
  text-decoration: underline !important;
}

.story-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding-block: 32px;
  border-top: 1px solid var(--line);
}

.story-step:last-child {
  border-bottom: 1px solid var(--line);
}

.story-step > span {
  color: var(--brand-mid);
  font-family: var(--display);
  font-size: 2.25rem;
  font-weight: 900;
}

.story-step h2 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.story-step p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.definition-grid,
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-block: 38px;
}

.definition-grid {
  padding: 0;
  list-style: none;
}

.definition-grid > li,
.support-grid a {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.definition-grid strong,
.support-grid a {
  display: block;
  color: var(--ink);
}

.definition-grid p,
.support-grid span {
  display: block;
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.support-grid a {
  font-weight: 800;
  text-decoration: none;
}

.support-grid a:hover {
  border-color: var(--brand);
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  list-style: none;
  padding: 20px 44px 20px 0;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 17px;
  right: 4px;
  color: var(--brand-mid);
  font-size: 1.25rem;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin-top: 0;
  padding: 0 30px 20px 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 25px;
  margin-top: 64px;
  padding: 30px;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 22px;
}

.contact-card h2 {
  margin: 0 0 8px;
  font-size: 2.2rem;
}

.contact-card p {
  margin: 0;
  color: rgb(255 255 255 / 65%);
  font-size: 0.86rem;
}

.contact-card a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  color: var(--brand-dark);
  background: #fff;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: none;
}

.formula {
  margin-block: 36px;
  padding: 28px;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: clamp(0.9rem, 2.2vw, 1.2rem);
  text-align: center;
}

.how-screenshot {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(36px, 8vw, 90px);
  margin-block: 70px;
}

.how-screenshot figure {
  margin: 0;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.how-screenshot figure img {
  border-radius: 23px;
}

.how-screenshot h2 {
  margin-top: 0;
}

.buy-more-demo {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
  margin-block: 46px;
}

.buy-more-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.buy-more-card > span {
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.buy-more-card strong {
  display: block;
  margin: 12px 0 6px;
  font-family: var(--display);
  font-size: 2.4rem;
}

.buy-more-card p {
  margin: 0;
  font-size: 0.8rem;
}

.buy-more-arrow {
  align-self: center;
  color: var(--brand-mid);
  font-size: 1.8rem;
}

.buy-more-action {
  display: block;
  min-height: 48px;
  margin: 0 auto;
  padding: 0 22px;
  color: #fff;
  background: var(--brand-dark);
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
}

.buy-more-lesson {
  margin-top: 18px;
  text-align: center;
}

.buy-more-lesson strong {
  color: var(--brand-mid);
}

.not-found {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 82px);
  padding: 40px 20px;
  text-align: center;
}

.not-found h1 {
  margin-bottom: 18px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr minmax(330px, 0.9fr);
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 8vw, 5.7rem);
  }

  .market-you-grid {
    grid-template-columns: 1fr;
  }

  .market-you-copy {
    max-width: 750px;
  }

  .holding-gallery {
    max-width: 720px;
  }

  .capabilities-primary {
    grid-template-columns: 1fr 1fr;
  }

  .capabilities-primary > div:nth-child(3) {
    border-left: 0;
  }

  .capabilities-primary > div:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .section-shell,
  .site-header,
  .site-footer,
  .prose,
  .prose.wide {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    min-height: 70px;
  }

  .wordmark {
    width: 52px;
    height: 36px;
    line-height: 36px;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header nav {
    position: absolute;
    top: 62px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .site-header nav.is-open {
    display: grid;
  }

  .site-header nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding-inline: 14px;
  }

  .site-header .nav-cta {
    margin-top: 4px;
    color: #fff;
  }

  h1 {
    font-size: clamp(3.5rem, 16vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.65rem, 12vw, 4.25rem);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 52px 74px;
  }

  .hero-proof {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .thesis-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
  }

  .thesis-shift {
    transform: rotate(90deg);
    transform-origin: center;
  }

  .thesis-after {
    text-align: left;
  }

  .split-heading,
  .ticker-heading,
  .privacy-grid,
  .access-section,
  .site-footer,
  .how-screenshot {
    grid-template-columns: 1fr;
  }

  .entry-chart {
    min-height: 340px;
    padding: 20px 14px;
  }

  .entry-chart svg {
    height: 240px;
  }

  .purchase-label {
    top: 69px;
    padding: 6px 8px;
    font-size: 0.54rem;
  }

  .history-caption,
  .personal-caption {
    bottom: 16px;
  }

  .history-caption {
    left: 14px;
  }

  .reverse-proof {
    grid-template-columns: 1fr;
  }

  .reverse-values {
    flex-direction: column;
  }

  .portfolio-state-demo {
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 430px);
  }

  .baseline-key {
    display: none;
  }

  .ticker-heading {
    gap: 35px;
  }

  .ticker-cell {
    grid-template-columns: 18px auto auto auto;
    grid-template-rows: 1fr;
    column-gap: 9px;
    min-width: 260px;
    min-height: 72px;
    padding: 18px 16px;
  }

  .ticker-cell img {
    display: none;
  }

  .ticker-cell::before {
    width: 0;
    height: 0;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    content: "";
  }

  .ticker-cell.positive::before {
    border-bottom: 10px solid var(--positive);
  }

  .ticker-cell.negative::before {
    border-top: 10px solid var(--negative);
  }

  .ticker-cell.neutral::before {
    width: 12px;
    height: 3px;
    background: var(--neutral);
    border: 0;
    border-radius: 99px;
  }

  .ticker-cell > i {
    display: none;
  }

  .ticker-cell strong {
    font-size: 0.9rem;
  }

  .ticker-cell span,
  .ticker-cell b {
    font-size: 0.78rem;
  }

  .screenshot-row {
    display: flex;
    overflow-x: auto;
    gap: 18px;
    padding: 8px 4px 30px;
    scroll-snap-type: x mandatory;
  }

  .screenshot-row figure {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }

  .capabilities-primary {
    grid-template-columns: 1fr;
  }

  .capabilities-primary > div + div,
  .capabilities-primary > div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .closing-inner > img {
    position: static;
    width: 120px;
    margin-bottom: 35px;
    transform: none;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .site-footer small {
    grid-column: auto;
  }

  .definition-grid,
  .support-grid,
  .buy-more-demo,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .story-step {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .buy-more-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .contact-card a {
    justify-self: start;
  }
}

@media (max-width: 430px) {
  .hero-actions,
  .closing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-link {
    justify-content: center;
    width: 100%;
  }

  .contradiction-summary {
    grid-template-columns: 1fr;
  }

  .contradiction-summary div + div {
    border-top: 1px solid rgb(255 255 255 / 18%);
    border-left: 0;
  }

  .wipe-panel {
    padding: 24px 20px;
  }

  .wipe-stage {
    min-height: 400px;
  }

  .frame-result {
    font-size: 2rem;
  }

  .entry-chart-label {
    font-size: 0.56rem;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .ticker-track {
    width: auto;
    overflow-x: auto;
    animation: none;
  }

  .ticker-group[aria-hidden="true"] {
    display: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --ink-soft: #303835;
    --line: #8c928f;
  }

  .eyebrow.light,
  .market-you-copy > p:not(.eyebrow):not(.lesson),
  .privacy-grid p:not(.eyebrow),
  .closing p:not(.eyebrow) {
    color: #fff;
  }
}

@media print {
  .site-header,
  .site-footer,
  .personal-ticker,
  .wipe-control,
  .menu-button {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .page-hero,
  .prose {
    width: 100%;
  }
}
