:root {
  --paper: #f3eee4;
  --paper-2: #e8e0d2;
  --ink: #1a1714;
  --muted: #5e574e;
  --line: #d4cbbd;
  --accent: #2ac962;
  --accent-ink: #ffffff;
  --stamp: #c24b2a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(26, 23, 20, 0.12);
  --radius: 22px;
  --max: 1120px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  line-height: 1.55;
}

a { color: var(--accent); }
img { max-width: 100%; }

.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 20;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
}

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--paper) 86%, white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: block;
  object-fit: cover;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}
nav a:hover { color: var(--accent); }
nav a.play-badge:hover { color: inherit; }
.play-badge {
  display: inline-block;
  line-height: 0;
  flex-shrink: 0;
}
.play-badge img {
  height: 72px;
  width: auto;
  display: block;
}
nav .play-badge img {
  height: 52px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 600;
  font-size: 0.95rem;
}
.btn:hover { background: #24b558; }
.btn-accent { background: var(--accent); }
.btn-accent:hover { background: #24b558; }
.btn-secondary {
  background: var(--ink);
  color: #fff !important;
}
.btn-secondary:hover { background: #2a241f; }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  padding: 8px 10px;
  font: inherit;
}

.hero {
  padding: 72px 0 40px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
h1, h2, h3 { letter-spacing: -0.03em; }
h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.04;
  font-weight: 560;
  margin: 14px 0 18px;
}
.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 38rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 28px 0 18px;
}
.fine {
  color: var(--muted);
  font-size: 0.9rem;
}

.stage {
  position: relative;
  min-height: 420px;
}
.phone, .pdf {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.phone {
  width: 250px;
  border-radius: 28px;
  padding: 18px 14px 22px;
  position: relative;
  z-index: 2;
}
.notch {
  width: 72px;
  height: 8px;
  border-radius: 99px;
  background: var(--ink);
  margin: 0 auto 12px;
  opacity: 0.75;
}
.app-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.app-bar img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}
.bubble {
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 16px;
  margin-bottom: 8px;
  font-size: 0.84rem;
}
.bubble.in { background: var(--paper-2); }
.bubble.out {
  background: var(--accent);
  color: #fff;
  margin-left: auto;
}
.bubble small { display: block; opacity: 0.65; font-size: 0.7rem; margin-top: 4px; }
.pdf {
  width: 230px;
  min-height: 300px;
  border-radius: 8px 18px 8px 8px;
  padding: 22px 18px;
  position: absolute;
  right: 0;
  top: 48px;
  transform: rotate(6deg);
}
.pdf::before {
  content: "PDF";
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--stamp);
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
}
.pdf h3 { margin: 0 0 12px; font-size: 1.05rem; }
.rule {
  height: 8px;
  background: var(--paper-2);
  border-radius: 99px;
  margin: 8px 0;
}
.rule.short { width: 62%; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 8px;
}
.stat {
  background: color-mix(in srgb, var(--white) 70%, transparent);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.stat strong { display: block; font-size: 1.05rem; }

.section { padding: 72px 0; }
.section h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 10px;
}
.section-head { max-width: 40rem; margin-bottom: 32px; }
.section-head p { color: var(--muted); }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.card h3 { margin: 8px 0 8px; font-size: 1.1rem; }
.card p { margin: 0; color: var(--muted); }
.icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  padding: 8px 8px 0 0;
}
.step h3 { margin: 10px 0 8px; }
.step p { color: var(--muted); margin: 0; }
.num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.privacy-band {
  background: var(--accent);
  color: #fff;
  border-radius: 28px;
  padding: 42px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: center;
}
.privacy-band p { color: rgba(255, 255, 255, 0.9); }
.privacy-band .btn {
  background: #fff;
  color: var(--accent) !important;
}
.privacy-band .btn:hover { background: #f3fff7; }

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
}
.faq p { color: var(--muted); margin: 10px 0 0; }

.cta {
  text-align: center;
  padding: 28px 0 80px;
}
.cta h2 { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.8rem); }

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.foot a { color: var(--ink); text-decoration: none; margin-right: 14px; }

.legal {
  padding: 48px 0 80px;
  max-width: 760px;
}
.legal h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 8px;
}
.legal h2 {
  font-family: var(--display);
  font-size: 1.45rem;
  margin-top: 2rem;
}
.legal h3 { font-size: 1.05rem; margin-top: 1.4rem; }
.legal p, .legal li { color: #3b372f; }
.legal ul { padding-left: 1.2rem; }
.meta { color: var(--muted); }

@media (max-width: 860px) {
  .hero, .privacy-band, .grid, .steps, .stats {
    grid-template-columns: 1fr;
  }
  .pdf { position: relative; top: 18px; right: auto; transform: rotate(2deg); }
  .stage { min-height: 0; }
  nav { display: none; }
  body.nav-open nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 16px 20px 20px;
  }
  .nav-toggle { display: inline-flex; }
  .header-inner { position: relative; }
}
