:root {
  --paper: #fff7ef;
  --ink: #111318;
  --indigo: #1a1b3f;
  --coral: #ff8a6b;
  --lime: #b8e36a;
  --yellow: #ffd15c;
  --line: #e2d7ca;
  --muted: #6b7280;
  --shell: min(1120px, calc(100% - 48px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", "PingFang SC", "Hiragino Sans GB", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

a { color: inherit; }

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  padding-block: 28px 20px;
}

.site-footer {
  padding-block: 34px 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.site-footer div,
.site-nav { display: flex; gap: 22px; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
  text-decoration: none;
  color: var(--indigo);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.brand img { width: 88px; height: auto; }

.site-nav,
.site-footer a {
  font-size: 12px;
  text-decoration: none;
}

.language-control {
  display: inline-flex;
  align-items: center;
}

.language-select {
  min-width: 94px;
  padding: 5px 24px 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--indigo);
  font: inherit;
  font-size: 11px;
  cursor: pointer;
}

.language-select:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

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

.site-nav a:hover,
.site-footer a:hover,
.text-link:hover { color: var(--coral); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .84fr);
  gap: 8vw;
  align-items: center;
  min-height: 620px;
  padding-block: 54px 88px;
}

.eyebrow,
.section-mark,
.updated,
.blocker-tag {
  margin: 0;
  color: var(--muted);
  font-family: "SFMono-Regular", "Roboto Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--indigo);
  font-size: clamp(58px, 9vw, 116px);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .9;
}

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

.lede {
  max-width: 430px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--indigo);
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.button--disabled {
  background: var(--line);
  color: var(--muted);
  cursor: not-allowed;
}

.text-link { color: var(--indigo); font-size: 13px; font-weight: 700; text-decoration: none; }

.hero-art {
  position: relative;
  min-height: 420px;
}

.photo-stack {
  position: absolute;
  top: 12px;
  left: 4%;
  width: min(520px, 100%);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 18%;
  transform: rotate(-5deg);
}

.app-icon-art {
  display: block;
  width: 110%;
  height: 110%;
  object-fit: contain;
  transform: translate(-5%, -5%);
  clip-path: inset(0 0 10% 0 round 18%);
  filter: drop-shadow(0 26px 34px rgb(26 27 63 / 15%));
}

.intro-band {
  display: block;
  padding-block: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band p { max-width: 860px; margin: 0; color: var(--muted); font-size: clamp(22px, 3vw, 38px); letter-spacing: -.04em; line-height: 1.15; }
.intro-band strong { color: var(--indigo); font-weight: 800; }

.steps { padding-block: 120px; }
.section-heading { margin-bottom: 62px; }
.section-heading h2 { max-width: 560px; margin: 0; color: var(--indigo); font-size: clamp(36px, 5vw, 72px); letter-spacing: -.07em; line-height: .96; }

.step-list { margin-left: 25%; border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 80px 1fr; gap: 28px; max-width: 620px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.step--offset { margin-left: 9%; }
.step-number { color: var(--coral); font-family: monospace; font-size: 13px; font-weight: 800; }
.step h3 { margin-bottom: 6px; color: var(--indigo); font-size: 22px; letter-spacing: -.04em; }
.step p { margin: 0; color: var(--muted); }

.promise {
  padding-block: 54px 108px;
}

.promise-intro { display: grid; grid-template-columns: 1fr 2fr; gap: 32px; align-items: end; margin-bottom: 38px; }
.promise-intro h2 { max-width: 560px; margin: 0; color: var(--indigo); font-size: clamp(36px, 5vw, 72px); letter-spacing: -.07em; line-height: .96; }
.promise-intro p { max-width: 360px; margin: 0 0 5px; color: var(--muted); font-size: 18px; line-height: 1.45; }
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 2px solid var(--indigo); }
.promise-grid div { display: flex; min-height: 145px; flex-direction: column; justify-content: space-between; padding: 18px 20px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.promise-grid div:first-child { border-left: 1px solid var(--line); }
.promise-grid strong { color: var(--indigo); font-size: 22px; letter-spacing: -.04em; }
.promise-grid span { color: var(--muted); font-size: 12px; }

.legal-page { max-width: 860px; padding-block: 86px 110px; }
.legal-page h1 { margin-top: 20px; font-size: clamp(64px, 10vw, 124px); }
.legal-intro { max-width: 610px; color: var(--muted); font-size: 20px; line-height: 1.65; }
.updated { margin-top: 26px; }
.policy-list,
.faq-list { margin-top: 86px; border-top: 1px solid var(--line); }
.policy-section { display: grid; grid-template-columns: 82px 1fr; gap: 26px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.policy-section h2 { margin-bottom: 9px; color: var(--indigo); font-size: 24px; letter-spacing: -.04em; }
.policy-section p { max-width: 660px; margin-bottom: 12px; color: var(--muted); }
.policy-section p:last-child { margin-bottom: 0; }

.release-blocker { margin-top: 68px; padding: 28px; border: 2px solid var(--coral); background: rgb(255 138 107 / 10%); }
.blocker-tag { display: inline-block; margin-bottom: 24px; padding: 7px 9px; background: var(--coral); color: var(--indigo); }
.release-blocker h2 { margin-bottom: 10px; color: var(--indigo); font-size: 28px; letter-spacing: -.05em; }
.release-blocker p { max-width: 650px; margin-bottom: 10px; color: var(--indigo); }
.release-blocker .muted { margin-bottom: 0; color: var(--muted); font-size: 13px; }

@media (max-width: 760px) {
  :root { --shell: min(100% - 32px, 560px); }
  .site-header { padding-top: 20px; }
  .site-nav { gap: 10px; }
  .language-select { min-width: 84px; padding-right: 20px; }
  .hero { display: flex; min-height: auto; flex-direction: column; align-items: stretch; gap: 42px; padding-block: 62px 70px; }
  h1 { font-size: clamp(58px, 17vw, 86px); }
  .lede { font-size: 16px; }
  .hero-art { min-height: 360px; overflow: hidden; }
  .photo-stack { top: 18px; left: 2%; width: min(350px, 92vw); }
  .promise-intro { grid-template-columns: 1fr; gap: 18px; }
  .promise-intro p { margin-bottom: 0; }
  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-grid div:nth-child(odd) { border-left: 1px solid var(--line); }
  .promise-grid div:nth-child(even) { border-right: 0; }
  .steps { padding-block: 84px; }
  .step-list { margin-left: 0; }
  .step--offset { margin-left: 6%; }
  .promise { padding-bottom: 84px; }
  .legal-page { padding-block: 62px 78px; }
  .legal-page h1 { font-size: clamp(62px, 18vw, 90px); }
  .legal-intro { font-size: 17px; }
  .policy-list,
  .faq-list { margin-top: 58px; }
  .policy-section { grid-template-columns: 46px 1fr; gap: 10px; padding-block: 26px; }
  .policy-section h2 { font-size: 20px; }
  .release-blocker { margin-top: 48px; padding: 22px; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
