/* ====================================
   FeedBridge — Landing Page Theme
   ==================================== */

:root {
  --bg: #F7F4EF;
  --fg: #0A2E2E;
  --accent: #E8832A;
  --accent-light: rgba(232, 131, 42, 0.12);
  --text-muted: #5A6E6E;
  --border: rgba(10, 46, 46, 0.12);
  --card-bg: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

/* Hero */
.hero {
  padding: 80px 48px 96px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.hero-geo {
  position: relative;
  width: 320px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.geo-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.geo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: ring-pulse 3s ease-out infinite;
}
.geo-ring-1 { width: 120px; height: 120px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 0s; }
.geo-ring-2 { width: 200px; height: 200px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 0.6s; }
.geo-ring-3 { width: 280px; height: 280px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 1.2s; }
@keyframes ring-pulse {
  0% { opacity: 0.5; transform: translate(-50%,-50%) scale(0.8); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.1); }
}
.geo-dot {
  position: absolute;
  background: var(--accent);
  border-radius: 50%;
}
.geo-dot-1 { width: 12px; height: 12px; top: 30%; left: 25%; }
.geo-dot-2 { width: 8px; height: 8px; top: 25%; left: 72%; }
.geo-dot-3 { width: 10px; height: 10px; top: 65%; left: 78%; }
.hero-stats {
  display: flex;
  gap: 32px;
  align-items: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--fg);
}
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Manifesto */
.manifesto {
  padding: 64px 48px;
  background: var(--fg);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}
.manifesto-rule {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 32px;
}
.manifesto-text {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.3px;
}

/* ProductMap */
.productmap {
  padding: 96px 48px;
}
.productmap-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 48px;
}
.pm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.pm-card {
  background: var(--card-bg);
  padding: 48px 40px;
  transition: background 0.2s;
}
.pm-card:hover {
  background: #FDFCFA;
}
.pm-icon {
  display: block;
  margin-bottom: 20px;
}
.pm-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.pm-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Outcomes */
.outcomes {
  padding: 80px 48px;
  background: #F0ECE6;
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.outcome-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.outcome-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
}
.outcome-content h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.outcome-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Closing */
.closing {
  padding: 96px 48px;
  text-align: center;
}
.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}
.closing-text {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--fg);
  line-height: 1.5;
  letter-spacing: -0.5px;
}

/* Footer */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--fg);
}
.footer-meta {
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 72px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .manifesto { padding: 48px 24px; }
  .manifesto-text { font-size: 18px; }
  .productmap { padding: 64px 24px; }
  .pm-grid { grid-template-columns: 1fr; }
  .pm-card { padding: 32px 28px; }
  .outcomes { padding: 64px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 32px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .closing-text { font-size: 20px; }
  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}