:root {
  --background: #fff8f2;
  --surface: #ffffff;
  --surface-soft: #faf2ea;
  --surface-tint: #f4ede4;
  --primary: #536346;
  --primary-strong: #435037;
  --secondary: #725a3b;
  --text: #1e1b16;
  --text-muted: #5f6259;
  --outline: #ddd4ca;
  --shadow: 0 28px 60px rgba(83, 99, 70, 0.1);
  --shadow-soft: 0 16px 36px rgba(83, 99, 70, 0.08);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 233, 195, 0.45), transparent 30%),
    radial-gradient(circle at top right, rgba(251, 219, 178, 0.38), transparent 25%),
    linear-gradient(180deg, #fffaf5 0%, var(--background) 50%, #fffdf9 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.page-shell {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 242, 0.78);
  border-bottom: 1px solid rgba(221, 212, 202, 0.55);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--primary);
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: var(--text-muted);
  font-weight: 600;
}

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

.hero,
.steps,
.features,
.cta {
  padding: 88px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(214, 233, 195, 0.6);
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-copy h1,
.section-heading h2,
.feature-card h2,
.cta-card h2 {
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-copy h1 {
  max-width: 8ch;
  font-size: clamp(3rem, 7vw, 5.7rem);
}

.hero-copy h1 span {
  color: var(--secondary);
}

.hero-copy p,
.feature-card p,
.info-card p,
.cta-card p,
.site-footer p {
  color: var(--text-muted);
  line-height: 1.75;
}

.hero-copy p {
  max-width: 580px;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.hero-supporting-copy {
  font-size: 1rem;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 196px;
  padding: 12px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(83, 99, 70, 0.14);
}

.store-badge svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.store-badge small {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.store-badge strong {
  margin-top: 3px;
  font-size: 1.08rem;
  font-weight: 700;
}

.apple-badge {
  color: #ffffff;
  background: #111111;
}

.apple-badge svg {
  fill: currentColor;
}

.play-badge {
  color: #111111;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.play-blue {
  fill: #4285f4;
}

.play-green {
  fill: #34a853;
}

.play-yellow {
  fill: #fbbc04;
}

.play-red {
  fill: #ea4335;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.phone-stack {
  position: relative;
  width: min(100%, 470px);
  min-height: 640px;
  margin: 0 auto;
}

.visual-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
}

.glow-left {
  inset: 28px auto auto -12px;
  width: 180px;
  height: 180px;
  background: rgba(214, 233, 195, 0.75);
}

.glow-right {
  inset: auto 10px 24px auto;
  width: 210px;
  height: 210px;
  background: rgba(251, 219, 178, 0.62);
}

.phone-card {
  position: relative;
  width: min(100%, 300px);
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 242, 234, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.phone-card img {
  width: 100%;
  border-radius: 24px;
}

.phone-card-front {
  position: absolute;
  right: 0;
  top: 72px;
  z-index: 2;
}

.phone-card-back {
  position: absolute;
  left: 0;
  top: 0;
  width: min(100%, 270px);
  transform: rotate(-7deg);
  opacity: 0.96;
}

.steps {
  background: linear-gradient(180deg, rgba(250, 242, 234, 0.45), rgba(255, 255, 255, 0.1));
}

.seo-copy {
  padding: 0 0 88px;
}

.seo-copy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.seo-copy-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.seo-copy-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.seo-copy-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-list {
  margin-top: 24px;
}

.faq-list details {
  padding: 18px 0;
  border-top: 1px solid rgba(221, 212, 202, 0.85);
}

.faq-list details:last-child {
  border-bottom: 1px solid rgba(221, 212, 202, 0.85);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary);
}

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

.faq-list details p {
  margin: 12px 0 0;
}

.section-heading {
  max-width: 620px;
  margin-bottom: 40px;
}

.section-heading h2,
.feature-card h2,
.cta-card h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.card-grid.three-up {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.info-card,
.feature-card,
.cta-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.info-card {
  padding: 28px;
}

.info-card h3,
.feature-card h3 {
  margin: 16px 0 8px;
  font-size: 1.4rem;
  color: var(--primary);
}

.icon-pill {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(214, 233, 195, 0.75);
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.feature-card {
  padding: 32px;
}

.feature-card-large {
  grid-row: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  gap: 28px;
  align-items: center;
}

.feature-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 600;
}

.feature-list li::before {
  content: "";
  position: absolute;
  inset: 8px auto auto 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--secondary);
}

.mini-panel {
  height: 100%;
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #fffefb 0%, #f4ede4 100%);
}

.mini-panel img {
  width: min(100%, 220px);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.muted-card {
  background: rgba(251, 219, 178, 0.34);
}

.accent-card {
  background: rgba(214, 233, 195, 0.38);
}

.mini-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 48px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.35), transparent 28%),
    linear-gradient(135deg, #94a684 0%, #536346 100%);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.cta-card .eyebrow {
  color: #314026;
  background: rgba(255, 255, 255, 0.78);
}

.cta-card p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer {
  padding: 28px 0 40px;
}

.policy-page {
  padding: 40px 0 88px;
}

.policy-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.policy-hero p,
.policy-card p,
.policy-card li {
  color: var(--text-muted);
  line-height: 1.8;
}

.policy-card a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-lead {
  margin: 18px 0 10px;
  font-weight: 700;
  color: var(--primary);
}

.policy-content {
  padding-top: 28px;
}

.policy-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.policy-card h2 {
  margin: 28px 0 10px;
  font-size: 1.55rem;
  color: var(--primary);
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-list {
  margin: 12px 0 16px 20px;
  padding: 0;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(221, 212, 202, 0.8);
}

.footer-row strong {
  color: var(--primary);
  font-size: 1.05rem;
}

.footer-row p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 980px) {
  .hero,
  .steps,
  .features,
  .cta {
    padding: 72px 0;
  }

  .hero-grid,
  .feature-layout,
  .feature-card-large,
  .seo-copy-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.three-up {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-copy p,
  .section-heading {
    margin-left: auto;
    margin-right: auto;
  }

  .store-row {
    justify-content: center;
  }

  .hero-visual {
    min-height: auto;
  }

  .phone-stack {
    min-height: 760px;
  }

  .seo-copy {
    padding-bottom: 72px;
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 76px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .steps,
  .features,
  .cta {
    padding: 56px 0;
  }

  .seo-copy {
    padding-bottom: 56px;
  }

  .store-badge {
    width: 100%;
    justify-content: center;
  }

  .feature-card,
  .info-card,
  .cta-card,
  .seo-copy-card,
  .policy-card {
    padding: 24px;
  }

  .phone-stack {
    width: min(100%, 360px);
    min-height: 650px;
  }

  .phone-card-front {
    top: 94px;
    right: 0;
  }

  .phone-card-back {
    width: min(100%, 230px);
  }

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

  .footer-links {
    gap: 14px 18px;
  }
}
