@font-face {
  font-family: "Sora";
  src: url("assets/landing/Sora-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/landing/BarlowCondensed-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/landing/BarlowCondensed-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/landing/BarlowCondensed-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #070909;
  --graphite: #101414;
  --graphite-raised: #171c1c;
  --surface: #0b0f0f;
  --paper: #f1f2ef;
  --muted: #a4aaa8;
  --quiet: #727a77;
  --line: rgba(218, 226, 221, 0.18);
  --line-soft: rgba(218, 226, 221, 0.1);
  --lime: #b9ff22;
  --coral: #ff7968;
  --violet: #9d74ff;
  --blue: #54bbff;
  --teal: #39d9c5;
  --content: 1240px;
  --gutter: clamp(22px, 5vw, 72px);
  --display: "Sora", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --metric: "Barlow Condensed", "Arial Narrow", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 76% 4%, rgba(112, 135, 128, 0.1), transparent 24rem),
    var(--ink);
  color: var(--paper);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.88' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='.9'/%3E%3C/svg%3E");
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
  border-radius: 4px;
}

.page-width {
  width: min(var(--content), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-transform: uppercase;
}

.inline-link {
  border-bottom: 1px solid currentColor;
  color: var(--paper);
}

/* Navigation */
.site-nav {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
}

.site-nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  width: min(var(--content), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  border-bottom: 1px solid var(--line-soft);
}

.site-nav__brand,
.site-footer__brand {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 42px);
  color: var(--muted);
  font-size: 12px;
}

.site-nav__links a,
.nav-apply {
  transition: color 180ms ease;
}

.site-nav__links a:hover,
.nav-apply:hover {
  color: var(--paper);
}

.nav-apply {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper);
  font-size: 12px;
}

.nav-apply span {
  color: var(--lime);
  font-size: 16px;
  line-height: 1;
}

/* Buttons and App Store badge */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 8px 9px 8px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.button:hover {
  border-color: rgba(185, 255, 34, 0.65);
  transform: translateY(-2px);
}

.button--primary {
  background: rgba(22, 28, 27, 0.9);
}

.button__pill {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
}

.button--wide {
  width: 100%;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 18px 8px 13px;
  border: 1px solid rgba(241, 242, 239, 0.35);
  border-radius: 12px;
  background: #f4f5f2;
  color: #070909;
  transition: transform 180ms ease, border-color 180ms ease;
}

.app-store-badge:hover {
  border-color: var(--lime);
  transform: translateY(-2px);
}

.app-store-badge svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.app-store-badge span {
  display: grid;
  gap: 0;
  line-height: 1;
  text-align: left;
}

.app-store-badge small {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.app-store-badge strong {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.07em;
}

.app-store-badge--small {
  min-height: 42px;
  padding: 6px 12px 6px 9px;
  border-radius: 10px;
}

.app-store-badge--small svg {
  width: 20px;
  height: 20px;
}

.app-store-badge--small small {
  font-size: 7px;
}

.app-store-badge--small strong {
  font-size: 15px;
}

/* Hero */
.hero {
  min-height: max(760px, 100svh);
  padding: 128px 0 74px;
  background:
    radial-gradient(circle at 82% 44%, rgba(88, 113, 105, 0.15), transparent 27rem),
    linear-gradient(180deg, #090c0c 0%, var(--ink) 85%);
}

.hero__halo,
.contributors__halo,
.closing__halo {
  position: absolute;
  z-index: -1;
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 127, 121, 0.16), rgba(111, 127, 121, 0.03) 38%, transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.hero__halo {
  top: 9%;
  right: 0;
}

.hero__sweep {
  position: absolute;
  z-index: -1;
  right: -12%;
  bottom: -2%;
  width: min(74rem, 85vw);
  opacity: 0.28;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  min-height: 740px;
}

.hero__copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(4rem, 7.1vw, 7.6rem);
  font-weight: 540;
  letter-spacing: -0.095em;
  line-height: 0.9;
}

.hero h1 span {
  color: #8e9693;
}

.hero__lede {
  max-width: 525px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  transition: color 180ms ease;
}

.text-link:hover {
  color: var(--paper);
}

.text-link span {
  color: var(--lime);
  font-size: 15px;
}

.hero__campaign {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  max-width: 610px;
  margin-top: 42px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.hero__campaign strong,
.hero__campaign span {
  display: block;
}

.hero__campaign strong {
  margin-bottom: 4px;
  color: var(--paper);
  font-size: 13px;
  font-weight: 600;
}

.hero__deadline {
  display: grid;
  justify-items: end;
  gap: 6px;
  text-align: right;
}

.hero__deadline a {
  color: var(--paper);
  font-size: 12px;
}

.hero__deadline a span {
  display: inline;
  color: var(--lime);
  font-size: 15px;
}

.hero__visual {
  position: relative;
  z-index: 2;
  min-height: 740px;
}

.hero-art {
  position: absolute;
  top: 50%;
  right: -11%;
  width: min(690px, 105%);
  aspect-ratio: 2 / 3;
  transform: translateY(-48%);
}

.hero-art__hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__caption {
  margin: 0;
  margin-top: 22px;
  max-width: 270px;
  color: var(--quiet);
  font-size: 11px;
  line-height: 1.5;
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--quiet);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--line);
}

/* Intro and editorial rhythm */
.intro {
  padding: clamp(112px, 15vw, 210px) 0 0;
  background: var(--ink);
}

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 10%;
  padding-bottom: clamp(100px, 13vw, 180px);
}

.intro h2,
.section-heading h2,
.story__copy h2,
.truth h2,
.contributors h2,
.faq h2,
.closing h2,
.legal h1,
.support-page__intro h1 {
  margin: 0;
  color: var(--paper);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.97;
}

.intro h2 {
  max-width: 750px;
  font-size: clamp(3rem, 6vw, 6.6rem);
}

.intro__copy {
  align-self: end;
  max-width: 380px;
  color: var(--muted);
  font-size: 18px;
}

.intro__copy p {
  margin: 0 0 20px;
}

.phrase-rail {
  display: flex;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.phrase-rail span {
  flex: 1 0 25%;
  padding: 19px var(--gutter);
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  text-align: center;
  white-space: nowrap;
}

.phrase-rail span:last-child {
  border-right: 0;
}

.how {
  padding: clamp(116px, 15vw, 210px) 0;
  background: #0d1111;
}

.section-heading--wide {
  display: grid;
  grid-template-columns: 0.75fr 1.2fr 0.75fr;
  align-items: end;
  gap: 30px;
  padding-bottom: 74px;
}

.section-heading--wide .eyebrow {
  align-self: start;
}

.section-heading--wide h2 {
  font-size: clamp(3rem, 6vw, 6.4rem);
}

.section-heading--wide > p:last-child {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.step-list__item {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 68px;
  min-height: 290px;
  padding: 24px clamp(20px, 3vw, 42px) 0 0;
  border-right: 1px solid var(--line);
}

.step-list__item + .step-list__item {
  padding-left: clamp(20px, 3vw, 42px);
}

.step-list__item:last-child {
  border-right: 0;
}

.step-list__number {
  color: var(--lime);
  font-family: var(--metric);
  font-size: 26px;
  font-weight: 300;
}

.step-list__item h3 {
  max-width: 300px;
  margin: 0 0 13px;
  color: var(--paper);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.15;
}

.step-list__item p {
  max-width: 315px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Screenshot story sections */
.story {
  min-height: 800px;
  padding: clamp(110px, 14vw, 210px) 0;
  background: var(--ink);
}

.story::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 16%;
  right: -14rem;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--tone, rgba(111, 127, 121, 0.13)), transparent 68%);
  filter: blur(8px);
  opacity: 0.65;
  pointer-events: none;
}

.story--today {
  --tone: rgba(84, 187, 255, 0.15);
  background: #090d0e;
}

.story--work {
  --tone: rgba(185, 255, 34, 0.13);
  background: #0d1111;
}

.story--goals {
  --tone: rgba(157, 116, 255, 0.14);
  background: #090c0d;
}

.story--block {
  --tone: rgba(255, 121, 104, 0.13);
  background: #0d1111;
}

.story--you {
  --tone: rgba(57, 217, 197, 0.13);
  background: #090c0d;
}

.story__grid {
  display: grid;
  grid-template-areas: "copy visual";
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  min-height: 660px;
  gap: 6%;
}

.story__grid--reverse {
  grid-template-areas: "visual copy";
  grid-template-columns: minmax(360px, 1.18fr) minmax(0, 0.82fr);
}

.story__copy {
  grid-area: copy;
  max-width: 500px;
}

.story__copy h2 {
  max-width: 520px;
  font-size: clamp(3.2rem, 6.3vw, 7rem);
}

.story__copy > p:not(.eyebrow):not(.story__aside) {
  max-width: 430px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.story__aside {
  max-width: 360px;
  margin: 32px 0 0;
  padding-left: 17px;
  border-left: 2px solid var(--lime);
  color: var(--paper);
  font-size: 13px;
}

.device-stage {
  grid-area: visual;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  min-height: 660px;
}

.device-stage--right {
  justify-content: flex-end;
}

.device-stage--left {
  justify-content: flex-start;
}

.device {
  position: relative;
  width: min(430px, 84%);
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(227, 236, 230, 0.36);
  border-radius: 51px;
  background: linear-gradient(135deg, #303635, #080a0a 22%, #252c2b 82%, #070909);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.56),
    inset 1px 1px 0 rgba(255, 255, 255, 0.23),
    inset -1px -1px 0 rgba(0, 0, 0, 0.7);
  transform: rotate(3deg);
}

.device img {
  width: 100%;
  border-radius: 43px;
}

.device--composite {
  width: min(430px, 84%);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.device--composite img {
  display: block;
  border-radius: 0;
}

.story--work .device,
.story--block .device {
  transform: rotate(-3deg);
}

.story--goals .device {
  transform: rotate(2deg);
}

.story--you .device {
  transform: rotate(-2deg);
}

/* Editorial interlude */
.truth {
  padding: clamp(130px, 17vw, 250px) 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(185, 255, 34, 0.08), transparent 20rem),
    #0f1413;
}

.truth__inner {
  max-width: 940px;
  text-align: center;
}

.truth h2 {
  font-size: clamp(3.2rem, 7vw, 7.6rem);
}

.truth h2 span {
  color: #8e9693;
}

.truth__inner > p:not(.eyebrow) {
  max-width: 480px;
  margin: 38px auto 30px;
  color: var(--muted);
  font-size: 16px;
}

/* Contributor Program */
.contributors {
  padding: clamp(118px, 15vw, 220px) 0 82px;
  background: #0a0d0d;
}

.contributors__halo {
  top: 10%;
  left: -14rem;
  background: radial-gradient(circle, rgba(157, 116, 255, 0.18), rgba(84, 187, 255, 0.04) 42%, transparent 70%);
}

.contributors__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: start;
  gap: clamp(54px, 9vw, 150px);
}

.contributors h2 {
  max-width: 650px;
  font-size: clamp(3.8rem, 7vw, 7.7rem);
}

.contributors__copy > p:not(.eyebrow):not(.contributors__reward) {
  max-width: 540px;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.contributors__reward {
  max-width: 570px;
  margin: 30px 0 0;
  padding: 17px 0 17px 18px;
  border-left: 2px solid var(--lime);
  color: var(--muted);
  font-size: 14px;
}

.contributors__reward strong {
  color: var(--paper);
  font-weight: 600;
}

.contributors__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 670px;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contributors__facts span {
  min-height: 89px;
  padding: 17px 18px 17px 0;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.contributors__facts span + span {
  padding-left: 18px;
}

.contributors__facts span:last-child {
  border-right: 0;
}

.contributors__facts strong {
  display: block;
  margin-bottom: 2px;
  color: var(--paper);
  font-family: var(--metric);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.contributors__apply {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(7, 9, 9, 0.58);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.countdown {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.countdown__label {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.countdown__numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.countdown__numbers > div {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.countdown__numbers > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.countdown__numbers strong {
  display: block;
  color: var(--paper);
  font-family: var(--metric);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 300;
  line-height: 0.9;
}

.countdown__numbers span {
  display: block;
  margin-top: 8px;
  color: var(--quiet);
  font-size: 10px;
  text-transform: uppercase;
}

.countdown__closed {
  margin: 0;
  color: var(--paper);
  font-size: 18px;
}

.contributors__apply > .button {
  margin-top: 25px;
}

.contributors__note {
  margin: 16px 4px 0;
  color: var(--quiet);
  font-size: 11px;
  line-height: 1.55;
}

/* FAQ */
.faq {
  padding: clamp(120px, 16vw, 230px) 0;
  background: #0d1111;
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 12%;
}

.faq h2 {
  max-width: 480px;
  font-size: clamp(3.4rem, 6.4vw, 6.6rem);
}

.section-heading > p:not(.eyebrow) {
  max-width: 300px;
  margin: 31px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 76px;
  padding: 0 48px 0 0;
  color: var(--paper);
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.035em;
  list-style: none;
}

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

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 3px;
  color: var(--lime);
  font-family: var(--metric);
  font-size: 27px;
  font-weight: 300;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item p {
  max-width: 680px;
  margin: -2px 45px 25px 0;
  color: var(--muted);
  font-size: 13px;
}

/* Closing */
.closing {
  padding: clamp(140px, 18vw, 260px) 0;
  background: #080b0b;
}

.closing__halo {
  top: 3%;
  left: 50%;
  width: 38rem;
  height: 38rem;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(185, 255, 34, 0.13), transparent 70%);
}

.closing__inner {
  position: relative;
  text-align: center;
}

.closing h2 {
  font-size: clamp(4.6rem, 9vw, 10rem);
}

.closing__inner > p:not(.eyebrow) {
  max-width: 460px;
  margin: 34px auto 30px;
  color: var(--muted);
  font-size: 16px;
}

.closing__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

/* Shared footer */
.site-footer {
  position: relative;
  padding: 46px 0 30px;
  border-top: 1px solid var(--line-soft);
  background: #070909;
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__top {
  padding-bottom: 36px;
}

.site-footer__top > p {
  margin: 0 auto 0 0;
  color: var(--quiet);
  font-size: 12px;
}

.site-footer__bottom {
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  color: var(--quiet);
  font-size: 10px;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
}

.site-footer__bottom a:hover {
  color: var(--paper);
}

/* Legal and support pages */
.legal,
.support-page {
  width: min(900px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  padding: 174px 0 150px;
}

.legal h1,
.support-page__intro h1 {
  font-size: clamp(4rem, 8vw, 8rem);
}

.legal__updated {
  margin: 24px 0 72px;
  color: var(--quiet);
  font-size: 12px;
}

.legal > p:not(.eyebrow):not(.legal__updated),
.legal li {
  max-width: 780px;
  color: var(--muted);
  font-size: 15px;
}

.legal h2 {
  margin: 67px 0 16px;
  color: var(--paper);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

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

.legal ul {
  max-width: 780px;
  margin: 0 0 18px;
  padding-left: 21px;
}

.legal li + li {
  margin-top: 8px;
}

.legal a,
.support-page a {
  border-bottom: 1px solid currentColor;
  color: var(--paper);
}

.support-page {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1.05fr);
  align-items: start;
  gap: clamp(52px, 10vw, 150px);
  width: min(var(--content), calc(100% - (var(--gutter) * 2)));
}

.support-page__intro {
  position: sticky;
  top: 120px;
}

.support-page__intro > p:not(.eyebrow) {
  max-width: 340px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.support-form-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: rgba(16, 20, 20, 0.7);
}

.support-form-panel h2 {
  margin: 0;
  color: var(--paper);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.support-form-panel__detail,
.support-form-panel__retention {
  color: var(--muted);
  font-size: 12px;
}

.support-form-panel__detail {
  margin: 12px 0 30px;
}

.support-form-panel__preview-note {
  margin: -17px 0 30px;
  color: var(--coral);
  font-size: 12px;
  line-height: 1.55;
}

.support-form-panel__retention {
  margin: 22px 0 0;
  line-height: 1.55;
}

.support-form__field {
  margin-top: 20px;
}

.support-form__field label {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 500;
}

.support-form__field input,
.support-form__field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: 0;
  background: #080b0b;
  color: var(--paper);
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.support-form__field input {
  min-height: 48px;
  padding: 0 13px;
}

.support-form__field textarea {
  min-height: 170px;
  padding: 13px;
  resize: vertical;
}

.support-form__field input:focus,
.support-form__field textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(185, 255, 34, 0.1);
}

.support-form__count {
  margin: 7px 0 0;
  color: var(--quiet);
  font-size: 10px;
  text-align: right;
}

.support-form__submit,
.support-confirmation__close {
  min-height: 48px;
  margin-top: 23px;
  padding: 0 19px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: transform 180ms ease, filter 180ms ease;
}

.support-form__submit:hover,
.support-confirmation__close:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.support-form__submit:disabled {
  cursor: wait;
  opacity: 0.6;
}

.support-form__status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.support-form__status[data-kind="error"] {
  color: var(--coral);
}

.support-form__status[data-kind="success"] {
  color: var(--lime);
}

.support-confirmation {
  width: min(470px, calc(100% - 40px));
  padding: 0;
  border: 1px solid var(--line);
  background: var(--graphite);
  color: var(--paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
}

.support-confirmation::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

.support-confirmation__surface {
  padding: 34px;
}

.support-confirmation__signal {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
}

.support-confirmation__signal svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.support-confirmation h2 {
  margin: 24px 0 9px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.support-confirmation__detail,
.support-confirmation__copy-status {
  color: var(--muted);
  font-size: 13px;
}

.support-confirmation__reference {
  margin-top: 24px;
  padding: 13px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.support-confirmation__reference > span {
  display: block;
  margin-bottom: 7px;
  color: var(--quiet);
  font-size: 10px;
  text-transform: uppercase;
}

.support-confirmation__reference > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.support-confirmation__reference output {
  font-family: var(--metric);
  font-size: 22px;
}

.support-confirmation__reference button {
  border: 0;
  background: transparent;
  color: var(--lime);
  cursor: pointer;
  font-size: 12px;
}

.support-confirmation__close {
  margin-top: 24px;
}

/* Motion is intentionally quiet: copy and screenshots are available to
   crawlers, screen readers, and full-page capture tools immediately. */
[data-reveal] {
  opacity: 1;
  transform: none;
}

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

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

@media (max-width: 980px) {
  .site-nav__links {
    gap: 16px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  }

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

  .hero-art {
    right: -22%;
    width: 112%;
  }

  .story__grid,
  .story__grid--reverse {
    grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1.05fr);
    gap: 4%;
  }

  .contributors__grid {
    gap: 54px;
  }
}

@media (max-height: 760px) and (min-width: 761px) {
  .scroll-cue {
    display: none;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 22px;
  }

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

  .site-nav__links {
    display: none;
  }

  .nav-apply {
    min-height: 38px;
  }

  .hero {
    min-height: 0;
    padding-top: 112px;
  }

  .hero__inner {
    display: block;
    min-height: 0;
  }

  .hero__copy {
    max-width: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.15rem, 14vw, 5.6rem);
  }

  .hero__lede {
    max-width: 450px;
    margin-top: 27px;
    font-size: 16px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero__actions .text-link {
    max-width: 100%;
  }

  .hero__campaign {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: none;
    overflow-wrap: anywhere;
  }

  .hero__deadline {
    justify-items: start;
    text-align: left;
  }

  .hero__visual {
    min-height: min(760px, 118vw);
    margin-top: 40px;
  }

  .hero-art {
    top: 47%;
    right: -8%;
    width: min(600px, 112%);
    transform: translateY(-48%);
  }

  .scroll-cue {
    display: none;
  }

  .intro__grid,
  .section-heading--wide,
  .faq__grid,
  .support-page {
    grid-template-columns: 1fr;
  }

  .intro__grid {
    gap: 40px;
  }

  .intro h2,
  .section-heading--wide h2,
  .faq h2 {
    max-width: 650px;
    font-size: clamp(3.2rem, 13vw, 5.5rem);
  }

  .intro__copy {
    max-width: 520px;
    font-size: 16px;
  }

  .phrase-rail {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .phrase-rail span {
    flex: none;
    padding: 17px 10px;
    border-right: 1px solid var(--line);
    font-size: 10px;
  }

  .phrase-rail span:nth-child(2) {
    border-right: 0;
  }

  .phrase-rail span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading--wide {
    align-items: start;
    gap: 27px;
    padding-bottom: 54px;
  }

  .step-list {
    grid-template-columns: 1fr;
  }

  .step-list__item,
  .step-list__item + .step-list__item {
    grid-template-columns: 54px 1fr;
    grid-template-rows: auto;
    gap: 8px;
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step-list__item:last-child {
    border-bottom: 0;
  }

  .step-list__number {
    padding-top: 2px;
  }

  .step-list__item h3 {
    max-width: none;
    font-size: 18px;
  }

  .step-list__item p {
    max-width: none;
  }

  .story {
    min-height: 0;
  }

  .story__grid,
  .story__grid--reverse {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 50px;
    min-height: 0;
  }

  .story__copy {
    max-width: 620px;
  }

  .story__copy h2 {
    font-size: clamp(3.4rem, 13vw, 6rem);
  }

  .story__copy > p:not(.eyebrow):not(.story__aside) {
    font-size: 15px;
  }

  .device-stage,
  .device-stage--right,
  .device-stage--left {
    justify-content: center;
    min-height: 0;
  }

  .device {
    width: min(380px, 90%);
  }

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

  .contributors h2 {
    font-size: clamp(3.7rem, 14vw, 6rem);
  }

  .contributors__copy > p:not(.eyebrow):not(.contributors__reward) {
    font-size: 15px;
  }

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

  .contributors__facts span,
  .contributors__facts span + span {
    min-height: 0;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contributors__facts span:last-child {
    border-bottom: 0;
  }

  .contributors__apply {
    padding: 22px;
  }

  .countdown__numbers strong {
    font-size: clamp(36px, 13vw, 52px);
  }

  .closing h2 {
    font-size: clamp(4.1rem, 17vw, 7.4rem);
  }

  .site-footer__top {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-footer__top > p {
    order: 3;
    flex-basis: 100%;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal,
  .support-page {
    padding-top: 130px;
    padding-bottom: 100px;
  }

  .legal h1,
  .support-page__intro h1 {
    font-size: clamp(3.7rem, 15vw, 6rem);
  }

  .support-page__intro {
    position: static;
  }
}

@media (max-width: 430px) {
  .hero-art {
    right: -18%;
    width: 128%;
  }

  .hero__visual {
    min-height: 132vw;
  }

  .app-store-badge--small {
    display: none;
  }
}
