/* ============================================================
   HYDRIFY ENERGY — COMPLETE STYLESHEET
   ============================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── NEW THEME: Steel-Teal / Silver-Navy ── */
  --cyan:    #3dd6e8;
  --green:   #2ee8a0;
  --purple:  #5b8dee;
  --dark:    #060d1a;
  --dark2:   #0a1628;
  --dark3:   #0e1f38;
  --border:  rgba(61,214,232,.16);
  --borderG: rgba(61,214,232,.42);
  --text:    #e8f4f8;
  --muted:   #8ab4c4;
  --grad:    linear-gradient(135deg,#3dd6e8,#2ee8a0);
  --grad2:   linear-gradient(135deg,#5b8dee,#3dd6e8);
  --grad3:   linear-gradient(135deg,#3dd6e8,#5b8dee);
  --gradSilver: linear-gradient(135deg,#c8d8e8,#8aaabb,#3dd6e8);
  --glow:    0 0 22px rgba(61,214,232,.28);
  --glowS:   0 0 45px rgba(61,214,232,.55);
  --glowG:   0 0 22px rgba(46,232,160,.28);
  --r:       .4s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  /* subtle steel texture */
  background-image: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(61,214,232,.06) 0%, transparent 60%);
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 4px; }

/* ── UTILITIES ── */
.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-purple {
  background: var(--grad3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(16px,4vw,40px); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,229,255,.08);
  border: 1px solid var(--border);
  color: var(--cyan);
  padding: 5px 16px;
  border-radius: 30px;
  font-size: .72rem;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sec-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}

.sec-sub {
  font-size: clamp(.95rem, 2vw, 1.08rem);
  color: var(--muted);
  max-width: 780px;
  line-height: 1.85;
  margin-bottom: 44px;
}

.h3-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  margin: 56px 0 26px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 10px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  transition: transform var(--r), box-shadow var(--r);
}
.btn-primary { background: var(--grad); color: #000; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--glowS); }
.btn-outline { background: transparent; color: var(--cyan); border: 2px solid var(--cyan); }
.btn-outline:hover { background: rgba(0,229,255,.1); transform: translateY(-3px); box-shadow: var(--glow); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(6,13,26,.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(61,214,232,.18);
  transition: box-shadow var(--r), background var(--r);
}
.navbar.scrolled {
  background: rgba(6,13,26,1);
  box-shadow: 0 4px 40px rgba(61,214,232,.12), 0 1px 0 rgba(61,214,232,.1);
}

.nav-wrap {
  max-width: 1340px; margin: 0 auto;
  padding: 0 clamp(16px,3vw,36px);
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}

/* ── Logo ── */
.nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  /* bright glow so logo pops on dark bg */
  filter:
    brightness(1.25)
    contrast(1.1)
    drop-shadow(0 0 10px rgba(61,214,232,.7))
    drop-shadow(0 0 22px rgba(61,214,232,.35));
  transition: filter var(--r), transform var(--r);
}
.nav-logo-img:hover {
  filter:
    brightness(1.4)
    contrast(1.15)
    drop-shadow(0 0 16px rgba(61,214,232,.9))
    drop-shadow(0 0 32px rgba(61,214,232,.5));
  transform: scale(1.05);
}

.nav-links { display: flex; list-style: none; gap: 2px; align-items: center; }
.nav-links a {
  color: var(--muted); font-size: .82rem; font-weight: 500;
  padding: 7px 11px; border-radius: 7px;
  transition: color var(--r), background var(--r);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); background: rgba(0,229,255,.08); }
.nav-links .nav-cta {
  background: var(--grad); color: #000 !important;
  font-family: 'Orbitron', sans-serif; font-weight: 700;
  padding: 8px 18px; border-radius: 8px; margin-left: 6px;
}
.nav-links .nav-cta:hover { transform: translateY(-1px); box-shadow: var(--glow); background: var(--grad); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; z-index: 10;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cyan); border-radius: 2px;
  transition: transform var(--r), opacity var(--r);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   DROPDOWN NAV
   ============================================================ */

/* Dropdown parent */
.nav-dropdown {
  position: relative;
}

/* Toggle link with arrow */
.nav-drop-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 500;
  padding: 7px 11px;
  border-radius: 7px;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--r), background var(--r);
  font-family: 'Orbitron', sans-serif;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.nav-drop-toggle:hover,
.nav-dropdown.open > .nav-drop-toggle {
  color: var(--cyan);
  background: rgba(61,214,232,.08);
}

/* Animated arrow */
.drop-arrow {
  flex-shrink: 0;
  transition: transform var(--r);
  color: currentColor;
  opacity: .7;
}
.nav-dropdown.open > .nav-drop-toggle .drop-arrow {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown panel */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 220px;
  background: rgba(6,13,26,.97);
  border: 1px solid rgba(61,214,232,.22);
  border-radius: 14px;
  padding: 8px;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 16px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(61,214,232,.06), 0 4px 24px rgba(61,214,232,.1);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 2000;
}

/* Small top notch/arrow pointer */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(6,13,26,.97);
  border-left: 1px solid rgba(61,214,232,.22);
  border-top: 1px solid rgba(61,214,232,.22);
}

/* Open state */
.nav-dropdown.open > .dropdown-menu,
.nav-dropdown:hover > .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown items */
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  color: var(--muted);
  font-size: .83rem;
  font-weight: 500;
  transition: color var(--r), background var(--r), padding-left var(--r);
  white-space: nowrap;
}
.dropdown-menu li a:hover {
  color: var(--cyan);
  background: rgba(61,214,232,.09);
  padding-left: 18px;
}

/* Separator between items */
.dropdown-menu li + li {
  border-top: 1px solid rgba(61,214,232,.06);
}

/* Icon in dropdown item */
.dm-icon {
  font-size: 1rem;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

/* ── Mobile dropdown ── */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(61,214,232,.04);
    border-left: 2px solid rgba(61,214,232,.25);
    margin: 4px 0 4px 12px;
    padding: 4px 0;
    /* collapsed by default on mobile */
    display: none;
  }
  .nav-dropdown.open > .dropdown-menu {
    display: block;
  }
  .dropdown-menu::before { display: none; }
  .dropdown-menu li + li { border-top: none; }
  .dropdown-menu li a {
    padding: 8px 12px;
    font-size: .8rem;
  }
  .nav-drop-toggle {
    font-size: .8rem;
    width: 100%;
    justify-content: space-between;
    padding: 10px 16px;
    border-radius: 0;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: clamp(100px,14vw,140px) clamp(16px,4vw,40px) clamp(60px,8vw,80px);
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(61,214,232,.16) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 90%, rgba(46,232,160,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 10% 80%, rgba(91,141,238,.08) 0%, transparent 60%),
    var(--dark);
}

/* animated grid */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,229,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,.04) 1px, transparent 1px);
  background-size: 55px 55px;
  animation: gridScroll 25s linear infinite;
}
@keyframes gridScroll { to { transform: translateY(55px); } }

/* floating orbs */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); opacity: .35;
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(61,214,232,.15); top: -120px; left: -100px; animation: orbFloat 12s ease-in-out infinite; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(46,232,160,.1); bottom: -80px; right: -80px; animation: orbFloat 15s ease-in-out infinite reverse; }
.hero-orb-3 { width: 300px; height: 300px; background: rgba(91,141,238,.1); top: 40%; left: 60%; animation: orbFloat 10s ease-in-out infinite 3s; }
@keyframes orbFloat { 0%,100% { transform: translate(0,0); } 33% { transform: translate(30px,-20px); } 66% { transform: translate(-20px,30px); } }

.hero-inner { position: relative; z-index: 2; max-width: 920px; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,229,255,.1);
  border: 1px solid rgba(0,229,255,.4);
  color: var(--cyan);
  padding: 8px 22px; border-radius: 40px;
  font-size: .78rem; font-family: 'Orbitron', sans-serif;
  letter-spacing: 2px; margin-bottom: 28px;
  animation: pillPulse 3s ease-in-out infinite;
}
.hero-pill::before { content: ''; width: 7px; height: 7px; background: var(--cyan); border-radius: 50%; animation: dot 1.5s ease-in-out infinite; }
@keyframes pillPulse { 0%,100% { box-shadow: 0 0 12px rgba(61,214,232,.2); } 50% { box-shadow: 0 0 28px rgba(61,214,232,.55); } }
@keyframes dot { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.4rem, 7.5vw, 5.2rem);
  font-weight: 900; line-height: 1.08;
  color: #fff; margin-bottom: 18px;
  text-shadow: 0 0 60px rgba(0,229,255,.15);
}

.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: var(--cyan); font-family: 'Rajdhani', sans-serif;
  font-weight: 600; letter-spacing: 2.5px; margin-bottom: 22px;
}

.hero-desc {
  font-size: clamp(.9rem, 1.8vw, 1.05rem);
  color: var(--muted); max-width: 680px;
  margin: 0 auto 40px; line-height: 1.85;
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 64px; }

/* stats bar */
.hero-stats {
  display: flex; gap: clamp(16px,3vw,40px);
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px; position: relative; z-index: 2;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 900;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.stat-label { font-size: .78rem; color: var(--muted); margin-top: 4px; letter-spacing: 1px; }
.stat-divider { width: 1px; background: var(--border); align-self: stretch; }

/* feature cards row */
.hero-feats {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; position: relative; z-index: 2;
  width: 100%; max-width: 1050px;
}
.hf-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: rgba(4,21,37,.85);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 20px;
  min-width: 140px; flex: 1; max-width: 180px;
  backdrop-filter: blur(12px);
  transition: border-color var(--r), transform var(--r), box-shadow var(--r);
}
.hf-card:hover { border-color: var(--cyan); transform: translateY(-5px); box-shadow: var(--glow); }
.hf-icon { font-size: 1.9rem; }
.hf-card span { font-size: .75rem; color: var(--muted); text-align: center; font-weight: 500; line-height: 1.4; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: clamp(70px,10vw,110px) 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
  position: relative;
}
.about::after {
  content: '';
  position: absolute; bottom: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--borderG), transparent);
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px,5vw,64px); margin-bottom: clamp(50px,7vw,80px);
  align-items: start;
}

.about-left .tag { margin-bottom: 14px; }
.about-left p { color: var(--muted); margin-bottom: 16px; line-height: 1.85; font-size: .97rem; }

.vc, .mc {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 28px;
  margin-bottom: 18px;
  transition: border-color var(--r), box-shadow var(--r), transform var(--r);
}
.vc:hover, .mc:hover { border-color: var(--cyan); box-shadow: var(--glow); transform: translateY(-3px); }
.vc h3, .mc h3 {
  font-family: 'Orbitron', sans-serif; font-size: .9rem;
  color: var(--cyan); margin-bottom: 12px;
}
.vc p { color: var(--muted); line-height: 1.8; font-size: .95rem; }
.mc ul { list-style: none; }
.mc ul li {
  color: var(--muted); padding: 7px 0; font-size: .88rem;
  border-bottom: 1px solid rgba(0,229,255,.06);
  display: flex; align-items: flex-start; gap: 8px;
}
.mc ul li:last-child { border-bottom: none; }

/* "What makes us different" */
.diff-wrap {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 24px; padding: clamp(28px,4vw,56px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px,4vw,56px); align-items: start;
}

.diff-text p { color: var(--muted); line-height: 1.85; margin-bottom: 18px; font-size: .97rem; }
.diff-badge {
  background: rgba(0,229,255,.08);
  border: 1px solid var(--borderG);
  border-radius: 10px; padding: 14px 18px;
  color: var(--cyan); font-weight: 600; font-size: .9rem;
}

.feat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.fc {
  background: rgba(0,229,255,.04);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 18px 14px;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-align: center;
  transition: border-color var(--r), background var(--r), transform var(--r);
}
.fc:hover { border-color: var(--cyan); background: rgba(0,229,255,.09); transform: translateY(-3px); }
.fc-icon { font-size: 1.7rem; }
.fc span { font-size: .76rem; color: var(--muted); font-weight: 500; line-height: 1.4; }

/* ============================================================
   EV ERA
   ============================================================ */
.ev-era {
  padding: clamp(70px,10vw,110px) 0;
  background: var(--dark);
}

.ev-segs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px; margin-bottom: 36px;
}
.ev-seg {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 14px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
  transition: border-color var(--r), transform var(--r), box-shadow var(--r);
}
.ev-seg:hover { border-color: var(--cyan); transform: translateY(-5px); box-shadow: var(--glow); }
.ev-seg-icon { font-size: 2.2rem; }
.ev-seg span { font-size: .8rem; color: var(--muted); font-weight: 500; }

.ev-quote {
  background: linear-gradient(135deg, rgba(0,229,255,.07), rgba(0,255,136,.05));
  border: 1px solid var(--borderG);
  border-radius: 16px; padding: clamp(20px,3vw,32px) clamp(20px,4vw,48px);
  text-align: center; margin: 36px 0;
}
.ev-quote p {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.05rem,2.5vw,1.35rem);
  font-weight: 600; color: var(--cyan); font-style: italic;
}

.gap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 14px; margin-bottom: 28px;
}
.gap-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 14px; padding: 22px 14px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
  transition: border-color var(--r), transform var(--r), box-shadow var(--r);
}
.gap-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--glowG); }
.gap-card .gi { font-size: 1.9rem; }
.gap-card span { font-size: .8rem; color: var(--muted); font-weight: 500; }

.gap-banner {
  background: rgba(0,255,136,.07);
  border: 1px solid rgba(0,255,136,.3);
  border-radius: 12px; padding: 18px 26px;
  color: var(--green); font-weight: 600;
  text-align: center; font-size: .97rem;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 22px;
}
.focus-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px 24px;
  position: relative; overflow: hidden;
  transition: border-color var(--r), transform var(--r), box-shadow var(--r);
}
.focus-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform var(--r);
}
.focus-card:hover::before { transform: scaleX(1); }
.focus-card:hover { border-color: var(--cyan); transform: translateY(-5px); box-shadow: var(--glow); }
.focus-icon { font-size: 2.4rem; margin-bottom: 14px; }
.focus-card h4 { font-family: 'Orbitron', sans-serif; font-size: .82rem; color: var(--cyan); margin-bottom: 10px; }
.focus-card p { color: var(--muted); font-size: .88rem; line-height: 1.65; }

/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions {
  padding: clamp(70px,10vw,110px) 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}

.charger-wrap {
  display: grid; grid-template-columns: 1fr 320px;
  gap: clamp(28px,4vw,56px);
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 24px; padding: clamp(28px,4vw,52px);
  margin-bottom: 36px; align-items: center;
  position: relative; overflow: hidden;
  transition: border-color var(--r), box-shadow var(--r);
}
.charger-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
  background: var(--grad);
}
.charger-wrap:hover { border-color: var(--cyan); box-shadow: var(--glow); }
.charger-wrap.alt { grid-template-columns: 320px 1fr; }
.charger-wrap.alt::before { left: auto; right: 0; }

.c-badge {
  display: inline-block;
  background: var(--grad); color: #000;
  padding: 5px 18px; border-radius: 20px;
  font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: .9rem;
  margin-bottom: 14px;
}
.c-badge.green { background: linear-gradient(135deg,#00ff88,#00e5ff); }

.charger-info h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.3rem,3vw,1.9rem); color: #fff; margin-bottom: 6px;
}
.c-sub { color: var(--cyan); font-weight: 600; margin-bottom: 14px; font-size: .95rem; }
.charger-info > p { color: var(--muted); line-height: 1.8; margin-bottom: 26px; font-size: .95rem; }

.apps-label, .hl-label {
  font-family: 'Orbitron', sans-serif; font-size: .72rem;
  color: var(--cyan); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px;
}
.apps-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 26px; }
.app-chip {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  background: rgba(0,229,255,.05); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px; min-width: 80px; text-align: center;
  transition: border-color var(--r), background var(--r);
}
.app-chip:hover { border-color: var(--cyan); background: rgba(0,229,255,.1); }
.app-chip span { font-size: 1.4rem; }
.app-chip small { font-size: .68rem; color: var(--muted); line-height: 1.3; }

.hl-row { display: flex; gap: 8px; flex-wrap: wrap; }
.hl-chip {
  background: rgba(0,229,255,.07); border: 1px solid var(--border);
  border-radius: 8px; padding: 7px 13px;
  font-size: .78rem; color: var(--muted); font-weight: 500;
  transition: border-color var(--r), color var(--r);
}
.hl-chip:hover { border-color: var(--cyan); color: var(--cyan); }

/* charger visual */
.charger-vis {
  display: flex; align-items: center; justify-content: center;
}
.charger-box {
  width: 180px; height: 300px;
  background: linear-gradient(180deg, #0a2a3a 0%, #041525 100%);
  border: 2px solid var(--cyan); border-radius: 18px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  box-shadow: 0 0 50px rgba(0,229,255,.25), inset 0 0 30px rgba(0,229,255,.04);
  position: relative; overflow: hidden;
  animation: chargerPulse 3s ease-in-out infinite;
}
@keyframes chargerPulse { 0%,100% { box-shadow: 0 0 30px rgba(61,214,232,.2), inset 0 0 20px rgba(61,214,232,.03); } 50% { box-shadow: 0 0 60px rgba(61,214,232,.4), inset 0 0 30px rgba(61,214,232,.07); } }
.charger-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
}
.c-screen {
  font-family: 'Orbitron', sans-serif; font-size: 1.5rem; font-weight: 700;
  color: var(--cyan); text-shadow: 0 0 14px var(--cyan);
}
.c-emoji { font-size: 3.5rem; filter: drop-shadow(0 0 12px var(--cyan)); animation: float 3s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.c-brand {
  font-family: 'Orbitron', sans-serif; font-size: .6rem;
  color: rgba(0,229,255,.5); letter-spacing: 2px;
}

/* ============================================================
   TECHNOLOGY
   ============================================================ */
.technology {
  padding: clamp(70px,10vw,110px) 0;
  background: var(--dark);
}

.bc-hero {
  display: grid; grid-template-columns: 1fr auto;
  gap: clamp(28px,4vw,56px);
  background: linear-gradient(135deg, rgba(124,77,255,.1), rgba(0,229,255,.07));
  border: 1px solid rgba(124,77,255,.3);
  border-radius: 24px; padding: clamp(28px,4vw,52px);
  margin-bottom: 56px; align-items: center;
}
.bc-hero-text h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.2rem,3vw,1.7rem); color: #fff; margin-bottom: 14px;
}
.bc-hero-text p { color: var(--muted); line-height: 1.85; font-size: .97rem; }

.bc-anim {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  min-width: 140px;
}
.bc-cube { font-size: 4.5rem; filter: drop-shadow(0 0 20px var(--purple)); animation: float 3s ease-in-out infinite; }
.bc-nodes { display: flex; gap: 6px; }
.bc-nodes span { font-size: 1.1rem; color: var(--cyan); animation: blink 2s ease-in-out infinite; }
.bc-nodes span:nth-child(2) { animation-delay: .25s; }
.bc-nodes span:nth-child(3) { animation-delay: .5s; }
.bc-nodes span:nth-child(4) { animation-delay: .75s; }
.bc-nodes span:nth-child(5) { animation-delay: 1s; }
.bc-nodes span:nth-child(6) { animation-delay: 1.25s; }
@keyframes blink { 0%,100% { opacity: .25; } 50% { opacity: 1; } }

.bc-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-bottom: 56px;
}
.bc-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 18px; padding: 30px 24px;
  position: relative; overflow: hidden;
  transition: border-color var(--r), transform var(--r), box-shadow var(--r);
}
.bc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--grad2); transform: scaleX(0); transform-origin: left;
  transition: transform var(--r);
}
.bc-card:hover::after { transform: scaleX(1); }
.bc-card:hover { border-color: var(--purple); transform: translateY(-5px); box-shadow: 0 0 24px rgba(124,77,255,.22); }
.bc-icon { font-size: 2.3rem; margin-bottom: 14px; }
.bc-card h4 { font-family: 'Orbitron', sans-serif; font-size: .82rem; color: var(--cyan); margin-bottom: 10px; }
.bc-card p { color: var(--muted); font-size: .88rem; line-height: 1.65; }

.smart-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 14px;
}
.sf {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 14px;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  text-align: center;
  transition: border-color var(--r), transform var(--r), box-shadow var(--r);
}
.sf:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: var(--glow); }
.sf span { font-size: 1.7rem; }
.sf small { font-size: .74rem; color: var(--muted); font-weight: 500; line-height: 1.4; }

/* ============================================================
   BUSINESS MODELS
   ============================================================ */
.business {
  padding: clamp(70px,10vw,110px) 0;
  background: linear-gradient(180deg, var(--dark2) 0%, var(--dark) 100%);
}

.bm-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px;
}
.bm-card {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 20px; padding: clamp(24px,3vw,36px);
  position: relative; overflow: hidden;
  transition: border-color var(--r), transform var(--r), box-shadow var(--r);
}
.bm-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform var(--r);
}
.bm-card:hover::before { transform: scaleX(1); }
.bm-card:hover { border-color: var(--cyan); transform: translateY(-5px); box-shadow: var(--glow); }

.bm-num {
  font-family: 'Orbitron', sans-serif; font-size: 2.8rem; font-weight: 900;
  color: rgba(0,229,255,.08); position: absolute; top: 14px; right: 18px; line-height: 1;
}
.bm-card h3 { font-family: 'Orbitron', sans-serif; font-size: .95rem; color: #fff; margin-bottom: 5px; }
.bm-sub { color: var(--cyan); font-size: .8rem; font-weight: 600; margin-bottom: 12px; }
.bm-card > p { color: var(--muted); line-height: 1.75; margin-bottom: 16px; font-size: .9rem; }
.bm-card ul { list-style: none; margin-bottom: 16px; }
.bm-card ul li { color: var(--muted); padding: 5px 0; font-size: .87rem; display: flex; align-items: flex-start; gap: 6px; }
.bm-card ul li::before { content: '→'; color: var(--cyan); flex-shrink: 0; }

.suited-label { font-family: 'Orbitron', sans-serif; font-size: .68rem; color: var(--cyan); letter-spacing: 1px; margin-bottom: 8px; }
.suited-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.suited-tags span {
  background: rgba(0,229,255,.07); border: 1px solid var(--border);
  border-radius: 7px; padding: 5px 10px; font-size: .74rem; color: var(--muted);
}
.adv-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.adv-tags span {
  background: rgba(0,255,136,.07); border: 1px solid rgba(0,255,136,.2);
  border-radius: 7px; padding: 5px 10px; font-size: .74rem; color: var(--green);
}

/* ============================================================
   OPERATIONS
   ============================================================ */
.operations {
  padding: clamp(70px,10vw,110px) 0;
  background: var(--dark);
}

/* timeline */
.timeline {
  display: grid; grid-template-columns: repeat(6,1fr);
  gap: 0; margin-bottom: 70px; position: relative;
}
.timeline::before {
  content: ''; position: absolute;
  top: 36px; left: calc(100%/12); right: calc(100%/12);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  z-index: 0;
}
.tl-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 8px; position: relative; z-index: 1;
}
.tl-dot {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--dark2); border: 2px solid var(--cyan);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 14px;
  box-shadow: var(--glow);
  transition: background var(--r), transform var(--r);
}
.tl-step:hover .tl-dot { background: rgba(0,229,255,.15); transform: scale(1.1); }
.tl-num {
  position: absolute; top: -8px; right: calc(50% - 30px);
  background: var(--grad); color: #000;
  width: 20px; height: 20px; border-radius: 50%;
  font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: .65rem;
  display: flex; align-items: center; justify-content: center;
}
.tl-step h4 { font-family: 'Orbitron', sans-serif; font-size: .72rem; color: var(--cyan); margin-bottom: 6px; }
.tl-step p { font-size: .74rem; color: var(--muted); line-height: 1.5; }

.support-grid {
  display: grid; grid-template-columns: repeat(7,1fr); gap: 12px; margin-bottom: 56px;
}
.sup-card {
  background: var(--dark2); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 10px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
  transition: border-color var(--r), transform var(--r), box-shadow var(--r);
}
.sup-card:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: var(--glow); }
.sup-card span { font-size: 1.8rem; }
.sup-card p { font-size: .74rem; color: var(--muted); font-weight: 500; line-height: 1.4; }

.scale-box {
  background: linear-gradient(135deg, rgba(0,229,255,.07), rgba(0,255,136,.05));
  border: 1px solid var(--borderG); border-radius: 22px;
  padding: clamp(28px,4vw,52px); text-align: center;
}
.scale-box h3 { font-family: 'Orbitron', sans-serif; font-size: clamp(1.3rem,3vw,1.8rem); color: #fff; margin-bottom: 10px; }
.scale-box > p { color: var(--muted); margin-bottom: 22px; }
.scale-tags { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.scale-tags span {
  background: rgba(0,229,255,.09); border: 1px solid var(--border);
  border-radius: 10px; padding: 9px 18px;
  font-size: .88rem; color: var(--cyan); font-weight: 500;
}

/* ============================================================
   ROADMAP
   ============================================================ */
.roadmap {
  padding: clamp(70px,10vw,110px) 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark2) 100%);
}

.rm-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 70px;
}
.rm-card {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 18px; padding: 30px 24px;
  position: relative; overflow: hidden;
  transition: border-color var(--r), transform var(--r), box-shadow var(--r);
}
.rm-card:hover { border-color: var(--cyan); transform: translateY(-5px); box-shadow: var(--glow); }
.rm-n {
  position: absolute; top: 14px; right: 18px;
  font-family: 'Orbitron', sans-serif; font-size: 2.4rem; font-weight: 900;
  color: rgba(0,229,255,.07); line-height: 1;
}
.rm-icon { font-size: 2.3rem; margin-bottom: 14px; }
.rm-card h4 { font-family: 'Orbitron', sans-serif; font-size: .82rem; color: var(--cyan); margin-bottom: 8px; }
.rm-card p { color: var(--muted); font-size: .88rem; line-height: 1.65; }

.partner-box {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px,4vw,56px);
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 24px; padding: clamp(28px,4vw,56px);
  align-items: center;
}
.partner-box h3 { font-family: 'Orbitron', sans-serif; font-size: clamp(1.2rem,3vw,1.7rem); color: #fff; margin-bottom: 8px; }
.partner-sub { color: var(--cyan); font-weight: 600; font-size: .95rem; margin-bottom: 14px; }
.partner-box > div > p { color: var(--muted); margin-bottom: 14px; font-size: .95rem; }
.partner-box ul { list-style: none; margin-bottom: 28px; }
.partner-box ul li { color: var(--muted); padding: 6px 0; font-size: .92rem; }

.partner-vis {
  display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center;
}
.globe { font-size: 5.5rem; filter: drop-shadow(0 0 22px var(--cyan)); animation: float 4s ease-in-out infinite; }
.globe-tag {
  font-family: 'Orbitron', sans-serif; font-size: .88rem;
  color: var(--cyan); font-weight: 600; letter-spacing: 1px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: clamp(70px,10vw,110px) 0;
  background: var(--dark);
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(28px,4vw,56px);
  align-items: start;
}

.co-card {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 22px; padding: clamp(24px,3vw,40px);
}
.co-logo { margin-bottom: 18px; display: flex; justify-content: center; }
.co-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter:
    brightness(1.3)
    contrast(1.1)
    drop-shadow(0 0 12px rgba(61,214,232,.6))
    drop-shadow(0 0 24px rgba(61,214,232,.25));
}
.co-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1rem; color: #fff; margin-bottom: 22px; }
.co-details { display: flex; flex-direction: column; gap: 14px; }
.co-row { display: flex; gap: 12px; align-items: flex-start; }
.co-row .ico { font-size: 1.15rem; flex-shrink: 0; margin-top: 2px; }
.co-row a, .co-row span { color: var(--muted); font-size: .92rem; line-height: 1.55; transition: color var(--r); }
.co-row a:hover { color: var(--cyan); }

.cf-card {
  background: var(--dark3); border: 1px solid var(--border);
  border-radius: 22px; padding: clamp(24px,3vw,40px);
}
.cf-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; color: #fff; margin-bottom: 26px; }
.cf-form { display: flex; flex-direction: column; gap: 14px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-form input, .cf-form select, .cf-form textarea {
  background: rgba(0,229,255,.04); border: 1px solid var(--border);
  border-radius: 10px; padding: 13px 16px;
  color: var(--text); font-size: .92rem; font-family: 'Inter', sans-serif;
  outline: none; width: 100%;
  transition: border-color var(--r), box-shadow var(--r);
}
.cf-form input:focus, .cf-form select:focus, .cf-form textarea:focus {
  border-color: var(--cyan); box-shadow: 0 0 12px rgba(0,229,255,.14);
}
.cf-form input::placeholder, .cf-form textarea::placeholder { color: rgba(126,207,223,.4); }
.cf-form select option { background: var(--dark3); }
.cf-form textarea { resize: vertical; min-height: 110px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: clamp(40px,6vw,60px) 0 clamp(20px,3vw,30px);
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(16px,4vw,40px);
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.footer-logo { display: flex; align-items: center; justify-content: center; }
.footer-logo-img {
  height: 100px;
  width: auto;
  object-fit: contain;
  filter:
    brightness(1.3)
    contrast(1.1)
    drop-shadow(0 0 14px rgba(61,214,232,.65))
    drop-shadow(0 0 30px rgba(61,214,232,.3));
}
.footer-tagline { color: var(--cyan); font-family: 'Rajdhani', sans-serif; font-size: .95rem; font-weight: 600; letter-spacing: 1.5px; }
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-nav a { color: var(--muted); font-size: .85rem; transition: color var(--r); }
.footer-nav a:hover { color: var(--cyan); }
.footer-divider { width: 100%; height: 1px; background: var(--border); }
.footer-copy { color: rgba(126,207,223,.35); font-size: .78rem; text-align: center; }

/* ============================================================
   SCROLL ANIMATIONS — Fade / Slide / Zoom
   ============================================================ */

/* Base state — hidden */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity .7s cubic-bezier(.4,0,.2,1),
    transform .7s cubic-bezier(.4,0,.2,1);
  will-change: opacity, transform;
}

/* Variants */
.reveal-left  { opacity: 0; transform: translateX(-50px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal-right { opacity: 0; transform: translateX(50px);  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal-zoom  { opacity: 0; transform: scale(.88);         transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1); }
.reveal-fade  { opacity: 0;                                transition: opacity .8s ease; }

/* Visible state */
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-zoom.visible,
.reveal-fade.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.stagger-1 { transition-delay: .08s !important; }
.stagger-2 { transition-delay: .16s !important; }
.stagger-3 { transition-delay: .24s !important; }
.stagger-4 { transition-delay: .32s !important; }
.stagger-5 { transition-delay: .40s !important; }
.stagger-6 { transition-delay: .48s !important; }
.stagger-7 { transition-delay: .56s !important; }
.stagger-8 { transition-delay: .64s !important; }

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid      { grid-template-columns: 1fr; }
  .diff-wrap       { grid-template-columns: 1fr; }
  .charger-wrap    { grid-template-columns: 1fr; }
  .charger-wrap.alt{ grid-template-columns: 1fr; }
  .charger-vis     { order: -1; }
  .bc-hero         { grid-template-columns: 1fr; }
  .bc-grid         { grid-template-columns: repeat(2,1fr); }
  .smart-grid      { grid-template-columns: repeat(4,1fr); }
  .bm-grid         { grid-template-columns: repeat(2,1fr); }
  .timeline        { grid-template-columns: repeat(3,1fr); gap: 20px; }
  .timeline::before{ display: none; }
  .support-grid    { grid-template-columns: repeat(4,1fr); }
  .rm-grid         { grid-template-columns: repeat(2,1fr); }
  .partner-box     { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .ev-segs         { grid-template-columns: repeat(3,1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  /* nav */
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(2,11,24,.97);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px; gap: 4px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }

  /* hero */
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .hero-feats { gap: 8px; }
  .hf-card { min-width: 120px; padding: 14px 12px; }

  /* about */
  .feat-grid { grid-template-columns: 1fr 1fr; }

  /* ev era */
  .ev-segs { grid-template-columns: repeat(2,1fr); }

  /* solutions */
  .charger-wrap { padding: 24px 20px; }
  .charger-box  { width: 150px; height: 250px; }

  /* tech */
  .bc-grid   { grid-template-columns: 1fr; }
  .smart-grid{ grid-template-columns: repeat(2,1fr); }

  /* business */
  .bm-grid { grid-template-columns: 1fr; }

  /* operations */
  .timeline      { grid-template-columns: repeat(2,1fr); }
  .support-grid  { grid-template-columns: repeat(3,1fr); }

  /* roadmap */
  .rm-grid { grid-template-columns: 1fr; }

  /* contact */
  .cf-row { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title  { font-size: 2rem; }
  .hero-btns   { flex-direction: column; align-items: center; }
  .hero-feats  { flex-direction: column; align-items: center; }
  .hf-card     { max-width: 100%; width: 100%; flex-direction: row; justify-content: flex-start; }

  .ev-segs     { grid-template-columns: 1fr 1fr; }
  .gap-grid    { grid-template-columns: 1fr 1fr; }
  .focus-grid  { grid-template-columns: 1fr; }

  .bc-grid     { grid-template-columns: 1fr; }
  .smart-grid  { grid-template-columns: repeat(2,1fr); }

  .timeline    { grid-template-columns: 1fr; }
  .support-grid{ grid-template-columns: repeat(2,1fr); }

  .diff-wrap   { padding: 22px 18px; }
  .partner-box { padding: 24px 18px; }
  .scale-box   { padding: 24px 18px; }

  .footer-nav  { gap: 12px; }
}

/* ============================================================
   SECTION SEPARATOR LINES
   ============================================================ */
section + section { position: relative; }

/* ============================================================
   THEME OVERRIDES — Steel-Teal / Silver-Navy
   ============================================================ */

/* Metallic silver gradient text variant */
.silver-text {
  background: var(--gradSilver);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Navbar steel shimmer border */
.navbar {
  border-bottom: 1px solid rgba(61,214,232,.2);
  background: rgba(6,13,26,.94);
}
.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(61,214,232,.1), 0 1px 0 rgba(200,216,232,.06);
}

/* Nav logo image sizing on mobile */
@media (max-width: 480px) {
  .nav-logo-img  { height: 48px; }
  .footer-logo-img { height: 72px; }
  .co-logo-img   { height: 68px; }
}

/* Hero stat numbers — steel shimmer */
.stat-num {
  background: var(--gradSilver);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section tag — steel teal */
.tag {
  background: rgba(61,214,232,.08);
  border-color: rgba(61,214,232,.22);
  color: var(--cyan);
}

/* Cards — deeper navy with steel border */
.vc, .mc, .diff-wrap, .charger-wrap, .bc-hero,
.bm-card, .rm-card, .partner-box, .co-card, .cf-card,
.scale-box, .ev-quote {
  background: var(--dark3);
}

/* Scrollbar — steel teal */
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--cyan), var(--green)); }

/* Footer background — deepest navy */
.footer { background: #040b18; border-top: 1px solid rgba(61,214,232,.15); }

/* Hero grid — steel teal lines */
.hero-grid {
  background-image:
    linear-gradient(rgba(61,214,232,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,214,232,.04) 1px, transparent 1px);
}

/* Charger box border — steel teal */
.charger-box { border-color: var(--cyan); }

/* Blockchain hero border */
.bc-hero { border-color: rgba(91,141,238,.3); }

/* Section divider lines */
.about::after { background: linear-gradient(90deg, transparent, rgba(61,214,232,.35), transparent); }

/* Button hover glow */
.btn-outline { color: var(--cyan); border-color: var(--cyan); }
.btn-outline:hover { background: rgba(61,214,232,.1); box-shadow: var(--glow); }

/* Gap banner — steel green */
.gap-banner { background: rgba(46,232,160,.07); border-color: rgba(46,232,160,.28); color: var(--green); }

/* Scale box glow */
.scale-box { border-color: rgba(61,214,232,.38); }

/* Timeline dot glow */
.tl-dot { border-color: var(--cyan); box-shadow: 0 0 16px rgba(61,214,232,.25); }

/* Partner box */
.partner-box { border-color: rgba(61,214,232,.18); }

/* EV quote border */
.ev-quote { border-color: rgba(61,214,232,.38); }
