:root {
  --bg: #f5f0e8;
  --bg-dark: #1a3a2a;
  --fg: #1a1a0e;
  --fg-light: #f5f0e8;
  --accent: #d4a843;
  --accent-dim: rgba(212, 168, 67, 0.15);
  --green: #3d6b4a;
  --green-light: #4a8c5c;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--fg-light);
}
.hero-left {
  padding: 80px 64px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg-light);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 48px;
}
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.shelf-card {
  background: rgba(61, 107, 74, 0.3);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 12px;
  padding: 20px;
}
.shelf-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.shelf-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(245, 240, 232, 0.8);
}
.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.chip-dot.green { background: #5cb85c; box-shadow: 0 0 6px rgba(92, 184, 92, 0.6); }
.agent-card {
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 12px;
  padding: 20px;
}
.agent-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.agent-orb { display: flex; }
.agent-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.agent-log { display: flex; flex-direction: column; gap: 10px; }
.log-line {
  display: flex;
  gap: 10px;
  font-size: 11px;
  font-family: 'Courier New', monospace;
}
.log-time { color: rgba(212, 168, 67, 0.5); min-width: 36px; }
.log-msg { color: rgba(245, 240, 232, 0.7); }

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
}
.hero-abstract { width: 100%; height: 100%; }
.hero-abstract svg { width: 100%; height: 100%; }

/* MANIFESTO */
.manifesto {
  background: var(--bg);
  padding: 80px 80px;
  border-bottom: 1px solid rgba(26, 58, 42, 0.1);
}
.manifesto-inner { max-width: 700px; margin: 0 auto; }
.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.6;
  color: #2a3d2e;
  text-align: center;
}

/* FEATURES */
.features {
  background: var(--bg);
  padding: 80px 80px 100px;
}
.features-header {
  text-align: center;
  margin-bottom: 64px;
}
.features-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  color: #1a3a2a;
  line-height: 1.2;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #1a3a2a;
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: #1e4030;
  padding: 48px 44px;
  transition: background 0.2s;
}
.feature-card:hover { background: #245038; }
.feature-icon { margin-bottom: 20px; }
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #f5f0e8;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.7;
}

/* COMPLIANCE */
.compliance {
  background: #1a3a2a;
  padding: 100px 80px;
}
.compliance-inner { max-width: 900px; margin: 0 auto; }
.compliance-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.compliance h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--fg-light);
  line-height: 1.25;
  margin-bottom: 60px;
}
.compliance-flow {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.flow-step { flex: 1; }
.flow-num {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 12px;
}
.flow-step h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg-light);
  margin-bottom: 8px;
}
.flow-step p {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.6;
}
.flow-arrow {
  display: flex;
  align-items: center;
  padding-top: 36px;
  flex-shrink: 0;
}

/* CLOSING */
.closing {
  background: #12281d;
  padding: 100px 80px;
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 52px);
  color: var(--fg-light);
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing p {
  font-size: 17px;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
  margin-bottom: 64px;
}
.closing-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.5);
  max-width: 160px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(212, 168, 67, 0.2);
}

/* FOOTER */
.footer {
  background: #0d1f14;
  padding: 40px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--fg-light);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.4);
}
.footer-meta {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left { padding: 60px 32px; }
  .hero-right { height: 300px; }
  .hero-visual { grid-template-columns: 1fr; }
  .features { padding: 60px 32px 80px; }
  .features-grid { grid-template-columns: 1fr; }
  .compliance { padding: 60px 32px; }
  .compliance-flow { flex-direction: column; gap: 16px; }
  .flow-arrow { display: none; }
  .closing { padding: 60px 32px; }
  .closing-stats { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }
  .manifesto { padding: 60px 32px; }
  .footer { padding: 40px 32px; flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
  h1 { font-size: 36px; }
  .stat-num { font-size: 40px; }
}
