:root {
  color-scheme: light;
  --paper: #f2f5f8;
  --paper-deep: #e7ecf2;
  --card: #ffffff;
  --ink: #0e1419;
  --muted: #4d5964;
  --faint: #626f7b;
  --line: #d9e0e8;
  --line-soft: #e6ebf1;
  --green: #0a7146;
  --green-soft: #e6f4ec;
  --amber: #8a5a00;
  --amber-soft: #fdf3e0;
  --mono: ui-monospace, "SFMono-Regular", "SF Mono", Menlo, Consolas, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.6 var(--sans);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.shell { width: min(1080px, calc(100% - 40px)); margin: 0 auto; }
@media (max-width: 380px) { .shell { width: calc(100% - 28px); } }

/* header */
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 1px 3px rgba(14, 20, 25, .18); }
.brand-name { font-size: 16px; font-weight: 650; letter-spacing: -.02em; }
.platforms { color: var(--faint); font-size: 11px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }

/* hero */
.hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 380px); gap: 48px; align-items: center; padding: 42px 0 64px; }
.kicker { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.kicker::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
h1 { font-size: clamp(32px, 5.4vw, 50px); line-height: 1.06; letter-spacing: -.04em; font-weight: 680; text-wrap: balance; }
.lede { margin-top: 20px; max-width: 46ch; color: var(--muted); font-size: 17px; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 0 24px; border-radius: 13px;
  background: var(--ink); color: #fff; font-size: 15.5px; font-weight: 620; text-decoration: none;
  transition: transform .15s ease, background .15s ease;
}
.button:hover { background: #1d2731; }
.button:active { transform: scale(.98); }
.price { color: var(--faint); font-size: 14px; }
.facts { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.fact { padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--card); color: var(--muted); font-size: 13px; font-weight: 550; }
.hero-shot { justify-self: center; }
.hero-shot img { width: 100%; max-width: 360px; border-radius: 22px; border: 1px solid var(--line); box-shadow: 0 24px 60px -30px rgba(14, 20, 25, .5); }
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding: 30px 0 48px; }
  .hero-shot img { max-width: 300px; margin: 0 auto; }
}

/* sections */
.section { padding: 56px 0; border-top: 1px solid var(--line); }
.section-label { color: var(--faint); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
h2 { margin-top: 12px; font-size: clamp(24px, 3.4vw, 32px); line-height: 1.16; letter-spacing: -.03em; font-weight: 660; }
.section-lede { margin-top: 14px; max-width: 62ch; color: var(--muted); font-size: 16px; }

.checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 14px; margin-top: 32px; }
.check { padding: 20px; background: var(--card); border: 1px solid var(--line); border-radius: 16px; }
.check h3 { font-size: 15.5px; font-weight: 650; letter-spacing: -.01em; }
.check p { margin-top: 7px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.metric { display: inline-block; margin-top: 12px; padding: 4px 9px; border-radius: 7px; background: var(--paper-deep); color: #5e6b76; font-family: var(--mono); font-size: 11.5px; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; margin-top: 32px; counter-reset: step; }
.step { counter-increment: step; }
.step::before { content: counter(step); display: flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 9px; background: var(--ink); color: #fff; font-family: var(--mono); font-size: 13px; }
.step h3 { margin-top: 14px; font-size: 16px; font-weight: 650; }
.step p { margin-top: 6px; color: var(--muted); font-size: 14.5px; }

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; margin-top: 32px; }
.gallery figure { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 14px; }
.gallery img { border-radius: 12px; border: 1px solid var(--line-soft); }
.gallery figcaption { margin-top: 12px; color: var(--faint); font-size: 13px; text-align: center; }

.privacy-strip { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 11px; background: var(--green-soft); color: var(--green); font-size: 14px; font-weight: 600; }
.pill::before { content: "✓"; font-size: 12px; }

.note { margin-top: 26px; padding: 18px 20px; background: var(--amber-soft); border: 1px solid #f0dcb4; border-radius: 14px; color: var(--amber); font-size: 14.5px; line-height: 1.6; }

/* footer */
.site-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding: 30px 0 46px; border-top: 1px solid var(--line); color: var(--faint); font-size: 14px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer a { display: inline-flex; align-items: center; min-height: 24px; }

:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } html { scroll-behavior: auto; } }
