:root {
  --bg: #0c0f22;
  --bg-2: #151a38;
  --ink: #eef1ff;
  --muted: rgba(238, 241, 255, 0.6);
  --accent: #7b7cff;
  --accent-2: #ffb35c;
  --glass: rgba(255, 255, 255, 0.06);
  --stroke: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(6, 10, 30, 0.5);
}

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

body {
  font-family: 'Avenir Next', 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: radial-gradient(circle at 20% 20%, #242657, transparent 55%),
    radial-gradient(circle at 70% 0%, #242064, transparent 50%),
    radial-gradient(circle at 80% 80%, #1a295f, transparent 55%),
    linear-gradient(160deg, #0b0e20 0%, #0f1533 50%, #0b0e20 100%);
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(0px);
  opacity: 0.4;
  animation: float 12s ease-in-out infinite;
}

.blob-1 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, #3d3f8d 0%, transparent 70%);
  top: -120px;
  left: -100px;
}

.blob-2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #3034a5 0%, transparent 70%);
  bottom: -160px;
  right: -160px;
  animation-delay: 2s;
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 40% 20%, #000 0%, transparent 65%);
  opacity: 0.5;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 8vw 0;
}

.brand {
  font-family: 'Baskerville', 'Times New Roman', serif;
  font-size: 28px;
  letter-spacing: 0.5px;
}

.menu {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 14px;
}

.lang-select {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  appearance: none;
  padding-right: 34px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(238,241,255,0.75)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.lang-select:focus {
  outline: 2px solid rgba(123, 124, 255, 0.5);
  outline-offset: 2px;
}

main {
  padding: 60px 8vw 120px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(240px, 0.9fr);
  gap: 64px;
  align-items: center;
  margin-top: 40px;
}

.hero-copy h1 {
  font-family: 'Baskerville', 'Times New Roman', serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
  align-items: center;
}

.badge-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: #05060c;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.badge-icon {
  font-size: 18px;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.badge-store {
  font-size: 16px;
  letter-spacing: 0.3px;
}

.badge-button.playstore {
  background: #0a0c14;
}

.badge-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  font-size: 13px;
  color: var(--muted);
}

.meta-value {
  display: block;
  font-size: 28px;
  color: #fff;
  letter-spacing: 0.5px;
  text-shadow: 0 6px 18px rgba(123, 124, 255, 0.35);
}

.meta-item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
}

.hero-card {
  background: radial-gradient(circle at 30% 20%, rgba(123, 124, 255, 0.3), transparent 55%),
    var(--bg-2);
  border-radius: 28px;
  padding: 0;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 80%, rgba(255, 179, 92, 0.2), transparent 60%);
  opacity: 0.8;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card .video-container {
  margin: 0;
  max-width: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  height: 100%;
}

.hero-card .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero-card h2 {
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 24px;
}

.emoji-ring {
  width: 150px;
  height: 150px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(123, 124, 255, 0.2);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 30px rgba(123, 124, 255, 0.4);
}

.emoji {
  font-size: 48px;
  background: rgba(123, 124, 255, 0.35);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.hint {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

.dock {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.section {
  margin-top: 90px;
}

.video-section {
  text-align: center;
}

.video-container {
  margin-top: 36px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 60px rgba(123, 124, 255, 0.15);
  border: 1px solid var(--stroke);
}

.video-container video {
  width: 100%;
  display: block;
  background: var(--bg-2);
}

.section-title h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

.section-title p {
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
}

.steps {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.steps article {
  padding: 24px;
  border-radius: 20px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(123, 124, 255, 0.2);
  margin-bottom: 12px;
}

.steps article::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(123, 124, 255, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.steps h4 {
  margin-bottom: 8px;
}

.steps p {
  color: var(--muted);
  line-height: 1.5;
}

.steps article:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 124, 255, 0.45);
  box-shadow: 0 18px 40px rgba(7, 8, 18, 0.35);
}

.steps article:hover::after {
  opacity: 1;
}

.privacy-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.privacy-grid article {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.privacy-grid article > * {
  position: relative;
  z-index: 1;
}

.privacy-grid h4 {
  margin-bottom: 10px;
}

.privacy-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.privacy-grid article::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(255, 179, 92, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.privacy-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 179, 92, 0.45);
  box-shadow: 0 18px 40px rgba(7, 8, 18, 0.35);
}

.privacy-grid article:hover::after {
  opacity: 1;
}

.privacy-grid .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(123, 124, 255, 0.18);
  border: 1px solid rgba(123, 124, 255, 0.25);
  box-shadow: inset 0 0 14px rgba(123, 124, 255, 0.25);
  position: relative;
  z-index: 1;
}

.privacy-grid .card-icon {
  background: rgba(255, 179, 92, 0.14);
  border-color: rgba(255, 179, 92, 0.28);
  box-shadow: inset 0 0 14px rgba(255, 179, 92, 0.22);
}

.privacy-grid .card-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 42px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(123, 124, 255, 0.2), rgba(255, 179, 92, 0.1));
  border: 1px solid var(--stroke);
}

.cta h3 {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  margin-bottom: 10px;
}

.cta p {
  color: var(--muted);
}

.cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}


.footer {
  padding: 40px 8vw 60px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  text-align: center;
}

.signature {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}

.signature-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.signature-link:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.6);
}

.copyright {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(18px);
  }
}

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

  .nav {
    flex-direction: column;
    gap: 18px;
  }

  .steps,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .badge-button,
  .cta-actions button,
  .cta-row .badge-button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  main {
    padding: 40px 6vw 80px;
  }

  .cta-row {
    flex-direction: column;
  }

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