:root {
  --page: #eaeaea;
  --paper: #fff1cf;
  --ink: #171719;
  --ink-soft: #5f5f5b;
  --white: #fffef8;
  --purple: #6e43c8;
  --yellow: #f5b51b;
  --mint: #56c995;
  --coral: #f4523b;
  --gold: #ffd78e;
  --shell: 1320px;
  --display: "Inter", Arial, sans-serif;
  --body: "Lato", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--page);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.48;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

::selection {
  color: var(--ink);
  background: var(--gold);
}

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

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

.label,
.mono {
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.065em;
  line-height: 1.35;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--gold);
  font-family: var(--display);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 30px;
  left: 50%;
  display: flex;
  width: 144px;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 5px 7px 5px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateX(-50%);
  transition: width 220ms ease, opacity 160ms ease;
}

.wordmark {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.055em;
  transition: opacity 160ms ease, transform 160ms ease;
}

.wordmark span,
.footer-wordmark span {
  color: var(--purple);
}

.menu-toggle {
  display: inline-grid;
  width: 44px;
  min-height: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before {
  display: block;
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.menu-lines::before {
  content: "";
  transform: translateY(-5px);
}

[data-header][data-open="true"] .menu-lines {
  transform: rotate(45deg);
}

[data-header][data-open="true"] .menu-lines::before {
  transform: rotate(-90deg);
}

.site-nav {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  display: flex;
  visibility: hidden;
  width: max-content;
  min-width: 390px;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 6px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0;
  transform: translate(-50%, -7px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

[data-header][data-open="true"] .site-nav {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
}

.site-nav a:hover {
  background: var(--page);
}

.site-nav .nav-action {
  color: var(--white);
  background: var(--ink);
}

.site-header.is-moving .wordmark {
  opacity: 0.2;
  transform: translateX(8px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
  color: var(--white);
  background: #050707;
}

.hero-image {
  position: absolute;
  z-index: 0;
  right: -2vw;
  bottom: -7%;
  width: auto;
  max-width: none;
  height: 112%;
  object-fit: contain;
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 7, 0.98) 0%, rgba(5, 7, 7, 0.79) 36%, rgba(5, 7, 7, 0.06) 76%),
              linear-gradient(180deg, rgba(5, 7, 7, 0.02) 52%, rgba(5, 7, 7, 0.83) 100%);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 43%;
  width: min(880px, 74vw);
  text-align: center;
  transform: translate(-50%, -52%);
}

.hero-kicker {
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.9rem, 7.5vw, 6.9rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.hero h1 em {
  font-family: var(--body);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero-copy > p:last-child {
  max-width: 510px;
  margin: 34px auto 0;
  font-size: 1rem;
  line-height: 1.38;
}

.hero-bar {
  position: absolute;
  z-index: 3;
  bottom: 36px;
  left: 50%;
  display: flex;
  width: min(620px, calc(100% - 40px));
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 7px 7px 7px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(23, 23, 25, 0.64);
  font-size: 0.82rem;
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.hero-bar a,
.guide-bottom a,
.closing-copy > a,
.site-footer div > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 10px;
  color: var(--ink);
  background: #fff;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.hero-bar a:hover,
.guide-bottom a:hover,
.closing-copy > a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.felt.shell {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: none;
  margin: -42px 0 0;
  padding: 195px max(60px, calc((100vw - var(--shell)) / 2)) 34px;
  border-radius: 40px 40px 0 0;
  background: var(--page);
}

.felt-grid {
  display: grid;
  width: min(790px, 100%);
  grid-template-columns: 155px 1fr;
  gap: 24px;
  margin-inline: auto;
}

.felt-grid > .label {
  margin: 10px 0 0;
  color: #8b8b87;
}

.felt h2 {
  margin-bottom: 45px;
  font-size: clamp(2rem, 2.7vw, 2.6rem);
  line-height: 1.02;
}

.felt-statement,
.felt-answer {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.felt-statement {
  margin-bottom: 42px;
  color: #747470;
  font-size: clamp(2.5rem, 4.3vw, 4rem);
}

.felt-answer {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4vw, 3.75rem);
}

.felt-answer span {
  display: inline-block;
  margin-top: 4px;
  color: #9a9a96;
}

.shift-window {
  position: relative;
  height: min(650px, 50vw);
  min-height: 520px;
  overflow: hidden;
  margin-top: 130px;
  border-radius: 24px;
  color: var(--white);
  background: var(--purple);
}

.shift-window::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 16, 51, 0.86) 0%, rgba(27, 16, 51, 0.14) 55%, rgba(27, 16, 51, 0) 100%);
  content: "";
}

.shift-window > img {
  position: absolute;
  z-index: 0;
  right: -3%;
  bottom: -10%;
  width: 72%;
  max-width: none;
  height: 110%;
  object-fit: contain;
}

.window-label {
  position: absolute;
  z-index: 3;
  top: 34px;
  left: 38px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(86, 201, 149, 0.2);
}

.window-stat {
  position: absolute;
  z-index: 3;
  left: 38px;
  display: flex;
  width: 210px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.window-stat span {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
}

.window-stat strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.stat-miles {
  top: 42%;
}

.stat-earned {
  top: 57%;
}

.window-progress {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 34px;
  left: 38px;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.28);
}

.window-progress span {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--white);
}

.difference {
  padding-block: 160px 170px;
}

.difference-prelude {
  max-width: 540px;
  margin-bottom: 4px;
  color: #686864;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.difference h2 {
  margin-bottom: 90px;
  font-size: clamp(4.5rem, 7.2vw, 6.9rem);
  line-height: 0.92;
}

.difference-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.difference-item {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 38px;
  border-radius: 24px;
  background: #dfdfdf;
}

.difference-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: auto;
  font-family: var(--display);
  font-size: 1.4rem;
}

.difference-item h3 {
  margin-bottom: 14px;
  font-size: 1.65rem;
  line-height: 1.05;
}

.difference-item p {
  max-width: 300px;
  margin: 0;
  color: #6d6d68;
  font-size: 0.92rem;
}

.moments {
  position: relative;
  padding-block: 160px;
  border-radius: 40px 40px 0 0;
  color: var(--white);
  background: radial-gradient(circle at 15% 28%, #574524 0%, #32301f 30%, #1d251d 68%, #151a16 100%);
}

.moments-inner {
  display: grid;
  grid-template-columns: 464px minmax(0, 1fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.moments-guide {
  position: sticky;
  top: 100px;
  height: calc(100vh - 130px);
  min-height: 680px;
}

.moments-guide > .label {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.57);
}

.moments-guide h2 {
  margin-bottom: 42px;
  font-size: clamp(2.75rem, 3.6vw, 3.5rem);
  line-height: 0.98;
}

.moments-guide nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.moments-guide nav a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.34);
  background: rgba(0, 0, 0, 0.15);
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.moments-guide nav a.is-active {
  color: var(--white);
  background: rgba(0, 0, 0, 0.38);
}

.guide-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}

.guide-bottom p {
  margin-bottom: 22px;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
}

.moment-stream {
  min-width: 0;
}

.moment-panel {
  min-height: 580px;
  margin-bottom: 40px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: rgba(10, 14, 11, 0.69);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.moment-panel:last-child {
  margin-bottom: 0;
}

.moment-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 38px;
}

.moment-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 1.1rem;
}

.moment-heading .mono {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.56rem;
}

.moment-heading h3 {
  margin: 0;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  line-height: 1;
}

.moment-description {
  max-width: 550px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.4;
}

.demand-proof,
.offer-proof,
.shift-proof,
.receipt-proof {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: #111713;
}

.demand-proof {
  background: #6948a8;
}

.demand-orbit {
  position: absolute;
  top: 50%;
  left: 66%;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.demand-orbit::before,
.demand-orbit::after {
  position: absolute;
  inset: 16%;
  border: inherit;
  border-radius: inherit;
  content: "";
}

.demand-orbit::after {
  inset: 33%;
}

.demand-orbit i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
}

.demand-orbit i:nth-child(1) { top: 17%; left: 48%; }
.demand-orbit i:nth-child(2) { top: 55%; left: 21%; background: var(--mint); }
.demand-orbit i:nth-child(3) { right: 13%; bottom: 27%; background: var(--coral); }

.demand-card {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 28px;
  width: min(390px, calc(100% - 56px));
  padding: 20px;
  border-radius: 14px;
  color: var(--ink);
  background: var(--white);
}

.demand-card p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-family: var(--mono);
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.demand-card p b {
  margin-left: auto;
}

.demand-card > strong,
.demand-card > span {
  display: block;
}

.demand-card > strong {
  margin-bottom: 7px;
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.demand-card > span {
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.offer-proof {
  padding: 24px;
  color: var(--ink);
  background: var(--paper);
}

.offer-proof-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(23, 23, 25, 0.17);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.offer-proof-top b {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--mint);
}

.offer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding-block: 28px;
}

.offer-main p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.55rem;
}

.offer-main strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 3.3rem;
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 1;
}

.offer-main > span {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.9;
}

.offer-main i {
  display: inline-block;
  width: 15px;
  height: 1px;
  margin-right: 8px;
  border-top: 1px dashed var(--ink);
  vertical-align: middle;
}

.offer-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(23, 23, 25, 0.17);
}

.offer-metrics p {
  margin: 0;
  padding: 16px 13px 0;
  border-left: 1px solid rgba(23, 23, 25, 0.17);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.5rem;
}

.offer-metrics p:first-child {
  padding-left: 0;
  border-left: 0;
}

.offer-metrics strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
}

.shift-proof {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 30px;
  padding: 28px;
  background: #14261d;
}

.shift-clock {
  display: flex;
  width: 230px;
  max-width: 100%;
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.73);
  border-radius: 50%;
}

.shift-clock span,
.shift-totals span {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.04em;
}

.shift-clock strong {
  margin: 7px 0 0;
  font-family: var(--display);
  font-size: 3.6rem;
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 1;
}

.shift-clock small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
}

.shift-totals p {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.shift-totals strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
}

.shift-totals small {
  font-size: 0.62rem;
}

.receipt-proof {
  display: grid;
  place-items: center;
  background: #8d3d36;
}

.receipt-paper {
  width: min(330px, calc(100% - 48px));
  padding: 25px 24px 28px;
  color: var(--ink);
  background: var(--white);
  transform: rotate(-2deg);
}

.receipt-paper > p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.55rem;
  font-weight: 600;
}

.receipt-paper > strong {
  display: block;
  padding-bottom: 16px;
  border-bottom: 2px dashed var(--ink);
  font-family: var(--display);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.07em;
}

.receipt-paper dl {
  margin: 14px 0 18px;
}

.receipt-paper dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(23, 23, 25, 0.15);
  font-size: 0.74rem;
}

.receipt-paper dd {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.64rem;
}

.receipt-paper > span {
  display: inline-flex;
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--mint);
  font-family: var(--mono);
  font-size: 0.52rem;
  font-weight: 600;
}

.receipt-filed {
  position: absolute;
  right: 25px;
  bottom: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.03em;
}

.founder {
  min-height: 780px;
  padding-block: 170px;
  border-radius: 40px 40px 0 0;
  color: var(--white);
  background: #121214;
}

.founder-inner {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 60px;
}

.founder .label {
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.39);
}

.founder h2 {
  margin-bottom: 45px;
  font-size: clamp(4rem, 7vw, 6.8rem);
  line-height: 0.94;
}

.founder-inner > div > p {
  max-width: 880px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.founder-inner > div .founder-soft {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.32);
  font-size: clamp(1.55rem, 2.8vw, 2.6rem);
}

.plans {
  padding-block: 170px;
}

.plans-heading {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: end;
  margin-bottom: 110px;
}

.plans-heading .label {
  margin-bottom: 25px;
  color: #747470;
}

.plans h2 {
  margin: 0;
  font-size: clamp(4.4rem, 7.2vw, 6.8rem);
  line-height: 0.92;
}

.plans-heading > p {
  margin: 0 0 6px;
  color: #6e6e69;
  font-size: 1rem;
}

.plan-rows {
  border-top: 1px solid rgba(23, 23, 25, 0.3);
}

.plan-row {
  display: grid;
  min-height: 145px;
  grid-template-columns: 130px 1fr 1.25fr 0.75fr 90px;
  gap: 25px;
  align-items: center;
  padding: 24px 5px;
  border-bottom: 1px solid rgba(23, 23, 25, 0.25);
  transition: color 180ms ease, background 180ms ease, padding 180ms ease, border-radius 180ms ease;
}

.plan-row:hover,
.plan-row:focus-within {
  padding-inline: 25px;
  border-radius: 18px;
  color: var(--white);
  background: var(--ink);
}

.plan-row > .mono {
  color: #73736e;
  font-size: 0.55rem;
}

.plan-row h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.plan-row > p:not(.plan-price) {
  max-width: 360px;
  margin: 0;
  font-size: 0.9rem;
}

.plan-price {
  margin: 0;
}

.plan-price strong,
.plan-price span {
  display: block;
}

.plan-price strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.plan-price span {
  color: currentColor;
  font-size: 0.7rem;
  opacity: 0.6;
}

.plan-row > a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 9px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
}

.plan-row > a:hover {
  color: var(--ink);
  background: var(--white);
}

.referral {
  margin: 24px 0 0;
  color: #6f6f6a;
  text-align: right;
  font-size: 0.82rem;
}

.closing {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  border-radius: 40px 40px 0 0;
  color: var(--white);
  background: #a7433d;
}

.closing::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(94, 24, 28, 0.2) 0%, rgba(94, 24, 28, 0.04) 48%, rgba(94, 24, 28, 0.55) 100%);
  content: "";
}

.closing > img {
  position: absolute;
  z-index: 1;
  bottom: -9%;
  left: 4%;
  width: auto;
  max-width: none;
  height: 90%;
  object-fit: contain;
}

.closing-copy {
  position: absolute;
  z-index: 3;
  top: 20%;
  right: 6%;
  width: min(560px, 43vw);
  text-align: right;
}

.closing-copy .label {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.62);
}

.closing h2 {
  margin-bottom: 30px;
  font-size: clamp(4.3rem, 6.5vw, 6.3rem);
  line-height: 0.92;
}

.closing-copy > p:not(.label) {
  max-width: 420px;
  margin: 0 0 28px auto;
  font-size: 1rem;
}

.closing-copy > a {
  min-width: 150px;
}

.closing-note {
  position: absolute;
  z-index: 3;
  right: 40px;
  bottom: 34px;
  margin: 0;
  font-size: 0.75rem;
}

.site-footer {
  padding: 12px 12px 0;
  background: var(--page);
}

.footer-inner {
  display: grid;
  min-height: 410px;
  grid-template-columns: 1.4fr 1.4fr 0.7fr 0.9fr;
  gap: 60px;
  padding: 42px;
  border-radius: 24px 24px 0 0;
  color: var(--white);
  background: var(--ink);
}

.footer-wordmark {
  align-self: start;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.footer-inner > div,
.footer-inner nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-inner p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.73rem;
}

.footer-inner div > span {
  max-width: 250px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.footer-inner div > a {
  margin-top: 22px;
}

.footer-inner nav a,
.footer-contact > a {
  min-height: 27px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 42px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.7rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms cubic-bezier(.2, .75, .2, 1), transform 650ms cubic-bezier(.2, .75, .2, 1);
}

.js .reveal[data-delay="1"] { transition-delay: 90ms; }
.js .reveal[data-delay="2"] { transition-delay: 180ms; }

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

@media (max-width: 1100px) {
  .shell {
    width: min(var(--shell), calc(100% - 80px));
  }

  .hero-copy {
    left: 40%;
    width: 72vw;
  }

  .hero-image {
    right: -14%;
  }

  .felt.shell {
    padding-inline: 40px;
  }

  .shift-window > img {
    right: -10%;
    width: 82%;
  }

  .moments-inner {
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 40px;
  }

  .moment-panel {
    padding: 30px;
  }

  .plan-row {
    grid-template-columns: 85px 0.8fr 1.1fr 0.65fr 80px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr 0.7fr;
  }

  .footer-contact {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 75px;
  }

  body {
    font-size: 16px;
  }

  .shell {
    width: calc(100% - 40px);
  }

  .site-header {
    top: 16px;
  }

  .site-nav {
    min-width: min(350px, calc(100vw - 32px));
    grid-template-columns: 1fr 1fr;
    flex-wrap: wrap;
  }

  .site-nav a {
    width: calc(50% - 2px);
    justify-content: center;
  }

  .hero {
    min-height: 100svh;
    border-radius: 0 0 24px 24px;
  }

  .hero-image {
    right: -72%;
    bottom: -3%;
    height: 94%;
    opacity: 0.86;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(5, 7, 7, 0.06) 8%, rgba(5, 7, 7, 0.45) 48%, rgba(5, 7, 7, 0.9) 100%),
                linear-gradient(90deg, rgba(5, 7, 7, 0.78) 0%, rgba(5, 7, 7, 0.08) 100%);
  }

  .hero-copy {
    top: 40%;
    left: 50%;
    width: calc(100% - 36px);
    transform: translate(-50%, -50%);
  }

  .hero-kicker {
    margin-bottom: 20px;
    font-size: 0.78rem;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 14vw, 4.2rem);
    line-height: 0.95;
  }

  .hero-copy > p:last-child {
    max-width: 320px;
    margin-top: 24px;
    font-size: 0.86rem;
  }

  .hero-bar {
    bottom: 18px;
    width: 262px;
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .hero-bar strong {
    display: grid;
    min-height: 70px;
    place-items: center;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    background: rgba(23, 23, 25, 0.7);
    text-align: center;
    backdrop-filter: blur(12px);
  }

  .felt.shell {
    margin-top: -30px;
    padding: 120px 20px 20px;
    border-radius: 24px 24px 0 0;
  }

  .felt-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .felt-grid > .label {
    margin: 0;
  }

  .felt h2 {
    margin-bottom: 34px;
    font-size: 1.75rem;
  }

  .felt-statement {
    margin-bottom: 32px;
    font-size: 1.75rem;
    line-height: 1.08;
  }

  .felt-answer {
    font-size: 1.9rem;
    line-height: 1.08;
  }

  .shift-window {
    height: 560px;
    min-height: 0;
    margin-top: 72px;
    border-radius: 20px;
  }

  .shift-window::after {
    background: linear-gradient(180deg, rgba(27, 16, 51, 0.66) 0%, rgba(27, 16, 51, 0.06) 52%, rgba(27, 16, 51, 0.56) 100%);
  }

  .shift-window > img {
    right: -45%;
    bottom: -1%;
    width: auto;
    height: 73%;
  }

  .window-label {
    top: 22px;
    left: 20px;
  }

  .window-stat {
    right: 20px;
    left: auto;
    width: 135px;
  }

  .stat-miles { top: 19%; }
  .stat-earned { top: 31%; }

  .window-stat strong {
    font-size: 1.35rem;
  }

  .window-progress {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .difference {
    padding-block: 120px;
  }

  .difference-prelude {
    font-size: 1.75rem;
  }

  .difference h2 {
    margin-bottom: 58px;
    font-size: clamp(3.2rem, 13vw, 4rem);
  }

  .difference-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .difference-item {
    min-height: 230px;
    padding: 28px;
  }

  .moments {
    padding-block: 120px;
    border-radius: 24px 24px 0 0;
  }

  .moments-inner {
    display: block;
  }

  .moments-guide {
    position: static;
    height: auto;
    min-height: 0;
    margin-bottom: 72px;
  }

  .moments-guide h2 {
    margin-bottom: 32px;
    font-size: 2.9rem;
  }

  .moments-guide nav {
    display: none;
  }

  .guide-bottom {
    position: static;
  }

  .guide-bottom p {
    margin-bottom: 18px;
  }

  .moment-panel {
    min-height: 0;
    margin-bottom: 40px;
    padding: 24px;
    border-radius: 20px;
  }

  .moment-heading {
    gap: 13px;
    margin-bottom: 28px;
  }

  .moment-icon {
    width: 38px;
    height: 38px;
  }

  .moment-heading h3 {
    font-size: 1.75rem;
  }

  .demand-proof,
  .offer-proof,
  .shift-proof,
  .receipt-proof {
    min-height: 300px;
  }

  .demand-orbit {
    left: 76%;
    width: 250px;
    height: 250px;
  }

  .demand-card {
    bottom: 18px;
    left: 18px;
    width: calc(100% - 36px);
    padding: 16px;
  }

  .demand-card > strong {
    font-size: 1.2rem;
  }

  .offer-proof {
    padding: 18px;
  }

  .offer-main {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 20px;
  }

  .offer-main strong {
    font-size: 2.7rem;
  }

  .offer-metrics p {
    padding-inline: 8px;
  }

  .offer-metrics strong {
    font-size: 0.9rem;
  }

  .shift-proof {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 22px;
  }

  .shift-clock {
    width: 170px;
    margin-inline: auto;
  }

  .shift-clock strong {
    font-size: 2.8rem;
  }

  .receipt-filed {
    display: none;
  }

  .founder {
    min-height: 700px;
    padding-block: 120px;
    border-radius: 24px 24px 0 0;
  }

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .founder .label {
    margin: 0;
  }

  .founder h2 {
    margin-bottom: 35px;
    font-size: 3.3rem;
  }

  .founder-inner > div > p {
    font-size: 2rem;
    line-height: 1.06;
  }

  .founder-inner > div .founder-soft {
    font-size: 1.6rem;
  }

  .plans {
    padding-block: 120px;
  }

  .plans-heading {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 70px;
  }

  .plans h2 {
    font-size: 3.4rem;
  }

  .plan-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 4px;
  }

  .plan-row:hover,
  .plan-row:focus-within {
    padding: 28px 20px;
  }

  .plan-row h3 {
    font-size: 2.4rem;
  }

  .plan-row > a {
    width: 100%;
  }

  .referral {
    text-align: left;
  }

  .closing {
    min-height: 900px;
    border-radius: 24px 24px 0 0;
  }

  .closing > img {
    bottom: -2%;
    left: -29%;
    height: 58%;
  }

  .closing-copy {
    top: 13%;
    right: 20px;
    width: calc(100% - 40px);
  }

  .closing h2 {
    font-size: 3.6rem;
  }

  .closing-copy > p:not(.label) {
    max-width: 300px;
    font-size: 0.9rem;
  }

  .closing-note {
    right: 20px;
    bottom: 20px;
    max-width: 190px;
    text-align: right;
  }

  .site-footer {
    padding: 12px 12px 0;
  }

  .footer-inner {
    min-height: 600px;
    grid-template-columns: 1fr 1fr;
    gap: 50px 22px;
    padding: 30px;
    border-radius: 20px 20px 0 0;
  }

  .footer-wordmark {
    grid-column: 1 / -1;
  }

  .footer-inner > div:nth-of-type(1) {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 18px 30px;
  }
}

@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;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
