@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink: #202124;
  --muted: #696b70;
  --paper: #fbfbf8;
  --panel: #ffffff;
  --line: #deddd7;
  --accent: #f45124;
  --accent-deep: #d53d16;
  --wash: #fff0e9;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav { height: 72px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 700; }
.brand img { width: 34px; height: 34px; border-radius: 10px; box-shadow: 0 6px 16px rgba(244,81,36,.2); }
.nav-links { display: flex; align-items: center; gap: 28px; color: var(--muted); font-size: 13px; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--ink); }
.store-button { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 19px; border-radius: 11px; background: var(--ink); color: white; text-decoration: none; font-size: 13px; font-weight: 700; box-shadow: 0 10px 24px rgba(32,33,36,.16); }
.store-button:hover { transform: translateY(-1px); }

.hero { position: relative; overflow: hidden; padding: 78px 0 84px; border-block: 1px solid var(--line); background: linear-gradient(180deg, #fff4ee 0%, var(--paper) 88%); text-align: center; }
.hero::before, .hero::after { content: ""; position: absolute; border: 1px solid rgba(244,81,36,.14); border-radius: 50%; }
.hero::before { width: 460px; height: 460px; left: -300px; top: -190px; }
.hero::after { width: 650px; height: 650px; right: -430px; bottom: -410px; }
.hero-icon { width: 96px; height: 96px; border-radius: 25px; box-shadow: 0 24px 50px rgba(77,54,43,.18); animation: arrive .7s ease both; }
.eyebrow { display: block; margin: 26px 0 13px; color: var(--accent-deep); font: 500 11px "DM Mono"; letter-spacing: .14em; text-transform: uppercase; animation: arrive .7s .08s ease both; }
h1 { max-width: 820px; margin: 0 auto; font-size: clamp(44px, 7vw, 78px); line-height: .99; letter-spacing: -.065em; animation: arrive .7s .14s ease both; }
h1 em { color: var(--accent); font-style: normal; }
.hero-copy { max-width: 650px; margin: 24px auto 27px; color: var(--muted); font-size: 17px; line-height: 1.7; animation: arrive .7s .2s ease both; }
.trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; animation: arrive .7s .28s ease both; }
.trust span { padding: 8px 12px; border: 1px solid rgba(32,33,36,.08); border-radius: 999px; background: rgba(255,255,255,.76); color: #626469; font: 500 10px "DM Mono"; }
@keyframes arrive { from { opacity: 0; transform: translateY(12px); } }

.section { padding: 96px 0; }
.section-head { display: grid; grid-template-columns: .8fr 1.2fr; align-items: end; gap: 60px; margin-bottom: 42px; }
.section-tag { color: var(--accent-deep); font: 500 11px "DM Mono"; letter-spacing: .12em; text-transform: uppercase; }
h2 { margin: 7px 0 0; font-size: clamp(32px, 4vw, 50px); line-height: 1.08; letter-spacing: -.05em; }
.section-head p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature { min-height: 220px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.56); }
.feature-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--wash); color: var(--accent-deep); font: 500 17px "DM Mono"; }
.feature h3 { margin: 34px 0 8px; font-size: 16px; }
.feature p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.steps { background: #efefeb; border-block: 1px solid var(--line); }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { padding: 26px 0; }
.step b { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #c8c7c1; border-radius: 50%; font: 500 11px "DM Mono"; }
.step h3 { margin: 22px 0 8px; font-size: 18px; }
.step p { max-width: 290px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.faq { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { padding: 20px 34px 20px 0; cursor: pointer; list-style: none; position: relative; font-size: 14px; font-weight: 700; }
summary::after { content: "+"; position: absolute; right: 4px; color: var(--accent); font: 400 18px "DM Mono"; }
details[open] summary::after { content: "−"; }
details p { margin: -4px 40px 20px 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.cta { margin-bottom: 90px; padding: 54px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 1px solid #ffcdbb; border-radius: 24px; background: var(--wash); }
.cta h2 { max-width: 650px; font-size: clamp(30px, 4vw, 48px); }
.footer { padding: 28px 0 36px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.footer .wrap { display: flex; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; gap: 22px; }

.legal { padding: 62px 0 100px; }
.legal article { max-width: 760px; }
.legal h1 { margin: 0; text-align: left; font-size: clamp(42px, 7vw, 68px); animation: none; }
.legal .updated { margin: 14px 0 48px; color: var(--muted); font: 500 11px "DM Mono"; text-transform: uppercase; letter-spacing: .08em; }
.legal h2 { margin: 38px 0 12px; font-size: 23px; letter-spacing: -.025em; }
.legal p, .legal li { color: #56585d; font-size: 14px; line-height: 1.8; }

@media (max-width: 760px) {
  .nav-links a:not(.store-button) { display: none; }
  .hero { padding: 58px 0 64px; }
  .section { padding: 72px 0; }
  .section-head, .faq { grid-template-columns: 1fr; gap: 24px; }
  .feature-grid, .step-grid { grid-template-columns: 1fr; }
  .feature { min-height: auto; }
  .cta { padding: 34px; align-items: flex-start; flex-direction: column; }
  .footer .wrap { flex-direction: column; }
}
