/* ============================================
   OpsPrime — Theme CSS
   ============================================ */

:root {
  --bg: #080C14;
  --bg-2: #0D1526;
  --lime: #C8FF3A;
  --lime-dim: rgba(200, 255, 58, 0.15);
  --slate: #6B7A99;
  --slate-light: #9BAAC8;
  --white: #FFFFFF;
  --off-white: #E8ECF4;
  --border: rgba(200, 255, 58, 0.1);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(24px, 5vw, 64px);
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--white);
}

.nav-tagline {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 0 clamp(24px, 5vw, 64px);
  padding-top: 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.hero-content {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  border: 1px solid rgba(200, 255, 58, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--slate-light);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.hero-stat {
  padding: 0 32px 0 0;
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.4;
  max-width: 120px;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 32px;
  flex-shrink: 0;
}

/* Hero Visual — CSS-only geometric composition */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orb-1 {
  width: 420px;
  height: 420px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 40% 40%, rgba(200, 255, 58, 0.2) 0%, rgba(200, 255, 58, 0.05) 50%, transparent 70%);
  filter: blur(40px);
}

.orb-2 {
  width: 220px;
  height: 220px;
  right: 60px;
  top: calc(50% - 40px);
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(200, 255, 58, 0.35) 0%, rgba(200, 255, 58, 0.08) 60%, transparent 80%);
  filter: blur(24px);
}

.arcs {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  border: 1px solid rgba(200, 255, 58, 0.15);
  border-radius: 50%;
}

.arcs::before {
  content: '';
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(200, 255, 58, 0.1);
  border-radius: 50%;
}

.arcs::after {
  content: '';
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(200, 255, 58, 0.07);
  border-radius: 50%;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 255, 58, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 255, 58, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 80% at 80% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 80% 50%, black 0%, transparent 100%);
}

/* ---- SECTIONS ---- */
section {
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 64px);
}

.section-header {
  max-width: 1200px;
  margin: 0 auto 64px;
}

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

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  max-width: 640px;
}

/* ---- WHO WE SERVE ---- */
.who-we-serve {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.who-we-serve .section-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.vertical-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 36px 32px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.vertical-card:hover {
  background: rgba(200, 255, 58, 0.05);
  border-color: rgba(200, 255, 58, 0.2);
}

.vertical-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.vertical-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.vertical-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

/* ---- WHAT YOU GET ---- */
.what-you-get {
  background: var(--bg);
}

.what-you-get .section-header {
  max-width: 800px;
  margin: 0 auto 56px;
}

.services-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.service-item:last-child {
  border-bottom: none;
}

.service-index {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.05em;
  padding-top: 4px;
}

.service-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-it-works .section-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  flex: 1;
  padding: 32px 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lime);
  opacity: 0;
  transition: opacity 0.3s;
}

.step:hover::before {
  opacity: 1;
}

.step-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

.step-connector {
  width: 32px;
  height: 1px;
  background: var(--border);
  margin-top: 60px;
  flex-shrink: 0;
}

/* ---- OUTCOMES ---- */
.outcomes {
  background: var(--bg);
  padding: clamp(64px, 8vw, 120px) clamp(24px, 5vw, 64px);
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.outcomes-headline {
  margin-bottom: 64px;
}

.outcomes-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--white);
  margin-top: 16px;
  max-width: 700px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}

.outcome {
  padding: 32px 28px;
  background: rgba(200, 255, 58, 0.04);
  border: 1px solid rgba(200, 255, 58, 0.12);
}

.outcome-stat {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}

.outcome-label {
  font-size: 14px;
  color: var(--slate-light);
  line-height: 1.5;
}

.outcomes-note {
  font-size: 13px;
  color: var(--slate);
  max-width: 600px;
  line-height: 1.6;
}

/* ---- CLOSING ---- */
.closing {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: clamp(80px, 10vw, 140px) clamp(24px, 5vw, 64px);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--slate-light);
  line-height: 1.65;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px clamp(24px, 5vw, 64px);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.footer-desc {
  font-size: 13px;
  color: var(--slate);
  max-width: 360px;
  margin-top: 8px;
  line-height: 1.5;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--slate);
  white-space: nowrap;
}

.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--lime);
}

/* ---- LEAD CAPTURE FORM ---- */
.lead-capture-form {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.lead-form-row {
  display: flex;
  gap: 12px;
}

.lead-form-row input,
.lead-form-row select {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 14px 18px;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
}

.lead-form-row input::placeholder { color: var(--slate); }

.lead-form-row input:focus,
.lead-form-row select:focus {
  border-color: rgba(200, 255, 58, 0.4);
  box-shadow: 0 0 0 3px rgba(200, 255, 58, 0.08);
}

.lead-form-row select option { background: var(--bg-2); }

.btn-primary {
  background: var(--lime);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.15s;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.form-success {
  background: rgba(200, 255, 58, 0.12);
  border: 1px solid rgba(200, 255, 58, 0.25);
  color: var(--lime);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

.form-error {
  background: rgba(255, 80, 80, 0.12);
  border: 1px solid rgba(255, 80, 80, 0.25);
  color: #ff7070;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }

  .hero-visual {
    display: none;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-stat-divider {
    display: none;
  }

  .verticals-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps-row {
    flex-direction: column;
  }

  .step-connector {
    display: none;
  }

  .outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .verticals-grid {
    grid-template-columns: 1fr;
  }

  .outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .footer-dot {
    display: none;
  }

  .lead-capture-form {
    padding: 0 4px;
  }

  .lead-form-row {
    flex-direction: column;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }
}