/* ===== TOKENS ===== */
:root {
  --bg: #0B1F3A;
  --bg-alt: #0D2240;
  --bg-card: #132844;
  --fg: #F5F4F0;
  --fg-muted: #8899AA;
  --accent: #E8A838;
  --accent-dim: rgba(232,168,56,0.12);
  --accent-glow: rgba(232,168,56,0.16);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.15);
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(11,31,58,0.92);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link {
  font-size: 0.88rem;
  color: var(--fg-muted);
  font-weight: 500;
  transition: color 0.15s;
}
.nav-link:hover {
  color: var(--fg);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 32px 80px;
  background:
    radial-gradient(ellipse at 10% 80%, rgba(11,31,58,0.6) 0%, transparent 50%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at 80% 20%, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(232,168,56,0.25);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--fg);
}
.hero-accent {
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: #AABBCC;
  max-width: 460px;
  line-height: 1.7;
}

/* Product Widget */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}
.product-widget {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,168,56,0.08);
}
.widget-header {
  background: var(--bg-alt);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.widget-dots {
  display: flex;
  gap: 6px;
}
.widget-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}
.widget-dots span:first-child { background: #FF5F57; }
.widget-dots span:nth-child(2) { background: #FFBD2E; }
.widget-dots span:last-child { background: #28CA41; }
.widget-title {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 500;
  font-family: var(--font-head);
}
.widget-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.widget-section {}
.widget-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--font-head);
}

/* Opportunities */
.opportunity-list { display: flex; flex-direction: column; gap: 8px; }
.opp-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  border-left: 3px solid transparent;
}
.opp-high { border-left-color: #28CA41; }
.opp-med { border-left-color: #FFBD2E; }
.opp-low { border-left-color: #8899AA; }
.opp-title {
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-head);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.opp-badge {
  font-size: 0.65rem;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 700;
}
.opp-meta {
  font-size: 0.68rem;
  color: var(--fg-muted);
}

/* Proposal progress */
.proposal-bar {
  height: 8px;
  background: var(--bg-alt);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 6px;
}
.proposal-fill {
  height: 100%;
  background: linear-gradient(90deg, #E8A838, #F5C06A);
  border-radius: 100px;
  transition: width 1s ease;
}
.proposal-status {
  font-size: 0.7rem;
  color: var(--fg-muted);
}

/* Outbound row */
.outbound-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(40,202,65,0.08);
  border: 1px solid rgba(40,202,65,0.2);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}
.outbound-text {
  font-size: 0.72rem;
  color: #28CA41;
  font-weight: 500;
}

/* Stats row */
.hero-stats {
  max-width: 1200px;
  margin: 40px auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-item {
  flex: 1;
  padding: 0 32px 0 0;
}
.stat-item:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 4px;
}
.stat-desc {
  font-size: 0.78rem;
  color: var(--fg-muted);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin-right: 32px;
  flex-shrink: 0;
}

/* ===== PIPELINE ===== */
.pipeline {
  padding: 100px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pipeline-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  font-family: var(--font-head);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 64px;
}
.pipeline-steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.step-num {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}
.step-icon { margin-bottom: 16px; }
.step h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 40px;
  flex-shrink: 0;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 32px;
  background: var(--bg);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg-alt); }
.feature-icon { margin-bottom: 20px; }
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== DIFFERENTIATION ===== */
.diff {
  padding: 100px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.diff-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.diff-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.diff-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
}
.diff-check {
  width: 24px;
  height: 24px;
  background: var(--accent-dim);
  border: 1px solid rgba(232,168,56,0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.diff-point strong { color: var(--fg); }
.diff-point span { color: var(--fg-muted); }

/* Competitor table */
.diff-competitors {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
}
.comp-header {
  padding: 14px 20px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  font-weight: 600;
  font-family: var(--font-head);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.comp-table { width: 100%; }
.comp-row {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  padding: 10px 20px;
  font-size: 0.75rem;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.comp-row:last-child { border-bottom: none; }
.comp-row > span:first-child { color: var(--fg-muted); }
.comp-row.comp-header-row {
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 0.7rem;
  color: var(--fg);
  background: var(--bg-alt);
}
.comp-row.comp-header-row span:not(:first-child) { text-align: center; }
.check { color: #28CA41; text-align: center; }
.check.accent { color: var(--accent); }
.no { color: #8899AA; text-align: center; }

/* ===== CLOSING ===== */
.closing {
  padding: 100px 32px;
  background: var(--bg);
  text-align: center;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
}
.closing-quote-mark {
  font-family: var(--font-head);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 24px;
  display: block;
}
.closing blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.35;
  margin-bottom: 24px;
  color: var(--fg);
}
.closing-cta {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
}
.footer-link {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-weight: 500;
  margin-left: 8px;
  transition: color 0.15s;
}
.footer-link:hover {
  color: var(--fg);
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-top: 100px; }
  .hero-visual { justify-content: flex-start; }
  .product-widget { max-width: 100%; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .stat-item { flex: 0 0 calc(50% - 12px); }
  .stat-divider { display: none; }
  .pipeline-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

/* ===== HERO CTA ===== */
.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #0B1F3A;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: opacity 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.88; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ===== PRICING TEASER ===== */
.pricing-teaser {
  padding: 100px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.pricing-teaser .section-sub { margin: 0 auto 56px; }
.teaser-tiers {
  max-width: 1000px;
  margin: 0 auto 48px;
  display: flex;
  gap: 24px;
  justify-content: center;
}
.teaser-tier {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  position: relative;
}
.teaser-tier--featured {
  background: linear-gradient(160deg, #1a3560 0%, var(--bg-card) 100%);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 16px 48px rgba(232,168,56,0.25);
  padding: 40px 28px;
}
.teaser-badge {
  display: inline-block;
  background: var(--accent);
  color: #0B1F3A;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  font-family: var(--font-head);
}
.teaser-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.teaser-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 4px;
}
.teaser-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--fg-muted);
  letter-spacing: 0;
}
.teaser-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-top: 12px;
}
.teaser-cta { margin-top: 8px; }

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 100px 32px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.social-proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.testimonial-quote-mark {
  font-family: var(--font-head);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.4;
  display: block;
  margin-bottom: 16px;
}
.testimonial-body {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  min-height: 80px;
}
.testimonial-attr {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 600;
  font-family: var(--font-head);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.testimonial-stars {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* ===== FAQ (landing) ===== */
.faq-section {
  padding: 100px 32px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.faq-section .faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--fg-muted);
  transition: transform 0.2s;
}
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-answer {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
  padding-bottom: 20px;
}

/* ===== CLOSING CTA GROUP ===== */
.closing-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE (additions) ===== */
@media (max-width: 1024px) {
  .teaser-tiers { flex-direction: column; max-width: 480px; margin-left: auto; margin-right: auto; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .teaser-tiers { max-width: 100%; }
  .closing-cta-group { flex-direction: column; align-items: center; }
}

/* ===== TRUST ROW ===== */
.trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(245,244,240,0.72);
  font-weight: 500;
}
.trust-badge svg {
  flex-shrink: 0;
  color: var(--accent);
}

/* ===== LOGO BAR (social proof) ===== */
.logo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logo-pill {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  opacity: 0.6;
}

/* ===== TIER CTA BUTTONS ===== */
.teaser-tier .btn-primary,
.teaser-tier .btn-secondary {
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 20px;
  justify-content: center;
  box-sizing: border-box;
}

/* ===== RESPONSIVE (trust row + logo bar) ===== */
@media (max-width: 768px) {
  .trust-row { gap: 12px; }
  .logo-bar { gap: 8px; }
}