
:root {
  color-scheme: dark;
  --bg: #000;
  --panel: #171717;
  --panel-2: #202020;
  --text: #f5f5f7;
  --muted: #a1a1aa;
  --blue: #0a84ff;
  --gold: #ffc928;
  --green: #30d158;
  --line: rgba(255,255,255,.11);
  --max: 1040px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
               "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 70px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); font-weight: 700; }
.brand:hover { text-decoration: none; }
.brand img { width: 38px; height: 38px; border-radius: 9px; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 15px; }
.nav-links a { color: #d4d4d8; }
.hero { padding: 62px 0 34px; text-align: center; }
.hero-art {
  display: block;
  width: min(820px, 100%);
  margin: -34px auto -18px;
  aspect-ratio: 1672 / 941;
  object-fit: contain;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  color: #d7e9ff; font-weight: 650; font-size: 14px;
  padding: 7px 11px; border: 1px solid rgba(10,132,255,.35);
  background: rgba(10,132,255,.10); border-radius: 999px;
}
h1 { font-size: clamp(44px, 8vw, 76px); line-height: .98; letter-spacing: -.045em; margin: 18px 0; }
.hero p {
  width: min(760px, 100%); margin: 0 auto;
  color: #c7c7cc; font-size: clamp(19px, 3vw, 24px); line-height: 1.48;
}
.actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.button {
  display: inline-flex; min-height: 48px; align-items: center; justify-content: center;
  padding: 0 20px; border-radius: 999px; font-weight: 700;
  border: 1px solid var(--line);
}
.button.primary { background: var(--blue); color: white; border-color: transparent; }
.button.secondary { background: #171717; color: white; }
.button:hover { text-decoration: none; filter: brightness(1.08); }
.section { padding: 44px 0; }
.section h2 { font-size: clamp(30px, 5vw, 44px); letter-spacing: -.025em; margin: 0 0 22px; }
.section-intro { color: var(--muted); font-size: 18px; max-width: 760px; line-height: 1.55; margin-bottom: 24px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  background: linear-gradient(180deg, #1d1d1f 0%, #151515 100%);
  border: 1px solid var(--line); border-radius: 22px; padding: 25px;
}
.card .num {
  width: 34px; height: 34px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(10,132,255,.15); color: #8ec5ff;
  font-weight: 800; margin-bottom: 18px;
}
.card h3 { margin: 0 0 9px; font-size: 21px; }
.card p { margin: 0; color: var(--muted); line-height: 1.5; }
.safety {
  margin: 26px 0 10px;
  border: 1px solid rgba(48,209,88,.28);
  background: rgba(48,209,88,.075);
  border-radius: 22px; padding: 23px 25px;
}
.safety strong { color: #e7ffed; }
.safety p { margin: 5px 0 0; color: #c8d8cc; line-height: 1.55; }
.page-hero { padding: 72px 0 30px; }
.page-hero h1 { font-size: clamp(44px, 7vw, 66px); margin-bottom: 16px; }
.page-hero p { color: var(--muted); max-width: 760px; font-size: 20px; line-height: 1.55; }
.prose { max-width: 820px; padding-bottom: 70px; }
.prose h2 { font-size: 28px; margin: 38px 0 12px; letter-spacing: -.015em; }
.prose h3 { font-size: 21px; margin: 28px 0 8px; }
.prose p, .prose li { color: #c7c7cc; line-height: 1.65; font-size: 17px; }
.prose ul { padding-left: 22px; }
.faq { display: grid; gap: 14px; }
.faq .card { padding: 22px 24px; }
.faq h3 { font-size: 19px; }
.contact {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: #171717; border: 1px solid var(--line); border-radius: 22px; padding: 24px;
  margin-top: 28px;
}
.contact p { margin: 4px 0 0; color: var(--muted); }
footer { border-top: 1px solid var(--line); padding: 28px 0 42px; color: #777; font-size: 14px; }
.footer-row { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: #999; }
@media (max-width: 760px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 62px; }
  .brand span { display: none; }
  .nav-links { gap: 15px; font-size: 14px; }
  .hero { padding-top: 35px; }
  .hero-art { margin: -18px auto -4px; width: 100%; }
  .grid { grid-template-columns: 1fr; }
  .section { padding: 34px 0; }
  .page-hero { padding-top: 52px; }
  .contact { align-items: flex-start; flex-direction: column; }
}
