:root {
  --ink: #0a0908;
  --paper: #f0ece3;
  --muted: #a29d93;
  --line: rgba(240, 236, 227, 0.16);
  --accent: #d9ff43;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 74% 8%, rgba(132, 98, 54, 0.18), transparent 26rem),
    var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0; pointer-events: none; }

.nav {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 0.22em;
  text-decoration: none;
}
.nav-cta {
  color: var(--ink);
  background: var(--paper);
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

main { overflow: hidden; }
.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: 68px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: clamp(50px, 8vw, 118px);
}
.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
}
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}
h1 {
  margin: 0;
  font-size: clamp(64px, 8vw, 126px);
  line-height: 0.82;
}
.lede {
  max-width: 570px;
  margin: 34px 0 30px;
  color: #c2bdb3;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}
.waitlist-form { max-width: 590px; }
.input-row {
  display: flex;
  gap: 8px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}
.input-row:focus-within { border-color: rgba(217, 255, 67, 0.55); }
.input-row input {
  min-width: 0;
  flex: 1;
  color: var(--paper);
  background: transparent;
  border: 0;
  outline: 0;
  padding: 12px 11px;
}
.input-row input::placeholder { color: #716d66; }
.input-row button {
  color: var(--ink);
  background: var(--accent);
  border: 0;
  border-radius: 9px;
  padding: 13px 19px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}
.input-row button:disabled { opacity: 0.58; cursor: wait; }
.form-note, .form-status {
  min-height: 18px;
  margin: 10px 2px 0;
  color: #716d66;
  font-size: 11px;
}
.form-status.success { color: var(--accent); }
.form-status.error { color: #ff8d7e; }
.proof {
  max-width: 590px;
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.proof div { display: flex; flex-direction: column; gap: 5px; }
.proof strong { font-family: Georgia, serif; font-size: 20px; font-weight: 400; }
.proof span { color: #77726a; font-size: 10px; line-height: 1.35; text-transform: uppercase; letter-spacing: 0.08em; }

.demo-wrap { position: relative; display: flex; justify-content: center; }
.demo-glow {
  position: absolute;
  inset: 13% -12% 8%;
  background: radial-gradient(ellipse, rgba(217, 255, 67, 0.18), rgba(118, 79, 48, 0.08) 46%, transparent 70%);
  filter: blur(35px);
}
.phone {
  width: min(100%, 350px);
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  background: #000;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.55);
  transform: rotate(2deg);
}
.phone::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 6px rgba(0, 0, 0, 0.4); pointer-events: none; }
.phone video { width: 100%; height: 100%; display: block; object-fit: cover; }
.demo-label {
  position: absolute;
  left: 17px;
  bottom: 17px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(10px);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.how, .gallery-section, .final-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.how { padding: 110px 0 120px; }
h2 { margin: 0; font-size: clamp(45px, 6vw, 82px); line-height: 0.95; }
.steps { margin-top: 68px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps article { min-height: 220px; padding: 23px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.025); }
.steps span { color: var(--accent); font-size: 11px; letter-spacing: 0.12em; }
.steps h3 { margin: 78px 0 8px; font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.gallery-section { padding: 110px 0 120px; }
.section-heading { display: grid; grid-template-columns: 1fr 340px; align-items: end; gap: 50px; }
.gallery-note { margin: 0 0 5px; color: #77726a; font-size: 12px; line-height: 1.6; }
.evidence-link { color: var(--paper); text-underline-offset: 0.2em; }
.gallery {
  width: calc(100vw - max(20px, (100vw - 1180px) / 2));
  margin-top: 58px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(190px, 23vw, 286px);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 24px 20px 0;
}
.gallery::-webkit-scrollbar { display: none; }
.gallery figure { position: relative; margin: 0; aspect-ratio: 6 / 13; overflow: hidden; scroll-snap-align: start; background: #161411; }
.gallery img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 450ms ease; }
.gallery figure:hover img { transform: scale(1.025); }
.gallery figcaption { position: absolute; right: 10px; bottom: 9px; padding: 5px 7px; background: rgba(0, 0, 0, 0.55); font-size: 9px; letter-spacing: 0.1em; }

.final-cta { padding: 130px 0; text-align: center; }
.final-cta > p:not(.eyebrow) { margin: 24px auto 32px; color: var(--muted); }
.final-cta .waitlist-form { margin: 0 auto; }
.final-cta .eyebrow { margin-bottom: 20px; }

footer {
  width: min(1180px, calc(100% - 40px));
  min-height: 100px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #666159;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 780px) {
  .nav { min-height: 68px; }
  .nav-cta { padding: 9px 13px; font-size: 10px; }
  .hero { min-height: auto; padding: 56px 0 80px; grid-template-columns: 1fr; gap: 58px; }
  h1 { font-size: clamp(62px, 21vw, 96px); }
  .lede { margin-top: 27px; font-size: 17px; }
  .proof { gap: 12px; }
  .phone { width: min(88vw, 340px); transform: none; }
  .how, .gallery-section { padding: 82px 0 90px; }
  .steps { grid-template-columns: 1fr; margin-top: 44px; }
  .steps article { min-height: 160px; }
  .steps h3 { margin-top: 44px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .gallery { margin-top: 38px; grid-auto-columns: 63vw; }
  .final-cta { padding: 100px 0; }
}

@media (max-width: 520px) {
  .nav, .hero, .how, .gallery-section, .final-cta, footer { width: min(100% - 28px, 1180px); }
  .input-row { flex-direction: column; padding: 6px; }
  .input-row button { width: 100%; min-height: 48px; }
  .proof strong { font-size: 18px; }
  .proof span { font-size: 8px; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gallery img { transition: none; }
}
