:root {
  --bg: #0c1224;
  --panel: #111a31;
  --panel-2: #10172a;
  --text: #e9efff;
  --muted: #a6b7d6;
  --accent: #ff7a1a;
  --accent-2: #ffd166;
  --stroke: rgba(255, 255, 255, 0.06);
  --glow: rgba(255, 122, 26, 0.25);
  --font-display: 'Space Grotesk', 'Work Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Work Sans', 'Space Grotesk', system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(circle at 20% 20%, #162042 0%, transparent 30%), radial-gradient(circle at 80% 0%, rgba(255, 122, 26, 0.08) 0%, transparent 30%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px 64px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 18px;
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, rgba(17, 26, 49, 0.82), rgba(17, 23, 42, 0.92));
  border-radius: 18px;
  backdrop-filter: blur(8px);
  position: sticky;
  top: 16px;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  order: 1;
  flex: 1;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.policy-nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.policy-nav-links a {
  padding: 10px 12px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.policy-nav-links a:hover,
.policy-nav-links a.active {
  background: rgba(255, 255, 255, 0.05);
}

.nav-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.brand-icon {
  width: 48px;
  height: 48px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-sub {
  color: var(--muted);
  font-size: 13px;
}

.lang-switch {
  order: 2;
  display: inline-flex;
  padding: 4px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  gap: 4px;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn.active {
  background: linear-gradient(135deg, #ff7a1a, #ff9f1c);
  color: #0c0f1c;
  box-shadow: 0 6px 18px var(--glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  order: 1;
  flex: 1;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nav-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
}

.hero {
  margin-top: 28px;
}

.back-top {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, #ff7a1a, #ff9f1c);
  color: #0c0f1c;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.back-top.show {
  display: inline-flex;
}
.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
  padding: 36px 0 12px;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin: 10px 0 14px;
  line-height: 1.15;
}

.hero-copy .lede {
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 600px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--accent-2);
  font-weight: 700;
}

.lede,
.section-lead {
  font-size: 17px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0 14px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0 14px;
}

.store-badge img {
  height: 56px;
  display: block;
}

.store-badge {
  display: inline-flex;
  align-items: center;
}

.store-badge-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.store-badge.disabled {
  pointer-events: none;
  opacity: 0.85;
}

.store-badge-overlay {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
}

.store-badge-overlay span {
  font-size: clamp(9px, 1.4vw, 14px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  color: #d62828;
  transform: rotate(-20deg);
  white-space: nowrap;
}
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.1px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #ff7a1a, #ff9f1c);
  color: #0c0f1c;
  box-shadow: 0 10px 30px var(--glow);
}

.btn.ghost {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  color: var(--muted);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
}

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

.hero-phones {
  position: relative;
  width: min(540px, 100%);
  height: clamp(360px, 55vw, 520px);
}

.hero-phone {
  position: absolute;
  bottom: 0;
  width: clamp(160px, 32vw, 220px);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.hero-phone-left {
  left: 0;
  transform: translateX(-6%) rotate(-2deg);
  z-index: 1;
}

.hero-phone-center {
  left: 50%;
  transform: translateX(-50%);
  width: clamp(190px, 38vw, 260px);
  z-index: 3;
}

.hero-phone-right {
  right: 0;
  transform: translateX(6%) rotate(2deg);
  z-index: 2;
}

.section {
  margin-top: 64px;
  scroll-margin-top: 110px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 8px 0;
}

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: linear-gradient(135deg, #10192f, #0f172a);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.card h3 {
  margin: 4px 0 10px;
}

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

.muted {
  padding: 38px 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(16, 26, 49, 0.85), rgba(16, 23, 42, 0.95));
  border: 1px solid var(--stroke);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-items: stretch;
  gap: 18px;
  margin-top: 24px;
}

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

.feature-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.feature-title h3 {
  margin: 0;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a1a, #ffd166);
  box-shadow: 0 0 12px rgba(255, 122, 26, 0.7);
  display: inline-flex;
  flex-shrink: 0;
}

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

.screens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 26px;
  align-items: start;
}

.screen-card {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.screen-card img {
  width: 100%;
  height: clamp(420px, 42vw, 620px);
  display: block;
  border-radius: 12px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

.caption {
  margin-top: 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  max-width: 240px;
}

.policy {
  display: grid;
  gap: 12px;
}

.policy h1 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin: 0;
}

.policy h2 {
  font-size: 1.1rem;
  margin: 20px 0 6px;
}

.policy h3 {
  font-size: 0.95rem;
  margin: 14px 0 4px;
  color: var(--accent-2);
}

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

.policy a {
  color: inherit;
  text-decoration: underline;
}

.download {
  margin-top: 72px;
}

.download-card {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #111a31, #0f172a 65%, rgba(255, 122, 26, 0.12));
  border: 1px solid var(--stroke);
}

.download-note {
  border-left: 2px solid rgba(255, 122, 26, 0.5);
  padding-left: 14px;
  color: var(--muted);
}

.download-note strong {
  color: var(--text);
}

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

.footer {
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid var(--stroke);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  text-align: right;
}

.footer-note,
.legal {
  color: var(--muted);
  margin: 0;
  max-width: 620px;
}

.footer-link {
  color: var(--muted);
  text-decoration: underline;
  font-weight: 500;
}

.footer-copy .legal {
  margin-top: 12px;
}

.footer-copy .legal + .legal {
  margin-top: 6px;
}

@media (max-width: 960px) {
  .nav {
    position: static;
    flex-wrap: wrap;
    gap: 10px;
  }

  .download-card {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copy {
    align-items: flex-start;
    text-align: left;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
  }
}

@media (min-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 900px) {
  .screens {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page {
    padding: 18px 16px 48px;
  }

  .store-badges {
    justify-content: center;
  }

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

  .screen-card img {
    height: auto;
    max-height: 520px;
  }

  .hero-visual {
    margin-top: 24px;
  }

  .nav {
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .nav-right {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .lang-switch {
    order: 1;
    margin-left: auto;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: 2px;
    padding: 10px;
    border-radius: 14px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.04);
    display: none;
  }

  .policy-nav-links {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 12px;
  }

  .brand-text {
    margin-left: 6px;
  }

  .brand {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-phones {
    height: clamp(320px, 75vw, 460px);
  }

  .hero-phone {
    width: clamp(140px, 36vw, 200px);
  }

  .hero-phone-center {
    width: clamp(175px, 44vw, 230px);
  }

  .back-top {
    display: none;
  }
}
