:root {
  color-scheme: dark;
  --bg: #0B0C10;
  --panel: #1A1D24;
  --panel-2: #1F2833;
  --text: #f6f8fb;
  --muted: #a7b3c5;
  --line: rgba(34, 38, 48, 0.94);
  --accent: #00F5D4;
  --accent-2: #00B4D8;
  --accent-strong: #7DFFEA;
  --violet: #7B2CBF;
  --violet-2: #9D4EDD;
  --violet-text: #E0AAFF;
  --grad-cyan: linear-gradient(135deg, #00F5D4 0%, #00B4D8 100%);
  --grad-violet: linear-gradient(135deg, #7B2CBF 0%, #9D4EDD 100%);
  --font-display: 'Montserrat', 'Arial Black', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 245, 212, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 0%, rgba(123, 44, 191, 0.18), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.logo {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(0, 245, 212, 0.45);
  border-radius: 10px;
  background: linear-gradient(rgba(11, 12, 16, 0.18), rgba(11, 12, 16, 0.18)), var(--grad-cyan);
  box-shadow: 0 0 28px rgba(0, 245, 212, 0.2), 0 0 18px rgba(157, 78, 221, 0.16);
  color: #0B0C10;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 44px;
  align-items: center;
  padding: 72px 0 56px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid rgba(0, 245, 212, 0.32);
  border-radius: 999px;
  background: rgba(0, 245, 212, 0.08);
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  font-style: italic;
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.1rem;
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 245, 212, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.button.primary {
  border-color: rgba(0, 245, 212, 0.55);
  background: var(--grad-cyan);
  color: #0B0C10;
  box-shadow: 0 0 28px rgba(0, 245, 212, 0.18);
}

.mockup {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(31, 40, 51, 0.88), rgba(26, 29, 36, 0.72));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mockup-bar {
  display: flex;
  gap: 7px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--violet-2);
}

.dot:nth-child(2) {
  background: var(--accent);
}

.dot:nth-child(3) {
  background: var(--accent-2);
}

.overlay-card {
  margin: 18px;
  padding: 20px;
  border: 1px solid rgba(0, 245, 212, 0.24);
  border-radius: 20px;
  background: rgba(11, 12, 16, 0.72);
  box-shadow: 0 0 0 1px rgba(157, 78, 221, 0.12);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-row:last-child {
  border-bottom: 0;
}

.stat-row strong {
  color: var(--accent);
}

.section {
  padding: 54px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  min-height: 156px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(26, 29, 36, 0.78);
}

.card p,
.trust-list p,
.coming-soon p {
  margin: 10px 0 0;
  color: var(--muted);
}

.icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(rgba(11, 12, 16, 0.78), rgba(11, 12, 16, 0.78)), var(--grad-violet);
  color: var(--violet-text);
  font-weight: 900;
}

.download-panel,
.trust-panel,
.coming-soon,
.legal-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(31, 40, 51, 0.92), rgba(26, 29, 36, 0.72));
  box-shadow: var(--shadow);
}

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

.download {
  display: block;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

.download:hover {
  border-color: rgba(157, 78, 221, 0.58);
}

.download strong {
  display: block;
  font-size: 1.15rem;
}

.download span {
  color: var(--muted);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.ad-placeholder {
  display: grid;
  min-height: 140px;
  margin: 28px 0;
  place-items: center;
  border: 1px dashed rgba(157, 78, 221, 0.55);
  border-radius: 18px;
  background: linear-gradient(rgba(11, 12, 16, 0.82), rgba(11, 12, 16, 0.82)), var(--grad-violet);
  color: var(--violet-text);
  font-weight: 800;
}

.legal-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.legal-links a {
  display: block;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

.legal-links a:hover {
  border-color: rgba(0, 245, 212, 0.5);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 860px) {
  .hero,
  .grid,
  .download-grid,
  .trust-list,
  .legal-links {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .download-panel,
  .trust-panel,
  .coming-soon,
  .legal-panel {
    padding: 22px;
  }
}

.site-nav {
  min-height: 68px;
}

.brand-mark {
  display: block;
  object-fit: contain;
}

.nav-mark {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 16px rgba(0, 245, 212, 0.18));
}

.hero-wordmark-heading {
  max-width: 520px;
}

.brand-wordmark {
  display: block;
  width: min(420px, 100%);
  height: auto;
  max-width: 100%;
  filter: drop-shadow(0 18px 48px rgba(0, 245, 212, 0.12));
}
