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

:root {
  --bg: #03040a;
  --neon-blue: #00cfff;
  --neon-purple: #bf5fff;
  --neon-pink: #ff3fa4;
  --neon-green: #39ff89;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.10);
  --glass-hover: rgba(255,255,255,0.08);
  --text: #e8f0ff;
  --muted: #7888aa;
  --display: 'Orbitron', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'Space Mono', monospace;
}

html { scroll-behavior: smooth; }

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

/* ── ANIMATED BACKGROUND ── */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: drift 18s ease-in-out infinite alternate;
}
.orb1 { width: 700px; height: 700px; top: -200px; left: -200px; background: radial-gradient(circle, rgba(0,207,255,0.12) 0%, transparent 70%); animation-delay: 0s; }
.orb2 { width: 600px; height: 600px; top: 30%; right: -150px; background: radial-gradient(circle, rgba(191,95,255,0.12) 0%, transparent 70%); animation-delay: -6s; }
.orb3 { width: 500px; height: 500px; bottom: -100px; left: 30%; background: radial-gradient(circle, rgba(255,63,164,0.08) 0%, transparent 70%); animation-delay: -12s; }

@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 60px) scale(1.08); }
}

/* Fine grid */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0,207,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,207,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

/* Scanline overlay */
.bg-scan {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(3,4,10,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,207,255,0.12);
}

.logo {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--text);
  text-shadow: 0 0 20px rgba(0,207,255,0.5);
}
.logo span {
  color: var(--neon-blue);
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s, text-shadow 0.2s;
}
.nav-links a:hover {
  color: var(--neon-blue);
  text-shadow: 0 0 12px rgba(0,207,255,0.6);
}

.nav-cta {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 9px 22px;
  background: transparent;
  border: 1px solid var(--neon-blue);
  color: var(--neon-blue);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 12px rgba(0,207,255,0.15), inset 0 0 12px rgba(0,207,255,0.05);
}
.nav-cta:hover {
  color: var(--bg);
  background: var(--neon-blue);
  box-shadow: 0 0 30px rgba(0,207,255,0.5);
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  z-index: 1;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Rotating ring decoration */
.hero-ring {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(0,207,255,0.12);
  animation: spin-slow 30s linear infinite;
  pointer-events: none;
}
.hero-ring::before {
  content: '';
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  border: 1px solid rgba(191,95,255,0.10);
  animation: spin-slow 20s linear infinite reverse;
}
.hero-ring::after {
  content: '';
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255,63,164,0.08);
}

/* Dot on ring */
.ring-dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--neon-blue);
  border-radius: 50%;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 16px var(--neon-blue), 0 0 40px rgba(0,207,255,0.4);
}

@keyframes spin-slow {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neon-blue);
  margin-bottom: 2rem;
}
.hero-tag::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--neon-blue);
  box-shadow: 0 0 8px var(--neon-blue);
}

.hero-headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  max-width: 700px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-headline .grad {
  background: linear-gradient(90deg, var(--neon-blue) 0%, var(--neon-purple) 50%, var(--neon-pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0,207,255,0.3));
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-neon {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: var(--bg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  position: relative;
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.1s;
  box-shadow: 0 0 30px rgba(0,207,255,0.3), 0 0 60px rgba(191,95,255,0.15);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-neon:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0,207,255,0.5), 0 0 80px rgba(191,95,255,0.25);
}

.btn-outline-neon {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 14px 36px;
  background: transparent;
  border: 1px solid rgba(0,207,255,0.3);
  color: var(--neon-blue);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, box-shadow 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-outline-neon:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0,207,255,0.2), inset 0 0 20px rgba(0,207,255,0.05);
}

.hero-metrics {
  display: flex;
  gap: 0;
  margin-top: 4rem;
}
.metric {
  padding: 1.25rem 2.5rem 1.25rem 0;
  margin-right: 2.5rem;
  border-right: 1px solid rgba(0,207,255,0.12);
}
.metric:last-child { border-right: none; }
.metric-num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 3px;
}

/* ── SHARED SECTION ── */
section { position: relative; z-index: 1; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 5%;
}

.section-eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--neon-purple);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--neon-purple);
  box-shadow: 0 0 6px var(--neon-purple);
}

.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  max-width: 500px;
  line-height: 1.8;
}

/* ── GLASS CARD ── */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.glass:hover {
  background: var(--glass-hover);
  border-color: rgba(0,207,255,0.2);
  box-shadow: 0 0 30px rgba(0,207,255,0.06);
}

/* ── SERVICES ── */
#services { border-top: 1px solid rgba(255,255,255,0.04); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 4rem;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
}

.service-card {
  background: rgba(3,4,10,0.8);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: linear-gradient(180deg, var(--neon-blue), var(--neon-purple));
  transition: height 0.4s ease;
  box-shadow: 0 0 12px var(--neon-blue);
}
.service-card:hover { background: rgba(0,207,255,0.03); }
.service-card:hover::before { height: 100%; }

.svc-num {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--neon-blue);
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  opacity: 0.6;
}

.svc-icon {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  display: block;
}

.svc-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.svc-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── PRICING ── */
#pricing { background: rgba(0,0,0,0.3); border-top: 1px solid rgba(255,255,255,0.04); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.pricing-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: rgba(0,207,255,0.3) !important;
  box-shadow: 0 0 40px rgba(0,207,255,0.07), inset 0 0 40px rgba(0,207,255,0.02);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,207,255,0.04) 0%, rgba(191,95,255,0.04) 100%);
  pointer-events: none;
}

.featured-badge {
  position: absolute;
  top: 0; right: 0;
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  color: var(--bg);
  font-weight: 700;
  clip-path: polygon(8px 0%, 100% 0%, 100% 100%, 0% 100%);
}

.plan-tier {
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.plan-price {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
  background: linear-gradient(90deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.plan-price-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
  font-weight: 300;
}

.plan-features { list-style: none; margin-bottom: 2rem; }
.plan-features li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 7px 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 300;
}
.plan-features li::before {
  content: '◆';
  color: var(--neon-blue);
  font-size: 0.5rem;
  margin-top: 5px;
  flex-shrink: 0;
  text-shadow: 0 0 8px var(--neon-blue);
}

.plan-btn {
  display: block;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 13px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  font-weight: 700;
}
.plan-btn-outline {
  border: 1px solid rgba(0,207,255,0.2);
  color: var(--muted);
  background: transparent;
}
.plan-btn-outline:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  box-shadow: 0 0 16px rgba(0,207,255,0.15);
}
.plan-btn-grad {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: var(--bg);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.plan-btn-grad:hover {
  opacity: 0.88;
  box-shadow: 0 0 30px rgba(0,207,255,0.4);
}

/* ── TESTIMONIALS ── */
#testimonials { border-top: 1px solid rgba(255,255,255,0.04); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.testi-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.testi-accent {
  position: absolute;
  top: 0; left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
  opacity: 0.5;
}

.testi-quote {
  font-size: 2.5rem;
  line-height: 1;
  font-family: var(--display);
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.testi-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.testi-author { display: flex; align-items: center; gap: 12px; }

.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 2px;
  background: rgba(0,207,255,0.08);
  border: 1px solid rgba(0,207,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--neon-blue);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  box-shadow: inset 0 0 10px rgba(0,207,255,0.1);
}

.testi-name {
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.testi-role {
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 2px;
}

/* ── CONTACT ── */
#contact { background: rgba(0,0,0,0.4); border-top: 1px solid rgba(255,255,255,0.04); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: block;
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  background: rgba(0,207,255,0.03);
  border: 1px solid rgba(0,207,255,0.12);
  color: var(--text);
  padding: 12px 16px;
  font-family: var(--body);
  font-size: 0.875rem;
  font-weight: 300;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 16px rgba(0,207,255,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(120,136,170,0.5); }
.form-select option { background: #0d0f1c; }
.form-textarea { resize: vertical; min-height: 110px; }

.form-submit {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 15px 40px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: var(--bg);
  border: none;
  cursor: pointer;
  font-weight: 700;
  align-self: flex-start;
  transition: opacity 0.2s, box-shadow 0.2s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.form-submit:hover {
  opacity: 0.88;
  box-shadow: 0 0 30px rgba(0,207,255,0.4);
}

.contact-right { padding-top: 0.5rem; }

.contact-info-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--glass-border);
}
.ci-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--neon-blue);
  margin-bottom: 4px;
}
.ci-value {
  font-size: 0.95rem;
  color: var(--text);
}
.ci-value a { color: var(--neon-blue); text-decoration: none; text-shadow: 0 0 12px rgba(0,207,255,0.3); }

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  color: var(--neon-green);
}
.status-dot::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(0,207,255,0.1);
  background: rgba(0,0,0,0.5);
  padding: 2rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--display);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--text);
  text-shadow: 0 0 16px rgba(0,207,255,0.4);
}
.footer-logo span { color: var(--neon-blue); }

.footer-copy {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--neon-blue); text-shadow: 0 0 10px rgba(0,207,255,0.4); }

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ring { display: none; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .nav-links { display: none; }
  .hero-metrics { flex-wrap: wrap; gap: 1.5rem; }
  .metric { border-right: none; margin-right: 0; padding-right: 0; }
}