:root {
  --paper: #f5f1e8;
  --ink: #141318;
  --indigo: #4f46e5;
  --indigo-dark: #312e81;
  --coral: #ff6542;
  --muted: #68656b;
  --body-readable: #3f3c43;
  --body-on-dark: #dedbe4;
  --measure-copy: 65ch;
  --measure-mobile: 34ch;
  --line: #cfc9bd;
  --white: #fff;
  --display: "Calistoga", Georgia, serif;
  --body: "Inter", sans-serif;
  --max: 1180px;
  --radius: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}
h2[id] {
  scroll-margin-top: 108px;
}
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: 68px;
  width: min(calc(100% - 48px), var(--max));
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.92);
  box-shadow: 0 10px 30px rgba(20, 19, 24, 0.06);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 16px;
  z-index: 5;
}
.brand {
  font-weight: 700;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: center;
}
.brand-mark {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 7px;
}
.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;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.language-menu {
  position: relative;
  margin-left: auto;
  margin-right: 20px;
}
.language-menu summary {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  gap: 7px;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 10px;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.language-menu summary::-webkit-details-marker {
  display: none;
}
.language-menu summary::after {
  content: "⌄";
  margin-left: 6px;
  color: var(--coral);
}
.language-menu summary:hover,
.language-menu[open] summary {
  border-color: var(--blue);
  background: var(--white);
}
.language-menu summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 35%, transparent);
  outline-offset: 3px;
}
.language-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 4px;
  width: 290px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(20, 19, 24, 0.14);
}
.language-option {
  align-items: center;
  display: flex;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  text-decoration: none;
}
.language-flag {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 16px;
  line-height: 1;
}
.language-panel a:hover,
.language-option.is-current {
  background: var(--white);
}
.language-option.is-current {
  color: var(--ink);
  font-weight: 700;
}
.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;
}
.header-cta-label {
  white-space: nowrap;
}
.header-cta-icon {
  display: none;
}
.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: calc(100dvh - 76px);
  padding: 52px 24px 72px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 44px;
}
.hero-copy {
  min-width: 0;
}
.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 {
  max-width: 680px;
  font-size: clamp(52px, 5.8vw, 78px);
  margin: 22px 0 24px;
}
h1 em,
h2 em {
  font-weight: 400;
  color: var(--indigo);
  font-style: normal;
}
.lede,
.manifesto > p:last-child,
.step > div:nth-child(2) > p:last-child,
.feature-grid p,
.faq-answer p,
.final-cta > p:not(.section-index),
.legal-lede,
.legal section p,
.not-found > p:not(.section-index) {
  max-width: min(100%, var(--measure-copy));
  text-wrap: pretty;
}
.lede {
  font-size: 18px;
  line-height: 1.62;
  max-width: min(100%, var(--measure-copy));
  color: var(--body-readable);
  margin-bottom: 32px;
}
.waitlist-form {
  max-width: 620px;
}
.hero-cta-group {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  max-width: 560px;
}
.store-button,
.play-store-button,
.app-store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 12px 26px;
  text-decoration: none;
  transition: transform 0.18s, background 0.18s, border-color 0.18s;
  cursor: pointer;
  min-height: 52px;
}
.store-button:hover,
.play-store-button:hover,
.app-store-button:hover {
  background: var(--indigo);
  border-color: var(--indigo);
  transform: translateY(-2px);
}
.store-button svg,
.play-store-button svg,
.app-store-button svg {
  margin-right: 10px;
  flex-shrink: 0;
  vertical-align: middle;
}
.store-button span,
.play-store-button span,
.app-store-button span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.cta-android {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-ios {
  background: rgba(255, 255, 255, 0.45);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.ios-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.ios-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  display: inline-block;
  animation: pulse 2s infinite;
}
.ios-early-access {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0;
}
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 101, 66, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 101, 66, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 101, 66, 0);
  }
}
.final-cta .hero-cta-group {
  margin-inline: auto;
  justify-content: center;
}
.final-cta .cta-android {
  align-items: center;
}
.final-cta .cta-ios {
  text-align: left;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
}
.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;
  min-width: 0;
  width: 100%;
  margin-right: 0;
}
.hero-art img {
  content-visibility: auto;
}
.chapter-label {
  display: block;
  max-width: min(calc(100% - 20px), 24ch);
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 12px 20px;
  overflow-wrap: anywhere;
  text-wrap: balance;
  white-space: normal;
}
.art-frame {
  overflow: visible;
}
.art-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.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;
  font-size: 18px;
  line-height: 1.64;
  color: var(--body-on-dark);
}
.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(--body-readable);
  font-size: 16px;
  line-height: 1.625;
}
.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(--body-readable);
  font-size: 16px;
  line-height: 1.625;
}
.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(--body-readable);
  line-height: 1.625;
  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 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  justify-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(79, 70, 229, 0.55), transparent 28%),
    radial-gradient(circle at 12% 90%, rgba(255, 101, 66, 0.16), transparent 26%),
    #101017;
  color: white;
  border-block: 2px solid #29283a;
  padding: 128px 24px 136px;
}
.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(151, 146, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
}
.final-cta::before {
  width: 540px;
  height: 540px;
  top: -330px;
  right: 9%;
  box-shadow: 0 0 0 28px rgba(79, 70, 229, 0.08), 0 0 0 56px rgba(79, 70, 229, 0.05);
}
.final-cta::after {
  width: 300px;
  height: 300px;
  bottom: -210px;
  left: 8%;
  border-color: rgba(255, 101, 66, 0.35);
}
.final-cta .section-index {
  color: var(--coral);
  position: relative;
}
.final-cta h2 {
  position: relative;
  font-size: clamp(48px, 6vw, 82px);
  max-width: 980px;
  margin-inline: auto;
}
.final-cta > p:not(.section-index) {
  position: relative;
  font-size: 18px;
  line-height: 1.62;
  color: var(--body-on-dark);
  margin-inline: auto;
}
.final-cta .waitlist-form {
  position: relative;
  width: min(100%, 760px);
  margin: 34px 0 0;
  text-align: center;
}
.final-cta .form-status {
  text-align: center;
}
.final-cta .form-note {
  text-align: center;
}
.waitlist-form-light {
  position: relative;
  max-width: 860px;
  margin: 34px auto 0;
  padding: 24px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}
.waitlist-form-light label {
  color: white;
}
.final-cta .form-status[data-state="success"] {
  color: #9ff0bf;
}
.final-cta .button {
  background: var(--indigo);
  border-color: var(--indigo);
}
.final-cta .button:hover {
  background: #665ff0;
  border-color: #665ff0;
}
footer {
  max-width: var(--max);
  margin: auto;
  min-height: 170px;
  padding: 35px 24px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "brand tagline legal"
    "copyright copyright copyright";
  row-gap: 24px;
  align-items: center;
}
footer > .brand {
  grid-area: brand;
}
footer > p:first-of-type {
  grid-area: tagline;
  text-align: center;
  margin: 0;
}
footer nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  grid-area: legal;
}
footer > p:last-child {
  grid-area: copyright;
  text-align: center;
  font-size: 13px;
  margin: 0;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.45s,
    transform 0.45s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 960px) {
  .site-header {
    width: calc(100% - 32px);
    height: 60px;
    margin-top: 10px;
    padding-inline: 16px;
    gap: 8px;
  }
  .site-header .brand {
    font-size: 17px;
    white-space: nowrap;
  }
  .site-header nav {
    display: none;
  }
  .language-menu {
    margin: 0 0 0 auto;
    flex-shrink: 0;
  }
  .language-menu summary {
    font-size: 11px;
    padding: 6px 8px;
  }
  .site-header .button-small {
    width: 40px;
    min-height: 40px;
    flex: 0 0 40px;
    justify-content: center;
    padding: 0;
  }
  .header-cta-label {
    display: none;
  }
  .header-cta-icon {
    display: block;
    font-size: 20px;
    line-height: 1;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 56px;
    row-gap: 28px;
  }
  .hero-copy {
    width: 100%;
  }
  h1 {
    max-width: 100%;
    font-size: clamp(44px, 9vw, 64px);
    overflow-wrap: anywhere;
  }
  .lede {
    font-size: 17px;
    max-width: min(100%, var(--measure-mobile));
  }
  .manifesto > p:last-child,
  .step > div:nth-child(2) > p:last-child,
  .feature-grid p,
  .faq-answer p,
  .final-cta > p:not(.section-index) {
    max-width: min(100%, var(--measure-mobile));
  }
  .form-row {
    flex-direction: column;
  }
  .form-row .button {
    width: 100%;
  }
  .form-status:empty {
    display: none;
  }
  .form-note {
    margin-top: 10px;
  }
  .hero-art {
    order: -1;
    max-width: 700px;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    transform: none;
    justify-self: center;
  }
  .chapter-label {
    max-width: min(calc(100% - 24px), var(--measure-mobile));
    margin-left: 12px;
  }
  .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;
    grid-template-areas:
      "brand"
      "tagline"
      "legal"
      "copyright";
    gap: 18px;
    text-align: center;
  }
  footer .brand {
    justify-self: center;
  }
  footer > p:last-child {
    text-align: center;
  }
}
@media (max-width: 520px) {
  .site-header {
    width: calc(100% - 32px);
    height: 60px;
    padding-inline: 16px;
    top: 10px;
  }
  html {
    scroll-padding-top: 86px;
  }
  h2[id] {
    scroll-margin-top: 86px;
  }
  .button-small {
    display: inline-flex;
    min-height: 38px;
    padding-inline: 14px;
    font-size: 12px;
  }
  .hero,
  .steps,
  .features,
  .faq {
    padding-inline: 18px;
  }
  .hero {
    min-height: auto;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .store-button,
  .play-store-button,
  .app-store-button {
    width: 100%;
  }
  .form-row {
    flex-direction: column;
  }
  .form-row .button {
    width: 100%;
  }
  h1 {
    font-size: clamp(48px, 12vw, 68px);
  }
  .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;
  line-height: 1.62;
  color: var(--body-readable);
  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(--body-readable);
  line-height: 1.625;
}
.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;
}
