:root {
  --bg: #0b1220;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-2: rgba(255, 255, 255, 0.09);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted-2: rgba(255, 255, 255, 0.58);
  --stroke: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --accent: #4ade80;
  --accent-2: #60a5fa;
  --warning: #f59e0b;
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  color-scheme: dark;
}

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

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans",
    Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

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

img {
  max-width: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1000;
  padding: 10px 12px;
  background: #fff;
  color: #000;
  border-radius: 10px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}
.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(11, 18, 32, 0.2);
  backdrop-filter: blur(12px);
}
.site-header.is-elevated {
  border-bottom-color: var(--stroke);
  background: rgba(11, 18, 32, 0.75);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(74, 222, 128, 0.18));
  border: 1px solid var(--stroke);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.brand-text {
  display: grid;
  line-height: 1.1;
}
.brand-title {
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand-subtitle {
  font-size: 12px;
  color: var(--muted-2);
}

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

.nav-toggle {
  display: none;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}
.nav-toggle:focus-visible {
  outline: 2px solid rgba(96, 165, 250, 0.75);
  outline-offset: 2px;
}
.nav-toggle-bars {
  display: inline-block;
  width: 18px;
  height: 12px;
  position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after,
.nav-toggle-bars {
  background: transparent;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}
.nav-toggle-bars::before {
  top: 0;
}
.nav-toggle-bars::after {
  bottom: 0;
}

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
}
.lang-switch-label {
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0 6px;
}
.lang-select {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 36px 8px 10px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.1;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}
.lang-select option,
.lang-select optgroup {
  background: #ffffff;
  color: #0b1220;
}
.lang-select option:checked {
  background: #2563eb;
  color: #ffffff;
}
.lang-select:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
}
.lang-select:focus-visible {
  outline: 2px solid rgba(96, 165, 250, 0.75);
  outline-offset: 2px;
}
.lang-switch {
  position: relative;
}
.lang-switch::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
  opacity: 0.85;
}
.nav-link {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
}
.nav-link:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.22);
}
.button--primary {
  border-color: rgba(74, 222, 128, 0.38);
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.28), rgba(96, 165, 250, 0.18));
}
.button--ghost {
  background: transparent;
}
.button--sm {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.hero {
  position: relative;
  padding: 56px 0 24px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 900px at 20% 10%, rgba(96, 165, 250, 0.18), transparent 55%),
    radial-gradient(900px 700px at 90% 30%, rgba(74, 222, 128, 0.16), transparent 50%),
    radial-gradient(900px 700px at 50% 100%, rgba(245, 158, 11, 0.08), transparent 55%);
  pointer-events: none;
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
  padding: 8px 12px;
  border-radius: 999px;
  margin: 0 0 12px;
}

.hero-title {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.accent {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 58ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 16px;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.hero-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.hero-bullets li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.12);
}

.trust {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--stroke);
}
.trust-title {
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 600;
}
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  font-size: 13px;
  color: var(--text);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  padding: 8px 10px;
  border-radius: 999px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}
.glow {
  position: absolute;
  inset: 8% 10% 10% 10%;
  background: radial-gradient(circle at 30% 20%, rgba(96, 165, 250, 0.28), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(74, 222, 128, 0.22), transparent 52%);
  filter: blur(28px);
  z-index: -1;
}

.phone {
  width: min(340px, 100%);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  padding: 14px;
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 44%;
  height: 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.phone-screen {
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
  background: rgba(11, 18, 32, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 9 / 19;
  min-height: 420px;
}
.phone-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.mock-pill {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}
.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.85);
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
}

.mock-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: 14px;
}
.mock-card-title {
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.mock-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}
.mock-muted {
  color: var(--muted);
  font-size: 13px;
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.badge--green {
  background: rgba(74, 222, 128, 0.12);
  border-color: rgba(74, 222, 128, 0.28);
}
.badge--blue {
  background: rgba(96, 165, 250, 0.12);
  border-color: rgba(96, 165, 250, 0.28);
}
.badge--amber {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.28);
}

.mock-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.mock-item {
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.06));
}

.section {
  padding: 56px 0;
}
.section--alt {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section--alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 600px at 18% 20%, rgba(96, 165, 250, 0.14), transparent 60%),
    radial-gradient(900px 520px at 85% 70%, rgba(74, 222, 128, 0.12), transparent 62%);
  pointer-events: none;
  z-index: -1;
}
.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.section-title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em;
}
.section-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0f172a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 40px rgba(0, 0, 0, 0.35);
  padding: 18px;
}
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 12px;
  font-size: 18px;
}
.card-title {
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.card-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.screens {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.shot {
  margin: 0;
}
.shot-frame {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  padding: 14px;
}
.shot-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  aspect-ratio: 9 / 19;
  min-height: 360px;
  object-fit: cover;
  object-position: top center;
  background: rgba(11, 18, 32, 0.6);
}
.shot-caption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.faq {
  display: grid;
  gap: 10px;
  max-width: 880px;
}
.faq-item {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
}
.faq-q {
  cursor: pointer;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.faq-a {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.cta {
  padding: 46px 0 62px;
}
.cta-inner {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.12), rgba(74, 222, 128, 0.1));
  box-shadow: var(--shadow);
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-title {
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.cta-text {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.store-button {
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 2px;
  min-width: 180px;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}
.store-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(0, 0, 0, 0.28);
}
.store-kicker {
  font-size: 12px;
  color: var(--muted-2);
}
.store-name {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.footer {
  padding: 24px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-brand {
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-title {
  font-weight: 700;
}
.footer-muted {
  color: var(--muted-2);
  font-size: 14px;
}
.footer-links {
  margin: 0;
  color: var(--muted);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    order: -1;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .screens {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-menu {
    position: absolute;
    right: 20px;
    top: calc(100% + 10px);
    width: min(360px, calc(100vw - 40px));
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(11, 18, 32, 0.9);
    backdrop-filter: blur(16px);
    padding: 14px;
    transform-origin: top right;
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 140ms ease, transform 140ms ease;
  }
  .nav-menu.is-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }
  .nav-link {
    padding: 10px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
  }
  .button--sm {
    width: 100%;
  }
  .lang-switch {
    justify-content: space-between;
  }
  .lang-select {
    width: 100%;
  }
  .screens {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
