/* === VARIABLES === */
:root {
  --bg: #0A1628;
  --bg-alt: #0D1B2A;
  --surface: #112035;
  --surface-2: #162840;
  --navy: #1B3A5C;
  --accent: #D4FF00;
  --accent-dim: rgba(212, 255, 0, 0.12);
  --teal: #0D9488;
  --cream: #F5F0E8;
  --text: #E8EFF7;
  --text-muted: #8899AA;
  --border: rgba(180, 240, 0, 0.1);
  --radius: 8px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Poppins', 'Inter', system-ui, sans-serif; font-weight: 700; line-height: 1.15; }
a { color: inherit; text-decoration: none; }

/* === LAYOUT === */
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  backdrop-filter: blur(12px);
  background: rgba(10, 22, 40, 0.85);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
}
.nav-logo .logo-lead { color: var(--cream); }
.nav-logo .logo-seeker { color: var(--accent); }
.nav-logo .logo-tld { color: var(--accent); font-size: 0.75em; vertical-align: baseline; }
.nav-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-link {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--cream); }
.nav-link-cta {
  background: var(--accent);
  color: #0A1628;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.82rem;
}
.nav-link-cta:hover { opacity: 0.9; color: #0A1628; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.08); }
.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 85vw);
  background: #0D1B2A;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 80px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-mobile-overlay.open .nav-mobile-menu {
  transform: translateX(0);
}
.nav-mobile-link {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  text-decoration: none;
}
.nav-mobile-link:hover { color: var(--cream); }
.nav-mobile-link-cta {
  margin-top: 20px;
  display: inline-block;
  background: var(--accent);
  color: #0A1628 !important;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 8px;
  border-bottom: none !important;
  font-size: 1rem !important;
  text-align: center;
}

@media (max-width: 700px) {
  .nav-desktop { display: none; }
  .nav-hamburger { display: flex; align-items: center; justify-content: center; }
}

@media (max-width: 600px) {
  .section-inner, .hero-inner, .nav-inner, .hero-trust { padding: 0 20px; }
  .industries-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 32px; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 60px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(180, 240, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 240, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(180, 240, 0, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(100, 150, 255, 0.05) 0%, transparent 70%);
  bottom: 100px;
  left: -100px;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #0A1628;
}
.btn-primary:hover {
  background: #EFFFD4;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 255, 0, 0.25);
}
.btn-large {
  padding: 18px 32px;
  font-size: 1.05rem;
}
.hero-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* === HERO VISUAL === */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead-flow {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 400px;
}
.flow-source {
  margin-bottom: 20px;
}
.flow-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.flow-channels {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.channel-chip {
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}
.flow-arrow {
  display: flex;
  justify-content: center;
  margin: 8px 0;
}
.flow-leads {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.lead-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
}
.lead-icon {
  flex-shrink: 0;
}
.lead-info {
  flex: 1;
  min-width: 0;
}
.lead-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream);
}
.lead-type {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.lead-value {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}
.flow-signal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.signal-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* === HERO TRUST === */
.hero-trust {
  max-width: 1160px;
  margin: 48px auto 0;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}
.trust-cities {
  color: var(--text);
  font-weight: 500;
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-alt);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.3s;
}
.step-card:hover {
  border-color: rgba(212, 255, 0, 0.3);
}
.step-number {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--surface-2);
  line-height: 1;
  margin-bottom: 20px;
  -webkit-text-stroke: 1px rgba(212, 255, 0, 0.15);
}
.step-icon {
  margin-bottom: 20px;
}
.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.step-meta {
  font-size: 0.75rem;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 100px;
  display: inline-block;
}

/* === CHANNELS === */
.channels {
  padding: 100px 0;
}
.channels-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.channels-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--cream);
  margin: 16px 0 20px;
}
.channels-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.channels-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.channel-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s;
}
.channel-item:hover {
  border-color: rgba(212, 255, 0, 0.25);
}
.channel-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.channel-name {
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}
.channel-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === NUMBERS === */
.numbers {
  padding: 80px 0;
  background: var(--accent);
}
.numbers .section-inner {
  padding: 0 32px;
}
.numbers-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.number-block {
  text-align: center;
  flex: 1;
  min-width: 160px;
}
.number-value {
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #0A1628;
  line-height: 1;
}
.number-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(10, 22, 40, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}
.number-note {
  font-size: 0.8rem;
  color: rgba(10, 22, 40, 0.6);
  margin-top: 6px;
}
.number-divider {
  width: 1px;
  height: 60px;
  background: rgba(10, 22, 40, 0.2);
  flex-shrink: 0;
}

/* === INDUSTRIES === */
.industries {
  padding: 100px 0;
  background: var(--bg-alt);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all 0.3s;
}
.industry-card:hover {
  border-color: rgba(212, 255, 0, 0.25);
  transform: translateY(-2px);
}
.industry-icon {
  margin-bottom: 20px;
}
.industry-name {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}
.industry-detail {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  padding: 100px 0;
}
.closing-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.closing-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--cream);
  margin: 16px 0 24px;
}
.closing-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.closing-body strong {
  color: var(--accent);
}
.cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.cta-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.cta-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.cta-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
}

/* === FOOTER === */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-logo .logo-lead { color: var(--cream); }
.footer-logo .logo-seeker { color: var(--accent); }
.footer-logo .logo-tld { color: var(--accent); font-size: 0.75em; vertical-align: baseline; }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 260px;
}
.footer-links {
  display: flex;
  gap: 60px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
  display: block;
  padding: 12px 0; /* ensure tap target ≥ 44px */
}
.footer-link:hover { color: var(--cream); }
.footer-link:active { color: var(--cream); }
.footer-col { display: flex; flex-direction: column; gap: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-muted { opacity: 0.6; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .lead-flow { max-width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .channels-inner { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .closing-inner { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .numbers-grid { flex-direction: column; gap: 32px; }
  .number-divider { width: 60px; height: 1px; }
}
@media (max-width: 600px) {
  .section-inner, .hero-inner, .nav-inner, .hero-trust { padding: 0 20px; }
  .industries-grid { grid-template-columns: 1fr; }
  .footer-links { gap: 32px; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* === BUTTON FOCUS STATES === */
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
