/* ================================================================
   VaultChat — Landing Page Specific Styles
   ================================================================ */

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 6% 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 10%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(124,111,247,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-2 {
  top: 40%; width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,201,177,0.07) 0%, transparent 65%);
}

.hero-content { max-width: 680px; z-index: 2; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6.5vw, 76px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 16px 0 6px;
}
.hero-title .accent { color: var(--violet-bright); }

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 17px; color: var(--muted);
  line-height: 1.7; max-width: 540px;
  margin: 0 auto 40px;
}
.hero-desc strong { color: var(--text); }

.hero-actions {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 72px;
}

/* Phones row */
.phones-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 2;
  margin-top: 20px;
}
.phone-wrap { transition: transform 0.4s cubic-bezier(.22,.68,0,1.4); }
.phone-left  { transform: rotate(-7deg) translateY(32px); }
.phone-center { transform: rotate(0deg); }
.phone-right { transform: rotate(7deg) translateY(32px); }
.phone-wrap:hover {
  transform: rotate(0deg) translateY(-12px) scale(1.04) !important;
  z-index: 10;
}

/* ── STATS BAR ── */
.stats-bar {
  position: relative; z-index: 1;
  background: var(--card);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 32px 6%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  flex: 1; min-width: 140px;
  text-align: center; padding: 8px 24px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 700;
  color: var(--text); letter-spacing: -0.015em;
}
.stat-label {
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 48px;
  background: var(--border2);
  flex-shrink: 0;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  background: var(--card);
  padding: 36px 30px;
  border-right: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card:nth-child(3n) { border-right: none; }
.feature-card:nth-last-child(-n+3) { border-bottom: none; }
.feature-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--violet), var(--teal));
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { background: var(--card2); }
.feature-card:hover::after { opacity: 1; }

.feature-icon {
  width: 50px; height: 50px; border-radius: 13px;
  background: rgba(124,111,247,0.10);
  border: 1px solid rgba(124,111,247,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}
.feature-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}
.step-card:hover { border-color: var(--border); background: var(--card2); }
.step-num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 700;
  color: rgba(124,111,247,0.08);
  line-height: 1; position: absolute;
  top: 16px; right: 20px;
  letter-spacing: -0.02em; user-select: none;
}
.step-icon { font-size: 28px; margin-bottom: 16px; }
.step-title {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.step-connector {
  display: flex; align-items: center; justify-content: center;
  padding: 0 6px; margin-top: 40px;
}
.step-connector::after {
  content: '→';
  color: var(--violet-dim); font-size: 22px;
}

/* ── SECURITY ── */
.security-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg); overflow: hidden;
}
.sec-item {
  background: var(--card);
  padding: 28px 24px;
  border-right: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  display: flex; gap: 16px; align-items: flex-start;
  transition: background var(--transition);
}
.sec-item:nth-child(2n) { border-right: none; }
.sec-item:nth-last-child(-n+2) { border-bottom: none; }
.sec-item:hover { background: var(--card2); }
.sec-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0; margin-top: 5px;
  box-shadow: 0 0 10px rgba(0,201,177,0.45);
}
.sec-title {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.sec-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── SCREENSHOTS ── */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: end;
}
.ss-card { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.ss-caption {
  font-size: 12px; color: var(--muted);
  text-align: center; letter-spacing: 0.02em;
}

/* ── DOWNLOAD ── */
.download-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.download-box::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(ellipse, rgba(124,111,247,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.download-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700; letter-spacing: -0.015em;
  color: var(--text); margin-bottom: 14px;
}
.download-sub {
  font-size: 16px; color: var(--muted);
  line-height: 1.7; max-width: 480px; margin-bottom: 32px;
}
.download-badges { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.store-badge {
  display: flex; align-items: center; gap: 14px;
  background: var(--card2); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 14px 22px;
  color: var(--text); min-width: 195px;
  transition: all var(--transition);
}
.store-badge:hover {
  border-color: var(--violet);
  background: rgba(124,111,247,0.1);
  transform: translateY(-2px);
}
.store-badge-disabled { opacity: 0.45; cursor: default; pointer-events: none; }
.store-badge small {
  display: block; font-size: 10px; color: var(--muted);
  letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 2px;
}
.store-badge strong {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; letter-spacing: -0.01em;
}
.download-note {
  font-size: 13px; color: var(--soft); letter-spacing: 0.03em;
}

.qr-box {
  background: var(--card2); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column;
  align-items: center; gap: 12px; text-align: center;
  min-width: 160px;
}
.qr-box p { font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }

.download-visual { position: relative; z-index: 2; }

/* ── CTA BAND ── */
.cta-band {
  position: relative; z-index: 1;
  background: linear-gradient(135deg, rgba(124,111,247,0.18) 0%, rgba(0,201,177,0.10) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 6%;
}
.cta-band-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700; letter-spacing: -0.02em;
}
.cta-band-sub {
  font-size: 14px; color: var(--muted); margin-top: 4px;
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card:nth-child(3n) { border-right: 1px solid var(--border2); }
  .feature-card:nth-child(2n) { border-right: none; }
  .feature-card:nth-last-child(-n+2) { border-bottom: none; }
  .feature-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--border2); }

  .steps-grid { grid-template-columns: 1fr 1fr; row-gap: 20px; }
  .step-connector { display: none; }

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

@media (max-width: 768px) {
  .phones-row { gap: 10px; }
  .phone-left, .phone-right { display: none; }
  .phone-center { transform: none; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none !important; }
  .feature-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--border2); }
  .feature-card:last-child { border-bottom: none; }

  .security-grid { grid-template-columns: 1fr; }
  .sec-item { border-right: none !important; }

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

  .download-box { grid-template-columns: 1fr; padding: 32px 24px; }
  .download-visual { display: flex; justify-content: center; }

  .stats-bar { gap: 0; }
  .stat-divider { display: none; }
  .stat { min-width: 50%; border-bottom: 1px solid var(--border2); }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .screenshots-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 52px; }
  .download-badges { flex-direction: column; }
  .store-badge { min-width: auto; }
}

/* ── TRUST STRIP ─────────────────────────────────────────────────────── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: center;
  margin-bottom: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.trust-item svg { flex-shrink: 0; color: var(--teal); }

/* ── RELAY BOX ────────────────────────────────────────────────────────── */
.relay-box {
  margin-top: 48px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.relay-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 8px;
}
.relay-box-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}
.relay-count {
  background: rgba(0,201,177,0.12);
  border: 1px solid rgba(0,201,177,0.25);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
}
.relay-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.relay-item {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--card2);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 6px 14px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.relay-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(0,201,177,0.5);
}
.relay-note {
  font-size: 13px;
  color: var(--soft);
  line-height: 1.65;
  border-top: 1px solid var(--border3);
  padding-top: 14px;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .trust-strip { gap: 8px 16px; }
  .relay-box { padding: 20px 18px; }
  .relay-item { font-size: 11px; padding: 5px 10px; }
}

/* ── BETA DOWNLOAD ─────────────────────────────────────────── */
.beta-download-wrap {
  margin-top: 24px;
  background: rgba(0,201,177,0.05);
  border: 1px solid rgba(0,201,177,0.2);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  position: relative;
}
.beta-badge {
  display: inline-flex;
  background: rgba(124,111,247,0.15);
  color: var(--violet-bright);
  border: 1px solid rgba(124,111,247,0.3);
  border-radius: 100px;
  padding: 3px 12px;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.beta-title {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--text); margin-bottom: 6px;
}
.beta-desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.6; margin-bottom: 16px;
}
.beta-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}


/* ── PREMIUM GLOSS PASS — v1.4.1 ──────────────────────────────────────── */
.hero {
  isolation: isolate;
  padding-top: 128px;
  background:
    radial-gradient(circle at 50% 24%, rgba(157,148,255,0.25) 0%, rgba(124,111,247,0.13) 24%, transparent 52%),
    radial-gradient(circle at 50% 68%, rgba(0,201,177,0.10) 0%, transparent 42%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 105px;
  left: 50%;
  width: min(980px, 86vw);
  height: 560px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center, rgba(157,148,255,0.18) 0%, rgba(124,111,247,0.10) 32%, transparent 72%);
  filter: blur(42px);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 68px 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(157,148,255,0.45), rgba(0,201,177,0.25), transparent);
  opacity: 0.7;
  pointer-events: none;
}
.hero-glow {
  width: 980px;
  height: 680px;
  background: radial-gradient(ellipse, rgba(157,148,255,0.22) 0%, rgba(124,111,247,0.10) 38%, transparent 70%);
  filter: blur(10px);
}
.hero-glow-2 {
  width: 640px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(0,201,177,0.14) 0%, rgba(0,201,177,0.06) 34%, transparent 70%);
}
.hero-content {
  width: 100%;
  max-width: 820px;
  margin-inline: auto;
}
.hero-title {
  font-size: clamp(56px, 7.2vw, 92px);
  font-weight: 800;
  letter-spacing: -0.045em;
  margin: 18px 0 18px;
  color: #fff;
  text-shadow:
    0 0 34px rgba(157,148,255,0.36),
    0 18px 60px rgba(0,0,0,0.55);
}
.hero-title .accent {
  color: transparent;
  background: linear-gradient(135deg, #ffffff 0%, #c9c4ff 18%, #9d94ff 48%, #7c6ff7 78%, #00c9b1 120%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(157,148,255,0.34));
}
.hero-tagline {
  color: #d7daf4;
  text-shadow: 0 0 22px rgba(157,148,255,0.13);
}
.hero-desc {
  max-width: 650px;
  color: #bfc5e7;
}
.badge-violet {
  background: linear-gradient(135deg, rgba(124,111,247,0.22), rgba(255,255,255,0.045));
  border-color: rgba(157,148,255,0.48);
  box-shadow:
    0 0 28px rgba(124,111,247,0.24),
    inset 0 1px 0 rgba(255,255,255,0.14);
}
.trust-strip {
  margin-top: 8px;
  margin-bottom: 40px;
}
.trust-item {
  color: #26ead4;
  text-shadow: 0 0 18px rgba(0,201,177,0.24);
}
.hero-actions {
  margin-bottom: 58px;
  gap: 16px;
}
.hero-actions .btn-primary {
  background: linear-gradient(135deg, #9d94ff 0%, #7c6ff7 42%, #5d3dff 100%);
  box-shadow:
    0 18px 58px rgba(124,111,247,0.48),
    0 0 0 1px rgba(255,255,255,0.16) inset,
    0 0 38px rgba(157,148,255,0.28);
}
.hero-actions .btn-primary:hover {
  box-shadow:
    0 22px 70px rgba(124,111,247,0.58),
    0 0 0 1px rgba(255,255,255,0.20) inset,
    0 0 48px rgba(157,148,255,0.38);
}
.hero-actions .btn-secondary {
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  border-color: rgba(157,148,255,0.26);
  box-shadow:
    0 18px 48px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.10);
  backdrop-filter: blur(14px) saturate(1.25);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
}
.hero-actions .btn-secondary:hover {
  color: #fff;
  border-color: rgba(157,148,255,0.60);
  box-shadow:
    0 18px 60px rgba(124,111,247,0.28),
    inset 0 1px 0 rgba(255,255,255,0.16);
}
.btn-acquisition {
  color: #f0edff;
  border-color: rgba(157,148,255,0.36) !important;
  background: linear-gradient(135deg, rgba(124,111,247,0.20), rgba(255,255,255,0.035)) !important;
}
.btn-acquisition::after {
  content: '↗';
  font-size: 0.95em;
  opacity: 0.8;
  margin-left: 2px;
}
.phones-row {
  margin-top: 10px;
  filter: drop-shadow(0 0 55px rgba(124,111,247,0.26));
}
.phone-frame {
  border-color: rgba(255,255,255,0.20);
  background: linear-gradient(180deg, #171a31, #060712);
  box-shadow:
    0 48px 92px rgba(0,0,0,0.72),
    0 0 55px rgba(124,111,247,0.28),
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 1px 0 rgba(255,255,255,0.20) inset;
}
.phone-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(255,255,255,0.22), transparent 22%, transparent 70%, rgba(157,148,255,0.12));
  pointer-events: none;
  z-index: 2;
}
.phone-wrap {
  position: relative;
}
.phone-wrap::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -34px;
  width: 160px;
  height: 36px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(124,111,247,0.30), transparent 70%);
  filter: blur(8px);
  z-index: -1;
}
.bg-grid {
  background-image:
    linear-gradient(rgba(157,148,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157,148,255,0.045) 1px, transparent 1px);
}
.bg-noise {
  opacity: 0.17;
}
.card, .feature-card, .step-card, .sec-item, .download-box {
  box-shadow: 0 18px 60px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.035);
}
@media (max-width: 768px) {
  .hero {
    padding-top: 112px;
  }
  .hero-title {
    font-size: clamp(48px, 14vw, 64px);
  }
  .hero-actions {
    gap: 12px;
  }
}

/* ================================================================
   Premium gloss/reflection pass + mobile refinement
   ================================================================ */
.nav {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012) 42%, rgba(5,6,15,0.78)),
    rgba(5,6,15,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 40px rgba(0,0,0,0.26), inset 0 1px 0 rgba(255,255,255,0.08);
}
.nav.scrolled {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01) 44%, rgba(5,6,15,0.95)),
    rgba(5,6,15,0.94);
}

.hero::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 16%;
  width: min(980px, 88vw);
  height: min(520px, 54vh);
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 15%, rgba(255,255,255,0.13) 0%, transparent 15%),
    radial-gradient(ellipse at 50% 45%, rgba(155,126,255,0.30) 0%, rgba(124,111,247,0.12) 31%, transparent 67%),
    radial-gradient(ellipse at 54% 78%, rgba(0,229,204,0.18) 0%, transparent 46%);
  filter: blur(8px);
  opacity: .92;
  mix-blend-mode: screen;
}

.hero-title {
  text-shadow: 0 0 26px rgba(157,148,255,0.34), 0 0 74px rgba(124,111,247,0.22);
}
.hero-title .accent {
  background: linear-gradient(180deg, #d8d2ff 0%, #9d94ff 42%, #725cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 22px rgba(124,111,247,0.50));
}

.btn-primary,
.btn-secondary,
.store-badge,
.lang-toggle,
.qr-box,
.beta-download-wrap,
.relay-box,
.feature-card,
.step-card,
.sec-item,
.download-box,
.cta-band {
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before,
.store-badge::before,
.lang-toggle::before,
.qr-box::before,
.beta-download-wrap::before,
.relay-box::before,
.feature-card::before,
.step-card::before,
.sec-item::before,
.download-box::before,
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.035) 34%, rgba(255,255,255,0) 58%);
  opacity: .48;
}

.btn-primary {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), transparent 48%),
    linear-gradient(135deg, #9b7cff 0%, #765cff 44%, #5e46ff 100%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 14px 44px rgba(124,111,247,0.38),
    0 0 0 1px rgba(124,111,247,0.13),
    inset 0 1px 0 rgba(255,255,255,0.36),
    inset 0 -10px 22px rgba(35,22,98,0.28);
}
.btn-primary:hover {
  box-shadow:
    0 18px 58px rgba(124,111,247,0.50),
    0 0 42px rgba(157,148,255,0.28),
    inset 0 1px 0 rgba(255,255,255,0.42),
    inset 0 -10px 22px rgba(35,22,98,0.25);
}

.btn-secondary,
.btn-acquisition {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.105), rgba(255,255,255,0.028) 42%, rgba(255,255,255,0.018)),
    rgba(19,23,43,0.70);
  border: 1px solid rgba(185,170,255,0.28);
  box-shadow:
    0 12px 36px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.12);
  backdrop-filter: blur(16px) saturate(1.28);
  -webkit-backdrop-filter: blur(16px) saturate(1.28);
}
.btn-acquisition {
  border-color: rgba(157,148,255,0.42);
  box-shadow:
    0 12px 38px rgba(0,0,0,0.28),
    0 0 30px rgba(124,111,247,0.18),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.phone-frame,
.hero-main-shot,
.ss-card .phone-frame {
  filter: drop-shadow(0 28px 62px rgba(0,0,0,0.58)) drop-shadow(0 0 34px rgba(124,111,247,0.28));
}
.phone-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255,255,255,0.26) 0%, rgba(255,255,255,0.10) 12%, transparent 32%, transparent 68%, rgba(157,148,255,0.12) 100%);
  mix-blend-mode: screen;
  opacity: .52;
}

.feature-card,
.step-card,
.sec-item,
.download-box,
.relay-box,
.cta-band,
.qr-box,
.beta-download-wrap {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018) 42%, rgba(255,255,255,0.006)),
    linear-gradient(135deg, rgba(21,25,48,0.94), rgba(10,12,28,0.96));
  border-color: rgba(185,170,255,0.15);
  box-shadow:
    0 20px 66px rgba(0,0,0,0.28),
    0 0 34px rgba(124,111,247,0.075),
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(0,0,0,0.25);
}
.feature-card:hover,
.step-card:hover,
.sec-item:hover {
  box-shadow:
    0 24px 78px rgba(0,0,0,0.34),
    0 0 46px rgba(124,111,247,0.16),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.section-title,
.download-title,
.cta-band-title {
  text-shadow: 0 0 22px rgba(255,255,255,0.08), 0 0 44px rgba(124,111,247,0.16);
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 104px 5% 54px;
  }
  .hero::before {
    width: 105vw;
    height: 440px;
    top: 9%;
    opacity: .72;
  }
  .hero-title {
    font-size: clamp(42px, 13vw, 60px);
    margin-top: 10px;
  }
  .hero-tagline {
    font-size: clamp(15px, 4.3vw, 18px);
    letter-spacing: .025em;
  }
  .hero-desc {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .trust-strip {
    gap: 8px 14px;
    margin-bottom: 26px;
  }
  .trust-item {
    font-size: 12px;
  }
  .hero-actions {
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    min-height: 50px;
  }
  .phones-row {
    margin-top: 10px;
  }
  .phone-center .phone-frame {
    width: min(230px, 72vw) !important;
    height: auto !important;
    aspect-ratio: 208 / 440;
  }
  .screenshots-grid {
    gap: 22px;
  }
  .ss-card .phone-frame {
    height: 320px !important;
  }
  .relay-list {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .nav {
    height: 64px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .nav-mobile {
    top: 64px;
  }
  .hero-title {
    font-size: clamp(40px, 15vw, 54px);
  }
  .hero-badge {
    font-size: 10px;
    max-width: 100%;
    white-space: normal;
  }
  .features-grid,
  .security-grid,
  .steps-grid,
  .screenshots-grid {
    grid-template-columns: 1fr !important;
  }
  .ss-card .phone-frame {
    height: 380px !important;
    max-width: 220px;
    margin: 0 auto;
  }
  .download-box {
    border-radius: 22px;
  }
}

/* ── PRODUCT DOWNLOAD CARDS ───────────────────────────────────── */
.download-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}
.product-download-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(20,22,40,.96), rgba(10,12,25,.96));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 34px;
  min-height: 430px;
}
.product-download-card::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(124,111,247,.15) 0%, transparent 65%);
  pointer-events: none;
}
.product-premium::before {
  background: radial-gradient(ellipse, rgba(255,107,107,.15) 0%, transparent 65%);
}
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.product-badge-free {
  color: #071915;
  background: var(--teal);
}
.product-badge-premium {
  color: #fff;
  background: linear-gradient(135deg, #ff6b6b, #f97316);
}
.product-download-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.product-download-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  line-height: 1.7;
}
.product-feature-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
}
.product-feature-list li {
  color: var(--text2);
  font-size: 14px;
  padding-left: 24px;
  position: relative;
}
.product-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}
.product-premium .product-feature-list li::before { color: var(--warning); }
.product-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.product-download-main {
  background: linear-gradient(135deg, rgba(0,201,177,.18), rgba(124,111,247,.18));
}
.product-download-premium {
  background: linear-gradient(135deg, rgba(255,107,107,.18), rgba(249,115,22,.14));
}
.guide-link {
  color: var(--text2);
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.guide-link:hover { color: var(--violet-bright); }
.download-count-line {
  margin-top: 18px;
  font-size: 13px;
  color: var(--soft) !important;
}
.download-count-line strong { color: var(--text); }
.download-help-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.025);
}
.download-help-strip strong {
  font-family: var(--font-display);
  font-size: 18px;
}
.download-help-strip p {
  color: var(--muted);
  margin-top: 4px;
  max-width: 680px;
}
.download-help-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .download-products { grid-template-columns: 1fr; }
  .product-download-card { padding: 28px 22px; min-height: auto; }
  .product-actions { align-items: stretch; flex-direction: column; }
  .product-actions .store-badge { width: 100%; }
}
