/* ===== BASE ===== */
:root {
  --bg: #06060a;
  --bg-surface: #0c0c14;
  --fg: #f0ece4;
  --fg-dim: #7a7680;
  --accent: #d4a853;
  --accent-dim: rgba(212, 168, 83, 0.15);
  --border: #1a1a24;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #d4a853, transparent 70%);
  top: -150px;
  right: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #4a7cc9, transparent 70%);
  bottom: -50px;
  left: -100px;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 48px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--fg-dim);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px;
}

.stat:first-child { padding-left: 0; }

.stat-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== MANIFESTO ===== */
.manifesto {
  border-bottom: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 100px 48px;
}

.manifesto-label,
.agent-label,
.philosophy-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 48px;
}

.label-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--fg);
  border-left: 2px solid var(--accent);
  padding-left: 32px;
  margin-bottom: 40px;
}

.manifesto-quote p {
  margin-bottom: 20px;
}

.manifesto-quote p:last-child { margin-bottom: 0; }

.manifesto-quote em {
  font-style: italic;
  color: var(--accent);
}

.manifesto-tagline {
  font-size: 0.875rem;
  color: var(--fg-dim);
  padding-left: 32px;
}

/* ===== AGENT ===== */
.agent {
  border-bottom: 1px solid var(--border);
}

.agent-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 48px;
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.agent-card {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.2s;
}

.agent-card:hover {
  background: var(--bg-surface);
}

.agent-icon {
  margin-bottom: 20px;
}

.agent-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--fg);
}

.agent-card p {
  font-size: 0.875rem;
  color: var(--fg-dim);
  line-height: 1.7;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  border-bottom: 1px solid var(--border);
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.philosophy-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 28px;
}

.philosophy-body {
  font-size: 0.9375rem;
  color: var(--fg-dim);
  line-height: 1.75;
  margin-bottom: 20px;
}

.philosophy-body:last-child { margin-bottom: 0; }

.regime-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.regime-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.regime-item:first-child { padding-top: 0; }

.regime-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.regime-bull { background: #22c55e; box-shadow: 0 0 8px rgba(34, 197, 94, 0.4); }
.regime-bear { background: #ef4444; box-shadow: 0 0 8px rgba(239, 68, 68, 0.4); }
.regime-volatile { background: #f59e0b; box-shadow: 0 0 8px rgba(245, 158, 11, 0.4); }
.regime-sideways { background: #6b7280; }

.regime-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.regime-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--fg);
}

.regime-desc {
  font-size: 0.8125rem;
  color: var(--fg-dim);
  line-height: 1.5;
}

/* ===== CLOSING ===== */
.closing {
  border-bottom: 1px solid var(--border);
}

.closing-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 100px 48px;
  text-align: center;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 32px;
}

.closing-sub {
  font-size: 0.9375rem;
  color: var(--fg-dim);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 40px 48px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--fg);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 0.7rem;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-note {
  font-size: 0.8125rem;
  color: var(--fg-dim);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner { padding: 80px 24px; }
  .manifesto-inner { padding: 72px 24px; }
  .agent-inner { padding: 72px 24px; }
  .philosophy-inner { padding: 72px 24px; grid-template-columns: 1fr; gap: 48px; }
  .closing-inner { padding: 72px 24px; }
  .site-footer { padding: 32px 24px; }

  .hero-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }

  .agent-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-brand { align-items: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .manifesto-quote { padding-left: 20px; }
  .manifesto-tagline { padding-left: 20px; }
}