:root {
  color-scheme: light;
  --bg: #fbf7ef;
  --surface: #fffdf8;
  --surface-muted: #eee8dc;
  --ink: #22211e;
  --muted: #6d655b;
  --border: #dfd6c8;
  --accent: #2f7758;
  --accent-deep: #1f563f;
  --accent-soft: #dcece2;
  --clay: #b97658;
  --gold: #dfb95d;
  --shadow: rgba(48, 39, 25, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(223, 185, 93, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(185, 118, 88, 0.13), transparent 24rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

.ios-open {
  align-items: center;
  background: var(--accent-deep);
  color: #fffdf8;
  display: flex;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 1rem;
  justify-content: center;
  padding: 0.55rem 1rem;
}

.ios-open[hidden] {
  display: none;
}

.ios-open a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  align-items: center;
  display: flex;
  gap: 1.25rem;
  left: 0;
  margin: 0 auto;
  max-width: 1180px;
  padding: 1.15rem 1.5rem;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.site-header::before {
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 239, 0.84);
  border: 1px solid rgba(223, 214, 200, 0.78);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(48, 39, 25, 0.08);
  content: "";
  inset: 0.65rem 1rem;
  position: absolute;
  z-index: -1;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 950;
  gap: 0.5rem;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img {
  border-radius: 8px;
  height: 2rem;
  object-fit: contain;
  width: 2rem;
}

.brand span {
  color: var(--accent-deep);
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 1rem;
  margin-left: auto;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--accent-deep);
}

.header-cta {
  align-items: center;
  border: 1px solid var(--accent);
  border-radius: 8px;
  color: var(--accent-deep);
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  min-height: 2.65rem;
  padding: 0 1rem;
  text-decoration: none;
}

.hero {
  min-height: min(860px, calc(100svh - 3rem));
  overflow: hidden;
  padding: 5.35rem 1.5rem 5.5rem;
  position: relative;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(251, 247, 239, 0.96) 0%, rgba(251, 247, 239, 0.88) 36%, rgba(251, 247, 239, 0.34) 70%, rgba(251, 247, 239, 0.18) 100%),
    linear-gradient(0deg, rgba(251, 247, 239, 1) 0%, rgba(251, 247, 239, 0) 24%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media {
  bottom: 0;
  left: 42%;
  max-width: 980px;
  position: absolute;
  right: -7rem;
  top: 4rem;
}

.hero-shot {
  border: 1px solid rgba(46, 41, 33, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 60px var(--shadow);
  object-fit: cover;
  position: absolute;
}

.hero-shot-main {
  height: min(80vh, 720px);
  right: 17%;
  top: 1rem;
  transform: rotate(-3deg);
  width: min(36vw, 330px);
  z-index: 2;
}

.hero-shot-side {
  filter: saturate(0.94);
  opacity: 0.92;
  width: min(27vw, 245px);
}

.hero-shot-top {
  right: 0;
  top: 3rem;
  transform: rotate(6deg);
}

.hero-shot-bottom {
  bottom: -1rem;
  right: 2rem;
  transform: rotate(4deg);
}

.hero-copy {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3.25rem, 9vw, 8.6rem);
  letter-spacing: 0;
  line-height: 0.9;
  margin-bottom: 1.35rem;
  max-width: 720px;
}

h2 {
  font-size: clamp(2.15rem, 5vw, 4.9rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 1.1rem;
}

h3 {
  font-size: 1.15rem;
  letter-spacing: 0;
  line-height: 1.1;
}

.hero-lede {
  color: var(--muted);
  font-size: clamp(1.08rem, 2.1vw, 1.45rem);
  font-weight: 650;
  line-height: 1.36;
  max-width: 630px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 0.98rem;
  font-weight: 950;
  gap: 0.55rem;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.25rem;
  text-decoration: none;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

.button svg {
  fill: currentColor;
  height: 1.1rem;
  width: 1.1rem;
}

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

.button-primary {
  background: var(--accent);
  box-shadow: 0 12px 24px rgba(47, 119, 88, 0.22);
  color: #fffdf8;
}

.button-primary:hover {
  background: var(--accent-deep);
}

.button-secondary {
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--border);
  color: var(--accent-deep);
}

.microcopy {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  margin: 1rem 0 0;
}

.proof-strip,
.section,
.showcase,
.cta-band,
.site-footer {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
}

.proof-strip {
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.proof-strip div {
  background: rgba(255, 253, 248, 0.54);
  padding: 1.35rem 1.5rem;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 1rem;
  font-weight: 950;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  margin-top: 0.2rem;
}

.section {
  padding: 6.5rem 1.5rem 0;
}

.section-intro {
  align-items: end;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 600;
  max-width: 680px;
}

.steps {
  display: grid;
  gap: 0.75rem;
}

.steps article,
.feature-card,
.waitlist-form,
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.steps article {
  padding: 1.2rem;
}

.steps span {
  color: var(--clay);
  display: block;
  font-size: 0.8rem;
  font-weight: 950;
  margin-bottom: 0.45rem;
}

.steps h3,
.feature-card h3 {
  margin-bottom: 0.45rem;
}

.steps p,
.feature-card p,
.faq p {
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0;
}

.showcase {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  padding: 6.5rem 1.5rem 0;
}

.showcase img {
  aspect-ratio: 1290 / 2796;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(48, 39, 25, 0.11);
  object-fit: cover;
  width: 100%;
}

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  min-height: 210px;
  padding: 1.35rem;
}

.feature-card-wide {
  background: var(--accent-deep);
  color: #fffdf8;
  grid-column: span 2;
  min-height: 280px;
}

.feature-card-wide p {
  color: rgba(255, 253, 248, 0.76);
  font-size: 1.05rem;
}

.cta-band {
  align-items: center;
  background:
    linear-gradient(120deg, rgba(47, 119, 88, 0.95), rgba(31, 86, 63, 0.98)),
    var(--accent);
  border-radius: 8px;
  color: #fffdf8;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: 6.5rem;
  padding: 2rem;
}

.cta-band .eyebrow,
.cta-band p {
  color: rgba(255, 253, 248, 0.78);
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 0.65rem;
}

.cta-band p {
  font-size: 1.05rem;
  font-weight: 650;
  margin-bottom: 0;
  max-width: 650px;
}

.cta-band .button {
  background: #fffdf8;
  color: var(--accent-deep);
}

.android-section {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
}

.waitlist-form {
  padding: 1.25rem;
}

.honeypot {
  display: none;
}

.waitlist-form label {
  color: var(--accent-deep);
  display: block;
  font-size: 0.82rem;
  font-weight: 950;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.field-row {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.field-row input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  min-height: 3.25rem;
  min-width: 0;
  outline: none;
  padding: 0 1rem;
}

.field-row input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(47, 119, 88, 0.12);
}

.field-row button {
  border: 0;
  cursor: pointer;
}

.field-row button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  margin: 0.75rem 0 0;
}

.faq {
  max-width: 860px;
}

.faq h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.faq details {
  margin-top: 0.75rem;
  padding: 1.1rem 1.2rem;
}

.faq summary {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 950;
}

.faq details p {
  padding-top: 0.8rem;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  margin-top: 6.5rem;
  padding: 2rem 1.5rem;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--accent-deep);
  font-weight: 950;
}

.site-footer span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  margin-top: 0.2rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
}

@media (max-width: 860px) {
  .site-header {
    gap: 0.75rem;
    padding: 0.85rem;
  }

  .site-header::before {
    inset: 0.45rem;
  }

  .brand span,
  .nav-links {
    display: none;
  }

  .header-cta {
    margin-left: auto;
    min-height: 2.4rem;
    padding: 0 0.85rem;
  }

  .hero {
    min-height: 940px;
    padding: 3.65rem 1rem 23rem;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(251, 247, 239, 0.97) 0%, rgba(251, 247, 239, 0.95) 48%, rgba(251, 247, 239, 0.36) 75%, rgba(251, 247, 239, 0.9) 100%),
      linear-gradient(0deg, rgba(251, 247, 239, 1) 0%, rgba(251, 247, 239, 0) 20%);
  }

  h1 {
    font-size: clamp(3.3rem, 17vw, 5.25rem);
  }

  .hero-media {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
  }

  .hero-shot-main {
    height: auto;
    left: 50%;
    right: auto;
    top: 41rem;
    transform: translateX(-50%) rotate(-3deg);
    width: min(64vw, 280px);
  }

  .hero-shot-side {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .proof-strip,
  .section-intro,
  .showcase,
  .feature-grid,
  .cta-band,
  .android-section {
    grid-template-columns: 1fr;
  }

  .proof-strip {
    margin: 0 1rem;
  }

  .proof-strip div {
    padding: 1rem;
  }

  .section,
  .showcase {
    padding: 4.5rem 1rem 0;
  }

  .showcase {
    display: flex;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
  }

  .showcase img {
    flex: 0 0 72vw;
    scroll-snap-align: center;
  }

  .feature-card-wide {
    grid-column: auto;
  }

  .cta-band {
    margin: 4.5rem 1rem 0;
    padding: 1.35rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
    margin-top: 4.5rem;
  }
}

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

  .button {
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}
