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

:root {
  --bg: #0e0e14;
  --surface: #16161f;
  --surface2: #1e1e2a;
  --fg: #f0ede6;
  --fg-muted: #8a8799;
  --accent: #f5a623;
  --accent-dim: rgba(245, 166, 35, 0.12);
  --border: rgba(240, 237, 230, 0.08);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  background: rgba(14, 14, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 40px 80px;
  overflow: hidden;
}
.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  background: var(--accent-dim);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* Orb */
.hero-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  pointer-events: none;
  z-index: 0;
}
.orb-glow {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, rgba(245,166,35,0.05) 45%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.8; }
}

/* Manifesto */
.manifesto {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 40px;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.4;
  margin-bottom: 20px;
}
.manifesto-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* Agents */
.agents {
  padding: 100px 40px;
}
.agents-header {
  max-width: 1120px;
  margin: 0 auto 60px;
  text-align: center;
}
.agents-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.agents-header p {
  color: var(--fg-muted);
  font-size: 1.05rem;
}
.agents-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.agent-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.agent-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  transform: translateY(-2px);
}
.agent-card.featured {
  grid-column: span 2;
  border-color: rgba(245, 166, 35, 0.2);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(245,166,35,0.04) 100%);
}
.agent-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.agent-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.agent-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}
.agent-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
}
.agent-tag.highlight {
  color: var(--accent);
  border-color: rgba(245,166,35,0.3);
  background: var(--accent-dim);
}

/* Proof */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
}
.proof-header {
  max-width: 1120px;
  margin: 0 auto 50px;
  text-align: center;
}
.proof-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.proof-header p { color: var(--fg-muted); font-size: 1.05rem; }
.proof-logos {
  max-width: 1120px;
  margin: 0 auto 60px;
}
.proof-logos-label {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.logo-chip {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 8px;
  background: var(--surface2);
}
.proof-testimonials {
  max-width: 800px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.testimonial {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.testimonial p {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 14px;
  color: var(--fg);
}
.testimonial cite {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: normal;
  font-weight: 500;
}
.proof-metrics {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 20px;
}
.metric { text-align: center; }
.metric-value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.metric-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

/* Closing */
.closing {
  padding: 100px 40px;
}
.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.closing-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
}
.closing-inner p {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 40px 40px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}
.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fg); }
.footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .hero-headline { font-size: 2.8rem; }
  .stat { padding: 0 20px; }
  .stat-num { font-size: 1.8rem; }
  .agents { padding: 60px 24px; }
  .agents-grid { grid-template-columns: 1fr; }
  .agent-card.featured { grid-column: span 1; }
  .proof-testimonials { grid-template-columns: 1fr; }
  .proof { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 48px 24px 32px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-links { align-items: flex-start; }
  .nav { padding: 0 24px; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
  .hero-orb { width: 300px; height: 300px; }
}