/* Vestris — premium dark theme, gold accents */

:root {
  --bg: #090c14;
  --bg-2: #0e1420;
  --bg-3: #141927;
  --gold: #c8a55a;
  --gold-dim: rgba(200, 165, 90, 0.15);
  --cream: #e8e2d6;
  --muted: #7a8194;
  --text: #d4cfc8;
  --border: rgba(200, 165, 90, 0.2);
}

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

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

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 60px;
  position: relative;
  background: linear-gradient(160deg, #090c14 60%, #111827 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
}

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

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.65;
}

.hero-right {
  border-left: 1px solid var(--border);
  padding-left: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-stat-block { padding: 20px 0; }
.hero-stat-divider { width: 40px; height: 1px; background: var(--border); }

.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

.stat-unit {
  font-size: 22px;
  color: var(--gold);
  margin-left: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-bottom {
  margin-top: 60px;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--muted);
  position: relative;
}

.scroll-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: -2px;
  width: 6px;
  height: 5px;
  border-right: 1px solid var(--muted);
  border-bottom: 1px solid var(--muted);
  transform: rotate(-45deg);
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 120px 80px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.manifesto-content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 28px;
  line-height: 1.15;
}

.manifesto-content p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── AGENTS ── */
.agents {
  padding: 120px 80px;
  background: var(--bg);
}

.agents-inner { max-width: 1200px; margin: 0 auto; }

.section-header { margin-bottom: 64px; }

.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--cream);
  max-width: 520px;
}

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

.agent-card {
  background: var(--bg);
  padding: 48px 40px;
  position: relative;
}

.agent-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.agent-card:hover::before { transform: scaleX(1); }

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

.agent-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.agent-card > p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

.agent-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.agent-features li {
  font-size: 13px;
  color: var(--text);
  padding-left: 16px;
  position: relative;
}

.agent-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 11px;
}

/* ── OPERATIONS ── */
.operations {
  padding: 120px 80px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.operations-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.ops-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.ops-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(200, 165, 90, 0.5);
  animation: pulse 2s infinite;
}

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

.ops-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.flow-item:first-child { border-top: 1px solid var(--border); }

.flow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
}

.flow-name {
  font-size: 14px;
  color: var(--cream);
  font-weight: 500;
  flex: 1;
}

.flow-status {
  font-size: 12px;
  color: var(--muted);
  flex: 2;
}

.flow-badge {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 2px 8px;
}

.flow-connector {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin-left: 4px;
}

.operations-text h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.2;
}

.operations-text p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.7;
}

.ops-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ops-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--cream);
}

.metric-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* ── CLOSING ── */
.closing {
  padding: 140px 80px;
  background: var(--bg);
  text-align: center;
}

.closing-inner { max-width: 760px; margin: 0 auto; }

.closing-content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 28px;
  line-height: 1.1;
}

.closing-content p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 48px;
  line-height: 1.7;
}

.closing-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
}

/* ── FOOTER ── */
.site-footer {
  padding: 40px 80px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}

.footer-inner {
  max-width: 1200px;
  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: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
}

.footer-tagline {
  font-size: 12px;
  color: var(--muted);
}

.footer-meta {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 40px; flex-direction: row; gap: 20px; }
  .hero-stat-block { padding: 0; }
  .agent-cards { grid-template-columns: 1fr; }
  .operations-inner { grid-template-columns: 1fr; gap: 60px; }
  .ops-metrics { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .hero, .manifesto, .agents, .operations, .closing { padding: 60px 32px; }
  .site-footer { padding: 32px; }
  .hero-right { flex-direction: column; }
  .ops-metrics { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}