:root {
  --paper: #f5f1e8;
  --ink: #141318;
  --indigo: #4f46e5;
  --indigo-dark: #312e81;
  --coral: #ff6542;
  --muted: #68656b;
  --line: #cfc9bd;
  --white: #fff;
  --display: "Calistoga", Georgia, serif;
  --body: "Inter", sans-serif;
  --max: 1180px;
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 var(--body);
  overflow-x: hidden;
}
a {
  color: inherit;
}
button,
input {
  font: inherit;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 99;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 76px;
  max-width: var(--max);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 5;
}
.brand {
  font-weight: 700;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: center;
}
.brand span {
  font-weight: 400;
}
.brand i {
  width: 9px;
  height: 9px;
  background: var(--coral);
  border-radius: 50%;
  margin-left: 7px;
}
.site-header nav {
  display: flex;
  gap: 30px;
}
.site-header nav a,
footer a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.button {
  min-height: 48px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: white;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.18s,
    background 0.18s;
}
.button:hover {
  background: var(--indigo);
  transform: translateY(-2px);
}
.button:active {
  transform: translateY(0);
}
.button-small {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 0 20px;
}
.button:focus-visible,
a:focus-visible,
input:focus-visible,
.faq-trigger:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}
.hero {
  max-width: var(--max);
  margin: auto;
  min-height: 760px;
  padding: 86px 24px 100px;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 56px;
}
.eyebrow,
.section-index,
.step-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow span {
  width: 32px;
  height: 2px;
  background: var(--coral);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
h1 {
  font-size: clamp(56px, 7vw, 92px);
  margin: 24px 0 28px;
}
h1 em,
h2 em {
  font-weight: 400;
  color: var(--indigo);
  font-style: normal;
}
.lede {
  font-size: 19px;
  max-width: 590px;
  color: #4f4c52;
  margin-bottom: 32px;
}
.waitlist-form {
  max-width: 620px;
}
.waitlist-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-row {
  display: flex;
  gap: 10px;
}
.form-row input {
  min-width: 0;
  flex: 1;
  height: 52px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fffdf8;
  padding: 0 20px;
}
.form-status {
  font-size: 14px;
  font-weight: 700;
  min-height: 22px;
  margin: 8px 0 0;
}
.form-status[data-state="error"] {
  color: #a32222;
}
.form-status[data-state="success"] {
  color: #176b3a;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin: 2px 0;
}
.hero-art {
  position: relative;
}
.chapter-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin: 0 0 12px 20px;
}
.art-frame {
  background: var(--indigo);
  border: 2px solid var(--ink);
  border-radius: 45% 45% var(--radius) var(--radius);
  padding: 32px 20px 0;
  overflow: hidden;
}
.art-frame img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.88) contrast(1.02);
}
.translation-note {
  position: absolute;
  right: -16px;
  bottom: 38px;
  background: var(--coral);
  border: 2px solid var(--ink);
  padding: 14px 20px;
  transform: rotate(-3deg);
  display: flex;
  flex-direction: column;
}
.translation-note b {
  font-family: var(--display);
  font-size: 25px;
}
.translation-note span {
  font-size: 11px;
}
.manifesto {
  background: var(--ink);
  color: white;
  padding: 120px max(24px, calc((100vw - var(--max)) / 2 + 24px));
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
}
.manifesto h2 {
  font-size: clamp(42px, 5.5vw, 74px);
  grid-column: 2;
}
.manifesto > p:last-child {
  grid-column: 2;
  max-width: 690px;
  font-size: 18px;
  color: #c8c5ca;
}
.manifesto em {
  color: #9e98ff;
}
.steps,
.features,
.faq {
  max-width: var(--max);
  margin: auto;
  padding: 120px 24px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
}
.section-heading h2,
.features h2,
.faq h2 {
  font-size: clamp(42px, 5vw, 68px);
}
.step {
  display: grid;
  grid-template-columns: 70px 1fr 360px;
  gap: 30px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.step > span {
  font-family: var(--display);
  font-size: 36px;
  color: var(--coral);
}
.step h3 {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}
.step > div:nth-child(2) > p:last-child {
  color: var(--muted);
  max-width: 480px;
}
.panel {
  height: 220px;
  border: 2px solid var(--ink);
  background: #fff;
  position: relative;
  overflow: hidden;
}
.product-shot {
  height: 280px;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: #fff;
}
.product-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product-shot-wide img {
  object-position: center;
}
.product-shot-tall img {
  object-position: center 42%;
}
.panel-cards {
  background: var(--indigo-dark);
  display: grid;
  place-items: center;
}
.panel-cards i {
  position: absolute;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 22px 30px;
  font: normal 25px var(--display);
}
.panel-cards i:first-child {
  transform: translate(-50px, -25px) rotate(-8deg);
}
.panel-cards i:nth-child(2) {
  transform: translate(55px, 15px) rotate(7deg);
}
.panel-cards i:last-child {
  transform: translate(-15px, 55px) rotate(-2deg);
}
.features {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.feature-grid article {
  padding: 30px;
  border-right: 1px solid var(--line);
}
.feature-grid article:last-child {
  border: 0;
}
.feature-grid svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--indigo);
  stroke-width: 1.7;
}
.feature-grid h3 {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
}
.feature-grid p {
  color: var(--muted);
  font-size: 14px;
}
.privacy-band {
  text-align: center;
  background: var(--indigo);
  color: white;
  padding: 80px 24px;
}
.privacy-band h2 {
  font-size: clamp(40px, 5vw, 66px);
  margin-bottom: 20px;
}
.privacy-band > p:last-child {
  color: #dedcff;
}
.privacy-band a {
  font-weight: 700;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.faq-list article {
  border-top: 1px solid var(--line);
}
.faq-trigger {
  width: 100%;
  min-height: 70px;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}
.faq-trigger b {
  font-size: 25px;
  color: var(--indigo);
  transition: transform 0.2s;
}
.faq-trigger[aria-expanded="true"] b {
  transform: rotate(45deg);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s;
}
.faq-answer p {
  overflow: hidden;
  color: var(--muted);
  margin: 0;
}
.faq-trigger[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}
.faq-trigger[aria-expanded="true"] + .faq-answer p {
  padding-bottom: 22px;
}
.final-cta {
  text-align: center;
  background: var(--coral);
  border-block: 2px solid var(--ink);
  padding: 110px 24px;
}
.final-cta h2 {
  font-size: clamp(48px, 6vw, 82px);
}
.final-cta > p:not(.section-index) {
  font-size: 18px;
}
.waitlist-form-light {
  margin: 30px auto 0;
  text-align: left;
}
footer {
  max-width: var(--max);
  margin: auto;
  min-height: 140px;
  padding: 35px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}
footer > p:last-child {
  text-align: right;
  font-size: 13px;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s,
    transform 0.45s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 800px) {
  .site-header nav {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }
  .hero-art {
    max-width: 560px;
  }
  .manifesto {
    grid-template-columns: 1fr;
    padding-block: 80px;
  }
  .manifesto h2,
  .manifesto > p:last-child {
    grid-column: 1;
  }
  .step {
    grid-template-columns: 50px 1fr;
  }
  .step .panel {
    grid-column: 2;
  }
  .step .product-shot {
    grid-column: 2;
  }
  .features,
  .faq {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  footer {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  footer .brand {
    justify-self: center;
  }
  footer > p:last-child {
    text-align: center;
  }
}
@media (max-width: 520px) {
  .site-header {
    padding-inline: 16px;
  }
  .button-small {
    display: none;
  }
  .hero,
  .steps,
  .features,
  .faq {
    padding-inline: 18px;
  }
  .hero {
    min-height: auto;
  }
  .form-row {
    flex-direction: column;
  }
  .form-row .button {
    width: 100%;
  }
  h1 {
    font-size: 51px;
  }
  .translation-note {
    right: -4px;
  }
  .section-heading {
    display: block;
  }
  .step {
    grid-template-columns: 38px 1fr;
    gap: 16px;
  }
  .step .panel {
    grid-column: 1/-1;
  }
  .step .product-shot {
    grid-column: 1/-1;
  }
  .feature-grid {
    display: block;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

.legal {
  max-width: 820px;
  margin: auto;
  padding: 100px 24px 130px;
}
.legal h1,
.not-found h1 {
  font: 400 clamp(54px, 8vw, 92px) / 1 var(--display);
  letter-spacing: -0.04em;
}
.legal-lede {
  font-size: 21px;
  color: var(--muted);
  margin-bottom: 70px;
}
.legal section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}
.legal h2 {
  font: 400 30px/1.2 var(--display);
}
.legal section p {
  color: var(--muted);
}
.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 800px;
  margin: auto;
  padding: 24px;
}
.not-found .button {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
