:root {
  --bg: #0b0c10;
  --panel: #101218;
  --text: #e8eaf0;
  --muted: #a7adbd;
  --accent: #6ee7b7; /* mint */
  --accent-2: #60a5fa; /* blue */
  --border: #1b1f2a;
  --shadow: 0 10px 30px rgba(0,0,0,0.25);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 80% -10%, rgba(96,165,250,0.15), transparent),
              radial-gradient(900px 500px at -10% 20%, rgba(110,231,183,0.12), transparent),
              var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(11,12,16,0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  height: 64px;
}
.logo { color: var(--text); text-decoration: none; font-weight: 700; letter-spacing: 0.08em; }
.nav { display: flex; gap: 18px; align-items: center; }
.nav a { color: var(--muted); text-decoration: none; font-size: 14px; }
.nav a:hover { color: var(--text); }

.lang select {
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 12px; text-decoration: none; font-weight: 600;
  border: 1px solid transparent; transition: transform .06s ease, background .2s ease, border-color .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #041016;
}
.btn-outline {
  background: transparent; color: var(--text); border-color: var(--border);
}
.btn-ghost {
  background: transparent; color: var(--text); border-color: transparent; padding: 10px 14px;
}

/* Hero */
.hero { padding: 96px 0 60px; }
.hero-inner { display: grid; gap: 24px; max-width: 760px; }
.hero-title { font-size: clamp(32px, 5vw, 56px); line-height: 1.05; margin: 0; }
.hero-subtitle { color: var(--muted); font-size: 18px; margin: 0; }
.cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* Store badges */
.store-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
}
.store-badge img {
  height: 44px; /* adjust if needed: 40–48px */
  display: block;
  filter: none; /* keep brand colors intact */
}

/* Features */
.section-title { font-size: 28px; margin: 0 0 20px; }
.features { padding: 56px 0; }
.grid { display: grid; gap: 16px; grid-template-columns: repeat(12, 1fr); }
.card {
  grid-column: span 6;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); }

/* Support */
.support { padding: 56px 0; }
.section-sub { color: var(--muted); margin: 6px 0 20px; }
.contacts { display: flex; gap: 12px; flex-wrap: wrap; }
.contact {
  display: grid; grid-template-columns: auto 1fr; gap: 4px 12px; align-items: baseline;
  padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; text-decoration: none; color: var(--text);
  background: var(--panel);
}
.contact:hover { border-color: #2a3245; }
.contact-label { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.contact-value { font-weight: 600; }

/* Legal */
.legal { padding: 56px 0; }
.legal-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.legal-list a { color: var(--text); text-decoration: none; padding: 12px 0; border-bottom: 1px dashed var(--border); }
.legal-list a:hover { color: var(--accent); border-color: var(--accent); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 24px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 14px; }

/* Responsive */
@media (max-width: 900px) {
  .card { grid-column: span 12; }
  .nav { display: none; } /* keep minimal, no burger for now */
}