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

:root {
  --navy: #0B1F3A;
  --navy-mid: #0F2645;
  --navy-light: #142d52;
  --lime: #B8F53A;
  --lime-dim: rgba(184, 245, 58, 0.15);
  --white: #F0F4F8;
  --gray: #8899AA;
  --gray-light: #C8D4DE;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,245,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,245,58,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Animated nodes */
.node {
  position: absolute;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 4s ease-in-out infinite;
}

.n1 { width: 8px; height: 8px; top: 20%; left: 70%; animation-delay: 0s; opacity: 0.7; }
.n2 { width: 5px; height: 5px; top: 60%; left: 85%; animation-delay: 1s; opacity: 0.5; }
.n3 { width: 12px; height: 12px; top: 80%; left: 55%; animation-delay: 2s; opacity: 0.3; }
.n4 { width: 6px; height: 6px; top: 30%; left: 90%; animation-delay: 0.5s; opacity: 0.6; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(2.5); opacity: 0; }
}

/* Circuit lines */
.circuit-line {
  position: absolute;
  border-top: 1px solid rgba(184,245,58,0.08);
}
.cl1 { top: 30%; left: 0; right: 0; }
.cl2 { top: 55%; left: 0; right: 20%; border-top: 1px dashed rgba(184,245,58,0.06); }
.cl3 { top: 75%; left: 30%; right: 0; border-top: 1px solid rgba(184,245,58,0.04); }

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px 100px;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  display: inline-block;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 11vw, 148px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 0;
}

.hero-headline .line1 { display: block; }
.hero-headline .line2 { display: block; }
.hero-headline .line2 em { color: var(--lime); font-style: normal; }
.hero-headline .line3 { display: block; color: rgba(240,244,248,0.35); font-size: 0.6em; letter-spacing: 0.02em; }

.hero-accent-bar {
  width: 64px;
  height: 4px;
  background: var(--lime);
  margin: 36px 0;
}

.hero-sub {
  max-width: 540px;
  font-size: 18px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 52px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 40px;
}

.meta-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.meta-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--lime);
  line-height: 1;
}

.meta-label {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.meta-divider {
  width: 1px;
  height: 40px;
  background: rgba(184,245,58,0.15);
}

/* === SHARED SECTION STYLES === */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 72px;
}

/* === SERVICES === */
.services {
  padding: 120px 0;
  background: var(--navy-mid);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(184,245,58,0.08);
}

.service-card {
  background: var(--navy);
  padding: 48px 44px;
  transition: background 0.3s;
}

.service-card:hover {
  background: var(--navy-light);
}

.service-icon {
  margin-bottom: 24px;
}

.service-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags span {
  font-size: 11px;
  font-weight: 500;
  color: var(--lime);
  background: var(--lime-dim);
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

/* === WORKFLOW === */
.workflow {
  padding: 120px 0;
  background: var(--navy);
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.wf-step {
  padding: 0 32px 0 0;
  position: relative;
}

.wf-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: rgba(184,245,58,0.2);
  line-height: 1;
  margin-bottom: 20px;
}

.wf-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
}

.wf-content p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.wf-connector {
  position: absolute;
  right: 0;
  top: 36px;
  width: 20px;
  height: 1px;
  background: rgba(184,245,58,0.2);
}

/* === PRICING === */
.pricing {
  padding: 120px 0;
  background: var(--navy-mid);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(184,245,58,0.08);
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--navy);
  padding: 48px 40px;
}

.pricing-card.featured {
  background: var(--navy-light);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -1px;
  left: 40px;
  background: var(--lime);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
}

.pricing-tier {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--lime);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-per {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--gray);
  font-weight: 400;
}

.pricing-month {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 32px;
}

.pricing-month span {
  font-weight: 600;
  color: var(--white);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--gray-light);
  padding: 8px 0;
  border-bottom: 1px solid rgba(184,245,58,0.08);
  display: flex;
  gap: 10px;
}

.pricing-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.pricing-suitable {
  font-size: 12px;
  color: var(--gray);
  font-style: italic;
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
}

/* === OUTCOMES === */
.outcomes {
  padding: 120px 0;
  background: var(--navy);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(184,245,58,0.1);
}

.outcome {
  padding: 48px 36px;
  border-right: 1px solid rgba(184,245,58,0.1);
}

.outcome:last-child {
  border-right: none;
}

.outcome-stat {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 8px;
}

.outcome-unit {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0.7;
}

.outcome-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* === MANIFESTO === */
.manifesto {
  padding: 120px 0;
  background: var(--navy-mid);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}

.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 40px;
}

.manifesto-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 48px;
  border-left: 3px solid var(--lime);
  padding-left: 32px;
}

.manifesto-body {
  font-size: 17px;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.manifesto-rule {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(184,245,58,0.1);
  flex-wrap: wrap;
}

.rule-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  position: relative;
  padding-left: 20px;
}

.rule-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}

/* === CLOSING === */
.closing {
  padding: 160px 0;
  background: var(--navy);
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}

.closing-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
}

.closing-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 48px;
}

.closing-divider {
  width: 64px;
  height: 2px;
  background: var(--lime);
  margin-bottom: 40px;
}

.closing-body {
  font-size: 17px;
  color: var(--gray-light);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 20px;
}

/* === FOOTER === */
.site-footer {
  background: var(--navy);
  border-top: 1px solid rgba(184,245,58,0.08);
  padding: 80px 0 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--gray);
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 8px;
}

.footer-col span {
  font-size: 14px;
  color: var(--gray);
  cursor: default;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 48px 0;
  border-top: 1px solid rgba(184,245,58,0.06);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray);
  opacity: 0.6;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .workflow-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .wf-connector { display: none; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome { border-bottom: 1px solid rgba(184,245,58,0.1); }
}

@media (max-width: 768px) {
  .hero-inner { padding: 100px 24px 80px; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 24px; }
  .meta-divider { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .workflow-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .manifesto-rule { flex-direction: column; gap: 16px; }
  .section-inner, .manifesto-inner, .closing-inner { padding: 0 24px; }
  .footer-inner, .footer-bottom { padding: 0 24px; }
}
