/* =============================
   VARIABLES
============================= */
:root {
  --bg: #050b1a;
  --primary: #00e0ff;
  --primary-strong: #007bff;
  --accent: #00e0ff;
  --text: #ffffff;
  --muted: #b8c8ff;
  --success: #4ade80;
  --danger: #f97373;
  --glass-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --glass-hover: rgba(255,255,255,0.10);
  --glow: rgba(0,224,255,0.25);
}

/* =============================
   RESET & BASE
============================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Titillium Web', Inter, system-ui, sans-serif;
  background: #050b1a;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Offset for WP admin bar */
body.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .nav { top: 46px; } }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: rgba(0,224,255,0.3); color: #fff; }

/* =============================
   FIXED BACKGROUND
============================= */
.app-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.gradient-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, #0f2a5c 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, #1b4ed8 0%, transparent 45%),
    radial-gradient(circle at 60% 10%, #0a3a6e 0%, transparent 40%),
    linear-gradient(160deg, #040814 0%, #0b1e3a 40%, #050b1a 100%);
}

.glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,150,255,0.35) 0%, transparent 70%);
  filter: blur(130px);
  animation: floatGlow 14s infinite alternate ease-in-out;
}
.glow-1 { top: -150px; left: -200px; }
.glow-2 { bottom: -200px; right: -200px; animation-delay: 5s; background: radial-gradient(circle, rgba(0,100,255,0.3) 0%, transparent 70%); }
.glow-3 { top: 40%; right: -100px; width: 400px; height: 400px; animation-delay: 2s; }

.particles::before,
.particles::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 220px 220px;
  opacity: 0.08;
  animation: moveParticles 70s linear infinite;
}
.particles::after { animation-direction: reverse; opacity: 0.05; background-size: 180px 180px; }

@keyframes floatGlow {
  from { transform: translateY(0) translateX(0); }
  to   { transform: translateY(80px) translateX(50px); }
}
@keyframes moveParticles {
  from { transform: translateY(0); }
  to   { transform: translateY(-1200px); }
}

/* =============================
   LAYOUT
============================= */
.shell {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 100px 0;
  position: relative;
}

/* =============================
   NAVBAR
============================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  backdrop-filter: blur(24px);
  background: rgba(5,11,26,0.75);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: .75rem; }

.brand-mark {
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(0,224,255,0.4);
  box-shadow: 0 0 20px rgba(0,224,255,0.3);
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }

.brand-title {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  text-shadow: 0 0 12px rgba(0,224,255,0.5);
}

.brand-sub { font-size: .75rem; color: var(--muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  padding: .45rem 1rem;
  border-radius: 10px;
  font-size: .88rem;
  color: var(--muted);
  transition: .3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.active {
  background: rgba(0,224,255,0.08);
  border-color: rgba(0,224,255,0.25);
  color: var(--primary);
  box-shadow: 0 0 20px rgba(0,224,255,0.15);
}

@media (max-width: 860px) { .nav-links { display: none; } }

.nav-btn {
  padding: .65rem 1.4rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: white;
  font-weight: 600;
  font-size: .88rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(0,224,255,0.4);
  transition: .3s;
  animation: ctaPulse 3.5s ease-out infinite;
}
.nav-btn:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0,224,255,0.6); }

@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,224,255,0.5); }
  60%  { box-shadow: 0 0 30px 12px rgba(0,224,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,224,255,0); }
}

/* =============================
   HERO
============================= */
.hero {
  padding-top: 140px;
  padding-bottom: 120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0,224,255,0.3);
  background: rgba(0,224,255,0.06);
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.hero-kicker .badge {
  font-size: .65rem;
  padding: .1rem .5rem;
  border-radius: 999px;
  background: rgba(0,224,255,0.15);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.8vw, 3.8rem);
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero h1 .accent {
  background: linear-gradient(90deg, var(--primary), var(--primary-strong));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.6rem;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}

.pill {
  padding: .3rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  font-size: .85rem;
  color: var(--muted);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}
.pill strong { color: var(--text); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-bottom: 1.8rem;
}

.btn-main {
  padding: .85rem 1.8rem;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: white;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 0 30px rgba(0,224,255,0.4);
  transition: .3s;
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(0,224,255,0.6); }

.btn-ghost {
  padding: .8rem 1.4rem;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  color: var(--muted);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  font-size: .88rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: .3s;
}
.btn-ghost:hover { background: var(--glass-hover); color: white; }

.icon-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 10px rgba(74,222,128,0.8);
}

.hero-footnote { font-size: .88rem; color: var(--muted); max-width: 30rem; line-height: 1.6; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
}

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* =============================
   SECTION HEADERS
============================= */
.section-header { max-width: 720px; margin-bottom: 3rem; }

.section-kicker {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--primary);
  margin-bottom: .5rem;
  font-weight: 700;
}

.section-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: -.02em;
  margin-bottom: .5rem;
  color: var(--text);
}

.section-sub {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* =============================
   GLASS CARD
============================= */
.glass-card {
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  padding: 1.6rem;
  transition: .4s ease;
}
.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,224,255,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(0,224,255,0.15);
}

/* =============================
   FEATURE ICON
============================= */
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 0 20px rgba(0,224,255,0.35);
  color: white;
  font-size: 1.1rem;
  transition: .4s ease;
}
.glass-card:hover .feature-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0 35px rgba(0,224,255,0.7);
}

.feature-title { font-size: 1.1rem; font-weight: 700; margin-bottom: .35rem; }
.feature-sub   { font-size: .95rem; color: var(--muted); margin-bottom: .8rem; line-height: 1.6; }
.feature-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); margin: .5rem 0 .3rem; }

.tag-row { display: flex; flex-wrap: wrap; gap: .35rem; }
.tag {
  padding: .18rem .6rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: rgba(0,224,255,0.05);
  color: var(--muted);
  font-size: .78rem;
}

/* =============================
   GRIDS
============================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}

/* =============================
   WHY SECTION
============================= */
.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr;
  gap: 3rem;
  align-items: flex-start;
}

.bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.bullet-list li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: .3s;
}
.bullet-list li:hover {
  border-color: rgba(0,224,255,0.3);
  box-shadow: 0 0 20px rgba(0,224,255,0.1);
}
.bullet-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(0,224,255,0.3);
}
.bullet-list li strong { color: var(--text); }
.bullet-list li .desc { font-size: .92rem; color: var(--muted); margin-top: .2rem; }

/* =============================
   ROLES
============================= */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}

.role-card {
  border-radius: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  padding: 1.6rem;
  transition: .4s;
}
.role-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,224,255,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(0,224,255,0.15);
}
.role-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--primary);
  margin-bottom: .4rem;
  font-weight: 700;
}
.role-title { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.role-main  { font-size: .92rem; color: var(--muted); margin-bottom: .75rem; line-height: 1.6; }
.role-list { list-style: none; font-size: .9rem; display: flex; flex-direction: column; gap: .3rem; }
.role-list li { color: var(--muted); display: flex; gap: .5rem; }
.role-list li::before { content: "›"; color: var(--primary); font-weight: 700; }

/* =============================
   STATS
============================= */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.stat-card {
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
  padding: 1.1rem 1.2rem;
  transition: .4s;
}
.stat-card:hover { border-color: rgba(0,224,255,0.3); box-shadow: 0 0 25px rgba(0,224,255,0.15); }
.stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--primary-strong));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-top: .2rem;
}
.stat-note { font-size: .78rem; color: var(--muted); margin-top: .2rem; }

/* =============================
   PILLAR HEADER
============================= */
.pillar-header {
  margin: 4rem 0 1.8rem;
  padding: 1.4rem 1.8rem;
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid rgba(0,224,255,0.2);
  backdrop-filter: blur(15px);
  border-left: 3px solid var(--primary);
}
.pillar-header .section-kicker { margin-bottom: .3rem; }
.pillar-header .section-title  { font-size: 1.4rem; margin-bottom: .3rem; }
.pillar-header .section-sub    { font-size: .95rem; }

/* =============================
   CTA
============================= */
.cta-section { padding-bottom: 100px; }
.cta-panel {
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0,224,255,0.12), rgba(0,123,255,0.08));
  border: 1px solid rgba(0,224,255,0.25);
  backdrop-filter: blur(25px);
  padding: 3rem 2.5rem;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 0 80px rgba(0,224,255,0.1);
}
.cta-panel h2 { font-size: 2rem; letter-spacing: -.02em; margin-bottom: .6rem; }
.cta-panel p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.8rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.8rem;
}
.cta-badge {
  font-size: .8rem;
  padding: .25rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(0,224,255,0.25);
  background: rgba(0,224,255,0.06);
  color: var(--muted);
}

/* =============================
   DIVIDER
============================= */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,224,255,0.2), transparent);
}

/* =============================
   FUELBYME
============================= */
.feature-image { margin-top: 20px; text-align: center; }

.fuelbyme-link { margin-top: 50px; text-align: center; }
.fuelbyme-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}
.fuelbyme-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* =============================
   FOOTER
============================= */
.contact-item svg { width: 14px; height: 14px; }

.footer {
  margin-top: 120px;
  padding: 60px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(25px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h4 { margin-bottom: 16px; font-size: 20px; color: #00e0ff; }
.footer-col p  { color: #b8c8ff; line-height: 1.6; font-size: 15px; }
.footer a { color: #00e0ff; text-decoration: none; }
.footer a:hover { text-decoration: underline; }

.header-title { color: #00e0ff; }
.header-title span { color: var(--text); }

/* =============================
   REVEAL ANIMATION
============================= */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.hidden { opacity: 0; transform: translateY(32px); }
.reveal.active  { opacity: 1; transform: translateY(0); }

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 900px) {
  .hero-grid  { grid-template-columns: 1fr; }
  .why-grid   { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 640px) {
  .shell { padding: 0 1.2rem; }
  .hero  { padding-top: 110px; }
  .cta-panel { padding: 2rem 1.4rem; }
}

.vs-cookie {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 860px;
  background: rgba(5, 11, 26, 0.92);
  border: 1px solid rgba(0, 224, 255, 0.2);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  padding: 16px 20px;
  z-index: 9999;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.vs-cookie.vs-cookie--hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

.vs-cookie-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.vs-cookie-text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 200px;
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 0.83rem;
  color: white;
  line-height: 1.5;
}

.vs-cookie-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.vs-cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.vs-cookie-btn--accept {
  background: linear-gradient(135deg, #00e0ff, #007bff);
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-family: 'Segoe UI', system-ui, sans-serif;
  white-space: nowrap;
}

.vs-cookie-btn--accept:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.vs-cookie-link {
  font-size: 0.78rem;
  color: rgba(0,224,255,0.6);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.vs-cookie-link:hover {
  color: #00e0ff;
}

@media (max-width: 540px) {
  .vs-cookie-inner { flex-direction: column; align-items: flex-start; }
  .vs-cookie { bottom: 12px; }
}