:root {
  --gold: #FFC629;
  --gold-deep: #D9A441;
  --ink: #0B0D14;
  --ink-soft: #12151F;
  --panel: #171B27;
  --line: rgba(255, 255, 255, 0.1);
  --text: #F5F6F8;
  --text-muted: #A8AEBD;
  --red: #E23B3B;
  --radius: 20px;
  --container: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 13, 20, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
}

.back-link {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.back-link:hover { color: var(--gold); }

.mini-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.mini-nav a { text-decoration: none; color: var(--text-muted); }
.mini-nav a:hover { color: var(--text); }

.nav-cta {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--gold);
  color: #191100;
}

/* ---------- buttons ---------- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #1A1200;
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.button-full { width: 100%; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(900px 520px at 78% 12%, rgba(255, 198, 41, 0.16), transparent 65%),
    radial-gradient(700px 480px at 8% 88%, rgba(226, 59, 59, 0.12), transparent 62%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.4rem; }

.eyebrow {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 198, 41, 0.14);
  color: var(--gold);
  border: 1px solid rgba(255, 198, 41, 0.3);
}

.eyebrow-soft {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border-color: var(--line);
}

h1 {
  font-family: 'Anton', 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

h1 span { display: block; color: var(--gold); }

.hero-lead {
  margin-top: 1.4rem;
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 34rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.hero-points li::before {
  content: "●";
  color: var(--gold);
  margin-right: 0.5rem;
  font-size: 0.7rem;
  vertical-align: middle;
}

.hero-visual { display: flex; justify-content: center; }

.hero-visual img {
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
  max-height: 720px;
  width: auto;
}

/* ---------- sections ---------- */

.section { padding: 4.5rem 0; }

.section-alt { background: var(--ink-soft); border-block: 1px solid var(--line); }

.section-head { max-width: 44rem; margin-bottom: 2.6rem; }

.section-kicker {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

h2 {
  font-family: 'Anton', 'Manrope', sans-serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.section-head p { margin-top: 1rem; color: var(--text-muted); }

/* ---------- steps ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.step-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
}

.step-number {
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
}

.step-card h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--text-muted); font-size: 0.96rem; }

/* ---------- features ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.feature-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
}

.feature-panel h3 { font-size: 1.1rem; margin: 0.7rem 0 0.5rem; }
.feature-panel p { color: var(--text-muted); font-size: 0.96rem; }

.feature-icon {
  font-family: 'Anton', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

/* ---------- shots ---------- */

.shots-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.shot figure { margin: 0; }

.shot img {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--ink-soft);
}

.shot figcaption {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ---------- ip notice ---------- */

.notice {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.8rem;
}

.notice h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.8rem; }
.notice p { color: var(--text-muted); }
.notice p + p { margin-top: 0.8rem; }

/* ---------- download ---------- */

.download-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.download-copy p { margin-top: 1rem; color: var(--text-muted); }

.download-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
}

.download-app { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.3rem; }
.download-app img { border-radius: 20px; }
.download-app h3 { font-size: 1.05rem; }
.download-app p { color: var(--text-muted); font-size: 0.9rem; }

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.2rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links { display: flex; gap: 1.2rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--gold); }

/* ---------- legal page ---------- */

.legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}

.legal h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 0.4rem;
}

.legal .updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2.2rem; }

.legal h2 {
  font-size: 1.25rem;
  text-transform: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: var(--gold);
  margin-top: 2.4rem;
  margin-bottom: 0.7rem;
}

.legal p, .legal li { color: var(--text-muted); }
.legal p { margin-bottom: 1rem; }
.legal ul { margin: 0 0 1rem 1.4rem; }
.legal li { margin-bottom: 0.45rem; }
.legal a { color: var(--gold); font-weight: 700; }

.lang-switch { display: flex; gap: 0.5rem; margin-bottom: 2rem; }

.lang-switch button {
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-muted);
}

.lang-switch button[aria-selected="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: #191100;
}

[hidden] { display: none !important; }

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .hero-grid, .download-shell { grid-template-columns: 1fr; }
  .steps-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .shots-row { grid-template-columns: repeat(2, 1fr); }
  .mini-nav { display: none; }
}

@media (max-width: 620px) {
  .steps-grid, .feature-grid, .shots-row { grid-template-columns: 1fr; }
  .hero { padding-top: 3rem; }
}
