:root {
  --bg: #000;
  --surface: #0b0e10;
  --text: #e9edef;
  --body: #c5ccd0;
  --muted: #8b969b;
  --faint: #58636a;
  --line: #1a2024;
  --accent: #22e3d5;
  --accent-soft: #3ba59d;
  --accent-deep: #0b3533;
  --green: #34d77e;
  --yellow: #f2c230;
  --red: #ff5a4e;
  --max: 1120px;
}

* { box-sizing: border-box; }

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 17px/1.6 system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.wrap { max-width: var(--max); margin: 0 auto; padding-inline: 20px; }

.skip {
  position: absolute; left: -9999px; top: 12px;
  background: var(--accent); color: #001413; padding: 8px 14px; border-radius: 8px; z-index: 50;
}
.skip:focus { left: 16px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(0, 0, 0, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 19px; font-weight: 300; letter-spacing: 0.08em; }
.brand:hover { text-decoration: none; }
.brand b { color: var(--accent); font-weight: 400; }
.brand img { width: 30px; height: 30px; }
.nav ul { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav ul a { color: var(--muted); font-size: 15px; }
.nav ul a:hover { color: var(--text); text-decoration: none; }
@media (max-width: 640px) { .nav .hide-sm { display: none; } }

/* Hero */
.hero { position: relative; padding: 64px 0 32px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; left: 50%; top: -180px; width: 1100px; height: 900px; transform: translateX(-30%);
  background: radial-gradient(closest-side, rgba(34, 227, 213, 0.14), transparent 72%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.eyebrow { color: var(--accent-soft); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 18px; }
h1 { font-size: clamp(40px, 6.2vw, 72px); line-height: 1.04; letter-spacing: -0.035em; font-weight: 600; margin: 0 0 22px; }
h1 em { font-style: normal; color: var(--accent); }
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 32em; margin: 0 0 34px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; }

.store-soon {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 24px 11px 16px; border-radius: 999px; background: var(--accent-deep);
}
.store-soon svg { width: 28px; height: 28px; flex: none; }
.store-soon small { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); line-height: 1.3; }
.store-soon span { display: block; font-size: 17px; font-weight: 600; line-height: 1.25; color: var(--text); }
.text-link { color: var(--muted); font-size: 15px; }
.text-link:hover { color: var(--text); }

.facts { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 30px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 14.5px; }
.facts li::before { content: ""; display: inline-block; width: 6px; height: 6px; margin-right: 9px; border-radius: 50%; background: var(--accent); vertical-align: 2px; }

.phone { justify-self: center; width: min(330px, 78vw); }
.phone img { border-radius: 38px; box-shadow: 0 40px 140px -30px rgba(34, 227, 213, 0.32), 0 0 0 1px rgba(255, 255, 255, 0.05); }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .lead { margin-inline: auto; }
  .actions, .facts { justify-content: center; }
  .hero::before { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 600; margin: 0 0 14px; }
.section-head p { color: var(--muted); margin: 0; font-size: 18px; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 48px; list-style: none; margin: 0; padding: 0; }
.features li { padding: 30px 0 26px; border-top: 1px solid var(--line); }
.features svg { width: 26px; height: 26px; color: var(--accent); margin-bottom: 16px; }
.features h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 6px; }
.features p { margin: 0; color: var(--muted); font-size: 16px; }
@media (max-width: 880px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

.levels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 32px; list-style: none; margin: 0; padding: 0; }
.levels li { padding: 22px 0; border-top: 2px solid var(--line); }
.levels li:nth-child(1) { border-color: var(--green); }
.levels li:nth-child(2) { border-color: var(--accent); }
.levels li:nth-child(3) { border-color: var(--yellow); }
.levels li:nth-child(4) { border-color: var(--red); }
.levels strong { display: block; font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.levels p { margin: 0; color: var(--muted); font-size: 15.5px; }
@media (max-width: 880px) { .levels { grid-template-columns: 1fr 1fr; } }

.gallery {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(210px, 250px); gap: 28px;
  overflow-x: auto; scroll-snap-type: x mandatory; padding: 12px 20px 28px; margin: 0 -20px;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.gallery figure { margin: 0; scroll-snap-align: start; }
.gallery img { border-radius: 28px; box-shadow: 0 24px 70px -30px rgba(34, 227, 213, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.04); }
.gallery figcaption { margin-top: 16px; font-size: 16px; font-weight: 500; }
.gallery figcaption span { display: block; font-weight: 400; color: var(--muted); font-size: 14.5px; }

.promise { text-align: center; }
.promise h2 { max-width: 14em; margin-inline: auto; }
.promise p { color: var(--muted); max-width: 36em; margin: 0 auto 26px; font-size: 18px; }
.pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0 0 30px; }
.pills li { padding: 8px 18px; border-radius: 999px; background: var(--surface); font-size: 15px; }

.contact { text-align: center; padding-top: 0; }
.contact p { color: var(--muted); margin: 0; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 36px 0 48px; color: var(--faint); font-size: 14px; }
.foot { display: flex; flex-wrap: wrap; gap: 16px 32px; justify-content: space-between; align-items: center; }
.foot nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.foot nav a { color: var(--muted); }
.foot p { margin: 0; }

/* Legal pages */
.legal { padding: 56px 0 100px; }
.legal .wrap { max-width: 760px; }
.legal h1 { font-size: clamp(36px, 5vw, 52px); margin-bottom: 10px; }
.updated { color: var(--faint); margin: 0 0 36px; }
.legal h2 { font-size: 24px; letter-spacing: -0.01em; margin: 52px 0 12px; }
.legal h3 { font-size: 18px; margin: 30px 0 8px; }
.legal p, .legal li { color: var(--body); }
.legal ul { padding-left: 22px; }
.legal li { margin: 7px 0; }
.legal strong { color: var(--text); font-weight: 600; }
.summary { margin: 0 0 8px; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.summary ul { margin: 0; }
.table-scroll { overflow-x: auto; margin: 14px 0; }
.data-table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 15.5px; }
.data-table th, .data-table td { text-align: left; vertical-align: top; padding: 13px 16px 13px 0; border-bottom: 1px solid var(--line); }
.data-table th { color: var(--faint); font-weight: 500; font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.data-table td { color: var(--body); }
.data-table td:first-child { color: var(--text); font-weight: 500; }

.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 60px 20px; }
.notfound p { color: var(--muted); }
.notfound img { margin: 0 auto 24px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
