:root {
  color-scheme: dark;
  --ink: #0a090b;
  --ink-soft: #151218;
  --paper: #f6f4ef;
  --paper-muted: #d5d0c7;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(10, 9, 11, 0.18);
  --amber: #ffbd3d;
  --coral: #ff6b5f;
  --mint: #69d6b0;
  --sky: #73bdeb;
  --max: 1180px;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "SF Pro Text", "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  height: 72px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(10, 9, 11, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 40px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--paper);
  font-size: 18px;
  font-weight: 760;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 7px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--paper-muted);
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
}

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

.nav-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(255, 189, 61, 0.55);
  border-radius: 6px;
  color: var(--amber);
  font-weight: 720;
}

.hero {
  position: relative;
  min-height: 560px;
  height: min(740px, calc(100svh - 128px));
  max-height: 740px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(10, 9, 11, 0.88));
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(44%, 510px);
  padding-bottom: 22px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: 88px;
  font-weight: 820;
  line-height: 0.96;
}

.hero-lede {
  max-width: 460px;
  margin: 26px 0 0;
  color: var(--paper-muted);
  font-size: 21px;
  line-height: 1.5;
}

.hero-lede strong {
  color: #fff;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  font-weight: 780;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

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

.button-secondary {
  border-color: var(--line-dark);
  background: transparent;
  color: var(--paper);
}

.button-secondary:hover {
  border-color: var(--paper);
  background: transparent;
}

.launch-note {
  color: var(--paper-muted);
  font-size: 14px;
}

.hero-art {
  position: absolute;
  z-index: 1;
  right: max(calc((100vw - var(--max)) / 2 - 110px), -60px);
  bottom: -4px;
  width: min(68vw, 910px);
  pointer-events: none;
}

.hero-art img {
  width: 100%;
  height: auto;
}

.proof-strip {
  background: var(--paper);
  color: var(--ink);
}

.proof-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  min-height: 122px;
  padding: 27px 32px;
  border-right: 1px solid var(--line-light);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
}

.proof-item span {
  color: #5c5852;
  font-size: 14px;
}

.section {
  padding: 112px 20px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-label::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section h2 {
  max-width: 820px;
  margin: 0;
  font-size: 54px;
  line-height: 1.06;
}

.section-intro {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--paper-muted);
  font-size: 19px;
}

.original-section {
  background: #121014;
}

.original-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 72px;
}

.original-visual {
  min-width: 0;
}

.original-visual img {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
}

.statement-list {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.statement-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
}

.statement-list li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.statement-number {
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
}

.statement-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 17px;
}

.statement-list span {
  color: var(--paper-muted);
  font-size: 14px;
}

.surfaces-section {
  background: var(--paper);
  color: var(--ink);
}

.surfaces-section .section-label {
  color: #0d7353;
}

.surfaces-section .section-intro {
  color: #5c5852;
}

.surface-layout {
  margin-top: 62px;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 76px;
}

.phone-shot {
  width: auto;
  height: auto;
  max-height: 720px;
  margin: 0 auto;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(10, 9, 11, 0.18);
}

.surface-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.surface-points li {
  padding: 28px 0;
  border-top: 1px solid var(--line-light);
}

.surface-points li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.surface-points h3 {
  margin: 0 0 7px;
  font-size: 24px;
}

.surface-points p {
  margin: 0;
  color: #5c5852;
}

.session-limit {
  color: #9d3f36;
  font-weight: 760;
}

.steps-section {
  background: var(--ink);
}

.steps {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.step {
  min-height: 240px;
  padding: 30px 34px 34px 0;
  border-right: 1px solid var(--line-dark);
}

.step + .step {
  padding-left: 34px;
}

.step:last-child {
  border-right: 0;
}

.step-index {
  display: block;
  margin-bottom: 48px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 820;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.step p {
  margin: 0;
  color: var(--paper-muted);
}

.privacy-band {
  padding: 94px 20px;
  background: var(--mint);
  color: #07130f;
}

.privacy-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: end;
  gap: 70px;
}

.privacy-band h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
}

.privacy-band p {
  margin: 20px 0 0;
  font-size: 18px;
}

.privacy-facts {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(7, 19, 15, 0.25);
}

.privacy-facts li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(7, 19, 15, 0.25);
  font-weight: 720;
}

.faq-section {
  background: var(--paper);
  color: var(--ink);
}

.faq-section .section-label {
  color: #a3483f;
}

.faq-list {
  max-width: 880px;
  margin-top: 60px;
  border-top: 1px solid var(--line-light);
}

.faq-list details {
  border-bottom: 1px solid var(--line-light);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 740;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 6px;
  content: "+";
  color: #625d56;
  font-size: 24px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  max-width: 720px;
  margin: -4px 0 24px;
  color: #5c5852;
}

.availability {
  padding: 98px 20px;
  background: var(--coral);
  color: #170605;
}

.availability-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 54px;
}

.availability h2 {
  max-width: 700px;
  margin: 0;
  font-size: 52px;
  line-height: 1.05;
}

.availability p {
  max-width: 380px;
  margin: 0;
  font-size: 17px;
}

.site-footer {
  padding: 52px 20px 38px;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--paper-muted);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  color: var(--paper);
  font-size: 22px;
  font-weight: 800;
}

.footer-brand p {
  max-width: 380px;
  margin: 8px 0 0;
  color: var(--paper-muted);
  font-size: 14px;
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  font-size: 14px;
}

.footer-meta {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #8f8981;
  font-size: 12px;
}

.legal-main {
  background: var(--paper);
  color: var(--ink);
}

.legal-hero {
  padding: 88px 20px 72px;
  border-bottom: 1px solid var(--line-light);
}

.legal-hero-inner,
.legal-content {
  width: min(100%, 840px);
  margin: 0 auto;
}

.legal-kicker {
  margin: 0 0 14px;
  color: #9d3f36;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.04;
}

.legal-summary {
  max-width: 690px;
  margin: 20px 0 0;
  color: #5c5852;
  font-size: 19px;
}

.legal-updated {
  margin: 26px 0 0;
  color: #716c65;
  font-size: 13px;
}

.legal-content {
  padding: 64px 0 100px;
}

.legal-content section {
  padding: 0 0 42px;
  border-bottom: 1px solid var(--line-light);
}

.legal-content section + section {
  padding-top: 42px;
}

.legal-content h2 {
  margin: 0 0 16px;
  font-size: 27px;
}

.legal-content h3 {
  margin: 26px 0 10px;
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  color: #4e4a45;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 9px;
}

.legal-content a {
  color: #7d312b;
}

.legal-callout {
  margin: 28px 0 0;
  padding: 20px 22px;
  border-left: 4px solid var(--mint);
  background: #e9f4ef;
  color: #183a2e;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}

.support-option {
  padding: 26px;
  background: var(--paper);
}

.support-option h3 {
  margin-top: 0;
}

.support-option p:last-child {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .hero-copy {
    width: 58%;
  }

  .hero-lede {
    max-width: 430px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-art {
    right: -150px;
    width: 78vw;
  }

  .original-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .original-visual {
    order: 2;
  }

  .original-visual img {
    max-height: 560px;
  }

  .surface-layout {
    grid-template-columns: minmax(270px, 0.8fr) 1.2fr;
    gap: 48px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 64px;
  }

  .header-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-nav a:not(.nav-action) {
    display: none;
  }

  .nav-action {
    min-height: 38px;
  }

  .hero {
    min-height: 520px;
    height: min(720px, calc(100svh - 112px));
  }

  .hero-inner {
    width: min(calc(100% - 32px), var(--max));
    align-items: flex-start;
    padding-top: 58px;
  }

  .hero-copy {
    width: 100%;
    padding: 0;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-lede {
    max-width: 520px;
    margin-top: 18px;
    padding-right: 8px;
    font-size: 18px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-art {
    right: -24%;
    bottom: -1%;
    width: 110%;
    max-width: 700px;
  }

  .proof-inner,
  .steps,
  .privacy-inner,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: auto;
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

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

  .section {
    padding: 78px 20px;
  }

  .section h2,
  .privacy-band h2,
  .availability h2 {
    font-size: 40px;
  }

  .original-layout {
    grid-template-columns: 1fr;
  }

  .surface-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .phone-shot {
    width: auto;
    height: auto;
    max-height: 630px;
  }

  .steps {
    border-bottom: 0;
  }

  .step,
  .step + .step {
    min-height: auto;
    padding: 26px 0 30px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .step-index {
    margin-bottom: 24px;
  }

  .privacy-band {
    padding: 72px 20px;
  }

  .privacy-inner {
    align-items: start;
    gap: 40px;
  }

  .availability {
    padding: 72px 20px;
  }

  .availability-inner,
  .footer-main,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-hero {
    padding: 64px 20px 52px;
  }

  .legal-hero h1 {
    font-size: 44px;
  }

  .legal-content {
    padding: 46px 20px 76px;
  }
}

@media (max-width: 460px) {
  .brand {
    font-size: 16px;
  }

  .nav-action {
    padding: 0 11px;
    font-size: 13px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-inner {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .button {
    min-height: 44px;
  }

  .hero-art {
    right: -29%;
    bottom: 0;
    width: 124%;
  }

  .section h2,
  .privacy-band h2,
  .availability h2 {
    font-size: 35px;
  }

  .section-intro {
    font-size: 17px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --paper-muted: #eeeae3;
    --line-dark: rgba(255, 255, 255, 0.35);
    --line-light: rgba(10, 9, 11, 0.4);
  }
}
