:root { color-scheme: light; --ink: #2c2d29; --muted: #72756f; --accent: #a34722; --line: #e9ebe7; }
* { box-sizing: border-box; }
body { margin: 0; background: #fff; color: var(--ink); font: 16px/1.7 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: var(--accent); text-underline-offset: 4px; }
a:hover { color: #733014; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; border-radius: 4px; }
.shell { width: min(100% - 48px, 940px); margin-inline: auto; }
header .shell { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 650; letter-spacing: -.04em; font-size: 22px; }
.brand img { border-radius: 12px; }
.open-app { color: var(--ink); text-decoration: none; border: 1px solid var(--line); padding: 8px 18px; border-radius: 99px; white-space: nowrap; }
main { padding-block: 48px 84px; }
.eyebrow { color: var(--accent); font-size: 13px; letter-spacing: .06em; margin-bottom: 14px; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.04em; font-weight: 600; }
h1 { font-size: clamp(36px, 6vw, 64px); max-width: 770px; margin: 0 0 24px; }
h2 { font-size: clamp(25px, 4vw, 34px); margin: 48px 0 18px; }
h3 { font-size: 21px; margin: 0 0 12px; }
p, ul, ol { max-width: 720px; margin: 0 0 20px; }
.lede { color: var(--muted); font-size: 20px; max-width: 680px; }
.cta { display: inline-block; padding: 13px 26px; margin-block: 12px 24px; border-radius: 99px; color: white; background: var(--ink); text-decoration: none; font-weight: 550; }
.cta:hover { color: white; background: #46483f; }
.hero-art { height: 176px; border-radius: 30px; position: relative; overflow: hidden; background: linear-gradient(120deg, #e7e9e7, #f9e8da 70%, #fff4e9); margin: 20px 0 38px; }
.hero-art::before { content: ""; position: absolute; width: 250px; height: 250px; border-radius: 50%; right: 8%; top: -100px; background: #f47734; filter: blur(30px); }
.hero-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, #ffffffb8, transparent); }
.guides { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-block: 28px; }
.guide { padding: 24px; border: 1px solid var(--line); border-radius: 24px; text-decoration: none; color: var(--ink); transition: background .2s; }
.guide:hover { background: #fff4eb; color: var(--ink); }
.guide p { font-size: 15px; color: var(--muted); margin: 0; }
.steps { padding-left: 23px; }
.steps li { padding-left: 8px; margin-bottom: 16px; }
.aside { color: var(--muted); padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; }
footer { border-top: 1px solid var(--line); padding-block: 30px 42px; font-size: 14px; color: var(--muted); }
footer nav { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-bottom: 18px; }
@media (max-width: 650px) { .shell { width: min(100% - 32px, 940px); } main { padding-top: 28px; } .guides { grid-template-columns: 1fr; gap: 14px; } .hero-art { height: 140px; } }
@media (prefers-reduced-motion: reduce) { .guide { transition: none; } }
