:root {
  --bg-1: #050d1c;
  --bg-2: #08162d;
  --bg-3: #0d2240;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --panel-dark: rgba(7, 18, 36, 0.84);
  --text: #e9f1ff;
  --muted: #afc1db;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #2ce4be;
  --accent-2: #5ea8ff;
  --accent-3: #9dd0ff;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(94, 168, 255, 0.16), transparent 32%),
    radial-gradient(circle at 87% 12%, rgba(44, 228, 190, 0.18), transparent 28%),
    linear-gradient(145deg, var(--bg-1), var(--bg-2) 48%, var(--bg-3));
  font-family: "Manrope", "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

a {
  color: #a8ccff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 50% 35%, black 18%, transparent 80%);
}

.bg-orb {
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -2;
  opacity: 0.42;
}

.orb-1 {
  background: radial-gradient(circle at 40% 40%, rgba(65, 160, 255, 0.9), rgba(14, 40, 92, 0.5));
  top: -170px;
  right: -120px;
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-2 {
  background: radial-gradient(circle at 35% 35%, rgba(48, 217, 180, 0.82), rgba(16, 72, 93, 0.42));
  left: -140px;
  bottom: -220px;
  animation: orbFloat 14s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -14px, 0) scale(1.06);
  }
}

.site-shell {
  min-height: 100vh;
  position: relative;
}

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

header.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 30, 0.72);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.015em;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #223f76, #20d8b8);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.nav-links a:hover {
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 11px 18px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.button-primary {
  color: #032128;
  background: linear-gradient(130deg, #4ff0cd, #9cd2ff);
  box-shadow: 0 16px 36px rgba(44, 228, 190, 0.25);
  position: relative;
  overflow: hidden;
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, 0.44) 45%, transparent 75%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.button-primary:hover::after {
  transform: translateX(120%);
}

.button-secondary {
  color: #dcedff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-download {
  white-space: nowrap;
  color: #041d24;
  background: linear-gradient(130deg, #4ceecb, #90caff);
  box-shadow: 0 10px 28px rgba(57, 188, 244, 0.2);
}

main {
  padding-bottom: 68px;
}

.hero {
  padding: 82px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(110, 185, 255, 0.36);
  padding: 8px 13px;
  color: #c5e6ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Sora", "Manrope", sans-serif;
  letter-spacing: -0.015em;
}

h1 {
  margin: 14px 0;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.06;
}

.lead {
  margin: 0;
  font-size: 17px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 70ch;
}

.cta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  color: #d3e4fa;
  background: rgba(255, 255, 255, 0.05);
}

.stats {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.stat:hover {
  transform: translateY(-3px);
  border-color: rgba(90, 196, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  font-size: 24px;
}

.stat span {
  font-size: 13px;
  color: var(--muted);
}

.hero-showcase {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(170deg, rgba(15, 34, 62, 0.94), rgba(8, 21, 40, 0.95));
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -90px;
  top: -90px;
  background: radial-gradient(circle, rgba(66, 233, 198, 0.27), transparent 70%);
}

.showcase-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.eyebrow {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #a6c7ef;
}

.showcase-head h2 {
  margin: 4px 0 0;
  font-size: 24px;
}

.status-dot {
  margin-top: 4px;
  border: 1px solid rgba(44, 228, 190, 0.5);
  background: rgba(44, 228, 190, 0.12);
  color: #94f3e1;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.kpi-stack {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.kpi-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
}

.kpi-title {
  font-size: 12px;
  color: #c9daf1;
  margin-bottom: 6px;
}

.kpi-value {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 7px;
}

.kpi-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.kpi-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(44, 228, 190, 0.45);
}

.list-clean {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
}

.list-clean li:first-child {
  border-top: 0;
}

.list-clean.compact li {
  font-size: 14px;
  color: #d6e4f9;
}

.icon {
  width: 20px;
  height: 20px;
  color: #8bf3e0;
  margin-top: 2px;
}

.inline-download {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: #92cdfc;
  font-weight: 700;
}

.inline-download::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.2s ease;
}

.inline-download:hover::after {
  transform: translateX(3px);
}

.section {
  padding: 36px 0;
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.8vw, 42px);
}

.section-lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 74ch;
}

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

.card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 18px;
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(44, 228, 190, 0.1), rgba(94, 168, 255, 0.08));
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(92, 182, 251, 0.42);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.card p {
  margin: 0;
  line-height: 1.62;
  color: var(--muted);
}

.metrics {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--panel-dark);
}

.metrics table {
  width: 100%;
  border-collapse: collapse;
}

.metrics th,
.metrics td {
  text-align: left;
  padding: 14px;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics tr:last-child td {
  border-bottom: 0;
}

.metrics th {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #d6e6fb;
  background: rgba(255, 255, 255, 0.04);
}

.download-section {
  padding-top: 42px;
}

.download-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  border: 1px solid rgba(138, 197, 255, 0.34);
  border-radius: var(--radius-xl);
  padding: clamp(18px, 3vw, 28px);
  background: linear-gradient(155deg, rgba(16, 40, 72, 0.88), rgba(10, 28, 55, 0.92));
  box-shadow: var(--shadow);
}

.download-side {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.qr-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.2);
  color: #d5e9ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  width: fit-content;
  padding: 14px;
}

.qr-card span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-cta {
  margin-top: 20px;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-link {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.2s ease, border-color 0.24s ease, background 0.2s ease;
}

.legal-link:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(123, 195, 255, 0.42);
  background: rgba(255, 255, 255, 0.07);
}

.legal-link strong {
  display: block;
  margin-bottom: 4px;
  color: #e2f0ff;
}

.footer {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding: 22px 0 40px;
  color: var(--muted);
  font-size: 13px;
}

.footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

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

.legal-page {
  padding: 56px 0;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(8, 20, 38, 0.92);
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 34px);
}

.legal-card h1 {
  margin-top: 0;
}

.legal-card h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 24px;
}

.legal-card p,
.legal-card li {
  color: #d2deef;
  line-height: 1.72;
}

.notice {
  border-left: 4px solid var(--accent);
  padding: 10px 12px;
  background: rgba(52, 212, 182, 0.12);
  border-radius: 8px;
  margin: 16px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.995);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .bg-orb,
  .button,
  .card,
  .stat,
  .reveal,
  .inline-download::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .download-card {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .nav-wrap {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .nav-download {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max-width), calc(100% - 26px));
  }

  .hero {
    padding-top: 56px;
  }

  .stats,
  .grid-3,
  .legal-cta {
    grid-template-columns: 1fr;
  }

  .metrics {
    overflow-x: auto;
  }

  .metrics table {
    min-width: 640px;
  }

  .trust-row {
    gap: 8px;
  }
}
