:root {
  color-scheme: light;
  --paper: #fbf7ef;
  --linen: #f3eadb;
  --ink: #24312f;
  --muted: #68716d;
  --line: #ddd2c0;
  --teal: #1d7a70;
  --teal-dark: #10554f;
  --berry: #8c3f5d;
  --white: #fffdf8;
  --shadow: 0 22px 60px rgba(36, 49, 47, 0.14);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 247, 239, 0.9);
  border-bottom: 1px solid rgba(221, 210, 192, 0.7);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--teal-dark);
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.95rem;
}

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

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 14px;
  color: var(--white) !important;
  background: var(--teal-dark);
  border-radius: 8px;
}

.section,
.section-band {
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section-band {
  background: linear-gradient(180deg, var(--paper), var(--linen));
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  align-items: center;
  gap: clamp(42px, 8vw, 96px);
  min-height: calc(100vh - 72px);
  padding-top: clamp(42px, 6vw, 80px);
  padding-bottom: clamp(42px, 6vw, 80px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(4.3rem, 15vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.35rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.25;
}

p {
  line-height: 1.7;
}

.tagline {
  margin: 18px 0 0;
  color: var(--teal-dark);
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 750;
  line-height: 1.1;
}

.hero-message {
  max-width: 600px;
  margin: 26px 0 0;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  color: #384440;
}

.hero-body,
.intro p,
.security-note p,
.split > div > p,
.waitlist-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

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

.button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(29, 122, 112, 0.32);
  outline-offset: 3px;
}

.primary {
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: 0 12px 28px rgba(16, 85, 79, 0.2);
}

.primary:hover {
  background: var(--teal);
}

.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 253, 248, 0.68);
}

.phone-stage {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: min(100%, 360px);
  margin: 0;
  padding: 12px;
  background: #17201f;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.phone-frame::before {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 86px;
  height: 20px;
  content: '';
  background: #17201f;
  border-radius: 999px;
  transform: translateX(-50%);
  z-index: 1;
}

.phone-frame img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 28px;
  background: var(--white);
}

.phone-frame figcaption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 8px 10px;
  color: #4c5a56;
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(221, 210, 192, 0.8);
  border-radius: 8px;
  font-size: 0.74rem;
  text-align: center;
}

.inner {
  max-width: 1060px;
  margin: 0 auto;
}

.intro {
  padding-top: clamp(56px, 7vw, 88px);
}

.split,
.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 16px;
}

.step,
.comparison > div,
.waitlist-form {
  padding: 22px;
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--berry);
  border-radius: 8px;
  font-weight: 800;
}

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

.proof-copy {
  position: sticky;
  top: 108px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.phone-frame.small {
  width: 100%;
  border-radius: 30px;
}

.phone-frame.small img {
  border-radius: 22px;
}

.phone-frame.offset {
  margin-top: 62px;
}

.question-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.question-list p {
  min-height: 74px;
  margin: 0;
  padding: 18px 20px;
  color: #33403d;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(36, 49, 47, 0.06);
}

.confidence {
  background: #f6efe4;
}

.comparison {
  display: grid;
  gap: 16px;
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 520px);
  gap: clamp(34px, 8vw, 96px);
  align-items: start;
}

.waitlist-form {
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 8px;
}

label {
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cfc2af;
  border-radius: 8px;
  font: inherit;
}

.form-button {
  width: 100%;
}

.form-button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 28px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.form-status.error {
  color: #9f2f42;
}

.form-status.success {
  color: var(--teal-dark);
}

.site-footer {
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #ede2d1;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 980px;
  margin: 0 auto;
  font-size: 0.9rem;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 0.86rem;
  }

  .hero,
  .split,
  .proof,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .phone-stage {
    justify-content: flex-start;
  }

  .phone-frame {
    width: min(100%, 330px);
  }

  .proof-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: static;
    padding: 16px 18px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .section,
  .section-band {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .screenshot-grid,
  .question-list {
    grid-template-columns: 1fr;
  }

  .phone-frame.offset {
    margin-top: 0;
  }
}
