:root {
  --navy: #0A1F3D;
  --green: #00D67E;
  --green-dim: rgba(0, 214, 126, 0.12);
  --green-border: rgba(0, 214, 126, 0.25);
  --bg: #FAFAF7;
  --bg-2: #F2F0EA;
  --fg: #0A1F3D;
  --fg-muted: #5A6A85;
  --border: #E0DDD6;
  --card-bg: #FFFFFF;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
}
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #142d54;
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  letter-spacing: -0.2px;
}
.btn-cta:hover {
  background: #00c070;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 214, 126, 0.3);
}
.btn-cta:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid var(--navy);
  transition: all 0.2s;
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

/* Section structure */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* HERO */
.hero {
  padding: 140px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-left { grid-column: 1; }
.hero-right {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-dim);
  color: #007a46;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}
.eyebrow-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-headline {
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-actions .btn-cta { font-size: 15px; padding: 14px 28px; }
.hero-micro-copy {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 12px;
}

.hero-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 31, 61, 0.12), 0 4px 16px rgba(10, 31, 61, 0.08);
  border: 1px solid var(--border);
}
.hero-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* PILLARS */
.pillars {
  padding: 80px 40px;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillars-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.pillar-icon svg { color: var(--green); }
.pillar h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.pillar p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* HOW IT WORKS */
.hiw {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.hiw .section-headline { margin-bottom: 12px; }
.hiw .section-sub { margin: 0 auto 64px; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}
.step {
  background: #fff;
  padding: 40px 32px;
  text-align: left;
  position: relative;
}
.step-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-number::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--green-border);
}
.step:last-child .step-number::after { display: none; }
.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.step-arrow {
  display: none;
}

/* ANTI-POSITIONING */
.anti {
  padding: 80px 40px;
  background: var(--navy);
  text-align: center;
}
.anti-inner { max-width: 800px; margin: 0 auto; }
.anti-label { color: var(--green); }
.anti-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}
.anti-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}
.anti-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}
.anti-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.anti-icon svg { color: var(--green); }
.anti-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-style: italic;
}

/* PRICING */
.pricing {
  padding: 100px 40px;
  background: var(--bg-2);
  text-align: center;
}
.pricing .section-headline { margin-bottom: 12px; }
.pricing .section-sub { margin: 0 auto 64px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.2s;
}
.pricing-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(0, 214, 126, 0.1);
}
.pricing-card--featured {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-dim), 0 12px 40px rgba(0, 214, 126, 0.15);
  position: relative;
}
.pricing-card--featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-tier-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.pricing-card--featured .pricing-tier-label { color: var(--green); }
.pricing-price {
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -1px;
}
.pricing-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-card--featured .pricing-price { color: var(--green); }
.pricing-per {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.pricing-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 24px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300D67E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
}
.pricing-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.pricing-cta--primary {
  background: var(--navy);
  color: #fff;
}
.pricing-cta--primary:hover { background: #142d54; }
.pricing-cta--featured {
  background: var(--green);
  color: var(--navy);
}
.pricing-cta--featured:hover { background: #00c070; }
.pricing-cta--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.pricing-cta--outline:hover { border-color: var(--navy); }

/* DEMO CTA */
.demo-cta {
  padding: 100px 40px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.demo-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0,214,126,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.demo-cta-inner { position: relative; max-width: 640px; margin: 0 auto; }
.demo-cta h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.demo-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.6;
}
.demo-cta .btn-cta {
  font-size: 16px;
  padding: 16px 36px;
  box-shadow: 0 8px 32px rgba(0, 214, 126, 0.25);
}
.demo-cta .btn-outline {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
}
.demo-cta .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

/* LIVE FEED */
.live-feed {
  padding: 80px 40px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.live-feed-inner { max-width: 1200px; margin: 0 auto; }
.live-feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.live-feed-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-dim);
  color: #007a46;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-green 1.5s infinite;
}
.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feed-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg);
}
.feed-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.feed-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.feed-time {
  font-size: 12px;
  color: var(--fg-muted);
}
.feed-event {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.feed-company {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
  background: var(--navy);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo { font-size: 18px; font-weight: 700; color: #fff; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }

/* Responsive */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { grid-column: 1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .feed-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 120px 20px 60px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .pillars-inner { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .live-feed-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .anti, .demo-cta, .pricing, .hiw, .pillars, .live-feed { padding: 80px 20px; }
}