/* ============================================================
   Aether VPN — Website Styles
   ============================================================ */

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

:root {
  --bg:        #050912;
  --bg2:       #090e1a;
  --bg3:       #0d1424;
  --card:      #0f1826;
  --card2:     #111e30;
  --border:    rgba(255,255,255,.06);
  --border2:   rgba(108,99,255,.3);
  --text:      #e8edf5;
  --text2:     #8a96aa;
  --text3:     #5a6478;
  --accent:    #6C63FF;
  --accent2:   #00D4FF;
  --accent-grd: linear-gradient(135deg, #6C63FF, #00D4FF);
  --green:     #00FF88;
  --red:       #FF4444;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 8px 32px rgba(0,0,0,.4);
  --shadow-lg: 0 24px 64px rgba(0,0,0,.5);
  --font:      'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── Utilities ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: var(--accent-grd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent2);
  background: rgba(0,212,255,.1);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p { color: var(--text2); font-size: 1.05rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
}
.btn-primary {
  background: var(--accent-grd);
  color: #fff;
  box-shadow: 0 4px 20px rgba(108,99,255,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(108,99,255,.5); }
.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-outline:hover { background: rgba(108,99,255,.1); border-color: var(--accent); }
.btn-white {
  background: #fff;
  color: #111;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,.2); }
.btn-nav { padding: 8px 20px; font-size: .88rem; background: var(--accent-grd); color: #fff; }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── ORBs (background blobs) ── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: .25;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .3s, backdrop-filter .3s, border-bottom .3s;
}
.nav.scrolled {
  background: rgba(5,9,18,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}
.logo-accent { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  color: var(--text2);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-proxy-link {
  color: var(--accent2) !important;
  background: rgba(0,212,255,.08);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(0,212,255,.2);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.nav-proxy-link:hover { background: rgba(0,212,255,.15) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px 24px;
  gap: 16px;
  background: rgba(5,9,18,.95);
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  color: var(--text2);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}
.mobile-menu.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.orb1 { width: 600px; height: 600px; background: var(--accent); top: -150px; left: -200px; }
.orb2 { width: 400px; height: 400px; background: var(--accent2); top: 100px; right: -150px; }
.orb3 { width: 300px; height: 300px; background: #FF6B6B; bottom: -100px; left: 40%; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(108,99,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,99,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

/* Two-column hero layout */
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
  width: 100%;
}
.hero-inner {
  max-width: 580px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(108,99,255,.12);
  border: 1px solid rgba(108,99,255,.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
  color: #a89cff;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--accent-grd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: .8rem; color: var(--text3); }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Phone mockup */
.hero-visual {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}
.phone-mockup {
  width: 260px;
  background: linear-gradient(160deg, #0f1826 0%, #0a1020 100%);
  border: 1px solid rgba(108,99,255,.25);
  border-radius: 32px;
  padding: 22px 18px;
  box-shadow:
    0 32px 80px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.04),
    inset 0 1px 0 rgba(255,255,255,.06),
    0 0 60px rgba(108,99,255,.12);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.phone-screen { display: flex; flex-direction: column; gap: 14px; }

/* App header */
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone-app-name {
  font-size: .8rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .02em;
}
.connected-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,255,136,.12);
  color: var(--green);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .68rem;
  font-weight: 700;
  border: 1px solid rgba(0,255,136,.2);
}
.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s infinite;
}

/* Shield rings */
.phone-shield {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
}
.shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(108,99,255,.18);
  animation: ripple 3s ease-out infinite;
}
.r1 { width: 120px; height: 120px; animation-delay: 0s; }
.r2 { width: 88px;  height: 88px;  animation-delay: .6s; }
.r3 { width: 60px;  height: 60px;  animation-delay: 1.2s; }
@keyframes ripple {
  0%   { transform: scale(1);   opacity: .5; }
  100% { transform: scale(1.35); opacity: 0; }
}
.shield-center {
  position: relative;
  z-index: 2;
  background: radial-gradient(circle, rgba(108,99,255,.18) 0%, rgba(108,99,255,.06) 100%);
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(108,99,255,.35);
  box-shadow: 0 0 24px rgba(108,99,255,.25);
}

/* Info rows */
.phone-info { display: flex; flex-direction: column; gap: 6px; }
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .74rem;
  padding: 7px 10px;
  background: rgba(255,255,255,.04);
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.04);
}
.info-label { color: var(--text3); }
.info-val { color: var(--text); font-weight: 600; }
.info-val.good   { color: var(--green); }
.info-val.accent { color: #a89cff; }

/* Speed stats */
.speed-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2px;
}
.speed-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 10px 6px;
}
.speed-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.07);
  flex-shrink: 0;
}
.speed-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.speed-icon.down { background: rgba(0,212,255,.12); color: var(--accent2); }
.speed-icon.up   { background: rgba(108,99,255,.15); color: var(--accent); }
.speed-data {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.speed-val {
  font-size: .92rem;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  min-width: 40px;
  text-align: right;
  transition: color .3s;
}
.speed-unit {
  font-size: .6rem;
  color: var(--text3);
  font-weight: 600;
}
.speed-label {
  font-size: .62rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 72px 0;
  background: var(--bg2);
}
/* ── Features visual layout ── */
.features-visual {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 72px;
  align-items: center;
}

/* ── Orbital animation ── */
.feat-orb-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-orb-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(108,99,255,.18) 0%, transparent 70%);
  pointer-events: none;
}
.feat-orb {
  position: relative;
  width: 260px; height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-ring {
  position: absolute;
  border-radius: 50%;
  animation: feat-spin linear infinite;
}
.feat-ring.r1 {
  width: 108px; height: 108px;
  border: 1px solid rgba(108,99,255,.25);
  animation-duration: 5s;
}
.feat-ring.r2 {
  width: 170px; height: 170px;
  border: 1px solid rgba(0,212,255,.18);
  animation-duration: 9s;
  animation-direction: reverse;
}
.feat-ring.r3 {
  width: 232px; height: 232px;
  border: 1px solid rgba(108,99,255,.1);
  animation-duration: 15s;
}
@keyframes feat-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.feat-rdot {
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6C63FF, #00D4FF);
  box-shadow: 0 0 10px rgba(108,99,255,.9), 0 0 20px rgba(108,99,255,.4);
}
.feat-rdot.d2 {
  top: auto; bottom: -5px;
  background: linear-gradient(135deg, #00D4FF, #6C63FF);
  box-shadow: 0 0 10px rgba(0,212,255,.9), 0 0 20px rgba(0,212,255,.4);
}
.feat-center {
  position: relative;
  z-index: 10;
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-pulse {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(108,99,255,.4);
  animation: feat-pulse-anim 3.2s ease-out infinite;
}
.feat-pulse.p2 { animation-delay: 1.6s; }
@keyframes feat-pulse-anim {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(3); opacity: 0; }
}
.feat-core {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, rgba(108,99,255,.35), rgba(0,212,255,.12));
  border: 1px solid rgba(108,99,255,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(108,99,255,.1);
}

/* ── Bullet list ── */
.feat-list {
  position: relative;
  display: flex;
  flex-direction: column;
}
.feat-spine {
  position: absolute;
  left: 16px; top: 20px; bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    rgba(108,99,255,.35) 15%,
    rgba(0,212,255,.3) 85%,
    transparent);
}
.feat-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 18px 0;
  align-items: flex-start;
  cursor: default;
}
.feat-item:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.feat-item:hover .feat-content h3 { color: #fff; }
.feat-item:hover .feat-node-dot {
  box-shadow: 0 0 14px rgba(108,99,255,1), 0 0 28px rgba(108,99,255,.5);
}
.feat-node {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3px;
}
.feat-node-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6C63FF, #00D4FF);
  box-shadow: 0 0 8px rgba(108,99,255,.7);
  display: block;
  position: relative;
  transition: box-shadow .3s;
}
.feat-node-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(108,99,255,.4);
  animation: node-pulse 2.8s ease-out infinite;
}
.feat-item:nth-child(1) .feat-node-dot::after  { animation-delay: 0s; }
.feat-item:nth-child(2) .feat-node-dot::after  { animation-delay: .47s; }
.feat-item:nth-child(3) .feat-node-dot::after  { animation-delay: .94s; }
.feat-item:nth-child(4) .feat-node-dot::after  { animation-delay: 1.4s; }
.feat-item:nth-child(5) .feat-node-dot::after  { animation-delay: 1.87s; }
.feat-item:nth-child(6) .feat-node-dot::after  { animation-delay: 2.34s; }
@keyframes node-pulse {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(3.5); opacity: 0; }
}
.feat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3px;
}
.feat-content h3 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  transition: color .2s;
}
.feat-content p {
  font-size: .875rem;
  color: var(--text2);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding: 64px 0; }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
}
.step-num {
  font-size: 3rem;
  font-weight: 900;
  background: var(--accent-grd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.step-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step-content p { color: var(--text2); font-size: .92rem; }
.step-arrow {
  color: var(--text3);
  padding-top: 30px;
  flex-shrink: 0;
}

/* ============================================================
   PROTOCOLS
   ============================================================ */
.protocols {
  padding: 64px 0;
  background: var(--bg2);
}
.proto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.proto-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}
.proto-text p { color: var(--text2); font-size: .97rem; line-height: 1.7; margin-bottom: 32px; }
.proto-cards { display: flex; flex-direction: column; gap: 16px; }
.proto-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: border-color .2s;
}
.proto-card.active { border-color: rgba(108,99,255,.4); }
.proto-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 5px;
}
.proto-card strong { display: block; font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.proto-card span { color: var(--text2); font-size: .87rem; line-height: 1.55; }

/* Tunnel vis */
.proto-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.tunnel-vis {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.tunnel-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.tunnel-track {
  position: relative;
  width: 100%;
  height: 48px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 100px;
  overflow: hidden;
}
.tunnel-line {
  position: absolute;
  top: 50%; left: 5%;
  width: 90%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
}
.tunnel-packet {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent-grd);
  box-shadow: 0 0 8px var(--accent);
  animation: travel 2.4s linear infinite;
}
.p1 { animation-delay: 0s; }
.p2 { animation-delay: .8s; }
.p3 { animation-delay: 1.6s; }
@keyframes travel {
  0% { left: 5%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 90%; opacity: 0; }
}
.proto-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,255,136,.08);
  border: 1px solid rgba(0,255,136,.2);
  color: var(--green);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 600;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: 64px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: transform .2s;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-featured {
  border-color: var(--accent);
  background: var(--card2);
  box-shadow: 0 0 0 1px rgba(108,99,255,.2), 0 24px 64px rgba(108,99,255,.15);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-grd);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-header { margin-bottom: 28px; }
.plan-name {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.price-amt {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}
.price-per { color: var(--text3); font-size: .9rem; }
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: var(--text2);
}
.check { color: var(--green); font-size: 1rem; flex-shrink: 0; }
.cross { color: var(--text3); font-size: 1rem; flex-shrink: 0; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
  padding: 64px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text2);
  font-size: .88rem;
  font-weight: 600;
}
.trust-item svg { opacity: .5; }

/* ============================================================
   DOWNLOAD
   ============================================================ */
.download { padding: 64px 0; }
.download-inner {
  position: relative;
  background: linear-gradient(135deg, rgba(108,99,255,.12), rgba(0,212,255,.08));
  border: 1px solid rgba(108,99,255,.2);
  border-radius: 24px;
  padding: 80px 60px;
  overflow: hidden;
  text-align: center;
}
.orb-dl1 {
  width: 300px; height: 300px;
  background: var(--accent);
  top: -100px; left: -100px;
  opacity: .12;
}
.orb-dl2 {
  width: 250px; height: 250px;
  background: var(--accent2);
  bottom: -80px; right: -80px;
  opacity: .12;
}
.download-content { position: relative; z-index: 2; }
.download-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.download-content > p {
  color: var(--text2);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}
.download-note {
  color: var(--text3);
  font-size: .85rem;
  margin-top: 0 !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 24px 48px;
  align-items: start;
}
.footer-brand p {
  color: var(--text3);
  font-size: .9rem;
  margin-top: 12px;
  max-width: 200px;
}
.footer-links { display: contents; }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-col a {
  color: var(--text3);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--text3);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-layout { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .hero-inner { max-width: 100%; }
  .hero-badge, .hero-actions, .hero-stats { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-visual { order: -1; }
  .phone-mockup { width: 240px; }
  .proto-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .section-header { margin-bottom: 40px; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .features-visual { grid-template-columns: 1fr; gap: 40px; }
  .feat-orb-wrap { height: 220px; }
  .feat-orb { width: 200px; height: 200px; }
  .feat-ring.r1 { width: 84px; height: 84px; }
  .feat-ring.r2 { width: 130px; height: 130px; }
  .feat-ring.r3 { width: 178px; height: 178px; }
  .feat-orb-glow { width: 160px; height: 160px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .download-inner { padding: 48px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .trust-grid { gap: 32px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-layout { gap: 40px; }
}
