/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --slate: #0d1b2a;
  --slate-light: #152438;
  --slate-lighter: #1e3347;
  --cyan: #00e5ff;
  --cyan-dim: rgba(0,229,255,0.12);
  --orange: #ff6b35;
  --orange-dim: rgba(255,107,53,0.12);
  --light: #f4f7fa;
  --light-mid: #e8eef4;
  --gray: #7a8fa6;
  --white: #ffffff;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--slate);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--slate);
  border-bottom: 1px solid rgba(0,229,255,0.1);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 0.03em;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--cyan); }

/* === HERO === */
.hero {
  background: var(--slate);
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-spray {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.07;
}
.hero-spray-1 {
  width: 500px; height: 500px;
  background: var(--cyan);
  top: -100px; right: 5%;
}
.hero-spray-2 {
  width: 300px; height: 300px;
  background: var(--orange);
  bottom: 0; left: 5%;
}
.hero-spray-3 {
  width: 200px; height: 200px;
  background: var(--cyan);
  top: 40%; left: 45%;
}
.hero-content {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.95;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.6;
  max-width: 440px;
}
.hero-stat-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--slate-light);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 8px;
  overflow: hidden;
  min-width: 220px;
}
.hero-stat {
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.hero-stat:last-child { border-bottom: none; }
.hero-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.hero-stat-price {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 36px;
  color: var(--cyan);
  line-height: 1;
}
.hero-stat-next {
  color: var(--orange);
  font-size: 28px;
}
.hero-stat-desc {
  font-size: 12px;
  color: var(--gray);
}
.hero-divider {
  max-width: 1140px;
  margin: 40px auto 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.hero-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(0,229,255,0.15);
}
.hero-divider-icon { width: 20px; height: 20px; }
.hero-proof {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}
.proof-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

/* === SERVICES === */
.services {
  background: var(--light);
  padding: 96px 24px;
}
.section-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.0;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 56px;
}
.section-title-dark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.services-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light-mid);
  border-radius: 12px;
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-2px); }
.service-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  color: var(--cyan);
}
.service-icon svg { width: 48px; height: 48px; }
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--slate);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.service-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  padding: 4px 10px;
  border-radius: 3px;
}

/* === PRICING === */
.pricing {
  background: var(--slate);
  padding: 96px 24px;
}
.pricing-header {
  max-width: 1140px;
  margin: 0 auto 56px;
}
.pricing-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.pricing-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-card-focus {
  border-color: var(--cyan);
  position: relative;
}
.pricing-card-inner { padding: 32px; }
.pricing-tier-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  display: inline-block;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 16px;
}
.pricing-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 52px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-note {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}
.pricing-cta {
  background: var(--cyan);
  color: var(--slate);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
}
.pricing-cta-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.pricing-note-line {
  max-width: 1140px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--gray);
}

/* === SERVICE AREA === */
.service-area {
  background: var(--white);
  padding: 96px 24px;
}
.sa-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sa-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.sa-sub {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 36px;
}
.sa-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.city-tag {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  background: var(--light);
  border: 1px solid var(--light-mid);
  padding: 6px 14px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}
.sa-map-graphic {
  position: relative;
}
.map-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.map-row {
  display: flex;
  gap: 6px;
}
.map-cell {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 3px;
  background: var(--light-mid);
  transition: background 0.2s;
}
.map-cell-active {
  background: var(--cyan-dim);
  border: 1px solid rgba(0,229,255,0.3);
}
.map-cell-hub {
  background: rgba(0,229,255,0.25);
  border-color: var(--cyan);
  position: relative;
}
.map-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  font-size: 12px;
  color: var(--gray);
}
.map-legend-dot {
  width: 12px; height: 12px;
  border-radius: 2px;
}
.map-legend-active {
  background: var(--cyan-dim);
  border: 1px solid rgba(0,229,255,0.4);
}
.map-legend-hub {
  background: rgba(0,229,255,0.3);
  border: 1px solid var(--cyan);
}

/* === MANIFESTO === */
.manifesto {
  background: var(--light);
  padding: 96px 24px;
}
.manifesto-inner {
  max-width: 1140px;
  margin: 0 auto;
}
.manifesto-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 32px;
}
.manifesto-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.manifesto-col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--slate);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.manifesto-col p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 14px;
}
.manifesto-divider-v {
  width: 1px;
  background: var(--light-mid);
  align-self: stretch;
}
.manifesto-quote {
  background: var(--slate);
  padding: 40px 48px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.manifesto-quote::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--cyan);
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 80px;
  color: var(--cyan);
  opacity: 0.3;
  position: absolute;
  top: -10px; left: 40px;
  line-height: 1;
}
.manifesto-quote p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

/* === CLOSING === */
.closing {
  background: var(--slate);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}
.closing-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,229,255,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(255,107,53,0.05) 0%, transparent 50%);
}
.closing-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.closing-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 48px;
}
.closing-signal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.signal-pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* === FOOTER === */
.footer {
  background: #070f18;
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--gray);
}
.footer-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: var(--gray);
}
.footer-col-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}
.footer-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-proof { gap: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .sa-inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-split { grid-template-columns: 1fr; }
  .manifesto-divider-v { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-info { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .pricing-note-line { font-size: 12px; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 20px 40px; }
  .services, .pricing, .service-area, .manifesto, .closing { padding: 64px 20px; }
}