:root {
  /* Ultra-Clean Institutional Palette */
  --bg-main: #FFFFFF;
  --bg-alt: #FBFBFC;
  --bg-dark: #020C1B;
  --text-main: #111827;
  --text-muted: #6B7280;
  --accent-gold: #C5A059;
  --status-green: #10B981;
  --status-orange: #F59E0B;
  --status-red: #EF4444;

  --font-heading: "Playfair Display", serif;
  --font-ui: "Inter", sans-serif;
}

/* --- Base Reset & Typography --- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
  background: var(--bg-main); 
  color: var(--text-main); 
  font-family: var(--font-ui); 
  line-height: 1.6; 
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1000px; margin: 0 auto; padding: 0 40px; }
.text-center { text-align: center; }

/* --- Minimalist Header --- */
.surgical-header { 
  padding: 40px 0; 
  background: transparent;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.brand-logo { height: 50px; filter: grayscale(1); transition: 0.3s; }
.brand-logo:hover { filter: grayscale(0); }
.status-badge { 
  font-size: 10px; 
  font-weight: 700; 
  letter-spacing: 2px; 
  color: var(--text-muted);
  text-transform: uppercase;
}

/* --- Hero Section: Bold & Breathable --- */
.hero-section { padding: 100px 0 140px; }
.eyebrow { 
  font-size: 11px; 
  text-transform: uppercase; 
  letter-spacing: 4px; 
  color: var(--accent-gold); 
  margin-bottom: 32px;
  display: block;
}
h1 { 
  font-family: var(--font-heading); 
  font-size: clamp(3rem, 8vw, 5.5rem); 
  line-height: 1; 
  margin-bottom: 40px;
  font-weight: 700;
}
.jobs-manifesto {
  font-size: 13px;
  letter-spacing: 5px;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-transform: uppercase;
}
.manifesto-lead { 
  font-size: 1.25rem; 
  color: var(--text-muted); 
  max-width: 600px; 
  margin: 0 auto 60px;
}
.btn-shield { 
  background: var(--bg-dark); 
  color: #FFF; 
  padding: 22px 48px; 
  text-decoration: none; 
  font-weight: 600; 
  font-size: 12px;
  text-transform: uppercase; 
  letter-spacing: 3px; 
  display: inline-block;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-shield:hover { background: var(--accent-gold); transform: translateY(-2px); }

/* --- Data Section: Clinical Information --- */
.data-section { padding: 120px 0; background: var(--bg-alt); border-top: 1px solid #F0F0F0; }
.grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.data-content h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 24px; }
.data-stats { display: flex; gap: 60px; }
.stat-value { font-family: var(--font-heading); font-size: 3rem; color: var(--accent-gold); display: block; }
.stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }

/* --- Status Monitoring: Invisible Grid --- */
.status-section { padding: 140px 0; }
.status-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 0; 
  margin-top: 80px;
  border-top: 1px solid #EEE;
}
.status-card { padding: 60px 40px; border-right: 1px solid #EEE; border-bottom: 1px solid #EEE; }
.status-card:last-child { border-right: none; }
.status-indicator { width: 8px; height: 8px; border-radius: 50%; display: block; margin-bottom: 24px; }
.bg-green { background: var(--status-green); }
.bg-orange { background: var(--status-orange); }
.bg-red { background: var(--status-red); }
.status-card h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.status-card p { font-size: 14px; color: var(--text-muted); }

/* --- Value Contrast: Sophisticated Split --- */
.logic-section { padding: 120px 0; background: var(--bg-dark); color: #FFF; }
.economic-logic { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 80px; text-align: left; }
.logic-card { padding: 80px; }
.logic-card.liability { background: transparent; opacity: 0.5; }
.logic-card.sovereign { background: rgba(255,255,255,0.03); border: 1px solid rgba(197, 160, 89, 0.3); }
.logic-price { font-family: var(--font-heading); font-size: 3.5rem; margin-bottom: 24px; }
.logic-list { list-style: none; }
.logic-list li { padding: 12px 0; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* --- Founding Form: Centered & Minimal --- */
.founding-section { padding: 160px 0; }
.founding-form { max-width: 450px; margin: 40px auto; }
.founding-form input, .founding-form textarea {
  width: 100%; 
  padding: 20px 0; 
  border: none; 
  border-bottom: 1px solid #DDD; 
  margin-bottom: 24px; 
  font-family: var(--font-ui);
  transition: 0.3s;
}
.founding-form input:focus { outline: none; border-bottom-color: var(--accent-gold); }

/* --- Footer --- */
.sober-footer { padding: 100px 0; border-top: 1px solid #EEE; }
.footer-primary { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-secondary, .disclaimer { font-size: 11px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }



/* --- Infrastructure of Certainty: Typographic Grid --- */
.dependency-section { 
  padding: 120px 0; 
  background: var(--bg-main); 
  border-top: 1px solid #EEE;
}

.dependency-section h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 80px;
}

.dependency-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 0; 
}

.dep-item { 
  padding: 0 40px;
  border-right: 1px solid #EEE;
}

.dep-item:last-child { 
  border-right: none; 
}

.dep-code { 
  font-size: 10px; 
  font-weight: 700; 
  color: var(--accent-gold); 
  text-transform: uppercase; 
  letter-spacing: 2px; 
  display: block; 
  margin-bottom: 16px; 
}

.dep-item h4 { 
  font-size: 18px; 
  margin-bottom: 16px; 
  font-weight: 600;
  letter-spacing: -0.01em;
}

.dep-item p { 
  font-size: 14px; 
  color: var(--text-muted); 
  line-height: 1.6;
}


/* --- Super Fine-Tuned Mobile Architecture --- */
@media (max-width: 850px) {
  /* Global Container Adjustment */
  .container { padding: 0 24px; }

  /* Header Optimization */
  .surgical-header { padding: 20px 0; }
  .brand-logo { height: 32px; } /* Scaled down for mobile view */
  .status-badge { font-size: 8px; letter-spacing: 1px; }

  /* Hero Section: Tightened for Impact */
  .hero-section { padding: 60px 0 80px; }
  .eyebrow { font-size: 9px; margin-bottom: 20px; }
  h1 { font-size: 3.2rem; margin-bottom: 24px; } /* Adjusted clamp for verticality */
  .jobs-manifesto { font-size: 10px; letter-spacing: 3px; margin-bottom: 32px; padding: 0 10px; }
  .manifesto-lead { font-size: 1.1rem; margin-bottom: 40px; padding: 0; }
  .btn-shield { width: 100%; padding: 20px; text-align: center; }

  /* Data & Stats: Vertical Stacking */
  .data-section { padding: 80px 0; }
  .grid-two { grid-template-columns: 1fr; gap: 40px; }
  .data-stats { flex-direction: column; gap: 40px; }
  .stat-value { font-size: 2.5rem; }

  /* Status Grid: Removing Ghost Dividers */
  .status-section { padding: 80px 0; }
  .status-grid { grid-template-columns: 1fr; margin-top: 40px; border-top: none; }
  .status-card { 
    padding: 40px 0; 
    border-right: none; 
    border-bottom: 1px solid #EEE; 
    text-align: left; 
  }
  .status-card:last-child { border-bottom: none; }

  /* Economic Logic: High Contrast Stacking */
  .logic-section { padding: 80px 0; }
  .economic-logic { grid-template-columns: 1fr; border: none; }
  .logic-card { padding: 40px 24px; }
  .logic-card.liability { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .logic-card.sovereign { border: 1px solid var(--accent-gold); margin: 20px 0 0; }
  .logic-price { font-size: 2.8rem; }

  /* Infrastructure of Certainty: Mobile Flow */
  .dependency-section { padding: 80px 0; }
  .dependency-section h2 { font-size: 2rem; margin-bottom: 40px; }
  .dependency-grid { grid-template-columns: 1fr; gap: 0; }
  .dep-item { 
    padding: 40px 0; 
    border-right: none; 
    border-bottom: 1px solid #EEE; 
  }
  .dep-item:last-child { border-bottom: none; }

  /* Founding Form: Edge-to-Edge */
  .founding-section { padding: 100px 0; }
  .founding-form { width: 100%; }
  .founding-form input, .founding-form textarea { font-size: 16px; } /* Prevents iOS zoom on focus */

  /* Footer Refinement */
  .sober-footer { padding: 60px 0; }
  .disclaimer { font-size: 10px; padding: 0 10px; }
}