:root {
  --paper: oklch(1 0 0);
  --ink: oklch(0.145 0 0);
  --accent: oklch(0.841 0.238 128.85);
  --accent-foreground: oklch(0.405 0.101 131.063);
  --ink-fade: color-mix(in oklch, var(--ink) 62%, transparent);
  --ink-quiet: color-mix(in oklch, var(--ink) 42%, transparent);
  --paper-line: color-mix(in oklch, var(--ink) 16%, transparent);
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}
img {
  display: block;
  max-width: 100%;
}
.page-width {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}
.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: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
}
.skip-link:focus {
  top: 16px;
}

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid var(--paper-line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.brand img {
  width: 28px;
  height: 28px;
  filter: grayscale(1) brightness(0.24);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 29px;
  color: var(--ink-fade);
  font-size: 13px;
  font-weight: 700;
}
.nav-links a:not(.button):hover,
.footer-links a:hover {
  color: var(--accent);
}
.nav-sign-in {
  color: var(--ink);
}
.menu-cta {
  display: none;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-accent {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-foreground);
}
.button-accent:hover {
  background: var(--ink);
  color: var(--paper);
}
.button-small {
  min-height: 38px;
  padding: 0 15px;
  font-size: 12px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
}
.text-link span {
  color: var(--accent);
  font-size: 18px;
  line-height: 0;
}
.text-link:hover {
  color: var(--accent);
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.hero {
  padding: 164px 0 76px;
  border-bottom: 1px solid var(--paper-line);
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(560px, 1.2fr);
  gap: clamp(64px, 8vw, 140px);
  align-items: center;
}
.hero-copy {
  padding-bottom: 15px;
}
h1 {
  max-width: 560px;
  margin-bottom: 27px;
  font-size: clamp(54px, 6.5vw, 91px);
  letter-spacing: -0.07em;
  line-height: 0.93;
}
h1 em {
  color: var(--accent);
  font-style: normal;
}
.hero-lede {
  max-width: 415px;
  margin-bottom: 31px;
  color: var(--ink-fade);
  font-size: 17px;
  line-height: 1.62;
}
.signup-form {
  display: flex;
  max-width: 432px;
}
.signup-form input {
  flex: 1;
  min-width: 0;
  height: 52px;
  padding: 0 15px;
  border: 1px solid var(--ink);
  border-right: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  outline: none;
}
.signup-form input::placeholder {
  color: var(--ink-quiet);
}
.signup-form input:focus {
  box-shadow: inset 0 0 0 1px var(--ink);
}
.form-note {
  margin: 12px 0 0;
  color: var(--ink-quiet);
  font-size: 11px;
}

.hero-product {
  min-width: 0;
}
.product-caption,
.product-footnote {
  display: flex;
  justify-content: space-between;
  color: var(--ink-quiet);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-caption {
  margin-bottom: 11px;
}
.product-footnote {
  justify-content: flex-start;
  margin-top: 12px;
  letter-spacing: 0;
  text-transform: none;
}
.dark-ui {
  overflow: hidden;
  display: flex;
  min-height: 422px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.ui-sidebar {
  display: flex;
  flex: 0 0 132px;
  flex-direction: column;
  gap: 5px;
  padding: 20px 13px;
  border-right: 1px solid rgba(247, 244, 238, 0.16);
  color: rgba(247, 244, 238, 0.46);
  font-size: 10px;
}
.ui-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  margin-bottom: 29px;
  border: 1px solid var(--paper);
  color: var(--paper);
  font-size: 8px;
  font-weight: 800;
}
.ui-sidebar-label {
  margin-bottom: 7px;
  color: rgba(247, 244, 238, 0.3);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ui-sidebar-item {
  padding: 6px 7px;
}
.ui-sidebar-item-active {
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
}
.ui-sidebar-spacer {
  flex: 1;
}
.ui-main {
  flex: 1;
  min-width: 0;
  padding: 20px 24px 22px;
}
.ui-topline,
.ui-heading-row,
.ui-section-title,
.ui-schedule-row,
.close-up-top,
.close-up-toolbar,
.close-up-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ui-topline {
  padding-bottom: 20px;
  color: rgba(247, 244, 238, 0.46);
  font-size: 10px;
}
.ui-user {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(247, 244, 238, 0.4);
  font-size: 8px;
}
.ui-heading-row {
  align-items: flex-end;
  margin-bottom: 22px;
}
.ui-heading-row div {
  display: grid;
  gap: 3px;
}
.ui-muted {
  color: rgba(247, 244, 238, 0.42);
  font-size: 9px;
}
.ui-heading-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 2.6vw, 30px);
  letter-spacing: -0.06em;
}
.ui-action {
  padding: 9px 10px;
  background: var(--accent);
  color: var(--accent-foreground);
  font-size: 9px;
  font-weight: 800;
}
.ui-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 27px;
}
.ui-stat-row > div {
  min-height: 94px;
  padding: 11px;
  border: 1px solid rgba(247, 244, 238, 0.15);
}
.ui-stat-row span,
.ui-stat-row small {
  display: block;
  color: rgba(247, 244, 238, 0.45);
  font-size: 8px;
}
.ui-stat-row strong {
  display: block;
  margin: 11px 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 0.9;
}
.ui-stat-row .ui-stat-accent {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-foreground);
}
.ui-stat-accent span,
.ui-stat-accent small {
  color: color-mix(in oklch, var(--accent-foreground) 72%, transparent);
}
.ui-section-title {
  margin-bottom: 10px;
  font-size: 10px;
}
.ui-section-title span {
  color: var(--accent);
  font-size: 9px;
}
.ui-schedule {
  display: grid;
  gap: 5px;
}
.ui-schedule-row {
  min-height: 53px;
  gap: 11px;
  padding: 6px 9px 6px 7px;
  border: 1px solid rgba(247, 244, 238, 0.14);
}
.ui-schedule-row > span:nth-child(2) {
  display: grid;
  flex: 1;
  gap: 3px;
  min-width: 0;
}
.ui-schedule-row strong {
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ui-schedule-row small {
  color: rgba(247, 244, 238, 0.44);
  font-size: 8px;
}
.ui-date {
  display: flex;
  flex: 0 0 35px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 39px;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.ui-date b {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1;
}
.ui-date small {
  color: var(--accent);
  font-size: 7px;
}
.ui-pill {
  color: rgba(247, 244, 238, 0.46);
  font-size: 8px;
  font-weight: 400;
  white-space: nowrap;
}

.social-proof {
  padding-top: 28px;
  padding-bottom: 132px;
}
.social-proof p {
  margin-bottom: 23px;
  color: var(--ink-quiet);
  font-size: 11px;
}
.logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-top: 21px;
  border-top: 1px solid var(--paper-line);
  color: var(--ink-fade);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.logo-row span:nth-child(2) {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}
.logo-row span:nth-child(3) {
  letter-spacing: 0.12em;
}
.logo-row span:nth-child(4) {
  font-size: 14px;
}
.logo-row span:nth-child(5) {
  font-size: 17px;
}

.value-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(560px, 1.3fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
  padding-bottom: 155px;
}
.value-copy {
  align-self: start;
  padding-top: 48px;
}
.value-copy h2 {
  max-width: 410px;
  margin-bottom: 24px;
  font-size: clamp(40px, 5vw, 66px);
  letter-spacing: -0.065em;
  line-height: 0.96;
}
.value-copy > p:not(.eyebrow) {
  max-width: 360px;
  margin-bottom: 27px;
  color: var(--ink-fade);
  font-size: 15px;
  line-height: 1.68;
}
.close-up {
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.close-up-top {
  padding: 17px 20px;
  border-bottom: 1px solid rgba(247, 244, 238, 0.16);
  font-size: 13px;
  font-weight: 800;
}
.close-up-status {
  padding: 4px 7px;
  background: var(--accent);
  color: var(--ink);
  font-size: 8px;
  text-transform: uppercase;
}
.close-up-toolbar {
  gap: 24px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(247, 244, 238, 0.16);
  color: rgba(247, 244, 238, 0.46);
  font-size: 10px;
}
.close-up-toolbar strong {
  color: var(--paper);
}
.toolbar-spacer {
  flex: 1;
}
.close-up-filter {
  padding: 7px 8px;
  border: 1px solid rgba(247, 244, 238, 0.24);
  color: var(--paper);
}
.standings-table {
  padding: 0 20px;
}
.standing-row {
  display: grid;
  grid-template-columns: 38px minmax(150px, 1fr) 60px 50px 58px 34px;
  align-items: center;
  min-height: 62px;
  gap: 10px;
  border-bottom: 1px solid rgba(247, 244, 238, 0.12);
  color: rgba(247, 244, 238, 0.54);
  font-size: 10px;
}
.standing-row strong {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--paper);
  font-size: 11px;
}
.standing-row b {
  color: var(--accent);
  font-size: 13px;
}
.standing-header {
  min-height: 38px;
  color: rgba(247, 244, 238, 0.34);
  font-size: 8px;
  text-transform: uppercase;
}
.standing-header span:nth-child(n + 3) {
  text-align: right;
}
.standing-row > span:nth-child(n + 3),
.standing-row > b {
  text-align: right;
}
.standing-highlight {
  margin: 0 -10px;
  padding: 0 10px;
  border-bottom-color: var(--accent);
  background: rgba(255, 90, 54, 0.1);
}
.tiny-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 7px;
  font-style: normal;
}
.close-up-footer {
  padding: 15px 20px;
  color: rgba(247, 244, 238, 0.38);
  font-size: 9px;
}
.close-up-footer span:last-child {
  color: var(--accent);
}

.evidence-section {
  padding-bottom: 155px;
}
.evidence-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 58px;
}
.evidence-intro h2 {
  max-width: 590px;
  margin: 0;
  font-size: clamp(38px, 5vw, 67px);
  letter-spacing: -0.07em;
  line-height: 0.96;
}
.evidence-grid {
  display: grid;
  grid-template-columns: 1fr 0.93fr 1fr;
  align-items: start;
  gap: 15px;
}
.evidence-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 27px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--paper-line);
}
.evidence-card-tall {
  min-height: 430px;
}
.evidence-card-short {
  min-height: 346px;
  margin-top: 48px;
}
.evidence-card-mid {
  min-height: 385px;
  margin-top: 21px;
}
.evidence-number {
  margin-bottom: 56px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.evidence-card h3 {
  margin-bottom: 14px;
  font-size: 30px;
  letter-spacing: -0.055em;
  line-height: 1;
}
.evidence-card p {
  max-width: 310px;
  margin-bottom: 25px;
  color: var(--ink-fade);
  font-size: 14px;
  line-height: 1.65;
}
.evidence-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--paper-line);
  color: var(--ink-fade);
  font-size: 11px;
}
.evidence-line b {
  color: var(--accent);
  font-size: 10px;
}
blockquote {
  margin: auto 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
cite {
  color: var(--ink-quiet);
  font-size: 10px;
  font-style: normal;
}
.evidence-meter {
  height: 6px;
  margin-top: auto;
  background: rgba(23, 25, 27, 0.12);
}
.evidence-meter span {
  display: block;
  height: 100%;
  background: var(--accent);
}
.meter-label {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--ink-fade);
  font-size: 10px;
}
.meter-label b {
  color: var(--accent);
}

.closing-section {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 100px;
  align-items: end;
  padding-top: 100px;
  padding-bottom: 142px;
  border-top: 1px solid var(--paper-line);
}
.closing-section h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(45px, 6vw, 82px);
  letter-spacing: -0.075em;
  line-height: 0.92;
}
.closing-section > div:last-child {
  max-width: 330px;
}
.closing-section > div:last-child p {
  margin-bottom: 26px;
  color: var(--ink-fade);
  font-size: 15px;
  line-height: 1.66;
}

.site-footer {
  padding: 30px 0 20px;
  border-top: 1px solid var(--paper-line);
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 27px;
}
.brand-footer {
  font-size: 16px;
}
.brand-footer img {
  width: 26px;
  height: 26px;
}
.footer-inner p {
  margin: 0;
  color: var(--ink-quiet);
  font-size: 11px;
}
.footer-links {
  display: flex;
  gap: 21px;
  margin-left: auto;
  color: var(--ink-fade);
  font-size: 11px;
  font-weight: 700;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid var(--paper-line);
  color: var(--ink-quiet);
  font-size: 10px;
}

.legal-site-header {
  position: static;
  background: var(--paper);
}
.legal-page {
  padding: 86px 0 120px;
}
.legal-shell {
  width: min(780px, calc(100% - 48px));
  margin: 0 auto;
}
.legal-intro {
  padding: 66px 0 48px;
  border-bottom: 1px solid var(--paper-line);
}
.legal-intro h1 {
  max-width: 680px;
  margin: 0 0 18px;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 0.96;
}
.legal-intro p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-fade);
  font-size: 16px;
}
.legal-intro .legal-updated {
  margin-top: 20px;
  color: var(--ink-quiet);
  font-size: 12px;
  font-weight: 700;
}
.legal-content {
  padding-top: 42px;
}
.legal-content section {
  margin-bottom: 38px;
}
.legal-content h2 {
  margin-bottom: 12px;
  font-size: 25px;
  letter-spacing: -0.04em;
  line-height: 1.1;
}
.legal-content p,
.legal-content li {
  color: var(--ink-fade);
  font-size: 15px;
  line-height: 1.7;
}
.legal-content p {
  margin-bottom: 14px;
}
.legal-content p:last-child {
  margin-bottom: 0;
}
.legal-content ul {
  margin: 0;
  padding-left: 22px;
}
.legal-content li + li {
  margin-top: 8px;
}
.legal-content a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}
.legal-callout {
  margin-top: 40px;
  padding: 20px 22px;
  border-left: 3px solid var(--accent);
  background: rgba(23, 25, 27, 0.04);
}
.legal-callout p {
  margin: 0;
}

@media (max-width: 1000px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .hero-copy {
    max-width: 650px;
  }
  .hero-product {
    max-width: 760px;
  }
  .value-section {
    grid-template-columns: 1fr;
    gap: 54px;
  }
  .value-copy {
    padding-top: 0;
  }
  .value-copy > p:not(.eyebrow) {
    max-width: 520px;
  }
  .closing-section {
    gap: 50px;
  }
}
@media (max-width: 720px) {
  .page-width {
    width: min(100% - 32px, 560px);
  }
  .site-nav {
    min-height: 74px;
  }
  .nav-links {
    display: none;
  }
  .menu-cta {
    display: block;
  }
  .hero {
    padding: 126px 0 50px;
  }
  h1 {
    font-size: clamp(53px, 15vw, 76px);
  }
  .signup-form {
    display: grid;
    gap: 8px;
  }
  .signup-form input {
    border-right: 1px solid var(--ink);
  }
  .dark-ui {
    min-height: 0;
  }
  .ui-sidebar {
    display: none;
  }
  .ui-main {
    padding: 16px 13px 16px;
  }
  .ui-stat-row {
    gap: 5px;
  }
  .ui-stat-row > div {
    min-height: 80px;
    padding: 8px;
  }
  .ui-stat-row strong {
    margin: 8px 0 4px;
    font-size: 21px;
  }
  .ui-stat-row span,
  .ui-stat-row small {
    font-size: 7px;
  }
  .ui-pill {
    display: none;
  }
  .social-proof {
    padding-bottom: 90px;
  }
  .logo-row {
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 17px 28px;
  }
  .logo-row span {
    flex: 0 0 auto;
  }
  .value-section,
  .evidence-section {
    padding-bottom: 95px;
  }
  .value-copy h2,
  .evidence-intro h2 {
    font-size: 48px;
  }
  .close-up-toolbar {
    gap: 11px;
    overflow-x: auto;
    justify-content: flex-start;
    white-space: nowrap;
  }
  .toolbar-spacer {
    display: none;
  }
  .standing-row {
    grid-template-columns: 27px minmax(122px, 1fr) 38px 34px 37px 24px;
    gap: 5px;
    font-size: 8px;
  }
  .standing-row strong {
    gap: 5px;
    font-size: 9px;
  }
  .standing-row > span:nth-child(3),
  .standing-row > span:nth-child(4),
  .standing-row > span:nth-child(5) {
    text-align: right;
  }
  .tiny-avatar {
    width: 20px;
    height: 20px;
    font-size: 6px;
  }
  .evidence-intro {
    display: block;
    margin-bottom: 32px;
  }
  .evidence-grid {
    display: block;
  }
  .evidence-card,
  .evidence-card-short,
  .evidence-card-mid {
    min-height: 0;
    margin: 0 0 14px;
    padding: 24px;
  }
  .evidence-card-tall {
    min-height: 350px;
  }
  .evidence-card-short {
    min-height: 290px;
  }
  .evidence-card-mid {
    min-height: 300px;
  }
  .evidence-number {
    margin-bottom: 42px;
  }
  .closing-section {
    display: block;
    padding-top: 72px;
    padding-bottom: 90px;
  }
  .closing-section h2 {
    margin-bottom: 35px;
    font-size: 53px;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }
  .footer-links {
    margin-left: 0;
    flex-wrap: wrap;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .legal-page {
    padding: 56px 0 80px;
  }
  .legal-shell {
    width: min(100% - 32px, 560px);
  }
  .legal-intro {
    padding: 42px 0 34px;
  }
  .legal-content {
    padding-top: 32px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}
