:root {
  color-scheme: dark;
  --ink: #f4f7fb;
  --muted: #8f9bad;
  --faint: #667389;
  --night: #06101d;
  --night-deep: #020710;
  --panel: #101f34;
  --line: rgba(145, 172, 210, 0.2);
  --line-strong: rgba(150, 184, 231, 0.38);
  --blue: #3284ff;
  --blue-bright: #5aa1ff;
  --violet: #9476ff;
  --frost: #a8e0ff;
  --danger: #ff6684;
  --page: min(1240px, calc(100vw - 96px));
  --pointer-x: 72%;
  --pointer-y: 35%;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--night-deep);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 70% 12%, rgba(45, 115, 225, 0.09), transparent 28rem),
    var(--night-deep);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
}

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

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

:focus-visible {
  outline: 3px solid rgba(90, 161, 255, 0.9);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 10px;
  color: #06101d;
  background: #fff;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: grid;
  width: var(--page);
  min-height: 88px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 27px;
  height: 27px;
  padding: 4px;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid rgba(150, 184, 231, 0.4);
  border-radius: 7px;
}

.brand-mark i {
  border-radius: 1.5px;
  background: rgba(178, 201, 231, 0.42);
}

.brand-mark i:nth-child(5) {
  background: var(--blue);
  box-shadow: 0 0 9px rgba(50, 132, 255, 0.7);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #aab4c2;
  font-size: 14px;
}

.site-nav a,
.footer-links a,
.text-link {
  transition: color 160ms ease;
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: #fff;
}

.header-status {
  justify-self: end;
  color: #7f8da1;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(54, 135, 255, 0.2), transparent 20rem),
    linear-gradient(150deg, #071422 0%, #040b14 55%, #02060d 100%);
}

.hero::after {
  position: absolute;
  right: -3vw;
  bottom: -32vh;
  color: rgba(88, 150, 241, 0.035);
  content: "9";
  font-size: min(68vw, 900px);
  font-weight: 780;
  letter-spacing: -0.12em;
  line-height: 0.8;
  pointer-events: none;
}

.hero-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.21;
  background-image:
    linear-gradient(rgba(125, 164, 217, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 164, 217, 0.12) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 75% 45%, #000 0%, transparent 67%);
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(71, 139, 236, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 7%;
  right: 0;
  width: 58vw;
  aspect-ratio: 1;
}

.hero-orbit-two {
  top: 23%;
  right: 2%;
  width: 34vw;
  aspect-ratio: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: var(--page);
  min-height: 100svh;
  margin: 0 auto;
  padding: 96px 0 36px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(42px, 8vw, 130px);
}

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

.eyebrow {
  margin: 0 0 24px;
  color: var(--blue-bright);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(76px, 9.6vw, 150px);
  font-weight: 730;
  letter-spacing: -0.075em;
  line-height: 0.77;
}

.hero h1 span {
  display: block;
}

.hero h1 .accent {
  color: var(--blue);
}

.hero-statement {
  margin: 48px 0 22px;
  color: #e8eef7;
  font-size: clamp(30px, 3.25vw, 50px);
  font-weight: 540;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.hero-summary {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 19px);
}

.hero-actions {
  display: flex;
  margin-top: 40px;
  align-items: center;
  gap: 30px;
}

.store-button {
  display: inline-flex;
  min-width: 188px;
  min-height: 58px;
  padding: 8px 19px 8px 15px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  font-size: 21px;
  font-weight: 610;
  letter-spacing: -0.035em;
  line-height: 1;
  cursor: default;
  backdrop-filter: blur(18px);
}

.store-button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.store-button span span,
.store-button small {
  display: block;
}

.store-button small {
  margin-bottom: 2px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.015em;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #9cabbf;
  font-size: 14px;
  font-weight: 600;
}

.text-link span {
  color: var(--blue-bright);
  font-size: 20px;
}

.device-stage {
  position: relative;
  width: min(100%, 330px);
  margin: 0 auto;
}

.device-shell {
  position: relative;
  overflow: hidden;
  border: 7px solid #111a26;
  border-radius: 58px;
  background: #07111e;
  box-shadow:
    0 70px 120px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(177, 204, 239, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: rotate(2deg);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.device-stage:hover .device-shell {
  transform: rotate(0deg) translateY(-5px);
}

.device-shell img {
  width: 100%;
  height: auto;
}

.device-glow {
  position: absolute;
  inset: 12% -24% 10%;
  border-radius: 50%;
  background: rgba(39, 122, 255, 0.25);
  filter: blur(80px);
}

.device-stage figcaption {
  margin-top: 24px;
  color: #68778b;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: #66758a;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(var(--blue), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

.section {
  position: relative;
  width: var(--page);
  margin: 0 auto;
}

.daily-section {
  display: grid;
  min-height: 820px;
  padding: 150px 0 130px;
  grid-template-columns: 90px minmax(300px, 0.82fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: clamp(36px, 6vw, 100px);
}

.daily-section::before {
  position: absolute;
  top: 0;
  right: calc((100vw - 100%) / -2);
  left: 42%;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
  content: "";
}

.section-index {
  align-self: start;
  padding-top: 9px;
  color: #34445a;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.15em;
}

.section-copy h2,
.scoring-lead h2,
.focus-copy h2,
.themes-heading h2,
.product-statement h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(50px, 6.2vw, 92px);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.section-copy > p:last-child,
.scoring-lead > p:last-child,
.focus-copy > p:last-child {
  max-width: 510px;
  margin: 38px 0 0;
  color: var(--muted);
}

.daily-visual {
  padding: 30px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.daily-date {
  display: flex;
  margin-bottom: 40px;
  align-items: baseline;
  justify-content: space-between;
  color: var(--faint);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.daily-date strong {
  color: var(--blue-bright);
  font-size: 12px;
}

.ranking-line {
  display: grid;
  min-height: 83px;
  grid-template-columns: 50px 1fr auto 78px;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}

.ranking-line .rank {
  color: #5f7086;
  font-size: 13px;
}

.ranking-line .player {
  font-size: 17px;
}

.ranking-line strong {
  font-size: 21px;
  font-weight: 570;
}

.ranking-line time {
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.ranking-line-first strong {
  color: var(--blue-bright);
}

.ranking-line.you {
  margin-top: 12px;
  padding: 0 16px;
  border: 1px solid rgba(50, 132, 255, 0.56);
  border-radius: 14px;
  background: rgba(50, 132, 255, 0.07);
}

.ranking-line.you strong {
  color: var(--blue-bright);
  font-size: 14px;
}

.visual-note {
  margin: 22px 0 0;
  color: #56667b;
  font-size: 11px;
}

.scoring-section {
  display: grid;
  padding: 150px 0;
  grid-template-columns: minmax(320px, 0.82fr) minmax(470px, 1.18fr);
  column-gap: clamp(60px, 10vw, 160px);
  row-gap: 80px;
}

.scoring-section::before {
  position: absolute;
  z-index: -1;
  inset: 4% calc((100vw - 100%) / -2) 3% 34%;
  border-radius: 50%;
  background: rgba(26, 83, 164, 0.1);
  content: "";
  filter: blur(80px);
}

.score-ledger {
  border-top: 1px solid var(--line-strong);
}

.ledger-row {
  display: grid;
  min-height: 92px;
  padding: 16px 0;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3px 26px;
  border-bottom: 1px solid var(--line);
}

.ledger-row span {
  font-size: 17px;
  font-weight: 520;
}

.ledger-row strong {
  color: var(--blue-bright);
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 570;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.035em;
}

.ledger-row small {
  grid-column: 1 / -1;
  color: #68778b;
  font-size: 12px;
}

.ledger-row.penalty strong {
  color: #ff8ca2;
}

.difficulty-strip,
.scoring-footnote {
  grid-column: 1 / -1;
}

.difficulty-strip {
  padding-top: 55px;
  border-top: 1px solid var(--line-strong);
}

.difficulty-strip > p {
  margin: 0 0 30px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.difficulty-strip dl {
  display: grid;
  margin: 0;
  grid-template-columns: repeat(4, 1fr);
}

.difficulty-strip dl div {
  min-height: 130px;
  padding: 24px;
  border-left: 1px solid var(--line);
}

.difficulty-strip dl div:last-child {
  border-right: 1px solid var(--line);
}

.difficulty-strip dt {
  color: var(--muted);
  font-size: 13px;
}

.difficulty-strip dd {
  margin: 25px 0 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 560;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

.scoring-footnote {
  max-width: 720px;
  margin: -35px 0 0 auto;
  color: #6e7c90;
  font-size: 13px;
  text-align: right;
}

.focus-section {
  display: grid;
  min-height: 890px;
  padding: 150px 0;
  grid-template-columns: minmax(320px, 0.85fr) minmax(440px, 1.15fr);
  align-items: center;
  gap: clamp(70px, 12vw, 190px);
}

.focus-grid {
  position: relative;
  display: grid;
  width: min(100%, 610px);
  aspect-ratio: 1;
  grid-template-columns: repeat(9, 1fr);
  border: 2px solid rgba(148, 181, 224, 0.55);
  background: rgba(13, 29, 49, 0.5);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.42);
}

.focus-grid::before,
.focus-grid::after {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.focus-grid::before {
  inset: 0 33.333%;
  border-right: 2px solid rgba(148, 181, 224, 0.58);
  border-left: 2px solid rgba(148, 181, 224, 0.58);
}

.focus-grid::after {
  inset: 33.333% 0;
  border-top: 2px solid rgba(148, 181, 224, 0.58);
  border-bottom: 2px solid rgba(148, 181, 224, 0.58);
}

.focus-grid span {
  display: grid;
  border-right: 1px solid rgba(128, 157, 198, 0.16);
  border-bottom: 1px solid rgba(128, 157, 198, 0.16);
  place-items: center;
  color: #edf4ff;
  font-size: clamp(17px, 2.1vw, 29px);
  font-weight: 480;
  font-variant-numeric: tabular-nums;
}

.focus-grid span:nth-child(8),
.focus-grid span:nth-child(18),
.focus-grid span:nth-child(28),
.focus-grid span:nth-child(35),
.focus-grid span:nth-child(47),
.focus-grid span:nth-child(55),
.focus-grid span:nth-child(64) {
  color: var(--blue-bright);
}

.themes-section {
  padding: 140px 0 0;
  background: #08121f;
}

.themes-heading {
  margin-bottom: 85px;
}

.theme-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.theme {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 50px clamp(30px, 4vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.theme::after {
  position: absolute;
  right: -90px;
  bottom: -160px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(255, 255, 255, 0.025),
    0 0 0 110px rgba(255, 255, 255, 0.018);
  content: "";
}

.theme-number {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.theme h3 {
  margin: 210px 0 10px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 590;
  letter-spacing: -0.055em;
}

.theme p {
  max-width: 270px;
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
}

.theme-midnight {
  background: radial-gradient(circle at 87% 75%, #164b91, transparent 42%), #071422;
}

.theme-violet {
  background: radial-gradient(circle at 87% 75%, #5b3db8, transparent 42%), #141027;
}

.theme-frost {
  color: #071422;
  background: radial-gradient(circle at 87% 75%, #a4dcff, transparent 42%), #dceefa;
}

.theme-frost .theme-number,
.theme-frost p {
  color: rgba(7, 20, 34, 0.62);
}

.theme-frost::after {
  border-color: rgba(7, 20, 34, 0.15);
  box-shadow:
    0 0 0 55px rgba(7, 20, 34, 0.025),
    0 0 0 110px rgba(7, 20, 34, 0.018);
}

.product-section {
  padding: 170px 0 160px;
}

.product-statement {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
}

.product-statement .eyebrow {
  padding-top: 16px;
}

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

.product-columns article {
  min-height: 310px;
  padding: 40px clamp(26px, 3vw, 46px) 20px 0;
  border-right: 1px solid var(--line);
}

.product-columns article:not(:first-child) {
  padding-left: clamp(26px, 3vw, 46px);
}

.product-columns article:last-child {
  border-right: 0;
}

.feature-code {
  color: var(--blue-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.product-columns h3 {
  max-width: 310px;
  margin: 82px 0 18px;
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.product-columns p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 120%, rgba(47, 129, 255, 0.42), transparent 48%),
    linear-gradient(180deg, #081727 0%, #030912 100%);
}

.final-cta::before {
  position: absolute;
  top: -180px;
  left: 50%;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(86, 155, 255, 0.14);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
  box-shadow:
    0 0 0 90px rgba(60, 137, 255, 0.025),
    0 0 0 180px rgba(60, 137, 255, 0.018);
}

.cta-grid {
  opacity: 0.13;
  mask-image: radial-gradient(circle at 50% 60%, #000, transparent 68%);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 720px;
  padding: 110px 24px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 54px;
  font-size: clamp(60px, 8vw, 118px);
}

.store-button-large {
  transform: scale(1.08);
}

.site-footer {
  display: grid;
  width: var(--page);
  min-height: 180px;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  color: #647389;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.site-footer > p {
  justify-self: end;
  margin: 0;
}

.legal-page {
  background:
    radial-gradient(circle at 75% 8%, rgba(42, 124, 245, 0.13), transparent 28rem),
    var(--night-deep);
}

.subpage-header {
  display: flex;
  width: var(--page);
  min-height: 88px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.back-link {
  color: #8c99ab;
  font-size: 13px;
  transition: color 160ms ease;
}

.back-link:hover {
  color: #fff;
}

.legal-main {
  width: var(--page);
  margin: 0 auto;
}

.legal-hero {
  max-width: 930px;
  padding: 130px 0 120px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(66px, 9vw, 132px);
  font-weight: 640;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.legal-hero > p:last-child {
  max-width: 560px;
  margin: 42px 0 0;
  color: var(--muted);
}

.legal-layout {
  display: grid;
  padding: 90px 0 160px;
  grid-template-columns: 220px minmax(0, 720px);
  justify-content: space-between;
  gap: 90px;
  border-top: 1px solid var(--line-strong);
}

.legal-layout aside {
  position: sticky;
  top: 35px;
  display: flex;
  height: fit-content;
  flex-direction: column;
  gap: 15px;
}

.legal-layout aside a {
  color: #68778b;
  font-size: 12px;
  transition: color 160ms ease;
}

.legal-layout aside a:hover {
  color: var(--blue-bright);
}

.legal-copy section {
  padding: 0 0 58px;
  scroll-margin-top: 30px;
}

.legal-copy h2 {
  margin: 0 0 24px;
  color: #edf4ff;
  font-size: clamp(25px, 2.6vw, 34px);
  font-weight: 570;
  letter-spacing: -0.035em;
}

.legal-copy p,
.legal-copy li {
  color: #95a2b4;
  font-size: 15px;
  line-height: 1.75;
}

.legal-copy p {
  margin: 0 0 18px;
}

.legal-copy ul {
  margin: 4px 0 20px;
  padding-left: 20px;
}

.legal-copy li {
  padding: 3px 0;
}

.legal-copy a {
  color: var(--blue-bright);
  text-decoration: underline;
  text-decoration-color: rgba(90, 161, 255, 0.35);
  text-underline-offset: 3px;
}

.subpage-footer {
  display: flex;
  width: var(--page);
  min-height: 150px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #647389;
  font-size: 12px;
}

.subpage-footer div {
  display: flex;
  gap: 28px;
}

.support-hero {
  max-width: 980px;
}

.support-email {
  display: grid;
  max-width: 650px;
  min-height: 82px;
  margin-top: 55px;
  padding: 0 22px;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  transition:
    color 180ms ease,
    background 180ms ease;
}

.support-email span {
  color: #78879a;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-email strong {
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 540;
}

.support-email i {
  color: var(--blue-bright);
  font-size: 24px;
  font-style: normal;
}

.support-email:hover {
  color: #fff;
  background: rgba(50, 132, 255, 0.07);
}

.faq-list {
  padding: 0 0 160px;
  border-top: 1px solid var(--line-strong);
}

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

.faq-list summary {
  display: grid;
  min-height: 104px;
  grid-template-columns: 70px 1fr 32px;
  align-items: center;
  color: #e8eef7;
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 520;
  letter-spacing: -0.025em;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  color: #56667b;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.13em;
}

.faq-list summary::after {
  justify-self: end;
  color: var(--blue-bright);
  content: "+";
  font-size: 28px;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -8px 0 42px 70px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.error-page {
  display: grid;
  min-height: 100svh;
  padding: 24px;
  place-items: center;
  background:
    radial-gradient(circle at 70% 30%, rgba(50, 132, 255, 0.18), transparent 25rem),
    var(--night-deep);
}

.error-page main {
  width: min(100%, 720px);
}

.error-page h1 {
  margin: 0;
  font-size: clamp(65px, 12vw, 150px);
  font-weight: 640;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.error-page main > p:not(.eyebrow) {
  margin: 34px 0;
  color: var(--muted);
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-enter {
  animation: hero-rise 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-enter-one { animation-delay: 80ms; }
.hero-enter-two { animation-delay: 150ms; }
.hero-enter-three { animation-delay: 250ms; }
.hero-enter-four { animation-delay: 330ms; }
.hero-enter-five { animation-delay: 410ms; }
.hero-enter-device { animation-delay: 250ms; }

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.65); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 48px, 760px);
  }

  .site-header {
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero-inner {
    min-height: auto;
    padding: 140px 0 95px;
    grid-template-columns: 1fr;
    gap: 90px;
  }

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

  .device-stage {
    width: min(72vw, 390px);
  }

  .scroll-cue {
    display: none;
  }

  .daily-section,
  .scoring-section,
  .focus-section {
    grid-template-columns: 1fr;
  }

  .daily-section {
    min-height: auto;
    padding: 120px 0;
  }

  .section-index {
    display: none;
  }

  .scoring-section,
  .focus-section {
    padding: 120px 0;
  }

  .score-ledger,
  .daily-visual {
    width: 100%;
  }

  .scoring-footnote {
    margin-top: -25px;
  }

  .focus-grid {
    width: min(100%, 590px);
    margin: 20px auto 0;
  }

  .theme-band {
    grid-template-columns: 1fr;
  }

  .theme {
    min-height: 360px;
    border-right: 0;
  }

  .theme h3 {
    margin-top: 115px;
  }

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

  .product-statement .eyebrow {
    padding: 0;
  }

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

  .product-columns article,
  .product-columns article:not(:first-child) {
    min-height: 250px;
    padding: 34px 0 46px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-columns h3 {
    margin-top: 50px;
  }

  .site-footer {
    padding: 55px 0;
    grid-template-columns: 1fr auto;
  }

  .site-footer > p {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .legal-layout aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 36px);
  }

  body {
    font-size: 16px;
  }

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

  .header-status {
    font-size: 9px;
  }

  .brand {
    font-size: 13px;
  }

  .brand-mark {
    width: 24px;
    height: 24px;
  }

  .hero::after {
    right: -10vw;
    bottom: -12vh;
    font-size: 118vw;
  }

  .hero-grid {
    background-size: 54px 54px;
  }

  .hero-inner {
    padding: 116px 0 72px;
    gap: 72px;
  }

  .hero h1 {
    font-size: clamp(68px, 24vw, 102px);
  }

  .hero-statement {
    margin-top: 38px;
  }

  .hero-actions {
    margin-top: 34px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .device-stage {
    width: min(88vw, 360px);
  }

  .device-shell {
    border-width: 5px;
    border-radius: 48px;
  }

  .device-glow {
    inset: 12% 0 10%;
  }

  .daily-section,
  .scoring-section,
  .focus-section,
  .product-section {
    padding-top: 94px;
    padding-bottom: 94px;
  }

  .section-copy h2,
  .scoring-lead h2,
  .focus-copy h2,
  .themes-heading h2,
  .product-statement h2 {
    font-size: clamp(44px, 14vw, 66px);
  }

  .ranking-line {
    grid-template-columns: 32px 1fr auto;
    gap: 10px;
  }

  .ranking-line time {
    display: none;
  }

  .ranking-line.you {
    padding: 0 10px;
  }

  .ranking-line.you strong {
    max-width: 110px;
    text-align: right;
  }

  .scoring-section {
    row-gap: 60px;
  }

  .ledger-row {
    min-height: 86px;
  }

  .ledger-row strong {
    font-size: 20px;
  }

  .difficulty-strip dl {
    grid-template-columns: repeat(2, 1fr);
  }

  .difficulty-strip dl div:nth-child(3),
  .difficulty-strip dl div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .difficulty-strip dl div:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .scoring-footnote {
    margin-top: -20px;
    text-align: left;
  }

  .themes-section {
    padding-top: 94px;
  }

  .themes-heading {
    margin-bottom: 58px;
  }

  .theme {
    min-height: 330px;
    padding: 34px 24px;
  }

  .theme h3 {
    margin-top: 120px;
  }

  .product-columns {
    margin-top: 85px;
  }

  .final-cta,
  .final-cta-inner {
    min-height: 620px;
  }

  .final-cta h2 {
    font-size: clamp(55px, 17vw, 86px);
  }

  .site-footer {
    min-height: 0;
    padding: 46px 0;
    grid-template-columns: 1fr;
  }

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

  .site-footer > p {
    grid-column: auto;
  }

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

  .back-link {
    font-size: 11px;
  }

  .legal-hero {
    padding: 90px 0 80px;
  }

  .legal-hero h1 {
    font-size: clamp(59px, 19vw, 86px);
  }

  .legal-layout {
    padding: 65px 0 100px;
  }

  .legal-layout aside {
    grid-template-columns: repeat(2, 1fr);
  }

  .subpage-footer {
    min-height: 130px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
  }

  .support-email {
    padding: 18px 0;
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .support-email span {
    grid-column: 1 / -1;
  }

  .support-email strong {
    overflow-wrap: anywhere;
  }

  .faq-list {
    padding-bottom: 100px;
  }

  .faq-list summary {
    min-height: 94px;
    grid-template-columns: 38px 1fr 26px;
  }

  .faq-list details p {
    margin-left: 38px;
  }
}

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

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

  .device-shell {
    transform: none;
  }
}
