/* ================================================
   VERA — DESIGN SYSTEM (POLISHED EDITION)
   Ultra-premium dark telecom · Glassmorphism · Neon purple
   ================================================ */

:root {
  --black:     #020206;
  --deep:      #06060f;
  --surface:   rgba(255,255,255,0.04);
  --glass:     rgba(255,255,255,0.06);
  --glass-2:   rgba(255,255,255,0.03);
  --border:    rgba(255,255,255,0.08);
  --border-p:  rgba(138,43,226,0.3);
  --purple:    #8B2BFF;
  --purple-2:  #A855F7;
  --purple-3:  #C084FC;
  --neon:      #BF5FFF;
  --silver:    #C8CDD8;
  --silver-2:  #E8ECF4;
  --text:      #F0F2F8;
  --text-2:    #8892A4;
  --text-3:    #4A5568;
  --glow:      0 0 60px rgba(139,43,255,0.35);
  --glow-sm:   0 0 20px rgba(139,43,255,0.25);
  --glow-lg:   0 0 120px rgba(139,43,255,0.4);
  --font-d:    'Syne', sans-serif;
  --font-b:    'DM Sans', sans-serif;
  --ease:      cubic-bezier(0.2, 0.9, 0.4, 1.1);
  --ease-out:  cubic-bezier(0,0,0.2,1);
  --bounce:    cubic-bezier(0.34,1.56,0.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-b);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  animation: fadeInPage 0.8s ease-out;
}

@keyframes fadeInPage {
  from { opacity: 0; }
  to { opacity: 1; }
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font-b); cursor: none; border: none; background: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--purple), var(--purple-3)); border-radius: 2px; }

/* Custom Cursor - Polished */
#vera-cursor {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple-3);
  box-shadow: 0 0 12px var(--purple-3);
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease), height 0.2s var(--ease);
}
#vera-cursor-ring {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(192, 132, 252, 0.4);
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-out), width 0.2s var(--ease), height 0.2s var(--ease);
}
#vera-cursor.expanded { width: 40px; height: 40px; background: transparent; border: 1.5px solid var(--purple-3); }
#vera-cursor-ring.expanded { width: 56px; height: 56px; border-color: rgba(192, 132, 252, 0.2); }

/* Layout */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section { padding: 120px 0; transition: opacity 0.5s ease; }
.section-sm { padding: 80px 0; }

/* Typography */
.display { font-family: var(--font-d); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; }
.display-xl { font-size: clamp(52px, 9vw, 110px); }
.display-lg { font-size: clamp(36px, 6vw, 72px); }
.display-md { font-size: clamp(28px, 4vw, 48px); }
.label {
  font-family: var(--font-d); font-size: 11px; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase; color: var(--purple-3);
}
.gradient-text {
  background: linear-gradient(135deg, var(--silver-2) 0%, var(--purple-3) 50%, var(--silver) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Buttons - Polished */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; font-family: var(--font-d); font-size: 13px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 40px; transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%); transition: transform 0.4s var(--ease);
}
.btn:hover::before { transform: translateX(0); }
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-2));
  color: #fff; box-shadow: 0 4px 15px rgba(139,43,255,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(139,43,255,0.4); }
.btn-ghost {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15); color: var(--silver-2);
}
.btn-ghost:hover { background: rgba(139,43,255,0.15); border-color: rgba(139,43,255,0.4); transform: translateY(-2px); }

/* Glass Card - Enhanced */
.glass-card {
  background: var(--glass); backdrop-filter: blur(24px);
  border: 1px solid var(--border); border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.glass-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(139,43,255,0.4);
  box-shadow: 0 25px 40px -12px rgba(139,43,255,0.25), inset 0 0 0 1px rgba(139,43,255,0.15);
  transform: translateY(-8px);
}

/* Glow Orb */
.glow-orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px);
}
.orb-purple {
  background: radial-gradient(circle, rgba(139,43,255,0.25) 0%, transparent 70%);
  width: 600px; height: 600px;
}

/* Navbar - Logo Alignment Fix */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 20px 0;
  transition: all 0.4s var(--ease);
}
#navbar.scrolled {
  background: rgba(2,2,6,0.8);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-text-logo {
  height: 28px;
  width: auto;
  display: block;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 16px; font-size: 13px; font-weight: 500;
  letter-spacing: .04em; color: var(--text-2);
  border-radius: 100px; transition: all 0.2s var(--ease);
}
.nav-link:hover { color: var(--text); background: var(--glass); }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border: none; background: none; cursor: none;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--silver); transition: all 0.3s var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(2,2,6,0.97); backdrop-filter: blur(24px);
  z-index: 899; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.mobile-menu.open { display: flex; animation: fadeIn 0.3s var(--ease); }
.mobile-menu .nav-link { font-size: 22px; padding: 16px 28px; font-family: var(--font-d); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Hero Section */
#hero {
  min-height: 100vh; position: relative; display: flex;
  align-items: center; justify-content: center; overflow: hidden;
  padding-top: 100px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139,43,255,0.15) 0%, transparent 60%),
              radial-gradient(ellipse 50% 40% at 80% 80%, rgba(99,22,180,0.1) 0%, transparent 50%),
              var(--black);
}
.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(139,43,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,43,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.particle {
  position: absolute; border-radius: 50%;
  animation: particleDrift var(--dur,8s) ease-in-out var(--delay,0s) infinite alternate;
}
@keyframes particleDrift {
  from { transform: translate(0,0) scale(1); opacity: .3; }
  to { transform: translate(var(--dx,20px),var(--dy,-30px)) scale(1.2); opacity: .1; }
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 40px 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(139,43,255,0.12); border: 1px solid rgba(139,43,255,0.3);
  color: var(--purple-3); padding: 6px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--purple-3);
  box-shadow: 0 0 8px var(--purple-3); flex-shrink: 0;
  animation: corePulse 1.5s ease-in-out infinite;
}
.hero-v-container {
  position: relative; width: 180px; height: 180px;
  margin: 0 auto 40px; display: flex; align-items: center; justify-content: center;
}
.hero-v-rings {
  position: absolute; inset: 0;
}
.hero-ring {
  position: absolute; border-radius: 50%; border: 1px solid;
  animation: ringRotate linear infinite;
}
.ring-1 { inset: 0; border-color: rgba(139,43,255,0.2); animation-duration: 20s; }
.ring-2 { inset: 12px; border-color: rgba(168,85,247,0.25); animation-duration: 15s; animation-direction: reverse; }
.ring-3 { inset: 24px; border-color: rgba(196,132,252,0.3); animation-duration: 10s; }
@keyframes ringRotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }
.ring-dot {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  top: 50%; left: 0; transform: translate(-50%,-50%);
  background: var(--purple-2); box-shadow: 0 0 10px var(--purple);
}
.hero-v-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at center, rgba(139,43,255,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 3s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { opacity: .5; transform: scale(.9); }
  to { opacity: 1; transform: scale(1.1); }
}
.hero-logo-img {
  width: min(140px, 25vw);
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 30px rgba(139,43,255,0.5));
  animation: letterFloat 4s ease-in-out infinite;
}
@keyframes letterFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-v-core-dot {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle,#fff 0%,var(--purple-2) 50%,transparent 100%);
  box-shadow: 0 0 20px var(--purple),0 0 40px var(--purple-2),0 0 80px rgba(139,43,255,0.5);
  animation: corePulse 2s ease-in-out infinite;
}
@keyframes corePulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .7; }
}
.hero-title { font-size: clamp(56px,10vw,120px); margin-bottom: 24px; line-height: 1; }
.hero-sub {
  font-size: clamp(15px,2vw,20px); font-weight: 300;
  color: var(--text-2); max-width: 580px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--text-3);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(var(--purple-3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}
.hero-float-1, .hero-float-2 {
  position: absolute; pointer-events: none; z-index: 2;
}
.hero-float-1 { top: 20%; left: 5%; animation: floatEl 6s ease-in-out infinite; }
.hero-float-2 { bottom: 25%; right: 5%; animation: floatEl 5s ease-in-out 1s infinite; }
@keyframes floatEl {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 14px 18px; min-width: 160px;
}
.float-card-label { font-size: 10px; letter-spacing: .2em; color: var(--text-2); text-transform: uppercase; margin-bottom: 6px; }
.float-card-value { font-family: var(--font-d); font-size: 22px; font-weight: 700; color: var(--silver-2); }
.float-card-sub { font-size: 11px; color: var(--purple-3); margin-top: 2px; }
.float-bar { height: 3px; background: var(--glass); border-radius: 2px; margin-top: 10px; overflow: hidden; }
.float-bar-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg,var(--purple),var(--purple-3));
  box-shadow: 0 0 8px var(--purple);
  animation: barPulse 3s ease-in-out infinite;
}
@keyframes barPulse { 0%,100% { opacity: .8; } 50% { opacity: 1; } }

/* Features */
#features { background: var(--deep); }
.features-header { text-align: center; margin-bottom: 72px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 16px; }
.feat-card { padding: 32px 28px; position: relative; overflow: hidden; }
.feat-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(139,43,255,0.12); border: 1px solid rgba(139,43,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
  transition: all 0.35s var(--ease);
}
.feat-card:hover .feat-icon-wrap {
  background: rgba(139,43,255,0.2);
  box-shadow: 0 0 24px rgba(139,43,255,0.3);
  transform: scale(1.08);
}
.feat-icon-svg { width: 24px; height: 24px; stroke: var(--purple-3); stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.feat-title { font-family: var(--font-d); font-size: 17px; font-weight: 700; color: var(--silver-2); margin-bottom: 10px; }
.feat-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.7; }
.feat-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg,transparent,var(--purple),transparent);
  transform: scaleX(0); transition: transform 0.35s var(--ease);
}
.feat-card:hover::after { transform: scaleX(1); }

/* App Section */
#app { position: relative; overflow: hidden; }
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.app-text { padding-right: 20px; }
.app-title { margin-bottom: 20px; }
.app-desc { font-size: 16px; color: var(--text-2); line-height: 1.8; margin-bottom: 36px; font-weight: 300; }
.app-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.app-feat-row { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border-radius: 12px; background: var(--glass); border: 1px solid var(--border); transition: border-color 0.25s; }
.app-feat-row:hover { border-color: rgba(139,43,255,0.3); }
.app-feat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; background: var(--purple-2); box-shadow: 0 0 8px var(--purple); }
.app-feat-text { font-size: 14px; font-weight: 500; color: var(--text); }

/* Phone Mockup */
.phone-wrap { display: flex; justify-content: center; align-items: center; position: relative; }
.phone-outer-glow { position: absolute; inset: -40px; background: radial-gradient(ellipse at center, rgba(139,43,255,0.2) 0%, transparent 70%); border-radius: 50%; animation: heroGlow 4s ease-in-out infinite alternate; }
.phone { position: relative; z-index: 1; width: 260px; background: linear-gradient(160deg,#1a1a2e,#0f0f1a); border-radius: 40px; padding: 12px; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 0 0 1px rgba(0,0,0,0.5), 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(139,43,255,0.15), inset 0 1px 0 rgba(255,255,255,0.1); animation: letterFloat 5s ease-in-out infinite; }
.phone-screen { background: #080814; border-radius: 30px; overflow: hidden; padding: 20px 16px; min-height: 520px; }
.phone-notch { width: 80px; height: 20px; background: #0a0a18; border-radius: 10px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.phone-notch-dot { width: 6px; height: 6px; border-radius: 50%; background: #1a1a30; }
.phone-plan-header { text-align: center; margin-bottom: 20px; }
.phone-plan-label { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-2); margin-bottom: 4px; }
.phone-plan-name { font-family: var(--font-d); font-size: 13px; font-weight: 700; color: var(--silver-2); margin-bottom: 2px; }
.phone-plan-badge { display: inline-block; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; background: rgba(139,43,255,0.2); color: var(--purple-3); padding: 2px 8px; border-radius: 100px; }
.phone-meter { display: flex; justify-content: center; margin-bottom: 20px; }
.meter-svg { width: 120px; height: 120px; }
.meter-track { stroke: rgba(139,43,255,0.15); fill: none; stroke-width: 8; }
.meter-fill { stroke: url(#meterGrad); fill: none; stroke-width: 8; stroke-linecap: round; stroke-dasharray: 283; stroke-dashoffset: 70; animation: meterAnim 2s var(--ease) forwards; }
@keyframes meterAnim { from { stroke-dashoffset: 283; } to { stroke-dashoffset: 70; } }
.meter-container { position: relative; display: inline-flex; }
.meter-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.meter-value { font-family: var(--font-d); font-size: 18px; font-weight: 800; color: var(--silver-2); }
.meter-unit { font-size: 9px; color: var(--text-2); letter-spacing: .1em; }
.phone-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.phone-stat { background: rgba(139,43,255,0.08); border: 1px solid rgba(139,43,255,0.15); border-radius: 10px; padding: 10px; text-align: center; }
.phone-stat-val { font-family: var(--font-d); font-size: 14px; font-weight: 700; color: var(--silver-2); }
.phone-stat-label { font-size: 8px; color: var(--text-2); text-transform: uppercase; letter-spacing: .1em; margin-top: 2px; }
.phone-actions { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 16px; }
.phone-action { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 8px 4px; text-align: center; font-size: 7px; color: var(--text-2); letter-spacing: .05em; text-transform: uppercase; }
.phone-action-icon { font-size: 14px; display: block; margin-bottom: 3px; }
.phone-map { background: linear-gradient(135deg,#0a0a20,#0d0d25); border-radius: 12px; height: 70px; position: relative; overflow: hidden; border: 1px solid rgba(139,43,255,0.15); }
.phone-map-node { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--purple-3); box-shadow: 0 0 8px var(--purple); animation: nodePulse 2s ease-in-out infinite; }
@keyframes nodePulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(2); opacity: .5; } }
.phone-nav { display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; padding: 12px 8px 4px; border-top: 1px solid rgba(255,255,255,0.06); margin-top: 12px; }
.phone-nav-item { text-align: center; font-size: 7px; color: var(--text-3); text-transform: uppercase; letter-spacing: .05em; }
.phone-nav-item.active { color: var(--purple-3); }
.phone-nav-icon { font-size: 14px; display: block; margin-bottom: 2px; }

/* Coverage */
#coverage { background: var(--deep); position: relative; overflow: hidden; text-align: center; }
.coverage-header { margin-bottom: 64px; }
.coverage-stats { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; margin-bottom: 64px; }
.cov-stat-num { font-family: var(--font-d); font-size: clamp(36px,6vw,64px); font-weight: 800; color: var(--silver-2); line-height: 1; }
.cov-stat-label { font-size: 13px; color: var(--text-2); margin-top: 6px; }
.cov-divider { width: 1px; height: 60px; background: var(--border); }
.map-container { position: relative; max-width: 900px; margin: 0 auto; }
.world-map-svg { width: 100%; opacity: .6; filter: drop-shadow(0 0 40px rgba(139,43,255,0.2)); }
.conn-line { stroke: var(--purple); stroke-width: 1; fill: none; opacity: .5; stroke-dasharray: 4 4; animation: dashMove 3s linear infinite; }
@keyframes dashMove { from { stroke-dashoffset: 0; } to { stroke-dashoffset: -24; } }

/* SIM Products */
#sims { position: relative; overflow: hidden; }
.sims-header { text-align: center; margin-bottom: 72px; }
.sims-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.sim-card { aspect-ratio: 1.586; border-radius: 16px; position: relative; overflow: hidden; cursor: none; transition: all 0.4s var(--bounce); }
.sim-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 30px 80px rgba(0,0,0,0.5), var(--glow); }
.sim-transparent { background: linear-gradient(135deg,rgba(255,255,255,0.12),rgba(255,255,255,0.04)); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(20px); }
.sim-black { background: linear-gradient(135deg,#1a1a1a,#0d0d0d); border: 1px solid rgba(255,255,255,0.08); }
.sim-silver { background: linear-gradient(135deg,#c8cdd8,#8892a4,#c8cdd8,#e8ecf4); border: 1px solid rgba(255,255,255,0.3); }
.sim-inner { position: absolute; inset: 0; padding: 18px 20px; display: flex; flex-direction: column; justify-content: space-between; }
.sim-chip { width: 32px; height: 24px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.2); }
.sim-chip-gold { background: linear-gradient(135deg,#d4af37,#f5e06e,#d4af37); }
.sim-chip-dark { background: linear-gradient(135deg,#2a2a2a,#1a1a1a); }
.sim-chip-silver { background: linear-gradient(135deg,#a0a8b8,#d4d8e4); }
.sim-logo { font-family: var(--font-d); font-size: 14px; font-weight: 700; letter-spacing: .15em; }
.sim-logo-transparent { color: rgba(255,255,255,0.8); }
.sim-logo-black { color: rgba(255,255,255,0.6); }
.sim-name { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.sim-name-light { color: rgba(255,255,255,0.5); }
.sim-name-dark { color: rgba(255,255,255,0.3); }
.sim-name-silver-dark { color: rgba(10,10,20,0.5); }
.sim-reflection { position: absolute; top: 0; left: -50%; right: -50%; height: 40%; background: linear-gradient(180deg,rgba(255,255,255,0.12) 0%,transparent 100%); transform: skewX(-20deg); pointer-events: none; }
.sim-glow-dot { position: absolute; bottom: 16px; right: 16px; width: 10px; height: 10px; border-radius: 50%; background: var(--purple-3); box-shadow: 0 0 16px var(--purple); animation: corePulse 2s ease-in-out infinite; }
.sims-tagline { text-align: center; margin-top: 48px; font-size: 15px; color: var(--text-2); font-style: italic; font-weight: 300; }

/* Tech Stack */
#techstack { background: var(--deep); position: relative; overflow: hidden; }
.tech-header { text-align: center; margin-bottom: 72px; }
.tech-flow { display: flex; flex-direction: column; align-items: center; gap: 0; max-width: 600px; margin: 0 auto; }
.tech-node { background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: 16px; padding: 18px 32px; width: 100%; display: flex; align-items: center; gap: 16px; position: relative; transition: all 0.3s var(--ease); }
.tech-node:hover { border-color: rgba(139,43,255,0.4); box-shadow: 0 4px 30px rgba(139,43,255,0.12); transform: translateX(6px); }
.tech-node-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(139,43,255,0.15); border: 1px solid rgba(139,43,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.tech-node-label { font-family: var(--font-d); font-size: 15px; font-weight: 600; color: var(--silver-2); }
.tech-node-sub { font-size: 11px; color: var(--text-2); margin-top: 2px; }
.tech-arrow { height: 40px; width: 2px; background: linear-gradient(var(--purple),var(--purple-3)); position: relative; overflow: visible; }
.tech-arrow::after { content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-top: 8px solid var(--purple-3); }
.tech-flow-dot { position: absolute; top: 0; left: 50%; transform: translate(-50%,0); width: 8px; height: 8px; border-radius: 50%; background: var(--purple-3); box-shadow: 0 0 10px var(--purple); animation: dotFlow 2s linear infinite; }
@keyframes dotFlow { from { top: -4px; opacity: 0; } to { top: 100%; opacity: 1; } }
.tech-node.vera-node { border-color: rgba(139,43,255,0.5); background: rgba(139,43,255,0.1); box-shadow: 0 0 40px rgba(139,43,255,0.15); }
.tech-node.vera-node .tech-node-label { color: var(--purple-3); }

/* Tech stack icon styling - with glow effects */
.tech-node-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(139,43,255,0.08);
  border: 1px solid rgba(139,43,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.tech-node-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--silver-2);
  stroke-width: 1.5;
  fill: none;
  transition: all 0.3s ease;
}

/* Glow effect on hover */
.tech-node:hover .tech-node-icon {
  background: rgba(139,43,255,0.2);
  border-color: rgba(139,43,255,0.5);
  box-shadow: 0 0 20px rgba(139,43,255,0.4), inset 0 0 0 1px rgba(139,43,255,0.2);
  transform: scale(1.05);
}

.tech-node:hover .tech-node-icon svg {
  stroke: var(--purple-3);
  filter: drop-shadow(0 0 6px rgba(196,132,252,0.8));
}

/* Special glow for VERA Core node */
.tech-node.vera-node .tech-node-icon {
  background: rgba(139,43,255,0.15);
  border-color: rgba(139,43,255,0.4);
}

.tech-node.vera-node:hover .tech-node-icon {
  background: rgba(139,43,255,0.3);
  box-shadow: 0 0 30px rgba(139,43,255,0.6);
}

.tech-node.vera-node:hover .tech-node-icon svg {
  filter: drop-shadow(0 0 10px rgba(196,132,252,0.9));
}

/* Make the icons glow continuously on the VERA Core node (even without hover) */
.tech-node.vera-node .tech-node-icon svg {
  stroke: var(--purple-3);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% {
    filter: drop-shadow(0 0 2px rgba(196,132,252,0.4));
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(196,132,252,0.8));
  }
}

/* Security */
#security { position: relative; overflow: hidden; }
.sec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.sec-visual { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; }
.sec-shield-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(139,43,255,0.15) 0%, transparent 70%); }
.shield-svg { width: 200px; height: 200px; position: relative; z-index: 1; filter: drop-shadow(0 0 30px rgba(139,43,255,0.4)); }
.sec-ring-outer { position: absolute; width: 340px; height: 340px; border-radius: 50%; border: 1px solid rgba(139,43,255,0.15); animation: ringRotate 30s linear infinite; }
.sec-ring-inner { position: absolute; width: 250px; height: 250px; border-radius: 50%; border: 1px solid rgba(168,85,247,0.2); animation: ringRotate 20s linear infinite reverse; }
.sec-node { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--purple-2); box-shadow: 0 0 12px var(--purple); }
.sec-text { padding-left: 20px; }
.sec-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.sec-feat { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; border-radius: 12px; background: var(--glass); border: 1px solid var(--border); transition: all 0.3s var(--ease); }
.sec-feat:hover { border-color: rgba(139,43,255,0.3); transform: translateX(6px); }
.sec-feat-icon { width: 36px; height: 36px; flex-shrink: 0; border-radius: 10px; background: rgba(139,43,255,0.12); border: 1px solid rgba(139,43,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.sec-feat-title { font-family: var(--font-d); font-size: 14px; font-weight: 600; color: var(--silver-2); margin-bottom: 3px; }
.sec-feat-desc { font-size: 12px; color: var(--text-2); line-height: 1.5; }

/* Pricing - Equal Card Heights */
#pricing { background: var(--deep); position: relative; overflow: hidden; }
.pricing-header { text-align: center; margin-bottom: 72px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan-card { border-radius: 24px; padding: 36px 28px; position: relative; overflow: hidden; border: 1px solid var(--border); background: var(--glass); backdrop-filter: blur(20px); transition: all 0.35s var(--ease); display: flex; flex-direction: column; height: 100%; }
.plan-card:hover { transform: translateY(-8px); box-shadow: 0 25px 40px -12px rgba(139,43,255,0.25); }
.plan-elite { border-color: rgba(139,43,255,0.5); background: linear-gradient(160deg,rgba(139,43,255,0.1),rgba(99,22,180,0.05)); box-shadow: 0 0 60px rgba(139,43,255,0.2), inset 0 0 0 1px rgba(139,43,255,0.15); }
.plan-elite:hover { box-shadow: 0 0 100px rgba(139,43,255,0.35), inset 0 0 0 1px rgba(139,43,255,0.25); }
.plan-badge { position: absolute; top: 18px; right: 18px; background: linear-gradient(135deg,var(--purple),var(--purple-2)); color: #fff; padding: 4px 12px; border-radius: 100px; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.plan-tier { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--purple-3); margin-bottom: 12px; }
.plan-name { font-family: var(--font-d); font-size: 26px; font-weight: 800; color: var(--silver-2); margin-bottom: 20px; }
.plan-price { margin-bottom: 8px; }
.plan-amount { font-family: var(--font-d); font-size: 48px; font-weight: 800; color: var(--silver-2); line-height: 1; }
.plan-currency { font-size: 20px; vertical-align: super; margin-right: 2px; color: var(--text-2); }
.plan-period { font-size: 13px; color: var(--text-2); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; }
.plan-feat { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-2); }
.plan-check { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; background: rgba(139,43,255,0.15); border: 1px solid rgba(139,43,255,0.3); display: flex; align-items: center; justify-content: center; }
.plan-check svg { width: 10px; height: 10px; stroke: var(--purple-3); stroke-width: 2; fill: none; }
.plan-btn { width: 100%; justify-content: center; font-size: 13px; margin-top: auto; }
.plan-elite::before { content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 1px; height: 120px; background: linear-gradient(var(--purple-3),transparent); }
.plan-elite::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--purple),transparent); }

/* Testimonials */
#testimonials { position: relative; overflow: hidden; }
.testi-header { text-align: center; margin-bottom: 72px; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card { padding: 32px; border-radius: 20px; position: relative; overflow: hidden; }
.testi-stars { color: var(--purple-3); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.testi-quote { font-family: var(--font-b); font-size: 15px; font-style: italic; font-weight: 300; color: var(--text); line-height: 1.75; margin-bottom: 24px; position: relative; z-index: 1; }
.testi-quote::before { content: '\201C'; font-family: var(--font-d); font-size: 60px; color: rgba(139,43,255,0.2); position: absolute; top: -10px; left: -8px; line-height: 1; z-index: -1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--purple),var(--purple-3)); display: flex; align-items: center; justify-content: center; font-family: var(--font-d); font-size: 15px; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-name { font-family: var(--font-d); font-size: 14px; font-weight: 600; color: var(--silver-2); }
.testi-role { font-size: 11px; color: var(--text-3); margin-top: 2px; }

/* Footer */
footer { background: var(--deep); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand-desc { font-size: 13px; color: var(--text-3); line-height: 1.8; max-width: 240px; margin-top: 16px; }
.footer-col-title { font-family: var(--font-d); font-size: 12px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--silver); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--text-3); transition: color 0.2s; }
.footer-links a:hover { color: var(--purple-3); }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-btn { width: 36px; height: 36px; border-radius: 10px; background: var(--glass); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-2); font-size: 14px; transition: all 0.25s var(--ease); }
.social-btn:hover { border-color: rgba(139,43,255,0.4); color: var(--purple-3); box-shadow: var(--glow-sm); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--text-3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: var(--text-3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--purple-3); }

/* Reveal Animations */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: var(--delay,0s); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(.92); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: var(--delay,0s); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Responsive - Enhanced */
@media (max-width: 1024px) {
  .app-grid { grid-template-columns: 1fr; gap: 48px; }
  .app-text { padding-right: 0; }
  .phone-wrap { order: -1; }
  .sec-grid { grid-template-columns: 1fr; gap: 48px; }
  .sec-visual { order: -1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .sims-grid { grid-template-columns: 1fr; max-width: 360px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 0; }
  #hero { padding-top: 80px; }
  .hero-float-1, .hero-float-2 { display: none; }
  .hero-title { font-size: clamp(40px, 12vw, 72px); }
  .hero-sub { font-size: 14px; padding: 0 16px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
  .hero-btns .btn { width: 200px; justify-content: center; }
  .coverage-stats { gap: 24px; }
  .cov-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feat-card { padding: 24px 20px; }
  .pricing-grid { gap: 24px; padding: 0 16px; }
  .plan-card { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > *:not(:first-child) { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .tech-node { padding: 14px 18px; }
  .hero-logo-img { width: min(100px, 30vw); }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .sims-grid { gap: 16px; }
  .plan-card { padding: 24px 20px; }
  .testi-card { padding: 24px; }
}

/* ================================================
   MOBILE TEXT OVERLAP FIXES
   ================================================ */

@media (max-width: 768px) {
  /* Fix tech node text overlap */
  .tech-node {
    padding: 14px 16px;
    gap: 12px;
  }
  
  .tech-node-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  
  .tech-node-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .tech-node-label {
    font-size: 13px;
    white-space: normal;
    word-break: break-word;
  }
  
  .tech-node-sub {
    font-size: 10px;
    white-space: normal;
    word-break: break-word;
  }
  
  /* Fix feature card text */
  .feat-title {
    font-size: 16px;
  }
  
  .feat-desc {
    font-size: 12px;
  }
  
  /* Fix pricing card text */
  .plan-name {
    font-size: 22px;
  }
  
  .plan-amount {
    font-size: 36px;
  }
  
  .plan-feat span {
    font-size: 12px;
  }
  
  /* Fix hero text */
  .hero-title {
    font-size: clamp(32px, 8vw, 56px);
    line-height: 1.2;
  }
  
  .hero-sub {
    font-size: 13px;
    padding: 0 20px;
  }
  
  /* Fix coverage stats */
  .coverage-stats {
    gap: 16px;
  }
  
  .cov-stat-num {
    font-size: clamp(28px, 5vw, 48px);
  }
  
  .cov-stat-label {
    font-size: 10px;
  }
  
  /* Fix testimonials */
  .testi-quote {
    font-size: 13px;
  }
  
  .testi-name {
    font-size: 13px;
  }
  
  .testi-role {
    font-size: 10px;
  }
  
  /* Fix SIM cards */
  .sim-logo {
    font-size: 12px;
  }
  
  .sim-name {
    font-size: 7px;
  }
}

@media (max-width: 480px) {
  /* Extra small devices */
  .tech-node {
    padding: 12px 12px;
  }
  
  .tech-node-label {
    font-size: 12px;
  }
  
  .tech-node-sub {
    font-size: 9px;
  }
  
  .plan-features {
    gap: 8px;
  }
  
  .plan-feat {
    gap: 6px;
    font-size: 11px;
  }
  
  .feature-tag {
    font-size: 10px;
  }
}
