:root {
  --bg: #0D0D10;
  --bg-card: #13131A;
  --bg-card-hover: #18181F;
  --amber: #F59E0B;
  --amber-dim: rgba(245, 158, 11, 0.12);
  --amber-border: rgba(245, 158, 11, 0.3);
  --text-primary: #FAFAF8;
  --text-secondary: #8A8A8A;
  --text-muted: #555555;
  --divider: rgba(255,255,255,0.07);
}

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

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

/* HERO */
.hero {
  padding: 80px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.meta-tag {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.meta-sep {
  width: 1px;
  height: 12px;
  background: var(--divider);
}

/* BRIEFING CARD */
.briefing-card {
  background: var(--bg-card);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.briefing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.briefing-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}
.briefing-time {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'DM Sans', monospace;
}
.briefing-divider {
  height: 1px;
  background: var(--divider);
  margin: 16px 0;
}
.briefing-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.alert-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.6);
}
.alert-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.alert-meta {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.briefing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--divider);
}
.briefing-row:last-of-type { border-bottom: none; }
.row-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.row-val {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}
.briefing-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11px;
  color: var(--text-muted);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.5);
}

/* MANIFESTO */
.manifesto {
  padding: 80px 40px;
  border-top: 1px solid var(--divider);
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-rule {
  width: 48px;
  height: 3px;
  background: var(--amber);
  margin-bottom: 40px;
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.4;
  max-width: 900px;
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 16px;
}

/* HOW IT WORKS */
.howitworks {
  padding: 80px 40px;
  background: #0F0F14;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.howitworks-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 56px;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}
.step { padding: 0 24px 0 0; }
.step-connector {
  width: 1px;
  background: var(--divider);
  align-self: stretch;
  min-height: 120px;
  margin-top: 4px;
}
.step-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--amber);
  display: block;
  margin-bottom: 16px;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}
.step-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* OUTSOURCES */
.outsources {
  padding: 80px 40px;
  border-bottom: 1px solid var(--divider);
}
.outsources-inner { max-width: 1200px; margin: 0 auto; }
.outsources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.outsource-card {
  padding: 32px;
  border: 1px solid var(--divider);
  background: var(--bg-card);
  transition: background 0.2s;
}
.outsource-card:hover { background: var(--bg-card-hover); }
.outsource-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--amber-dim);
  border: 1px solid var(--amber-border);
  margin-bottom: 20px;
}
.outsource-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.outsource-body {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  border-bottom: 1px solid var(--divider);
}
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing-rule {
  width: 48px;
  height: 3px;
  background: var(--amber);
  margin-bottom: 48px;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 680px;
}

/* FOOTER */
footer {
  padding: 48px 40px;
  background: var(--bg);
}
.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: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--text-primary);
  font-weight: 400;
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 48px 24px 64px; }
  .manifesto { padding: 64px 24px; }
  .howitworks { padding: 64px 24px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .step-connector { display: none; }
  .outsources-grid { grid-template-columns: 1fr 1fr; }
  .outsources { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .footer-inner { flex-direction: column; gap: 20px; align-items: flex-start; }
}
@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
  .outsources-grid { grid-template-columns: 1fr; }
}