:root {
  --ink: #0f1519;
  --ink-soft: #1a242a;
  --cream: #fff8e8;
  --cream-muted: #d8d3c5;
  --gold: #f4c64f;
  --gold-deep: #dcae35;
  --line: rgba(255, 248, 232, 0.18);
  --page-width: 72rem;
  --side: clamp(1.25rem, 5vw, 4rem);
  --header-height: 5.25rem;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 20rem;
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--gold);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 1rem;
  left: 1rem;
  transform: translateY(-180%);
  padding: 0.6rem 0.85rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 1rem var(--side);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.65rem, 2vw, 1.5rem);
  font-size: 0.9rem;
}

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

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--cream);
}

.site-nav .nav-action {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.site-nav .nav-action:hover {
  background: var(--gold);
  color: var(--ink);
}

.site-shell {
  width: min(100% - (var(--side) * 2), var(--page-width));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-2px);
}

.button--quiet {
  background: transparent;
  color: var(--gold);
}

.button--quiet:hover {
  background: var(--gold);
}

.route-line {
  position: absolute;
  z-index: 0;
  width: min(52vw, 42rem);
  height: min(40vw, 26rem);
  border: 1px solid rgba(244, 198, 79, 0.45);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 100% 0 0;
  pointer-events: none;
}

.screenshot-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 248, 232, 0.24);
  background: #0b0f12;
  box-shadow: 1.1rem 1.1rem 0 rgba(244, 198, 79, 0.12);
}

.screenshot-frame img {
  width: 100%;
  height: auto;
}

.landing-page {
  overflow-x: hidden;
}

.landing-header {
  background: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  padding-inline: var(--side);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.75fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  width: min(100%, 82rem);
  margin-inline: auto;
  padding-block: clamp(2.5rem, 7vh, 5.5rem);
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 43rem;
}

.hero__brand {
  margin: 0;
  color: var(--cream);
  font-size: clamp(4.6rem, 10vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.77;
}

.hero h1 {
  max-width: 12ch;
  margin: clamp(1.7rem, 4vw, 3rem) 0 0;
  font-size: clamp(2.5rem, 5.5vw, 5.15rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero__lede {
  max-width: 35rem;
  margin: 1.5rem 0 0;
  color: var(--cream-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero__button {
  margin-top: 2rem;
}

.hero__visual {
  position: relative;
  width: min(100%, 25rem);
  margin: 0 auto;
  transform: rotate(2.5deg);
}

.phone-shot {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 232, 0.34);
  border-radius: 2.3rem;
  background: #0b0f12;
  box-shadow: 1rem 1.25rem 0 rgba(244, 198, 79, 0.13), 0 1.4rem 5rem rgba(0, 0, 0, 0.35);
  transition: border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.phone-shot img {
  width: 100%;
  height: auto;
}

.phone-shot:hover {
  border-color: rgba(244, 198, 79, 0.75);
  box-shadow: 0.65rem 0.85rem 0 rgba(244, 198, 79, 0.22), 0 1.4rem 5rem rgba(0, 0, 0, 0.42);
  transform: translateY(-0.45rem);
}

.phone-shot--hero::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.route-field {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  opacity: 0.9;
  pointer-events: none;
}

.route-line--one {
  top: 9%;
  right: -4%;
  transform: rotate(-14deg);
}

.route-line--two {
  right: 25%;
  bottom: -19%;
  width: min(42vw, 35rem);
  height: min(33vw, 23rem);
  border-color: rgba(244, 198, 79, 0.2);
  transform: rotate(168deg);
}

.route-stop {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 0.45rem rgba(244, 198, 79, 0.11);
}

.route-stop--one {
  top: 18%;
  right: 11%;
}

.route-stop--two {
  right: 39%;
  bottom: 13%;
}

.story-section,
.feature-sequence,
.download-section {
  padding-inline: var(--side);
}

.story-section {
  background: var(--cream);
  color: var(--ink);
}

.story-section__inner {
  display: grid;
  grid-template-columns: minmax(18rem, 0.75fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
  width: min(100%, var(--page-width));
  margin-inline: auto;
  padding-block: clamp(5rem, 12vw, 9rem);
}

.story-section__copy {
  order: 2;
}

.story-section__visual {
  width: min(100%, 23rem);
  margin: 0 auto;
  transform: rotate(-2deg);
}

.story-section .eyebrow {
  color: #8b6712;
}

.story-section h2,
.feature-beat h2,
.download-section h2 {
  margin: 0;
  font-size: clamp(2.7rem, 6.5vw, 5.8rem);
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.story-section__copy > p:last-child,
.feature-beat__copy > p:last-child,
.download-section__inner > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.story-section__copy > p:last-child {
  color: #485157;
}

.feature-sequence {
  background: var(--ink-soft);
}

.feature-beat {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.62fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 9rem);
  width: min(100%, var(--page-width));
  min-height: 48rem;
  margin-inline: auto;
  padding-block: clamp(5rem, 10vw, 8rem);
}

.feature-beat + .feature-beat {
  border-top: 1px solid var(--line);
}

.feature-beat__copy > p:last-child {
  color: var(--cream-muted);
}

.feature-beat__visual {
  width: min(100%, 22rem);
  margin: 0 auto;
}

.phone-shot--lean-left {
  transform: rotate(-3deg);
}

.phone-shot--lean-left:hover {
  transform: rotate(-1deg) translateY(-0.45rem);
}

.phone-shot--lean-right {
  transform: rotate(3deg);
}

.phone-shot--lean-right:hover {
  transform: rotate(1deg) translateY(-0.45rem);
}

.download-section {
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: var(--ink);
}

.download-section::after {
  position: absolute;
  right: -13rem;
  bottom: -15rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(15, 21, 25, 0.24);
  border-radius: 50%;
  content: "";
}

.download-section__inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--page-width));
  margin-inline: auto;
  padding-block: clamp(5rem, 11vw, 8rem);
}

.download-section .eyebrow {
  color: #614707;
}

.download-section h2 {
  max-width: 12ch;
}

.download-section__inner > p:not(.eyebrow) {
  color: #3d371f;
}

.download-section__button {
  margin-top: 2rem;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.download-section__button:hover {
  background: var(--cream);
  color: var(--ink);
}

.landing-page .site-footer {
  background: var(--ink);
}

@media (max-width: 62rem) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 19rem);
    gap: clamp(2rem, 4vw, 4rem);
  }

  .hero__brand {
    font-size: clamp(4.6rem, 10vw, 7rem);
  }

  .story-section__inner,
  .feature-beat {
    gap: clamp(2.5rem, 6vw, 5rem);
  }
}

@media (max-width: 46rem) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 2.5rem;
  }

  .hero__brand {
    font-size: clamp(3.9rem, 20vw, 6.5rem);
  }

  .hero h1 {
    max-width: 13ch;
    margin-top: 1.5rem;
  }

  .hero__lede {
    margin-top: 1rem;
  }

  .hero__button {
    margin-top: 1.5rem;
  }

  .hero__visual {
    width: min(48vw, 13rem);
  }

  .route-line--one {
    top: 36%;
    right: -30%;
    width: 90vw;
    height: 55vw;
  }

  .route-line--two,
  .route-stop--two {
    display: none;
  }

  .route-stop--one {
    top: 58%;
    right: 10%;
  }

  .story-section__inner,
  .feature-beat {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .story-section__copy {
    order: 0;
  }

  .story-section__visual,
  .feature-beat__visual {
    width: min(68vw, 19rem);
  }

  .feature-beat {
    gap: 3rem;
  }

}

.page-intro {
  padding: clamp(4rem, 12vw, 8rem) var(--side) clamp(3rem, 8vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.page-intro__inner {
  width: min(100%, 48rem);
  margin-inline: auto;
}

.page-intro h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.page-intro p:not(.eyebrow) {
  max-width: 43rem;
  margin: 1.5rem 0 0;
  color: var(--cream-muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.legal-copy {
  width: min(100% - (var(--side) * 2), 48rem);
  margin: 0 auto;
  padding-block: clamp(3.5rem, 8vw, 6rem);
  color: var(--cream-muted);
}

.legal-copy h2,
.legal-copy h3 {
  margin: 2.4rem 0 0.85rem;
  color: var(--cream);
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.legal-copy h2:first-child,
.legal-copy h3:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  max-width: 68ch;
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 1.25rem;
}

.legal-copy a {
  color: var(--gold);
}

.updated {
  color: #9da39e !important;
  font-size: 0.9rem !important;
  font-weight: 700;
}

.information-page main {
  min-height: calc(100svh - var(--header-height));
}

.help-content {
  width: min(100% - (var(--side) * 2), 60rem);
  margin-inline: auto;
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}

.help-notice {
  margin-block: clamp(2rem, 5vw, 3.5rem);
  padding: 1.15rem 1.25rem;
  border-left: 0.22rem solid var(--gold);
  background: rgba(244, 198, 79, 0.08);
  color: var(--cream-muted);
}

.help-notice p,
.help-notes p,
.help-source {
  margin: 0;
}

.help-notice strong,
.help-notes strong {
  color: var(--cream);
}

.help-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.help-toc a {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
}

.help-section {
  padding-block: clamp(3rem, 8vw, 5rem);
  border-top: 1px solid var(--line);
}

.help-section .help-title {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.help-section .help-kicker {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.help-section p,
.help-section li {
  color: var(--cream-muted);
}

.help-section .help-title + p {
  margin-top: 1.25rem;
}

.help-section ul {
  padding-left: 1.2rem;
}

.help-guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 21rem);
  align-items: center;
  gap: clamp(2.5rem, 8vw, 6rem);
}

.help-guide--text-only {
  grid-template-columns: minmax(0, 42rem);
}

.help-steps {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 0;
  padding: 0;
  counter-reset: help-step;
  list-style: none;
}

.help-steps li {
  position: relative;
  min-height: 1.8rem;
  padding-left: 2.6rem;
  counter-increment: help-step;
}

.help-steps li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  content: counter(help-step);
  font-size: 0.76rem;
  font-weight: 900;
}

.help-figure {
  width: min(100%, 21rem);
  margin: 0 auto;
}

.help-figure img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 232, 0.24);
  border-radius: 2rem;
  background: #0b0f12;
  box-shadow: 0.8rem 0.8rem 0 rgba(244, 198, 79, 0.1);
}

.help-figure figcaption {
  margin-top: 0.9rem;
  color: #9da39e;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.help-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  background: var(--line);
}

.help-notes p {
  padding: 1.25rem;
  background: var(--ink);
}

.help-notes strong {
  display: block;
  margin-bottom: 0.45rem;
}

.help-qa {
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.help-qa details {
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.help-qa summary {
  cursor: pointer;
  color: var(--cream);
  font-weight: 800;
}

.help-qa details p {
  max-width: 68ch;
  margin: 0.8rem 0 0;
}

.help-source {
  max-width: 68ch;
  padding-top: 1.5rem;
  font-size: 0.88rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 2rem var(--side);
  border-top: 1px solid var(--line);
  color: var(--cream-muted);
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  text-decoration: none;
}

[data-reveal] {
  transform: none;
  opacity: 1;
}

.is-ready [data-reveal] {
  transform: translateY(1rem);
  opacity: 0;
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.is-ready [data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 42rem) {
  :root {
    --side: 1.25rem;
  }

  .site-header {
    align-items: flex-start;
    gap: 1rem;
  }

  .site-nav {
    max-width: 15.5rem;
    gap: 0.55rem 0.8rem;
  }

  .site-nav a,
  .footer-links a {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.5rem 0.2rem;
  }

  .site-nav .nav-action {
    padding-inline: 0.75rem;
  }

  .brand img {
    width: 2rem;
    height: 2rem;
  }

  .help-guide {
    grid-template-columns: 1fr;
  }

  .help-guide .help-figure {
    order: 2;
    width: min(72vw, 19rem);
  }

  .help-notes {
    grid-template-columns: 1fr;
  }
}

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

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

  .is-ready [data-reveal] {
    transform: none;
    opacity: 1;
  }
}
