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

:root {
  --bg: #0c0e14;
  --bg-surface: #13161f;
  --fg: #f0ece4;
  --fg-muted: #8a877f;
  --accent: #c9a84c;
  --accent-dim: #9a7e38;
  --nav-bg: rgba(12, 14, 20, 0.9);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .hero-headline, .section-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  padding: 140px 32px 120px;
  background: var(--bg);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 4px;
  width: fit-content;
}
.stat {
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(201, 168, 76, 0.2);
  flex-shrink: 0;
}
.stat-value {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 100px 32px;
  background: var(--bg-surface);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}
.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.section-title {
  font-size: 1.6rem;
  color: var(--fg);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section-title.centered {
  text-align: center;
  margin-bottom: 64px;
}
.philosophy-statement {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.philosophy-statement:last-child { margin-bottom: 0; }

/* ── AGENTS ── */
.agents {
  padding: 100px 32px;
  background: var(--bg);
}
.agents-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.agent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 4px;
  overflow: hidden;
}
.agent-card {
  background: var(--bg-surface);
  padding: 40px;
}
.agent-icon {
  margin-bottom: 20px;
}
.agent-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.agent-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── AUDIENCE ── */
.audience {
  padding: 100px 32px;
  background: var(--bg-surface);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}
.audience-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.audience-list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.audience-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.audience-item:first-child { border-top: 1px solid rgba(201, 168, 76, 0.1); }
.audience-marker {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  padding-top: 4px;
}
.audience-text {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
}
.audience-text strong { color: var(--fg); font-weight: 500; }

/* ── CLOSING ── */
.closing {
  padding: 120px 32px;
  background: var(--bg);
  text-align: center;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
}
.closing-rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 48px;
}
.closing-statement {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.closing-sub {
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── FOOTER ── */
.footer {
  padding: 32px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  background: var(--bg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-logo {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--accent);
}
.footer-name {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer-note {
  font-size: 0.72rem;
  color: rgba(138, 135, 127, 0.6);
  letter-spacing: 0.03em;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 120px 20px 80px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat-divider { width: 100%; height: 1px; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 32px; }
  .agent-grid { grid-template-columns: 1fr; }
  .audience-item { grid-template-columns: 40px 1fr; gap: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .closing { padding: 80px 20px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.6rem; }
  .stat { padding: 16px 24px; }
  .agent-card { padding: 28px 24px; }
}