@font-face {
  font-family: "DM Serif Display";
  src: url("/assets/landing/dm-serif-display-regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url("/assets/landing/manrope-regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: Manrope;
  src: url("/assets/landing/manrope-semibold.ttf") format("truetype");
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: Manrope;
  src: url("/assets/landing/manrope-extrabold.ttf") format("truetype");
  font-display: swap;
  font-weight: 800;
}

:root {
  color-scheme: light;
  --pine: #102d24;
  --pine-raised: #18382d;
  --cream: #fffaf0;
  --paper: #f4f0e6;
  --rust: #b94725;
  --rust-dark: #963719;
  --sage: #9aac86;
  --moss: #667d5d;
  --ink: #17231f;
  --muted: #5f6e67;
  --line: #d4d1c7;
  --white: #fffdf7;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: Manrope, "Avenir Next", Avenir, sans-serif;
  --page: min(1180px, calc(100% - 48px));
  --shadow: 0 26px 70px rgb(16 45 36 / 16%);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 50;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--rust);
  color: white;
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

.hero {
  position: relative;
  min-height: min(960px, 100svh);
  overflow: hidden;
  background: var(--pine);
  color: var(--cream);
}

.hero::before {
  position: absolute;
  top: -310px;
  left: -290px;
  width: 620px;
  height: 620px;
  border: 74px solid rgb(154 172 134 / 5%);
  border-radius: 50%;
  box-shadow:
    0 0 0 74px rgb(154 172 134 / 4%),
    0 0 0 148px rgb(154 172 134 / 3%);
  content: "";
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--cream);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.04em;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a {
  color: var(--cream);
  text-decoration: none;
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible {
  text-decoration: underline;
  text-decoration-color: var(--sage);
  text-underline-offset: 6px;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgb(255 250 240 / 34%);
  border-radius: 999px;
}

.mobile-menu {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  min-height: calc(min(960px, 100svh) - 92px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px clamp(40px, 6vw, 88px) 96px 0;
}

.eyebrow {
  margin: 0;
  color: var(--rust);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
}

.hero h1 {
  max-width: 600px;
  margin: 24px 0 26px;
  color: var(--cream);
  font-size: clamp(68px, 6.8vw, 102px);
  line-height: .9;
}

.hero h1 em {
  color: var(--sage);
  font-style: italic;
}

.hero-summary {
  max-width: 550px;
  margin: 0;
  color: #cedbd4;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--rust);
  background: var(--rust);
  color: white;
}

.button-primary:hover {
  border-color: var(--rust-dark);
  background: var(--rust-dark);
}

.button-ghost {
  border-color: rgb(255 250 240 / 34%);
  color: var(--cream);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 52px;
  color: #c7d4cd;
  font-size: 12px;
  font-weight: 600;
}

.trust-row span::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
}

.hero-art {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: #e7e0cd;
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.field-stamp {
  position: absolute;
  top: 100px;
  right: 44px;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgb(16 45 36 / 48%);
  border-radius: 50%;
  background: rgb(255 250 240 / 88%);
  color: var(--pine);
  font-family: var(--serif);
  font-size: 18px;
  line-height: .95;
  text-align: center;
  rotate: 7deg;
}

.hero-coordinates {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
}

.manifesto {
  padding: clamp(86px, 10vw, 145px) 0;
  background: var(--cream);
}

.manifesto .eyebrow {
  margin-bottom: 28px;
}

.manifesto-statement {
  max-width: 1120px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6.2vw, 82px);
  line-height: 1.07;
  letter-spacing: -.03em;
}

.manifesto-muted {
  color: #bfc5bf;
}

.manifesto-statement em {
  color: var(--pine);
}

.section {
  padding: clamp(88px, 10vw, 150px) 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading h2 {
  margin: 18px 0;
  color: var(--pine);
  font-size: clamp(46px, 6vw, 76px);
  line-height: .98;
}

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

.discovery {
  background: var(--paper);
}

.discovery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr);
  overflow: hidden;
  border: 1px solid #cfd2c8;
  border-radius: 36px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.discovery-stage {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: var(--pine);
}

.discovery-stage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgb(16 45 36 / 16%));
  pointer-events: none;
  content: "";
}

.discovery-art {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  object-position: center;
}

.discovery-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 74px);
}

.discovery-copy h2 {
  margin: 18px 0;
  color: var(--pine);
  font-size: clamp(48px, 5vw, 70px);
  line-height: .95;
}

.discovery-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.feature-list {
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.feature {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.feature-number {
  grid-row: span 2;
  color: var(--rust);
  font-size: 12px;
  font-weight: 800;
}

.feature strong {
  color: var(--pine);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.feature span:last-child {
  color: #6d7b74;
  font-size: 13px;
}

.tour {
  background: var(--pine);
  color: var(--cream);
}

.tour .section-heading h2 {
  color: var(--cream);
}

.tour .section-heading > p:not(.eyebrow) {
  color: #c7d5ce;
}

.film-frame {
  overflow: hidden;
  border: 1px solid rgb(255 250 240 / 20%);
  border-radius: 30px;
  background: #091b15;
  box-shadow: 0 30px 90px rgb(0 0 0 / 24%);
}

.film-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #091b15;
}

.film-note {
  margin: 16px 4px 0;
  color: #b9cbc2;
  font-size: 13px;
}

.screen-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 280px));
  justify-content: space-between;
  gap: 42px 24px;
  margin-top: 42px;
}

.screen-rail figure {
  margin: 0;
}

.screen-card {
  overflow: hidden;
  border: 1px solid rgb(255 250 240 / 15%);
  border-radius: 22px;
  background: #081812;
}

.screen-card img {
  width: 100%;
  height: auto;
}

.screen-rail figcaption {
  padding: 13px 3px 0;
  color: #b9cbc2;
  font-size: 12px;
}

.screen-rail strong {
  display: block;
  margin-bottom: 2px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.journal {
  background: var(--cream);
}

.journal-layout {
  display: grid;
  grid-template-columns: minmax(400px, .95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.journal-art {
  position: relative;
  width: min(100%, 520px);
  justify-self: start;
}

.journal-art::before {
  position: absolute;
  z-index: 0;
  inset: 18px -18px -18px 18px;
  border-radius: 34px;
  background: linear-gradient(145deg, #d9dfd2, #c8d2c5);
  content: "";
}

.journal-art > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1122 / 1180;
  border-radius: 30px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.journal-copy h2 {
  margin: 18px 0;
  color: var(--pine);
  font-size: clamp(48px, 5.7vw, 76px);
  line-height: .96;
}

.journal-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.journal-steps {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.journal-steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.journal-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.journal-steps b {
  color: var(--rust);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.journal-steps strong {
  color: var(--pine);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.journal-steps p {
  grid-column: 2;
  margin: 0;
  color: #68766f;
  font-size: 13px;
}

.trust {
  background: var(--paper);
}

.trust-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  border-radius: 34px;
  background: var(--pine);
  box-shadow: var(--shadow);
  color: var(--cream);
}

.trust-copy {
  padding: clamp(44px, 6vw, 76px);
}

.trust-copy h2 {
  margin: 18px 0;
  color: var(--cream);
  font-size: clamp(46px, 5.2vw, 70px);
  line-height: .96;
}

.trust-copy > p:not(.eyebrow) {
  color: #c4d3cb;
}

.trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-links a {
  padding: 9px 13px;
  border: 1px solid rgb(255 250 240 / 24%);
  border-radius: 999px;
  color: var(--cream);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.trust-list {
  display: grid;
  align-content: center;
  padding: clamp(36px, 5vw, 64px);
  background: var(--pine-raised);
}

.trust-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgb(255 250 240 / 12%);
}

.trust-item:last-child {
  border-bottom: 0;
}

.trust-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--rust);
  color: white;
  font-weight: 800;
}

.trust-item strong {
  display: block;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
}

.trust-item p {
  margin: 4px 0 0;
  color: #b9cbc2;
  font-size: 13px;
}

.launch {
  background: var(--cream);
}

.launch-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.launch-intro h2 {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--pine);
  font-size: clamp(48px, 6vw, 80px);
  line-height: .95;
}

.launch-intro p:last-child {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.android-release {
  display: grid;
  justify-items: start;
  gap: 22px;
  max-width: 430px;
}

.android-release > p {
  margin: 0;
  color: var(--muted);
}

.play-store-button {
  min-height: 60px;
  padding-inline: 20px 24px;
  gap: 14px;
}

.play-store-button small {
  display: block;
  margin-bottom: 2px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 1;
}

.play-mark {
  font-size: 22px;
}

.waitlist-panel {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: clamp(34px, 7vw, 90px);
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid #c9cdc3;
  border-radius: 34px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.waitlist-panel h3 {
  margin: 16px 0;
  color: var(--pine);
  font-size: clamp(42px, 4.8vw, 66px);
  line-height: .96;
}

.waitlist-panel p {
  color: var(--muted);
}

.waitlist-form {
  display: grid;
  gap: 14px;
}

.field-label {
  color: var(--pine);
  font-size: 13px;
  font-weight: 800;
}

.email-row {
  display: flex;
  gap: 10px;
}

.email-input {
  min-width: 0;
  min-height: 54px;
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #80938a;
  border-radius: 14px;
  background: white;
  color: var(--ink);
}

.email-input::placeholder {
  color: #6e7b75;
}

.waitlist-submit {
  cursor: pointer;
}

.waitlist-submit:disabled {
  cursor: wait;
  opacity: .68;
  transform: none;
}

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: #53615b;
  font-size: 12px;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--pine);
}

.form-note {
  margin: 0;
  font-size: 12px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--pine);
  font-weight: 800;
}

.form-status[data-state="error"] {
  color: #9f351c;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.footer-inner {
  display: grid;
  grid-template-columns: .8fr 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 34px 0 44px;
  color: #59665f;
  font-size: 12px;
}

.footer-brand {
  color: var(--pine);
}

.footer-tagline {
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 20px;
}

.footer-links a {
  font-weight: 800;
  text-underline-offset: 4px;
}

:focus-visible {
  outline: 3px solid #efb55a;
  outline-offset: 4px;
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 760px;
  }

  .hero-copy {
    padding-right: 32px;
  }

  .hero h1 {
    font-size: clamp(58px, 7.7vw, 78px);
  }

  .discovery-layout,
  .journal-layout {
    grid-template-columns: 1fr 1fr;
  }

  .screen-rail {
    display: flex;
    overflow-x: auto;
    padding-bottom: 18px;
    scroll-snap-type: x mandatory;
  }

  .screen-rail figure {
    min-width: 210px;
    scroll-snap-align: start;
  }

  .trust-panel,
  .waitlist-panel {
    grid-template-columns: 1fr;
  }

  .launch-intro {
    align-items: start;
    flex-direction: column;
  }

  .android-release {
    max-width: 620px;
  }
}

@media (max-width: 768px) {
  :root {
    --page: min(100% - 32px, 660px);
  }

  .site-header {
    min-height: 78px;
  }

  .site-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgb(255 250 240 / 30%);
    border-radius: 50%;
    cursor: pointer;
    font-size: 0;
    list-style: none;
  }

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

  .mobile-menu summary::before {
    color: var(--cream);
    content: "≡";
    font-size: 21px;
  }

  .mobile-menu[open] summary::before {
    content: "×";
  }

  .mobile-menu nav {
    position: absolute;
    top: 52px;
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 32px));
    padding: 14px;
    border: 1px solid rgb(255 250 240 / 18%);
    border-radius: 18px;
    background: var(--pine-raised);
    box-shadow: var(--shadow);
  }

  .mobile-menu a {
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--cream);
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-menu a:last-child {
    background: var(--rust);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    order: 2;
    padding: 42px 0 72px;
  }

  .hero-art {
    min-height: 440px;
    clip-path: none;
    border-radius: 26px;
  }

  .hero-art > img {
    object-position: center 35%;
  }

  .field-stamp {
    top: 24px;
    right: 24px;
    width: 90px;
    height: 90px;
    font-size: 15px;
  }

  .hero h1 {
    max-width: 660px;
    font-size: clamp(58px, 13vw, 82px);
  }

  .manifesto-statement br {
    display: none;
  }

  .discovery-layout,
  .journal-layout {
    grid-template-columns: 1fr;
  }

  .discovery-stage {
    min-height: 540px;
  }

  .discovery-art {
    min-height: 540px;
  }

  .journal-art {
    order: 2;
  }

  .trust-panel {
    border-radius: 26px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-tagline {
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  :root {
    --page: calc(100% - 28px);
  }

  .brand {
    font-size: 18px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-art {
    min-height: 330px;
  }

  .hero h1 {
    font-size: clamp(51px, 15vw, 66px);
  }

  .hero-summary {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
  }

  .manifesto {
    padding: 72px 0;
  }

  .manifesto-statement {
    font-size: clamp(39px, 12vw, 54px);
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .discovery-copy h2,
  .journal-copy h2,
  .trust-copy h2,
  .launch-intro h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .section-heading > p:not(.eyebrow),
  .journal-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .discovery-layout {
    border-radius: 24px;
  }

  .discovery-stage {
    min-height: 500px;
  }

  .discovery-art {
    min-height: 500px;
  }

  .discovery-copy {
    padding: 38px 24px;
  }

  .screen-rail {
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .screen-rail figure {
    min-width: min(72vw, 250px);
  }

  .journal-layout {
    gap: 44px;
  }

  .journal-art > img {
    border-radius: 22px;
  }

  .trust-copy,
  .trust-list,
  .waitlist-panel {
    padding: 32px 24px;
  }

  .email-row {
    flex-direction: column;
  }

  .launch-intro {
    margin-bottom: 38px;
  }

  .play-store-button {
    width: auto;
  }

  .waitlist-panel h3 {
    font-size: 44px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: reveal .7s ease-out both;
  }

  .hero-art {
    animation: reveal .75s .08s ease-out both;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      translate: 0 18px;
    }
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
