:root {
  --bg: #08090d;
  --bg-soft: #101118;
  --panel: rgba(21, 23, 32, 0.78);
  --panel-solid: #151720;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f7f8fa;
  --muted: #a9acba;
  --lime: #b8f36b;
  --cyan: #c7eff7;
  --violet: #8d7cff;
  --max: 1180px;
  --radius: 28px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 5%, rgba(184, 243, 107, 0.08), transparent 25rem),
    radial-gradient(circle at 85% 15%, rgba(141, 124, 255, 0.12), transparent 30rem),
    var(--bg);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  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: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 10px 16px; border-radius: 10px; background: var(--lime); color: #10120d; }
.skip-link:focus { top: 16px; }

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.navbar.scrolled { border-color: var(--line); background: rgba(8, 9, 13, .78); backdrop-filter: blur(18px); }
.nav-container { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: inline-flex; align-items: center; gap: 12px; font-size: 19px; font-weight: 720; letter-spacing: -.03em; }
.nav-logo img { width: 38px; height: 38px; border-radius: 11px; box-shadow: 0 0 25px rgba(141,124,255,.2); }
.nav-links { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; color: #d8dae2; font-size: 14px; font-weight: 600; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover, .nav-links a:focus-visible { color: var(--lime); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.04); cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; border-radius: 2px; background: currentColor; }

.btn { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 720; line-height: 1; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #10120d; background: var(--lime); box-shadow: 0 14px 40px rgba(184,243,107,.15); }
.btn-outline { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.05); }
.btn-outline:hover { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); }
.nav-cta { min-height: 38px; padding-inline: 16px; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px; color: var(--lime); font: 500 12px/1.3 "JetBrains Mono", monospace; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 1px; content: ""; background: currentColor; }
.hero { min-height: 860px; padding: 150px 0 90px; overflow: hidden; }
.hero-layout { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 50px; }
.hero-copy { position: relative; z-index: 3; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(3.2rem, 6.7vw, 6.65rem); line-height: .96; letter-spacing: -.072em; }
.hero h1 span { display: block; color: transparent; background: linear-gradient(100deg, var(--lime), var(--cyan) 50%, var(--violet)); background-clip: text; -webkit-background-clip: text; }
.hero-lead { max-width: 650px; margin: 28px 0 0; color: #c5c7d1; font-size: clamp(1.05rem, 1.8vw, 1.3rem); line-height: 1.65; }
.hero-cta { display: inline-flex; flex-direction: column; align-items: center; margin-top: 34px; gap: 27px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; color: #8f92a0; font-size: 13px; }
.hero-note span { display: inline-flex; align-items: center; gap: 8px; }
.hero-note span::before { width: 6px; height: 6px; border-radius: 50%; content: ""; background: var(--lime); box-shadow: 0 0 12px var(--lime); }

.hero-visual { position: relative; min-height: 660px; }
.orb { position: absolute; inset: 8% -18% 5% -10%; border-radius: 50%; filter: blur(6px); background: radial-gradient(circle at 45% 40%, rgba(199,239,247,.16), rgba(141,124,255,.13) 37%, transparent 68%); }
.phone { position: absolute; overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 41px; background: #050608; box-shadow: var(--shadow); }
.phone::after { position: absolute; inset: 9px; border: 1px solid rgba(255,255,255,.08); border-radius: 32px; content: ""; pointer-events: none; }
.phone img { width: 100%; height: 100%; object-fit: cover; }
.phone-main { width: 310px; height: 648px; right: 70px; top: 0; z-index: 2; transform: rotate(3deg); }
.phone-side { width: 246px; height: 515px; left: 12px; bottom: 0; transform: rotate(-7deg); opacity: .88; }
.float-card { position: absolute; z-index: 4; padding: 14px 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(19,21,29,.84); box-shadow: 0 16px 50px rgba(0,0,0,.35); backdrop-filter: blur(18px); }
.float-card strong { display: block; font-size: 14px; }
.float-card small { color: var(--muted); }
.float-live { right: -15px; top: 44%; }
.float-source { left: -25px; top: 16%; }
.signal { display: inline-flex; gap: 3px; align-items: end; height: 13px; margin-right: 7px; }
.signal i { display: block; width: 3px; border-radius: 3px; background: var(--lime); animation: equalize 1.2s ease-in-out infinite; }
.signal i:nth-child(1) { height: 5px; }
.signal i:nth-child(2) { height: 12px; animation-delay: -.3s; }
.signal i:nth-child(3) { height: 8px; animation-delay: -.6s; }
@keyframes equalize { 50% { height: 4px; } }

.trust-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.018); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { min-height: 130px; display: flex; flex-direction: column; justify-content: center; padding: 26px; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item strong { font-size: 19px; letter-spacing: -.03em; }
.trust-item span { color: var(--muted); font-size: 13px; }

.section { padding: 130px 0; }
.section-header { max-width: 760px; margin-bottom: 58px; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header.center .eyebrow { justify-content: center; }
.section-header h2 { margin: 0; font-size: clamp(2.3rem, 5vw, 4.8rem); line-height: 1.02; letter-spacing: -.06em; }
.section-header p { margin: 22px 0 0; color: var(--muted); font-size: 18px; }

.feature-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; }
.feature-card { position: relative; min-height: 310px; overflow: hidden; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018)); }
.feature-card h3 { margin: 38px 0 10px; font-size: 26px; line-height: 1.15; letter-spacing: -.04em; }
.feature-card p { max-width: 480px; margin: 0; color: var(--muted); }
.feature-card .index { color: var(--lime); font: 500 12px/1 "JetBrains Mono", monospace; }
.feature-card.large { grid-column: span 7; }
.feature-card.medium { grid-column: span 5; }
.feature-card.third { grid-column: span 4; }
.feature-card::before { position: absolute; width: 180px; height: 180px; right: -70px; bottom: -80px; border-radius: 50%; content: ""; filter: blur(4px); background: radial-gradient(circle, rgba(141,124,255,.2), transparent 68%); }
.feature-card.lime::before { background: radial-gradient(circle, rgba(184,243,107,.16), transparent 68%); }
.feature-card.cyan::before { background: radial-gradient(circle, rgba(199,239,247,.15), transparent 68%); }
.feature-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.tag { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: #cfd1da; font: 500 11px/1 "JetBrains Mono", monospace; }

.showcase { background: linear-gradient(to bottom, transparent, rgba(141,124,255,.055), transparent); }
.showcase-row { display: grid; grid-template-columns: .88fr 1.12fr; gap: 80px; align-items: center; margin-top: 120px; }
.showcase-row:first-child { margin-top: 0; }
.showcase-row.reverse { grid-template-columns: 1.12fr .88fr; }
.showcase-row.reverse .showcase-copy { order: 2; }
.showcase-row.reverse .showcase-media { order: 1; }
.showcase-copy h3 { margin: 0; font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.04; letter-spacing: -.055em; }
.showcase-copy > p { margin: 20px 0 0; color: var(--muted); font-size: 17px; }
.check-list { margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; margin-top: 11px; color: #d6d8df; }
.check-list li::before { flex: 0 0 23px; width: 23px; height: 23px; content: "✓"; border-radius: 50%; color: #12150e; background: var(--lime); font-size: 13px; font-weight: 800; text-align: center; line-height: 23px; }
.showcase-media { position: relative; min-height: 610px; }
.screen-card { position: absolute; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 34px; box-shadow: var(--shadow); background: #090a0e; }
.screen-card img { width: 100%; height: 100%; object-fit: cover; }
.screen-card.primary { width: 305px; height: 585px; left: 50%; top: 0; transform: translateX(-60%) rotate(-3deg); }
.screen-card.secondary { width: 228px; height: 445px; right: 0; bottom: 2px; transform: rotate(6deg); }
.screen-card.tertiary { width: 220px; height: 430px; left: 0; bottom: 0; transform: rotate(-7deg); opacity: .85; }
.showcase-halo { position: absolute; inset: 18% 2%; border-radius: 50%; background: radial-gradient(circle, rgba(184,243,107,.13), rgba(141,124,255,.1) 40%, transparent 70%); filter: blur(8px); }

.local-section { padding: 40px 0 130px; }
.local-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: center; padding: 70px; border: 1px solid rgba(184,243,107,.2); border-radius: 40px; background: linear-gradient(135deg, rgba(184,243,107,.09), rgba(199,239,247,.045) 42%, rgba(141,124,255,.09)); }
.local-card h2 { margin: 0; font-size: clamp(2.2rem, 4.7vw, 4.4rem); line-height: 1.03; letter-spacing: -.06em; }
.local-card p { color: #c7c9d2; }
.network-map { position: relative; min-height: 330px; }
.network-line { position: absolute; left: 12%; right: 12%; top: 50%; height: 2px; background: linear-gradient(90deg, var(--lime), var(--cyan), var(--violet)); transform: rotate(-10deg); }
.network-node { position: absolute; z-index: 2; display: grid; width: 92px; height: 92px; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 28px; background: rgba(10,11,15,.75); box-shadow: 0 16px 40px rgba(0,0,0,.25); text-align: center; }
.network-node b { display: block; font-size: 13px; }
.network-node small { color: var(--muted); font-size: 10px; }
.network-node:nth-of-type(2) { left: 0; top: 32px; }
.network-node:nth-of-type(3) { left: calc(50% - 46px); top: 112px; }
.network-node:nth-of-type(4) { right: 0; top: 25px; }
.network-node:nth-of-type(5) { right: 18%; bottom: 0; }

.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item { padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.025); }
.faq-item h3 { margin: 0 0 9px; font-size: 18px; letter-spacing: -.025em; }
.faq-item p { margin: 0; color: var(--muted); font-size: 14px; }

.download { padding: 30px 0 140px; }
.download-card { position: relative; overflow: hidden; padding: 90px 32px; border: 1px solid var(--line); border-radius: 42px; background: #11131a; text-align: center; }
.download-card::before { position: absolute; inset: -50% 12% 20%; content: ""; border-radius: 50%; background: radial-gradient(circle, rgba(141,124,255,.23), rgba(184,243,107,.08) 35%, transparent 65%); }
.download-card > * { position: relative; z-index: 1; }
.download-icon { width: 94px; height: 94px; margin: 0 auto 24px; border-radius: 25px; box-shadow: 0 22px 60px rgba(0,0,0,.35); }
.download h2 { max-width: 800px; margin: 0 auto; font-size: clamp(2.4rem, 5vw, 5.2rem); line-height: 1; letter-spacing: -.065em; }
.download p { max-width: 620px; margin: 22px auto 0; color: var(--muted); }
.store-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.store-chip { display: flex; min-width: 190px; align-items: center; gap: 12px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(0,0,0,.28); text-align: left; }
.store-chip .store-symbol { font-size: 24px; }
.store-chip small { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.store-chip strong { font-size: 15px; }

.footer { padding: 55px 0 30px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.3fr repeat(3,.6fr); gap: 40px; padding-bottom: 45px; }
.footer-brand { max-width: 330px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p, .footer a, .footer-bottom { color: var(--muted); font-size: 13px; }
.footer h3 { margin: 5px 0 14px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-top: 8px; }
.footer a:hover { color: var(--text); }
.footer-bottom { display: flex; align-items: flex-start; justify-content: space-between; gap: 30px; padding-top: 25px; border-top: 1px solid var(--line); }
.footer-disclaimer { max-width: 770px; }

.legal-page { min-height: calc(100vh - 180px); padding: 135px 0 80px; }
.legal-container { max-width: 860px; }
.legal-hero { margin-bottom: 34px; }
.legal-hero h1 { margin: 0; font-size: clamp(2.5rem, 6vw, 4.8rem); line-height: 1; letter-spacing: -.06em; }
.legal-hero p { color: var(--muted); }
.legal-content { padding: clamp(24px, 5vw, 50px); border: 1px solid var(--line); border-radius: 28px; background: rgba(18,20,27,.72); }
.legal-content h2 { margin: 36px 0 12px; font-size: 21px; line-height: 1.25; letter-spacing: -.025em; }
.legal-content h2:first-of-type { margin-top: 20px; }
.legal-content p, .legal-content li { color: #b9bbc5; font-size: 15px; }
.legal-content a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.legal-content strong { color: #eceef2; }
.legal-address { padding: 18px 20px; border-left: 2px solid var(--lime); border-radius: 0 12px 12px 0; background: rgba(255,255,255,.035); }
.legal-address p { margin: 0; }
.legal-contact-image { display: block; width: min(100%, 420px); height: auto; }
.lang-toggle { display: inline-flex; gap: 6px; margin-bottom: 20px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: rgba(0,0,0,.25); }
.lang-btn { padding: 8px 14px; border: 0; border-radius: 999px; color: var(--muted); background: transparent; cursor: pointer; font-size: 13px; font-weight: 700; }
.lang-btn.active { color: #10120d; background: var(--lime); }
.legal-back-btn { white-space: nowrap; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-visual { width: min(100%, 620px); margin-inline: auto; }
  .feature-card.large, .feature-card.medium { grid-column: span 6; }
  .feature-card.third { grid-column: span 4; }
  .showcase-row, .showcase-row.reverse { grid-template-columns: 1fr; gap: 45px; }
  .showcase-row.reverse .showcase-copy, .showcase-row.reverse .showcase-media { order: initial; }
  .showcase-copy { max-width: 740px; }
  .showcase-media { width: min(100%, 620px); margin-inline: auto; }
  .local-card { grid-template-columns: 1fr; padding: 55px; }
  .footer-top { grid-template-columns: 1.4fr repeat(3,1fr); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-toggle { display: block; }
  .nav-links { position: absolute; inset: 70px 14px auto; display: none; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 20px; background: rgba(13,14,19,.96); box-shadow: var(--shadow); backdrop-filter: blur(20px); }
  .nav-links.open { display: block; }
  .nav-links li a { display: block; padding: 12px 14px; }
  .nav-links .nav-cta { min-height: 44px; margin-top: 6px; text-align: center; }
  .hero { padding: 125px 0 65px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 5.4rem); }
  .hero-visual { min-height: 555px; margin-top: 20px; }
  .phone-main { width: 265px; height: 552px; right: 8%; }
  .phone-side { width: 185px; height: 390px; left: 0; }
  .float-card { font-size: 12px; }
  .float-live { right: 0; }
  .float-source { left: 0; top: 8%; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 90px 0; }
  .feature-card.large, .feature-card.medium, .feature-card.third { grid-column: 1 / -1; }
  .showcase-row { margin-top: 90px; }
  .showcase-media { min-height: 520px; }
  .screen-card.primary { width: 260px; height: 505px; }
  .screen-card.secondary { width: 180px; height: 355px; }
  .screen-card.tertiary { width: 170px; height: 335px; }
  .local-card { padding: 38px 24px; border-radius: 28px; }
  .network-map { min-height: 300px; }
  .network-node { width: 78px; height: 78px; border-radius: 23px; }
  .network-node:nth-of-type(3) { left: calc(50% - 39px); }
  .faq-grid { grid-template-columns: 1fr; }
  .download-card { padding-block: 70px; border-radius: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: 3.3rem; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 495px; }
  .phone-main { width: 225px; height: 470px; right: 0; }
  .phone-side { width: 155px; height: 330px; }
  .float-source { display: none; }
  .trust-item { min-height: 115px; padding: 20px 15px; }
  .trust-item strong { font-size: 16px; }
  .feature-card { min-height: 280px; padding: 27px; }
  .showcase-media { min-height: 430px; }
  .screen-card.primary { width: 215px; height: 420px; }
  .screen-card.secondary { width: 145px; height: 285px; }
  .screen-card.tertiary { width: 135px; height: 270px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .legal-back-btn { padding-inline: 13px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
