/* FieldOps — Dark industrial, lime accent */
:root {
  --bg: #0A0A0D;
  --surface: #111116;
  --surface-2: #1A1A22;
  --border: #222230;
  --text: #F0F0F0;
  --text-muted: #8888A0;
  --accent: #C8F020;
  --accent-dim: rgba(200,240,32,0.12);
  --font-head: 'Sora', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,13,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.navbar-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── SECTION LABEL ────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ─── HERO ────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 120px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 440px;
}

.hero-metric {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.hero-metric::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle at top right, rgba(200,240,32,0.08), transparent 70%);
  pointer-events: none;
}
.metric-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.metric-number {
  font-family: var(--font-mono);
  font-size: 96px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.metric-unit {
  font-size: 48px;
}
.metric-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #5DBF20;
  margin-bottom: 20px;
}
.metric-bar {
  width: 100%;
  height: 4px;
  background: var(--surface-2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}
.metric-bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 1.5s ease;
}
.metric-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
}

/* Hero stripe */
.hero-stripe {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.hero-stripe-item {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  flex: 1;
  text-align: center;
}
.hero-stripe-sep {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── PROOF ──────────────────────────────── */
.proof {
  padding: 80px 32px;
  border-bottom: 1px solid var(--border);
}
.proof-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
  gap: 0;
}
.proof-stat {
  text-align: center;
  padding: 0 40px;
}
.proof-number {
  font-family: var(--font-mono);
  font-size: 52px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
}
.proof-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.proof-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
}

/* ─── HOW ────────────────────────────────── */
.how {
  padding: 100px 32px;
  border-bottom: 1px solid var(--border);
}
.how-header {
  max-width: 1200px;
  margin: 0 auto 80px;
}
.how-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}
.how-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.how-step {
  padding: 48px 40px;
  border: 1px solid var(--border);
  border-right: none;
  position: relative;
}
.how-step:last-child { border-right: 1px solid var(--border); }
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── METRICS ─────────────────────────────── */
.metrics {
  padding: 100px 32px;
  border-bottom: 1px solid var(--border);
}
.metrics-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.metrics-headline {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}
.metrics-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.metric-card {
  background: var(--surface);
  padding: 36px 32px;
  transition: background 0.2s;
}
.metric-card:hover { background: var(--surface-2); }
.card-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.card-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.card-value {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.card-meta {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── INTEGRATIONS ─────────────────────────── */
.integrations {
  padding: 100px 32px;
  border-bottom: 1px solid var(--border);
}
.integrations-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.integrations-headline {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 20px;
}
.integrations-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}
.integrations-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.integration-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s;
}
.integration-chip:hover { border-color: var(--accent); }
.chip-icon { color: var(--text-muted); flex-shrink: 0; }

/* ─── CLOSING ─────────────────────────────── */
.closing {
  padding: 120px 32px;
  background: var(--bg);
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}
.closing-tag {
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,240,32,0.3);
  border-radius: 100px;
}
.tag-text {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ─── FOOTER ─────────────────────────────── */
.footer {
  padding: 48px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.footer-meta {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ─── PRICING ─────────────────────────────── */
.pricing {
  padding: 100px 32px;
  border-bottom: 1px solid var(--border);
}
.pricing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.pricing-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.pricing-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 60px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  position: relative;
}
.pricing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(200,240,32,0.08);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}
.plan-name {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.plan-price {
  margin-bottom: 8px;
}
.price-amount {
  font-family: var(--font-mono);
  font-size: 56px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}
.price-period {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--text-muted);
}
.plan-tagline {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.plan-features {
  list-style: none;
  margin-bottom: 36px;
}
.plan-features li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.plan-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.plan-cta:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.plan-cta-featured {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.plan-cta-featured:hover {
  background: #d4ff2a;
  border-color: #d4ff2a;
  box-shadow: 0 4px 20px rgba(200,240,32,0.3);
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .proof-grid { grid-template-columns: 1fr; gap: 40px; }
  .proof-divider { display: none; }
  .proof-stat { border-bottom: 1px solid var(--border); padding-bottom: 40px; }
  .proof-stat:last-child { border-bottom: none; padding-bottom: 0; }
  .how-steps { grid-template-columns: 1fr; }
  .how-step { border: 1px solid var(--border); border-bottom: none; }
  .how-step:last-child { border-bottom: 1px solid var(--border); }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .integrations-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stripe { display: none; }
  .footer-inner { flex-wrap: wrap; gap: 12px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { border-color: var(--accent); }
}
@media (max-width: 600px) {
  .price-amount { font-size: 44px; }
}
@media (max-width: 600px) {
  .hero { padding-top: 100px; }
  .hero-headline { font-size: 38px; }
  .metric-number { font-size: 72px; }
  .metrics-grid { grid-template-columns: 1fr; }
  .proof-number { font-size: 40px; }
  .how-step { padding: 32px 24px; }
  .navbar-inner { padding: 0 20px; }
}