:root {
  --ink: #17211e;
  --muted: #5c6762;
  --forest: #23443b;
  --forest-2: #335f53;
  --mint: #cfe8da;
  --aqua: #9ed9d0;
  --clay: #d97345;
  --sun: #f0bd5b;
  --paper: #fffaf1;
  --white: #ffffff;
  --line: #dbe3dc;
  --shadow: 0 24px 70px rgba(21, 38, 33, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.skip-link,
.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;
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  margin: 1rem;
  padding: 0.75rem 1rem;
  clip: auto;
  background: var(--forest);
  color: var(--white);
  border-radius: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 241, 0.92);
  border-bottom: 1px solid rgba(35, 68, 59, 0.12);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 180px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--muted);
  font-weight: 700;
}

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

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--forest);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--forest);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.1rem;
  border: 2px solid var(--forest);
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(35, 68, 59, 0.22);
}

.button:hover,
.button:focus-visible {
  background: var(--forest-2);
  border-color: var(--forest-2);
}

.button-secondary {
  background: transparent;
  color: var(--forest);
  box-shadow: none;
}

.button-small {
  min-height: 40px;
  padding: 0.55rem 0.85rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero,
.page-hero {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 4rem 0;
}

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

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.3rem, 9vw, 6.8rem);
}

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

h3 {
  font-size: 1.12rem;
}

.lede {
  max-width: 52rem;
  margin: 1.35rem 0 1.7rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.app-icon-card {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: min(168px, 34vw);
  border-radius: 28px;
  box-shadow: 0 22px 44px rgba(35, 68, 59, 0.22);
}

.phone {
  position: relative;
  width: min(330px, 82vw);
  aspect-ratio: 0.52;
  padding: 1rem;
  border: 12px solid #15231f;
  border-radius: 42px;
  background: #15231f;
  box-shadow: var(--shadow);
}

.phone-top {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 92px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 0 0 14px 14px;
  background: #15231f;
  z-index: 2;
}

.camera-preview {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(120deg, rgba(240, 189, 91, 0.35), transparent 42%),
    linear-gradient(180deg, #d4f0e1, #89c8bf 48%, #345047);
}

.reference-card,
.capture-pill {
  position: absolute;
  left: 18px;
  z-index: 2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
}

.reference-card {
  top: 44px;
  padding: 0.65rem 0.8rem;
}

.capture-pill {
  right: 18px;
  bottom: 22px;
  left: 18px;
  padding: 0.75rem 1rem;
  text-align: center;
}

.guide-outline,
.shot-outline::before,
.shot-overlay::before {
  position: absolute;
  border: 5px solid rgba(255, 250, 241, 0.86);
  border-radius: 44% 44% 16% 16%;
  box-shadow: inset 0 0 0 999px rgba(35, 68, 59, 0.08);
}

.guide-outline {
  left: 29%;
  top: 26%;
  width: 44%;
  height: 45%;
}

.guide-outline::before {
  content: "";
  position: absolute;
  top: -38px;
  left: 50%;
  width: 58px;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border: 5px solid rgba(255, 250, 241, 0.86);
  border-radius: 50%;
}

.framing-lines {
  position: absolute;
  inset: 18%;
  border: 2px solid rgba(255, 255, 255, 0.38);
}

.framing-lines::before,
.framing-lines::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.32);
}

.framing-lines::before {
  left: 33.33%;
  top: 0;
  bottom: 0;
  width: 2px;
}

.framing-lines::after {
  top: 33.33%;
  left: 0;
  right: 0;
  height: 2px;
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.intro-band,
.problem,
.privacy-callout {
  width: 100%;
  padding-inline: max(1rem, calc((100% - 1120px) / 2));
  background: var(--forest);
  color: var(--white);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-band .section-copy,
.problem .section-copy {
  max-width: 780px;
}

.intro-band p:not(.eyebrow),
.problem p:not(.eyebrow),
.privacy-callout p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

.band-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(8, 18, 15, 0.26);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-copy p,
.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
}

.steps,
.feature-grid,
.benefit-grid,
.shot-grid,
.contact-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps article,
.feature-grid article,
.benefit-grid article,
.contact-panel > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 1.35rem;
}

.steps span,
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1rem;
  border-radius: 8px;
  background: var(--mint);
  color: var(--forest);
  font-weight: 900;
}

.steps p,
.feature-grid p,
.benefit-grid p,
.contact-panel p,
.policy p,
.faq p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.product-hero h1 {
  max-width: 11ch;
}

.product-asset-panel {
  display: grid;
  gap: 1rem;
  align-content: center;
  justify-items: center;
}

.app-icon-large {
  width: min(390px, 82vw);
  border-radius: 72px;
  box-shadow: var(--shadow);
}

.asset-note {
  width: min(390px, 82vw);
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.asset-note span {
  display: block;
  color: var(--forest);
  font-weight: 900;
}

.asset-note p {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.screenshots {
  width: 100%;
  padding-inline: max(1rem, calc((100% - 1120px) / 2));
  background: #edf6ef;
}

.image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(35, 68, 59, 0.1);
}

.image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.image-card figcaption {
  padding: 0.9rem 1rem 1rem;
  color: var(--forest);
  font-weight: 900;
}

.shot-photo,
.shot-outline,
.shot-overlay {
  position: absolute;
  inset: 4.5rem 1rem 1rem;
  border-radius: 8px;
  background: linear-gradient(150deg, var(--mint), var(--aqua));
}

.shot-outline::before,
.shot-overlay::before {
  content: "";
  left: 34%;
  top: 29%;
  width: 32%;
  height: 42%;
}

.shot-photo::before {
  content: "";
  position: absolute;
  left: 34%;
  top: 30%;
  width: 32%;
  height: 42%;
  border-radius: 44% 44% 18% 18%;
  background: rgba(35, 68, 59, 0.68);
}

.shot-photo::after,
.shot-overlay::after {
  content: "";
  position: absolute;
  inset: 16%;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
}

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

.faq summary {
  cursor: pointer;
  color: var(--forest);
  font-size: 1.15rem;
  font-weight: 900;
}

.cta {
  width: min(1120px, calc(100% - 2rem));
  margin: 1rem auto 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 8px;
  background: var(--sun);
  box-shadow: var(--shadow);
}

.cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.cta p:not(.eyebrow) {
  max-width: 640px;
  color: #4b3723;
}

.page-hero {
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(2rem, 5vw, 4rem);
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.2rem;
}

.contact-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.policy {
  width: min(840px, calc(100% - 2rem));
  margin: 0 auto 5rem;
}

.policy h2 {
  margin-top: 2rem;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.footer {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer div {
  display: flex;
  gap: 1rem;
}

@media (max-width: 880px) {
  .nav {
    align-items: flex-start;
    padding: 0.85rem 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 3rem 0;
  }

  .phone-stage {
    min-height: 460px;
  }

  .intro-band {
    grid-template-columns: 1fr;
  }

  .steps,
  .feature-grid,
  .benefit-grid,
  .shot-grid,
  .contact-panel,
  .split {
    grid-template-columns: 1fr;
  }

  .cta,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .button-row,
  .button,
  .footer div {
    width: 100%;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.25rem);
  }

  .phone-stage {
    min-height: 390px;
  }

  .brand {
    width: 144px;
  }

  .app-icon-card {
    width: 116px;
    border-radius: 22px;
  }

  .phone {
    width: min(260px, 82vw);
  }

}
