:root {
  --bg: #061411;
  --bg-2: #0a1c18;
  --bg-3: #0f2a23;
  --card: #10241e;
  --line: rgba(232, 197, 71, 0.14);
  --line-strong: rgba(45, 212, 160, 0.28);
  --text: #eef6f2;
  --muted: #93b5a8;
  --faint: #6d8f84;
  --teal: #2dd4a0;
  --teal-2: #7ee7c3;
  --gold: #e8c547;
  --gold-2: #f3dc86;
  --blue: #4db8e8;
  --danger: #ef6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --max: 1140px;
  --header: 76px;
  --font: "Figtree", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(45, 212, 160, 0.12), transparent 55%),
    radial-gradient(700px 400px at 100% 0%, rgba(232, 197, 71, 0.08), transparent 50%),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255,255,255,0.015) 18px 19px);
}

.bg-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 48%, rgba(232,197,71,0.05) 49%, transparent 51%),
    linear-gradient(0deg, transparent 48%, rgba(45,212,160,0.04) 49%, transparent 51%);
  background-size: 120px 120px;
  mask-image: radial-gradient(ellipse at 80% 20%, black 10%, transparent 60%);
  opacity: 0.7;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(6, 20, 17, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex: none;
  object-fit: contain;
  border-radius: 10px;
  background: #000;
}

.app-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.app-icon.lg {
  width: 150px;
  height: 150px;
  border-radius: 34px;
}

.hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 280px;
}

.product-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.product-head h2,
.product-head h3 {
  margin: 0;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-text strong { font-size: 15px; }
.logo-text span {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  padding: 8px 12px;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 550;
  border-radius: 999px;
}

.nav a:hover,
.nav a.is-active {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.nav-cta {
  margin-left: 8px;
  background: var(--teal) !important;
  color: #04241c !important;
  font-weight: 700 !important;
  padding: 9px 16px !important;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  padding: 72px 0 40px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1, h2, h3 { font-family: var(--display); letter-spacing: -0.03em; line-height: 1.12; margin: 0 0 16px; }
h1 { font-size: clamp(40px, 6.2vw, 76px); font-weight: 560; }
h2 { font-size: clamp(30px, 4vw, 48px); font-weight: 560; }
h3 { font-size: 24px; font-weight: 560; }

.lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 28px;
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--teal); color: #04241c; }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.14);
  color: var(--text);
}
.btn-gold { background: var(--gold); color: #2a2104; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.orbit-card,
.product-chip {
  position: absolute;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(16,36,30,0.95), rgba(10,28,24,0.9));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.orbit-card {
  width: 280px;
  padding: 22px;
  border-radius: 24px;
}

.orbit-card.one { top: 20px; right: 40px; }
.orbit-card.two { bottom: 30px; left: 0; }

.product-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 650;
}

.chip-t { top: 180px; left: 30px; }
.chip-m { bottom: 150px; right: 10px; }

.dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
}
.dot.gold { background: var(--gold); box-shadow: 0 0 12px var(--gold); }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 30px;
  color: var(--teal-2);
}
.stat span { color: var(--faint); font-size: 13px; }

section { position: relative; z-index: 1; padding: 84px 0; }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head p { color: var(--muted); margin: 0; }

.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.card {
  background: linear-gradient(180deg, rgba(16,36,30,0.9), rgba(8,22,19,0.92));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
}

.card:hover { border-color: rgba(45, 212, 160, 0.28); }

.card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.card p { color: var(--muted); margin: 0 0 18px; }
.card ul { margin: 0 0 20px; padding-left: 18px; color: var(--muted); }
.card li { margin: 6px 0; }

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: rgba(45, 212, 160, 0.12);
  color: var(--teal-2);
  font-size: 22px;
}

.icon-box.gold { background: rgba(232, 197, 71, 0.12); color: var(--gold); }
.icon-box.blue { background: rgba(77, 184, 232, 0.12); color: var(--blue); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.panel {
  border-radius: 28px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(160deg, rgba(45,212,160,0.08), transparent 40%),
    var(--bg-2);
  min-height: 320px;
}

.quote {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.3;
  margin: 0 0 18px;
}

.muted { color: var(--muted); }
.faint { color: var(--faint); }

.page-hero {
  padding: 64px 0 20px;
  position: relative;
  z-index: 1;
}

.crumbs {
  color: var(--faint);
  font-size: 13px;
  margin-bottom: 14px;
}
.crumbs a:hover { color: var(--teal-2); }

.legal {
  max-width: 760px;
  color: var(--muted);
}
.legal h2 { font-size: 26px; margin-top: 36px; }
.legal h3 { font-size: 20px; margin-top: 24px; }
.legal p, .legal li { margin: 0 0 12px; }
.legal ul { padding-left: 18px; }

.form {
  display: grid;
  gap: 14px;
}

.form label { font-size: 13px; font-weight: 650; color: var(--muted); }
.form input,
.form textarea,
.form select {
  width: 100%;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
}

.form input:focus,
.form textarea:focus,
.form select:focus { border-color: var(--teal); }

.hp { position: absolute; left: -9999px; }

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
}
.form-status.ok { display: block; background: rgba(45,212,160,0.12); color: var(--teal-2); }
.form-status.err { display: block; background: rgba(239,107,107,0.12); color: var(--danger); }

.email-xl {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.03em;
  color: var(--teal-2);
  font-weight: 560;
}

.email-xl:hover { color: var(--gold); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.info-list { display: grid; gap: 16px; }
.info-item {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
}
.info-item b { display: block; margin-bottom: 4px; }
.info-item a { color: var(--teal-2); }

.cta-band {
  border-radius: 32px;
  padding: 48px;
  background:
    linear-gradient(120deg, rgba(45,212,160,0.16), rgba(232,197,71,0.08)),
    var(--bg-3);
  border: 1px solid rgba(45,212,160,0.2);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 28px;
  color: var(--faint);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.site-footer h4 {
  font-family: var(--font);
  color: var(--text);
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer a { display: block; margin: 8px 0; }
.site-footer a:hover { color: var(--teal-2); }

.copyright {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}

.lang-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.lang-pills span {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-grid, .cards-2, .cards-3, .split, .contact-grid, .footer-grid, .stat-row, .cta-band {
    grid-template-columns: 1fr;
  }
  .hero-visual, .hero-logos { min-height: 0; }
  .app-icon.lg { width: 112px; height: 112px; border-radius: 26px; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0; right: 0;
    background: #071512;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 20px 20px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open { display: flex; }
  .nav-cta { margin: 8px 0 0; }
  .menu-btn { display: grid; place-items: center; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 28px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}
