:root {
  --bg: #0c1633;
  --bg-soft: #101f45;
  --text: #f3f6ff;
  --muted: #b9c5ea;
  --brand: #2e6fff;
  --brand-2: #6c97ff;
  --card: #152754;
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 0%, #1f3f8f 0%, var(--bg) 45%, #080f22 100%);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: rgba(10, 18, 40, 0.65);
  border-bottom: 1px solid var(--border);
  z-index: 20;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 1rem;
  font-weight: 600;
}

nav a:hover {
  color: white;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.lang-btn {
  border: 0;
  color: #dce7ff;
  background: transparent;
  padding: 0.45rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
}

.hero {
  padding: 4.5rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
}

.pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  color: #d7e4ff;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0.9rem 0;
}

.hero p {
  color: var(--muted);
  max-width: 60ch;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
}

.btn.ghost {
  border-color: var(--border);
  color: #dce7ff;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.hero-card img {
  width: 96px;
  height: 96px;
  border-radius: 24px;
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-lead {
  color: var(--muted);
}

.cards {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.shot {
  min-height: 280px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  text-align: center;
  color: #c8d6ff;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  overflow: hidden;
}

.shot img {
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
}

.shot small {
  color: #95a8de;
}

.split {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 0.8fr;
}

ul {
  padding-left: 1.1rem;
}

li {
  margin-bottom: 0.55rem;
}

.privacy-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem;
  align-self: start;
}

.site-footer {
  padding: 2rem 0 1rem;
}

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

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  color: #d9e5ff;
  text-decoration: none;
}

.disclaimer {
  text-align: center;
  color: #9eb1e7;
  font-size: 0.88rem;
  margin: 1.2rem auto 0;
  width: min(980px, 92%);
  opacity: 0.9;
}

.copyright {
  text-align: center;
  color: #9eb1e7;
  font-size: 0.9rem;
  margin-top: 0.8rem;
}

@media (max-width: 920px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shots-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  nav {
    display: none;
  }

  .nav-right {
    margin-left: auto;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
