/* FORGE — Premium Dark Theme */
:root {
  --bg-primary: #08080c;
  --bg-secondary: #0d0d14;
  --bg-card: #111118;
  --bg-card-hover: #16161f;
  --accent: #00e5ff;
  --accent-dim: rgba(0, 229, 255, 0.15);
  --accent-glow: rgba(0, 229, 255, 0.3);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(0, 229, 255, 0.3);
  --status-live: #00e5ff;
  --status-build: #f59e0b;
  --status-soon: rgba(255, 255, 255, 0.3);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 48px;
  background: rgba(8, 8, 12, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--text-primary);
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,229,255,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,229,255,0.07) 0%, transparent 70%);
  bottom: 0; left: 20%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.headline-accent { color: var(--accent); }
.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: #33eeff; transform: translateY(-1px); box-shadow: 0 8px 32px rgba(0,229,255,0.25); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ── HERO ORBIT VISUAL ── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.orbit-container {
  position: relative;
  width: 380px;
  height: 380px;
}
.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.orbit-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--accent);
}
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.12);
}
.orbit-ring-1 { width: 220px; height: 220px; }
.orbit-ring-2 { width: 300px; height: 300px; }
.orbit-ring-3 { width: 380px; height: 380px; border-style: dashed; }
.orbit-node {
  position: absolute;
  width: 44px; height: 44px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.node-1 { top: 10px; left: 50%; transform: translateX(-50%); }
.node-2 { top: 50%; right: 10px; transform: translateY(-50%); }
.node-3 { bottom: 10px; left: 50%; transform: translateX(-50%); }
.node-4 { top: 50%; left: 10px; transform: translateY(-50%); }
.node-5 { top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(45deg); }

/* ── SECTION COMMON ── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── ECOSYSTEM ── */
.ecosystem {
  padding: 100px 48px;
  background: var(--bg-secondary);
}
.ecosystem-diagram {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  min-height: 400px;
}
.eco-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  background: rgba(0,229,255,0.05);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 16px;
  padding: 20px 28px;
  backdrop-filter: blur(8px);
}
.eco-hub span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.eco-connections { position: absolute; inset: 0; }
.eco-line {
  position: absolute;
  background: rgba(0, 229, 255, 0.1);
  transform-origin: center;
}
.eco-line-1 { width: 2px; height: 80px; top: calc(50% - 80px); left: calc(50% - 1px); }
.eco-line-2 { width: 2px; height: 80px; bottom: calc(50% - 80px); left: calc(50% - 1px); }
.eco-line-3 { width: 80px; height: 2px; top: calc(50% - 1px); right: calc(50% - 80px); }
.eco-line-4 { width: 80px; height: 2px; top: calc(50% - 1px); left: calc(50% - 80px); }
.eco-line-5 { width: 2px; height: 80px; top: calc(50%); left: calc(50% - 1px); transform: rotate(45deg); }
.eco-line-6 { width: 2px; height: 80px; top: calc(50%); left: calc(50% - 1px); transform: rotate(-45deg); }
.eco-nodes { position: absolute; inset: 0; }
.eco-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.eco-node-icon {
  width: 44px; height: 44px;
  background: rgba(0,229,255,0.05);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eco-node span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
}
.eco-node p {
  font-size: 10px;
  color: var(--text-muted);
  margin: 0;
}
/* Node positions */
.eco-node:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.eco-node:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); }
.eco-node:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.eco-node:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); }
.eco-node:nth-child(5) { top: 15%; right: 15%; }
.eco-node:nth-child(6) { bottom: 15%; left: 15%; }

/* ── PRODUCTS ── */
.products { padding: 100px 48px; }
.products-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.product-card:hover { border-color: rgba(0,229,255,0.2); transform: translateY(-2px); }
.product-card-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(0,229,255,0.05) 0%, var(--bg-card) 60%);
  border-color: rgba(0,229,255,0.2);
}
.product-card-glow {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,229,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.product-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.status-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
}
.product-status-live { background: rgba(0,229,255,0.1); color: var(--status-live); }
.product-status-live .status-dot { background: var(--status-live); box-shadow: 0 0 6px var(--status-live); }
.product-status-build { background: rgba(245,158,11,0.1); color: var(--status-build); }
.product-status-build .status-dot { background: var(--status-build); }
.product-status-soon { background: rgba(255,255,255,0.05); color: var(--text-muted); }
.product-status-soon .status-dot { background: var(--text-muted); }
.product-icon-large {
  width: 56px; height: 56px;
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.product-icon {
  width: 44px; height: 44px;
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.product-tagline {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
.product-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.feature-tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
  padding: 8px 0;
}
.product-cta:hover { color: var(--accent); }
.product-cta-primary {
  color: var(--accent);
  background: rgba(0,229,255,0.08);
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid rgba(0,229,255,0.2);
}
.product-cta-primary:hover { background: rgba(0,229,255,0.15); }

/* ── WHY FORGE ── */
.why-forge {
  padding: 100px 48px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-forge-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.why-forge-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.why-forge-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.why-forge-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}
.stat-divider {
  width: 40px; height: 1px;
  background: var(--border);
}

/* ── FOR WHOM ── */
.for-whom { padding: 100px 48px; }
.audience-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  transition: all 0.3s;
}
.audience-card:hover { border-color: rgba(0,229,255,0.15); transform: translateY(-2px); }
.audience-icon {
  width: 44px; height: 44px;
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.audience-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}
.audience-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing-section {
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.closing-bg { position: absolute; inset: 0; pointer-events: none; }
.closing-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,229,255,0.06) 0%, transparent 70%);
}
.closing-content { position: relative; z-index: 1; }
.closing-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.btn-primary-light {
  background: var(--accent);
  color: #000;
}
.btn-primary-light:hover { background: #33eeff; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 48px 32px;
  background: var(--bg-secondary);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
}
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-secondary); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding-top: 100px; }
  .hero-visual { display: none; }
  .ecosystem-diagram { display: none; }
  .why-forge-inner { grid-template-columns: 1fr; }
  .why-forge-stats { flex-direction: row; }
  .stat-divider { width: 1px; height: 40px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card-featured { grid-column: span 1; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .ecosystem, .products, .why-forge, .for-whom, .closing-section { padding: 60px 24px; }
  .products-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .footer { padding: 48px 24px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { flex-direction: column; gap: 24px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
}

/* ── TRUST LINE ── */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 24px;
}
.trust-dot {
  width: 6px; height: 6px;
  background: #00e5ff;
  border-radius: 50%;
  box-shadow: 0 0 6px #00e5ff;
  flex-shrink: 0;
}

/* ── 8-NODE ORBIT ── */
.orbit-container { width: 400px; height: 400px; }
.orbit-node { animation: orbit 20s linear infinite; }
.node-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.node-2 { top: 15%; right: 8%; animation-delay: -2.5s; }
.node-3 { top: 50%; right: 0; transform: translateY(-50%); animation-delay: -5s; }
.node-4 { bottom: 15%; right: 8%; animation-delay: -7.5s; }
.node-5 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: -10s; }
.node-6 { bottom: 15%; left: 8%; animation-delay: -12.5s; }
.node-7 { top: 50%; left: 0; transform: translateY(-50%); animation-delay: -15s; }
.node-8 { top: 15%; left: 8%; animation-delay: -17.5s; }

@keyframes orbit {
  0%   { transform: translateX(-50%) rotate(0deg) translateX(170px) rotate(0deg); }
  100% { transform: translateX(-50%) rotate(360deg) translateX(170px) rotate(-360deg); }
}
.node-2, .node-4, .node-6, .node-8 {
  0%   { transform: translateY(-50%) rotate(0deg) translateY(-170px) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg) translateY(-170px) rotate(-360deg); }
}

/* ── PRODUCT CARD LIVE / SOON ── */
.product-card-live { border-color: rgba(0,229,255,0.2) !important; }
.product-card-live:hover { border-color: rgba(0,229,255,0.4) !important; box-shadow: 0 0 40px rgba(0,229,255,0.08); }
.product-card-soon { opacity: 0.75; }
.product-card-soon:hover { opacity: 0.9; }
.product-subline {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}
.product-cta-live {
  background: rgba(0,229,255,0.1) !important;
  color: #00e5ff !important;
  border: 1px solid rgba(0,229,255,0.25) !important;
  padding: 10px 18px !important;
  border-radius: 8px !important;
}
.product-cta-live:hover { background: rgba(0,229,255,0.18) !important; }
.product-status-review { background: rgba(245,158,11,0.1) !important; color: #f59e0b !important; }
.product-status-review .status-dot { background: #f59e0b !important; box-shadow: 0 0 6px #f59e0b; }

/* ── ECOSYSTEM CATEGORIES ── */
.ecosystem-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 48px;
}
.eco-category { display: flex; flex-direction: column; gap: 8px; }
.eco-cat-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 4px;
}
.eco-cat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  transition: all 0.2s;
}
.eco-cat-card:hover { border-color: rgba(0,229,255,0.15); }
.eco-cat-card-live { text-decoration: none; color: inherit; }
.eco-cat-card-live:hover { border-color: rgba(0,229,255,0.3) !important; background: rgba(0,229,255,0.04); }
.eco-live-badge {
  font-size: 10px;
  color: var(--status-live);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-left: 6px;
}
.eco-cat-icon {
  width: 32px; height: 32px;
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.eco-cat-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}
.eco-cat-desc {
  font-size: 11px;
  color: var(--text-muted);
}
.eco-cta-wrap { text-align: center; }

/* ── PILLARS ── */
.pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
}
.pillar {
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pillar-divider {
  height: 1px;
  background: var(--border);
}
.pillar-icon {
  width: 48px; height: 48px;
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}
.pillar-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── METRICS ── */
.metrics-section { padding: 100px 48px; background: var(--bg-secondary); }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 32px;
}
.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.metric-card-live { border-color: rgba(0,229,255,0.2); }
.metric-card-review { border-color: rgba(245,158,11,0.2); }
.metric-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.metric-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.metric-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.metrics-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ── PROGRESS / TIMELINE ── */
.progress-section { padding: 100px 48px; }
.timeline {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-phase { display: flex; gap: 24px; }
.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  padding-top: 4px;
}
.timeline-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--bg-card);
  flex-shrink: 0;
}
.timeline-dot-now { background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.timeline-line {
  width: 2px;
  flex: 1;
  background: var(--border);
  margin: 8px 0;
}
.timeline-content { flex: 1; padding-bottom: 48px; }
.timeline-phase-now .timeline-label {
  color: var(--accent);
  background: rgba(0,229,255,0.08);
  border: 1px solid rgba(0,229,255,0.2);
}
.timeline-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.timeline-items { display: flex; flex-direction: column; gap: 10px; }
.timeline-item { display: flex; align-items: flex-start; gap: 12px; }
.tl-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(0,229,255,0.4);
  flex-shrink: 0;
  margin-top: 7px;
}
.tl-dot-muted { background: rgba(255,255,255,0.15); }
.tl-text { font-size: 14px; color: var(--text-secondary); line-height: 1.5; }
.tl-product { color: var(--text-primary); font-weight: 600; }
.tl-link { color: var(--accent); text-decoration: none; }
.tl-link:hover { text-decoration: underline; }

/* ── FOUNDER ── */
.founder-section { padding: 100px 48px; background: var(--bg-secondary); }
.founder-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.founder-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.founder-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  min-width: 220px;
}
.founder-avatar {
  width: 72px; height: 72px;
  background: rgba(0,229,255,0.06);
  border: 1px solid rgba(0,229,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}
.founder-role { font-size: 12px; color: var(--text-muted); text-align: center; }

/* ── WAITLIST ── */
.waitlist-section { padding: 100px 48px; }
.waitlist-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(0,229,255,0.2);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 0 60px rgba(0,229,255,0.04);
}
.waitlist-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.waitlist-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 36px;
}
.waitlist-form { width: 100%; }
.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.form-input, .form-select {
  flex: 1;
  min-width: 180px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus { border-color: rgba(0,229,255,0.4); }
.form-select { cursor: pointer; }
.waitlist-btn { white-space: nowrap; }
.form-error {
  font-size: 13px;
  color: #ff6b6b;
  margin-top: 10px;
  text-align: left;
}
.waitlist-confirm {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  font-weight: 500;
  padding: 20px 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ecosystem-categories { grid-template-columns: repeat(2, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-inner { grid-template-columns: 1fr; }
  .founder-card { flex-direction: row; justify-content: flex-start; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .ecosystem, .products, .why-forge, .for-whom, .closing-section,
  .metrics-section, .progress-section, .founder-section, .waitlist-section {
    padding: 60px 24px;
  }
  .ecosystem-categories { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .footer { padding: 48px 24px 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { flex-direction: column; gap: 24px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; justify-content: center; }
  .form-row { flex-direction: column; }
  .form-input, .form-select { min-width: 100%; }
  .founder-card { flex-direction: column; }
  .timeline { gap: 0; }
}