:root {
  --ink: #17191c;
  --muted: #687078;
  --paper: #f7f8f9;
  --card: #ffffff;
  --line: #e4e7ea;
  --coral: #ff5c5c;
  --teal: #16b8a6;
  --yellow: #ffd84d;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
a { color: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(247,248,249,.92); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(228,231,234,.85); }
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; letter-spacing: -.02em; }
.brand img { width: 34px; height: 34px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 14px; }
.nav-links a { text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-cta { padding: 10px 16px; border-radius: 999px; background: var(--ink); color: #fff !important; }
.hero { padding: 88px 0 82px; background: #fff4f1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.eyebrow { color: var(--coral); font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -.045em; margin: 0 0 20px; }
h1 { max-width: 680px; font-size: clamp(48px, 7vw, 82px); }
h2 { font-size: clamp(34px, 5vw, 54px); }
h3 { font-size: 23px; }
.lede { max-width: 600px; color: var(--muted); font-size: 19px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 19px; border-radius: 8px; background: var(--coral); color: #fff; font-weight: 750; text-decoration: none; box-shadow: 0 8px 22px rgba(255,92,92,.2); }
.button.secondary { background: var(--card); color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.hero-art { min-height: 420px; border-radius: 18px; background: var(--ink); padding: 22px; position: relative; overflow: hidden; box-shadow: 0 24px 70px rgba(23,25,28,.18); }
.vault-card { position: relative; z-index: 1; height: 100%; min-height: 376px; border: 1px solid rgba(255,255,255,.2); border-radius: 13px; padding: 25px; display: flex; flex-direction: column; justify-content: space-between; color: #fff; background: #2a2d31; }
.vault-top { display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.72); }
.toy-mark { width: 130px; height: 156px; margin: auto; border: 4px solid var(--yellow); border-radius: 14px 14px 20px 20px; position: relative; box-shadow: 0 0 0 10px rgba(255,216,77,.1); }
.toy-mark:before { content: ""; position: absolute; top: 24px; left: 50%; width: 36px; height: 36px; transform: translateX(-50%); border-radius: 50%; background: var(--coral); }
.toy-mark:after { content: ""; position: absolute; bottom: 26px; left: 23px; right: 23px; height: 4px; background: var(--teal); box-shadow: 0 12px 0 var(--teal); }
.vault-caption { display: flex; justify-content: space-between; align-items: end; gap: 12px; }
.vault-caption strong { font-size: 24px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 58px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--card); padding: 23px; }
.stat strong { display: block; font-size: 30px; }
.stat span { color: var(--muted); font-size: 14px; }
section { padding: 100px 0; }
.section-head { max-width: 690px; margin-bottom: 40px; }
.section-head p { color: var(--muted); font-size: 18px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature { min-height: 230px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 27px; }
.feature:nth-child(2) { transform: translateY(22px); }
.feature:nth-child(3) { background: var(--ink); color: #fff; }
.feature p { color: var(--muted); margin: 0; }
.feature:nth-child(3) p { color: rgba(255,255,255,.72); }
.number { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 50%; background: var(--yellow); font-weight: 800; margin-bottom: 30px; }
.band { background: var(--teal); color: #082d2a; }
.band .section-head p { color: #135a53; }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.checklist { display: grid; gap: 14px; }
.check { background: rgba(255,255,255,.58); border: 1px solid rgba(8,45,42,.12); border-radius: 8px; padding: 16px 18px; }
.check strong { display: block; }
.check span { color: #215f59; font-size: 14px; }
.page-hero { padding: 80px 0 62px; background: #fff2ef; }
.page-hero p { max-width: 650px; color: var(--muted); font-size: 18px; }
.content { padding: 58px 0 100px; }
.content-grid { display: grid; grid-template-columns: 220px 1fr; gap: 55px; align-items: start; }
.toc { position: sticky; top: 98px; display: grid; gap: 8px; font-size: 14px; color: var(--muted); }
.toc a { text-decoration: none; }
.toc a:hover { color: var(--coral); }
.prose { max-width: 760px; }
.prose h2 { font-size: 28px; margin-top: 44px; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: #4e565e; }
.prose ul { padding-left: 22px; }
.callout { margin: 28px 0; padding: 20px 22px; border-left: 4px solid var(--coral); background: #fff1ef; border-radius: 0 8px 8px 0; }
.faq { display: grid; gap: 12px; }
details { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 18px 20px; }
summary { cursor: pointer; font-weight: 750; }
details p { color: var(--muted); margin: 12px 0 0; }
.contact-card { margin-top: 35px; padding: 28px; background: var(--ink); color: #fff; border-radius: 12px; }
.contact-card p { color: rgba(255,255,255,.72); }
.site-footer { padding: 38px 0 50px; border-top: 1px solid var(--line); }
.footer-row { display: flex; justify-content: space-between; gap: 25px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; }
@media (max-width: 800px) {
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .nav { min-height: 64px; }
  .nav-links { gap: 12px; font-size: 12px; }
  .nav-links a:nth-child(2), .nav-links a:nth-child(3) { display: none; }
  .hero { padding: 56px 0 55px; }
  .hero-grid, .split, .content-grid { grid-template-columns: 1fr; gap: 30px; }
  h1 { font-size: clamp(43px, 15vw, 64px); }
  .hero-art { min-height: 330px; }
  .vault-card { min-height: 286px; }
  .stats, .feature-grid { grid-template-columns: 1fr; }
  .feature:nth-child(2) { transform: none; }
  section { padding: 70px 0; }
  .toc { position: static; display: flex; flex-wrap: wrap; gap: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
  .content { padding-top: 35px; }
}
