/* ============================================================
   STRATOS DESIGN SYSTEM v1.0
   Usage: <link rel="stylesheet" href="/assets/stratos.css">
   ============================================================ */
 
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');
 
/* ── TOKENS ── */
:root {
  --deep-forest:   #091E1A;
  --sage:          #93B7A3;
  --sage-light:    #90B4A0;
  --light-grey:    #F5F5F3;
  --amber-bg:      #FFF3E0;
  --amber-text:    #8B4513;
  --amber-accent:  #D4883A;
  --red-bg:        #FFEBEB;
  --red-text:      #8B1A1A;
  --white:         #FFFFFF;
  --grey-text:     #4B5563;
  --forest-med:    #15453C;
  --near-black:    #040F0D;
  --border:        rgba(147, 183, 163, 0.18);
  --border-strong: rgba(147, 183, 163, 0.35);
  --surface:       rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --radius-sm:     3px;
  --radius-md:     6px;
  --radius-lg:     10px;
  --font:          'Manrope', sans-serif;
}
 
/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
 
html { font-size: 16px; scroll-behavior: smooth; }
 
body {
  font-family: var(--font);
  background: var(--deep-forest);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
 
/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; }
h2 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; }
h3 { font-size: clamp(15px, 1.8vw, 18px); font-weight: 700; letter-spacing: -0.01em; }
h4 { font-size: 14px; font-weight: 600; letter-spacing: 0.02em; }
p  { font-size: 14px; font-weight: 400; color: rgba(255,255,255,0.72); }
 
/* ── NAV ── */
.s-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9,30,26,0.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 60px;
}
.s-nav-brand   { display: flex; align-items: center; gap: 12px; }
.s-nav-logo    { font-size: 14px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); }
.s-nav-sep     { color: var(--border-strong); font-size: 18px; }
.s-nav-client  { font-size: 13px; color: rgba(255,255,255,0.45); font-weight: 500; }
.s-nav-right   { display: flex; align-items: center; gap: 14px; }
.s-nav-date    { font-size: 11px; color: rgba(255,255,255,0.3); }
 
/* ── STATUS BADGES ── */
.s-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--radius-sm);
}
.s-badge-draft   { background: rgba(212,136,58,0.12); color: var(--amber-accent); border: 1px solid rgba(212,136,58,0.3); }
.s-badge-review  { background: rgba(147,183,163,0.12); color: var(--sage); border: 1px solid var(--border-strong); }
.s-badge-final   { background: rgba(21,69,60,0.6);    color: #7ecdb0; border: 1px solid rgba(126,205,176,0.3); }
 
/* ── HERO ── */
.s-hero {
  padding: 64px 48px 52px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.s-hero::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(147,183,163,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.s-hero-meta   { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.s-hero-tag    { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); border: 1px solid var(--border-strong); padding: 4px 10px; border-radius: var(--radius-sm); }
.s-hero-tag-2  { font-size: 11px; color: rgba(255,255,255,0.3); font-weight: 400; }
.s-hero h1 span { color: var(--sage); }
.s-hero-sub    { margin-top: 14px; font-size: 15px; color: rgba(255,255,255,0.52); max-width: 560px; }
 
/* ── SECTION ── */
.s-section {
  padding: 48px;
  border-bottom: 1px solid var(--border);
}
.s-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.s-section-label::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--border-strong), transparent);
}
.s-section h2 { margin-bottom: 8px; }
.s-section h2 + p { margin-bottom: 24px; }
 
/* ── CARDS ── */
.s-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: background 0.2s, border-color 0.2s;
}
.s-card:hover { background: var(--surface-hover); border-color: var(--border-strong); }
 
.s-card-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.s-card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
 
.s-card-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sage); margin-bottom: 10px;
}
.s-card h3 { margin-bottom: 8px; }
 
/* ── TABLE ── */
.s-table-wrap { overflow-x: auto; }
.s-table {
  width: 100%; border-collapse: collapse;
  font-size: 13px;
}
.s-table th {
  text-align: left; padding: 10px 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage); border-bottom: 1px solid var(--border-strong);
  white-space: nowrap;
}
.s-table td {
  padding: 11px 14px;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.s-table tr:last-child td { border-bottom: none; }
.s-table tr:hover td { background: var(--surface-hover); }
.s-table .td-muted { color: rgba(255,255,255,0.4); }
.s-table .td-sage  { color: var(--sage); font-weight: 600; }
.s-table .td-em    { color: var(--white); font-weight: 600; }
 
/* ── ALERT BANDS ── */
.s-alert {
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 13px;
  display: flex; align-items: flex-start; gap: 10px;
}
.s-alert-amber { background: var(--amber-bg); color: var(--amber-text); border: 1px solid rgba(139,69,19,0.2); }
.s-alert-red   { background: var(--red-bg);   color: var(--red-text);   border: 1px solid rgba(139,26,26,0.2); }
.s-alert-sage  { background: rgba(147,183,163,0.1); color: var(--sage); border: 1px solid var(--border-strong); }
.s-alert strong { font-weight: 700; }
 
/* ── TIMELINE ── */
.s-timeline { position: relative; padding-left: 28px; }
.s-timeline::before {
  content: ''; position: absolute; left: 8px; top: 4px; bottom: 4px;
  width: 1px; background: var(--border);
}
.s-timeline-item { position: relative; margin-bottom: 28px; }
.s-timeline-item::before {
  content: ''; position: absolute; left: -24px; top: 6px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sage); border: 2px solid var(--deep-forest);
  box-shadow: 0 0 0 2px var(--sage);
}
.s-timeline-month { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); margin-bottom: 4px; }
.s-timeline-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.s-timeline-body  { font-size: 13px; color: rgba(255,255,255,0.58); }
 
/* ── RACI DOT ── */
.raci-d { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--sage); margin-right: 4px; vertical-align: middle; }
.raci-c { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: rgba(147,183,163,0.35); margin-right: 4px; vertical-align: middle; }
.raci-i { display: inline-block; width: 8px; height: 8px; border-radius: 50%; border: 1px solid rgba(147,183,163,0.4); margin-right: 4px; vertical-align: middle; }
 
/* ── FOOTER ── */
.s-footer {
  padding: 32px 48px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
  font-size: 11px; color: rgba(255,255,255,0.28);
}
.s-footer-logo { font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(147,183,163,0.4); font-size: 12px; }
 
/* ── UTILS ── */
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.text-sage   { color: var(--sage); }
.text-muted  { color: rgba(255,255,255,0.45); }
.text-white  { color: var(--white); }
.text-sm     { font-size: 12px; }
.text-xs     { font-size: 11px; }
.font-600    { font-weight: 600; }
.font-700    { font-weight: 700; }
.cols-2      { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cols-3      { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
 
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .s-nav    { padding: 0 20px; }
  .s-hero   { padding: 40px 20px 32px; }
  .s-section{ padding: 32px 20px; }
  .s-footer { padding: 24px 20px; flex-direction: column; gap: 8px; text-align: center; }
  .s-card-grid-2, .s-card-grid-3, .cols-2, .cols-3 { grid-template-columns: 1fr; }
}
 
