:root {
  --bg-top: #0b1826;
  --bg-bottom: #16384a;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-border: rgba(255, 255, 255, 0.08);
  --gold: #ffc24b;
  --gold-bright: #ffd15b;
  --teal: #2d7b8c;
  --text: #f4f7fa;
  --muted: rgba(244, 247, 250, 0.62);
  --muted-2: rgba(244, 247, 250, 0.42);
  --radius: 20px;
  --max: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-top) 0%, #112c3c 45%, var(--bg-bottom) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(11, 24, 38, 0.55);
  border-bottom: 1px solid var(--panel-border);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 0.5px; font-size: 1.1rem; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.nav-links { display: flex; gap: 26px; font-size: 0.95rem; }
.nav-links a { color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

/* ---------- Hero ---------- */
.hero { text-align: center; padding: 84px 0 56px; }
.hero .icon {
  width: 116px; height: 116px; border-radius: 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255,255,255,0.06);
  margin-bottom: 26px;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  font-weight: 900; letter-spacing: 3px; margin-bottom: 10px;
}
.hero .tag { font-size: clamp(1.05rem, 2.4vw, 1.4rem); color: var(--muted); margin-bottom: 26px; }
.hero .lead { max-width: 560px; margin: 0 auto 32px; color: var(--muted); font-size: 1.05rem; }

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(90deg, var(--gold-bright), #ffb347);
  color: #1a1206; font-weight: 800; font-size: 0.98rem;
  padding: 13px 24px; border-radius: 14px;
  box-shadow: 0 10px 30px rgba(255, 179, 71, 0.35);
}
.badge.soon { background: var(--panel); color: var(--text); border: 1px solid var(--panel-border); box-shadow: none; }

/* ---------- Shots ---------- */
.shots { padding: 30px 0 70px; }
.shots-row {
  display: flex; gap: 22px; overflow-x: auto; padding: 10px 22px 26px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.shots-row::-webkit-scrollbar { height: 8px; }
.shots-row::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.14); border-radius: 8px; }
.shot {
  flex: 0 0 auto; width: 232px; scroll-snap-align: center;
  border-radius: 26px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  background: #0c1722;
}
.shot img { width: 100%; display: block; }

/* ---------- Sections ---------- */
section { padding: 56px 0; }
.section-title { text-align: center; font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.section-sub { text-align: center; color: var(--muted); max-width: 560px; margin: 0 auto 44px; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.card {
  background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: var(--radius); padding: 26px;
}
.card .dot {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 16px;
  display: grid; place-items: center; font-size: 1.4rem;
  background: rgba(255, 194, 75, 0.14); border: 1px solid rgba(255, 194, 75, 0.3);
}
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.97rem; }

/* ---------- CTA / contact ---------- */
.cta {
  text-align: center;
  background: var(--panel); border: 1px solid var(--panel-border);
  border-radius: 28px; padding: 54px 26px; margin: 20px 0 0;
}
.cta h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 12px; }
.cta p { color: var(--muted); margin-bottom: 24px; }
.cta a.mail { color: var(--gold-bright); font-weight: 700; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--panel-border); padding: 36px 0; margin-top: 70px; }
.footer .wrap { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.footer .links { display: flex; gap: 22px; }
.footer a { color: var(--muted); font-size: 0.92rem; }
.footer a:hover { color: var(--text); }
.footer .copy { color: var(--muted-2); font-size: 0.88rem; }

/* ---------- Legal page ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 64px 22px 30px; }
.legal h1 { font-size: 2.4rem; margin-bottom: 6px; }
.legal .updated { color: var(--muted-2); margin-bottom: 36px; }
.legal h2 { font-size: 1.3rem; margin: 34px 0 10px; }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--gold-bright); }
.back { display: inline-block; margin-bottom: 24px; color: var(--muted); }

@media (max-width: 620px) {
  .nav-links { gap: 16px; font-size: 0.88rem; }
  .nav-links a.hide-sm { display: none; }
  .hero { padding: 60px 0 40px; }
}
