:root {
  --bg: #f7f7fb;
  --surface: #ffffff;
  --band: #eef0fb;
  --text: #16181d;
  --muted: #5f6573;
  --border: #dde0e8;
  --primary: #4f46e5;
  --primary-strong: #4338ca;
  --primary-text: #ffffff;
  --accent: #fbbf24;
  --ok: #16a34a;
  --radius: 16px;
  --shadow: 0 1px 2px rgb(0 0 0 / .06), 0 8px 24px rgb(30 27 75 / .08);
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f1115;
    --surface: #191c22;
    --band: #161a2a;
    --text: #eceef3;
    --muted: #9aa1b0;
    --border: #2d323d;
    --primary: #818cf8;
    --primary-strong: #a5b4fc;
    --primary-text: #0f1115;
    --ok: #4ade80;
    --shadow: 0 1px 2px rgb(0 0 0 / .4), 0 8px 24px rgb(0 0 0 / .3);
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font: 17px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
a { color: var(--primary); }
a:hover { color: var(--primary-strong); }
img { max-width: 100%; height: auto; }
h1, h2, h3 { line-height: 1.2; letter-spacing: -.01em; }
h1 { font-size: clamp(1.9rem, 5vw, 3rem); margin: .3em 0 .4em; }
h2 { font-size: clamp(1.4rem, 3.4vw, 1.9rem); margin: 1.6em 0 .6em; }
h3 { font-size: 1.1rem; margin: .4em 0; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 16px; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: .88rem; }
.lead { font-size: 1.18rem; color: var(--muted); }

/* header */
.top { position: sticky; top: 0; z-index: 10; background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.top-in { display: flex; align-items: center; gap: 14px; min-height: 60px; }
.brand { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.15rem; color: var(--text); text-decoration: none; }
.brand img { border-radius: 8px; }
.nav { display: flex; gap: 16px; margin-left: auto; }
.nav a { color: var(--text); text-decoration: none; font-weight: 500; }
.nav a:hover { color: var(--primary); }
.lang { position: relative; }
.lang summary { list-style: none; cursor: pointer; font-weight: 600; padding: 6px 10px; border: 1px solid var(--border); border-radius: 10px; }
.lang summary::-webkit-details-marker { display: none; }
.lang-menu { position: absolute; right: 0; top: calc(100% + 6px); background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; box-shadow: var(--shadow); padding: 6px; display: grid; min-width: 160px; }
.lang-menu a { padding: 8px 10px; border-radius: 8px; color: var(--text); text-decoration: none; }
.lang-menu a:hover, .lang-menu a[aria-current] { background: var(--band); }
@media (max-width: 640px) {
  .nav { display: none; }
  .lang { margin-left: auto; }
}

/* buttons */
.btn { display: inline-block; background: var(--primary); color: var(--primary-text); text-decoration: none; font-weight: 650;
  padding: 14px 22px; border-radius: 999px; box-shadow: var(--shadow); }
.btn:hover { background: var(--primary-strong); color: var(--primary-text); }
.btn-sm { padding: 8px 14px; font-size: .92rem; box-shadow: none; white-space: nowrap; }
.cta-row { margin: 1.2em 0 .3em; }

/* hero */
.hero { background: radial-gradient(1200px 500px at 80% -10%, color-mix(in srgb, var(--primary) 22%, transparent), transparent), var(--bg); }
.hero-in { display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center; padding-top: 32px; padding-bottom: 40px; }
.hero-shots { display: flex; gap: 16px; justify-content: center; }
.hero-shots .shot { width: 46%; }
.hero-shots .shot:nth-child(2) { transform: translateY(28px); }
.shot { display: block; border-radius: 28px; border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--surface); }
@media (max-width: 820px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-shots .shot { width: 44%; max-width: 220px; }
}

/* sections */
.band { background: var(--band); padding: 8px 0 40px; margin-top: 40px; }
.band.final { text-align: center; padding: 16px 0 56px; }
.split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.split > .shot, .split aside .shot { max-width: 300px; margin: 2em auto 0; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.article { padding-bottom: 16px; }
.grid { display: grid; gap: 16px; }
.features { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.feature, .guide { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; }
.feature p, .guide p { margin: 0; color: var(--muted); }
.f-icon { font-size: 1.7rem; }
.guides { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.guide { color: var(--text); text-decoration: none; transition: transform .15s, box-shadow .15s; }
.guide:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--text); }
.guide h3 { color: var(--primary); }
.steps { padding-left: 1.3em; }
.steps li { margin: .5em 0; }
.ticks { list-style: none; padding: 0; }
.ticks li { padding-left: 1.6em; position: relative; margin: .45em 0; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 700; }

/* compare table */
.table-wrap { overflow-x: auto; }
.compare { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.compare th, .compare td { padding: 12px 14px; border-bottom: 1px solid var(--border); text-align: center; }
.compare th[scope=row] { text-align: left; font-weight: 500; }
.compare thead th { background: var(--band); }
.compare tr:last-child > * { border-bottom: 0; }
.yes { color: var(--ok); font-weight: 700; }
.no { color: var(--muted); }

/* chips, stores */
.chips { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips a { display: inline-block; padding: 7px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border);
  color: var(--text); text-decoration: none; }
.chips a:hover { border-color: var(--primary); color: var(--primary); }
.store-grid { list-style: none; padding: 0; display: grid; gap: 10px; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.store-grid a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; color: var(--text); text-decoration: none; font-weight: 500; }
.store-grid a:hover { border-color: var(--primary); }
.badge { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; flex: none; color: #fff; font-weight: 700;
  background: hsl(var(--h) 55% 45%); }
.badge.big { width: 1.3em; height: 1.3em; border-radius: .25em; font-size: .9em; margin-right: .35em; vertical-align: -.12em; }

/* faq */
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 12px 16px; margin: 8px 0; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { margin: .6em 0 0; color: var(--muted); }

.crumbs { font-size: .88rem; color: var(--muted); padding-top: 14px; }
.crumbs a { color: var(--muted); }

/* footer */
.foot { margin-top: 56px; border-top: 1px solid var(--border); padding: 32px 0 24px; background: var(--surface); }
.foot-in { display: grid; grid-template-columns: 1.4fr 1.4fr 1fr 1fr; gap: 24px; }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin: .3em 0; }
.foot li a { color: var(--muted); text-decoration: none; }
.foot li a:hover { color: var(--primary); }
.foot-h { font-size: .95rem; margin: .4em 0 .6em; }
@media (max-width: 820px) { .foot-in { grid-template-columns: 1fr 1fr; } }
