:root {
  --bg: #070812;
  --bg-soft: #0f1224;
  --bg-deep: #05060d;
  --card: rgba(255,255,255,.065);
  --card-strong: rgba(255,255,255,.095);
  --primary: #b2cb39;
  --cyan: #00e5ff;
  --pink: #ff3df2;
  --text: #f5f7ff;
  --muted: #a9b0c6;
  --muted-2: #7f89aa;
  --border: rgba(255,255,255,.16);
  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 15% 0%, rgba(0,229,255,.15), transparent 28rem),
    radial-gradient(circle at 85% 12%, rgba(255,61,242,.12), transparent 30rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--cyan); }
img { max-width: 100%; height: auto; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--primary);
  color: #05060d;
  border-radius: 10px;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(7,8,18,.78);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: .2px;
}
.brand img { width: 42px; height: 42px; border-radius: 12px; }
.brand small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  margin-top: -4px;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size: 22px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  border-radius: 12px;
}
.site-nav a[aria-current="page"], .site-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,.075);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 56px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/img/hero-grid.svg") center/cover no-repeat;
  opacity: .50;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,8,18,.1), var(--bg) 88%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.07fr .93fr;
  align-items: center;
  gap: 48px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(178,203,57,.42);
  color: var(--primary);
  background: rgba(178,203,57,.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; margin: 0 0 18px; }
h1 {
  max-width: 830px;
  margin-top: 22px;
  font-size: clamp(42px, 7vw, 78px);
  letter-spacing: -2.2px;
}
h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -1.2px;
}
h3 { font-size: 21px; }
p { color: var(--muted); margin: 0 0 16px; }
.lead {
  font-size: clamp(18px, 2vw, 22px);
  color: #dfe5ff;
  max-width: 760px;
}
.gradient-text {
  background: linear-gradient(90deg, var(--cyan), var(--primary), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid var(--border);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #eaff77);
  color: #05060d;
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 0 36px rgba(178,203,57,.20);
}
.btn-primary:hover { color: #05060d; }
.btn-secondary {
  background: rgba(255,255,255,.06);
  color: var(--text);
}
.btn-secondary:hover { border-color: rgba(0,229,255,.52); }
.hero-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--muted-2);
}

.phone-card {
  width: min(390px, 100%);
  justify-self: center;
  border-radius: 38px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.035));
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 0 55px rgba(0,229,255,.10);
}
.phone-screen {
  min-height: 580px;
  border-radius: 28px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 15%, rgba(0,229,255,.22), transparent 12rem),
    radial-gradient(circle at 70% 80%, rgba(255,61,242,.18), transparent 14rem),
    #090b18;
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  position: relative;
}
.phone-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/icon-512.png");
  background-repeat: no-repeat;
  background-position: center 36%;
  background-size: 220px;
  opacity: .86;
}
.phone-ui {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
}
.score-pill {
  align-self: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(178,203,57,.35);
  font-weight: 900;
}
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.tile {
  min-height: 74px;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  background: linear-gradient(135deg, rgba(0,229,255,.8), rgba(178,203,57,.88));
  box-shadow: 0 0 22px rgba(0,229,255,.22);
}
.tile:nth-child(2n) { background: linear-gradient(135deg, rgba(255,61,242,.82), rgba(0,229,255,.76)); }
.tile:nth-child(3n) { background: linear-gradient(135deg, rgba(178,203,57,.92), rgba(255,255,255,.72)); }
.combo {
  align-self: center;
  padding: 10px 16px;
  border-radius: 16px;
  background: rgba(255,61,242,.12);
  border: 1px solid rgba(255,61,242,.45);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 26px rgba(255,61,242,.16);
}

.section { padding: 72px 0; }
.section-header { max-width: 780px; margin-bottom: 34px; }
.section-kicker {
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 13px;
  margin-bottom: 12px;
}
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,.035));
  border: 1px solid var(--border);
  box-shadow: 0 18px 60px rgba(0,0,0,.20);
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0,229,255,.14), transparent 40%);
  opacity: .8;
  pointer-events: none;
}
.card > * { position: relative; }
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #05060d;
  background: linear-gradient(135deg, var(--cyan), var(--primary));
  font-size: 24px;
  font-weight: 900;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.feature-list span {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.10);
  color: #dfe5ff;
  font-weight: 750;
}

.cta-panel {
  padding: 38px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(0,229,255,.12), rgba(255,61,242,.10)),
    rgba(255,255,255,.06);
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 74px 0 36px;
  background: radial-gradient(circle at 20% 0%, rgba(0,229,255,.12), transparent 30rem);
}
.content-page {
  padding: 44px 0 80px;
}
.prose {
  max-width: 900px;
}
.prose h2 {
  font-size: 30px;
  margin-top: 40px;
}
.prose h3 {
  margin-top: 26px;
  color: #fff;
}
.prose ul { color: var(--muted); }
.prose li { margin-bottom: 8px; }
.notice {
  border-left: 4px solid var(--primary);
  background: rgba(178,203,57,.08);
  padding: 16px 18px;
  border-radius: 14px;
  color: #dfe5ff;
}
.faq-item { margin-bottom: 16px; }
.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  font-weight: 900;
}
.faq-item div {
  padding: 16px 20px 6px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 34px 0;
  background: rgba(5,6,13,.72);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-2, .cta-panel { grid-template-columns: 1fr; }
  .phone-card { width: min(340px, 100%); }
  .phone-screen { min-height: 500px; }
  .cta-panel { padding: 28px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(7,8,18,.96);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px; }
  .hero { padding-top: 54px; }
  .section { padding: 54px 0; }
  .feature-list { grid-template-columns: 1fr; }
  .brand small { display: none; }
}

.lang-link {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px !important;
  color: var(--secondary) !important;
}


/* Real Play Store visuals integration */
.brand img {
  object-fit: cover;
  box-shadow: 0 0 22px rgba(0,229,255,.18);
}
.phone-card-real {
  width: min(410px, 100%);
  padding: 10px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(0,229,255,.24), rgba(255,61,242,.10)),
    rgba(255,255,255,.06);
}
.phone-card-real img {
  display: block;
  width: 100%;
  border-radius: 26px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14), 0 22px 70px rgba(0,0,0,.45);
}
.screenshots-section {
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(0,229,255,.035));
}
.screenshot-grid {
  align-items: start;
}
.screenshot-card {
  margin: 0;
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(180deg, var(--card), rgba(255,255,255,.035));
  border: 1px solid var(--border);
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
}
.screenshot-card img {
  display: block;
  width: 100%;
  border-radius: 22px;
}
.screenshot-card figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 750;
  text-align: center;
}
@media (max-width: 900px) {
  .phone-card-real { width: min(360px, 100%); }
}
