/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: #faf7f5; color: #5A453F;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
button, input { font-family: inherit; border: none; outline: none; background: none; }
img { display: block; max-width: 100%; }

/* ===== TOKENS ===== */
:root {
  --green: #95bd8f;
  --green-hover: #85AD7F;
  --green-10: rgba(149,189,143,0.10);
  --green-15: rgba(149,189,143,0.15);
  --green-20: rgba(149,189,143,0.20);
  --green-30: rgba(149,189,143,0.30);
  --green-50: rgba(149,189,143,0.50);
  --gold: #EBB45D;
  --gold-10: rgba(235,180,93,0.10);
  --gold-15: rgba(235,180,93,0.15);
  --gold-20: rgba(235,180,93,0.20);
  --bg: #faf7f5;
  --crust: #5A453F;
  --t2: #78716c;
  --t3: #a8a29e;
  --t4: #d6d3d1;
  --border: #f5f5f4;
  --border2: #e7e5e4;
  --white: #ffffff;
  --stone50: #fafaf9;
  --max: 1152px;
  --r-card: 24px;
  --r-md: 16px;
  --r-sm: 12px;
  --r-full: 9999px;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* ===== LAYOUT ===== */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .wrap { padding: 0 24px; } }
@media (min-width: 1024px) { .wrap { padding: 0 32px; } }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(250,247,245,0.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 16px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 640px) { .nav-inner { padding: 0 24px; } }
@media (min-width: 1024px) { .nav-inner { padding: 0 32px; } }

.logo { display: flex; align-items: center; gap: 10px; border-radius: var(--r-sm); }
.logo-icon {
  width: 32px; height: 32px; background: var(--green); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 800;
}
.logo-img { width: 32px; height: 32px; border-radius: var(--r-sm); object-fit: contain; }
.logo-text { font-weight: 700; font-size: 18px; }

.nav-links { display: none; align-items: center; gap: 28px; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link {
  font-size: 14px; font-weight: 600; color: var(--t2);
  padding: 4px 8px; border-radius: 8px; transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--crust); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 4px; cursor: pointer;
  font-size: 14px; font-weight: 600; color: var(--t2);
  padding: 4px 8px; border-radius: 8px; transition: color 0.2s; background: none; border: none;
}
.nav-dropdown-trigger:hover { color: var(--crust); }
.nav-dropdown-trigger .material-symbols-outlined { font-size: 18px; transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-trigger .material-symbols-outlined { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md);
  box-shadow: 0 8px 24px rgba(90,69,63,0.10); min-width: 180px; padding: 8px;
  z-index: 100;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 10px 16px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 600; color: var(--t2); transition: 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--stone50); color: var(--crust); }
.nav-dropdown-menu .dd-desc {
  display: block; font-size: 12px; font-weight: 400; color: var(--t3); margin-top: 2px;
}

.nav-right { display: flex; align-items: center; gap: 12px; }

.menu-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--r-md); cursor: pointer;
  border: 1px solid var(--border2); background: var(--white);
}
@media (min-width: 768px) { .menu-btn { display: none; } }

.mobile-menu {
  display: none; background: var(--white); border-top: 1px solid var(--border);
  padding: 16px 24px;
}
@media (min-width: 768px) { .mobile-menu { display: none !important; } }
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 16px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 600; color: var(--t2); transition: 0.2s;
}
.mobile-menu a:hover { background: var(--stone50); color: var(--crust); }
.mobile-menu .mobile-sub { padding-left: 32px; }
.mobile-menu .mobile-sub a { font-size: 13px; padding: 10px 16px; }
.mobile-menu .mobile-label {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--t3); padding: 12px 16px 4px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; border-radius: var(--r-md); cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-green {
  background: var(--green); color: #fff;
  box-shadow: 0 8px 24px rgba(149,189,143,0.20);
}
.btn-green:hover { background: var(--green-hover); transform: scale(1.02); }
.btn-green:active { transform: scale(0.98); }
.btn-green:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-nav { padding: 10px 20px; font-size: 14px; }
.btn-hero { padding: 16px 32px; font-size: 16px; }
.btn-form { padding: 16px 32px; font-size: 14px; white-space: nowrap; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 24px; border-radius: var(--r-md);
  font-weight: 700; font-size: 16px; color: var(--t2);
  cursor: pointer; transition: 0.2s; background: transparent;
}
.btn-ghost:hover { color: var(--crust); background: rgba(168,162,158,0.08); }
.btn-ghost .material-symbols-outlined { transition: transform 0.2s; }
.btn-ghost:hover .material-symbols-outlined { transform: translateY(2px); }

/* ===== FOCUS ===== */
.focus-ring:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--green-50); }
a:focus-visible, button:focus-visible, input:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--green-50); border-radius: 8px; }

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
@media (min-width: 768px) { .section { padding: 112px 0; } }
.section-white { background: var(--white); }

.label {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--green); margin-bottom: 12px;
}
.title { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
@media (min-width: 768px) { .title { font-size: 36px; } }
.subtitle { color: var(--t2); font-size: 18px; margin-top: 16px; max-width: 560px; }
.header { text-align: center; margin-bottom: 64px; }
.header .subtitle { margin-left: auto; margin-right: auto; }

/* ===== HERO (Homepage) ===== */
.hero {
  padding: 128px 0 80px; position: relative; text-align: center;
  background: radial-gradient(ellipse 600px 400px at 50% 40%, rgba(149,189,143,0.15) 0%, transparent 70%);
}
@media (min-width: 768px) { .hero { padding: 176px 0 128px; } }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: var(--r-full);
  background: var(--green-10); border: 1px solid var(--green-15); margin-bottom: 32px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.badge-text {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--green);
}

.hero h1 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 24px; }
@media (min-width: 768px) { .hero h1 { font-size: 60px; } }

.gradient-text {
  color: #6a9d63;
  background: linear-gradient(135deg, #95bd8f 0%, #6a9d63 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-sub { font-size: 18px; color: var(--t2); line-height: 1.7; max-width: 640px; margin: 0 auto 40px; }
@media (min-width: 768px) { .hero-sub { font-size: 20px; } }

.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 16px; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; justify-content: center; } }

.trust-bar {
  margin-top: 80px; display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 24px;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--t3);
}
@media (min-width: 768px) { .trust-bar { gap: 40px; } }
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-item .material-symbols-outlined { font-size: 16px; color: var(--green); }

/* ===== PAGE HERO (Subpages) ===== */
.page-hero { padding: 128px 0 64px; text-align: center; background: radial-gradient(ellipse 600px 400px at 50% 40%, rgba(149,189,143,0.15) 0%, transparent 70%); }
@media (min-width: 768px) { .page-hero { padding: 160px 0 80px; } }
.page-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--green); margin-bottom: 12px; }
.page-title { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px; }
@media (min-width: 768px) { .page-title { font-size: 48px; } }
.page-sub { font-size: 18px; color: var(--t2); line-height: 1.7; max-width: 640px; margin: 0 auto; }
@media (min-width: 768px) { .page-sub { font-size: 20px; } }

/* ===== CONTENT (Subpages) ===== */
.content { padding: 64px 0 80px; }
@media (min-width: 768px) { .content { padding: 80px 0 112px; } }
.content-card { background: var(--white); padding: 32px; border-radius: var(--r-card); border: 1px solid var(--border); box-shadow: 0 1px 2px rgba(90,69,63,0.04); }
@media (min-width: 768px) { .content-card { padding: 48px; } }
.content-card h3 { font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.content-card p { color: var(--t2); line-height: 1.7; }

/* ===== CARDS ===== */
.card {
  background: var(--white); padding: 32px; border-radius: var(--r-card);
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(90,69,63,0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(90,69,63,0.08); }
.card-alt { background: var(--bg); }
.card h3 { font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--t2); line-height: 1.7; }

.icon-box {
  width: 48px; height: 48px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.icon-box .material-symbols-outlined { font-size: 24px; }
.icon-green { background: var(--green-15); }
.icon-green .material-symbols-outlined { color: var(--green); }
.icon-gold { background: var(--gold-15); }
.icon-gold .material-symbols-outlined { color: var(--gold); }

.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-15); margin-bottom: 20px;
}
.step-num span { color: var(--green); font-weight: 800; font-size: 14px; }

/* ===== GRIDS ===== */
.g3 { display: grid; gap: 24px; }
@media (min-width: 768px) { .g3 { grid-template-columns: repeat(3,1fr); } }
.g2 { display: grid; gap: 24px; }
@media (min-width: 768px) { .g2 { grid-template-columns: repeat(2,1fr); } }
.g2x2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }

/* ===== PRIVACY ===== */
.priv-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 768px) { .priv-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.checks { display: flex; flex-direction: column; gap: 20px; }
.check { display: flex; gap: 16px; align-items: flex-start; }
.check-icon {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-15); display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.check-icon .material-symbols-outlined { font-size: 16px; color: var(--green); }
.check h4 { font-weight: 700; margin-bottom: 2px; }
.check p { color: var(--t2); font-size: 14px; }

/* ===== FLOW DIAGRAM ===== */
.flow-card {
  background: var(--white); border-radius: var(--r-card); border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(90,69,63,0.04); padding: 32px;
}
@media (min-width: 768px) { .flow-card { padding: 40px; } }
.flow-label {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--t3); text-align: center; margin-bottom: 24px;
}
.flow-node {
  display: flex; align-items: center; gap: 16px; padding: 16px; border-radius: var(--r-md);
}
.flow-node-g { background: var(--green-10); border: 1px solid var(--green-15); }
.flow-node-y { background: var(--gold-10); border: 1px solid var(--gold-15); }
.flow-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.flow-node-g .flow-avatar { background: var(--green-20); }
.flow-node-g .material-symbols-outlined { color: var(--green); }
.flow-node-y .flow-avatar { background: var(--gold-20); }
.flow-node-y .material-symbols-outlined { color: var(--gold); }
.flow-node h4 { font-weight: 700; font-size: 14px; }
.flow-node p { font-size: 12px; color: var(--t2); }

.flow-conn {
  display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 16px 0;
}
.flow-line { width: 2px; height: 16px; background: var(--green-30); }
.flow-conn .material-symbols-outlined { font-size: 16px; color: var(--green); }
.flow-conn p { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--t3); }

.flow-absent {
  margin-top: 24px; padding: 16px; border-radius: var(--r-md);
  background: var(--stone50); border: 1px solid var(--border);
}
.flow-absent-label {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--t3); margin-bottom: 12px;
}
.flow-absent-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--t2); padding: 4px 0;
}
.flow-absent-item .material-symbols-outlined { font-size: 14px; color: var(--t3); }

/* ===== MODEL CARDS ===== */
.model-card {
  padding: 24px; border-radius: var(--r-card); border: 1px solid var(--border);
  background: var(--bg); text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.model-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(90,69,63,0.08); }
.model-card .icon-box { margin: 0 auto 16px; }
.model-card h3 { font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.model-card p { color: var(--t2); font-size: 14px; margin-bottom: 12px; }
.model-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 3px 10px; border-radius: var(--r-full);
}
.model-tag-open { background: var(--green-10); color: var(--green); border: 1px solid var(--green-15); }
.model-tag-prop { background: var(--gold-10); color: var(--gold); border: 1px solid var(--gold-15); }

/* ===== EU SECTION ===== */
.eu-card {
  background: var(--white); border-radius: var(--r-card); border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(90,69,63,0.04); padding: 32px;
}
@media (min-width: 768px) { .eu-card { padding: 48px; } }
@media (min-width: 1024px) { .eu-card { padding: 64px; } }
.eu-grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 768px) { .eu-grid { grid-template-columns: 1fr 1fr; } }

.eu-badge {
  display: inline-flex; padding: 4px 12px; border-radius: var(--r-full);
  background: var(--gold-10); border: 1px solid var(--gold-15); margin-bottom: 24px;
}
.eu-badge span { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }

.eu-stat {
  padding: 20px; border-radius: var(--r-md); background: var(--bg); border: 1px solid var(--border);
}
.eu-stat .material-symbols-outlined { font-size: 24px; color: var(--green); display: block; margin-bottom: 12px; }
.eu-stat h4 { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.eu-stat p { font-size: 12px; color: var(--t2); }

/* ===== CTA ===== */
.cta-form { display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 0 auto; }
@media (min-width: 640px) { .cta-form { flex-direction: row; } }
.cta-input {
  flex: 1; background: var(--bg); border-radius: var(--r-md);
  padding: 16px 20px; font-weight: 600; font-size: 14px; color: var(--crust); width: 100%;
}
.cta-input::placeholder { color: var(--t4); }
.cta-input:focus { box-shadow: 0 0 0 2px var(--green-50); }

.feedback { margin-top: 16px; font-size: 14px; font-weight: 600; }
.feedback-err { color: #ef4444; }
.feedback-ok { color: var(--green); }
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.feedback { animation: fadein 0.3s ease-out; }

.hint { font-size: 12px; color: var(--t3); margin-top: 16px; }

/* ===== FOOTER ===== */
.footer { padding: 64px 0 32px; border-top: 1px solid var(--border); }
.footer-top { display: grid; gap: 40px; margin-bottom: 48px; }
@media (min-width: 768px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; } }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo-img { width: 28px; height: 28px; border-radius: 8px; object-fit: contain; }
.footer-logo-icon {
  width: 28px; height: 28px; background: var(--green); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; font-weight: 800;
}
.footer-tagline { font-size: 14px; color: var(--t2); line-height: 1.6; max-width: 260px; }
.footer-col h4 {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--t3); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--t2); padding: 4px 0;
  transition: color 0.2s; border-radius: 4px;
}
.footer-col a:hover { color: var(--crust); }
.footer-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-eu { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--t3); }
.footer-eu .material-symbols-outlined { font-size: 14px; }
.footer-copy { font-size: 12px; color: var(--t3); }

/* ===== PROMISE PAGE: COMMITMENTS ===== */
.commitment-grid { display: grid; gap: 16px; margin-bottom: 48px; }
@media (min-width: 768px) { .commitment-grid { grid-template-columns: repeat(3,1fr); } }
.commitment {
  background: var(--white); padding: 28px; border-radius: var(--r-card);
  border: 1px solid var(--border); text-align: center;
}
.commitment .material-symbols-outlined { font-size: 28px; color: var(--green); margin-bottom: 12px; }
.commitment h3 { font-weight: 700; font-size: 16px; margin-bottom: 6px; }
.commitment p { font-size: 14px; color: var(--t2); line-height: 1.6; }

/* ===== PROMISE PAGE: SOVEREIGNTY EXPLAINER ===== */
.sov-card {
  background: var(--white); border-radius: var(--r-card); border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(90,69,63,0.04); padding: 32px; max-width: 720px; margin: 0 auto 64px;
}
@media (min-width: 768px) { .sov-card { padding: 48px; } }
.sov-card h2 { font-size: 24px; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.01em; }
.sov-card p { color: var(--t2); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.sov-card p:last-child { margin-bottom: 0; }
.sov-highlight { font-weight: 700; color: var(--crust); }

/* ===== PROMISE PAGE: ROADMAP ===== */
.roadmap-section { max-width: 680px; margin: 0 auto; }
.roadmap-label { text-align: center; margin-bottom: 40px; }

.phase { position: relative; padding-left: 52px; padding-bottom: 40px; }
.phase:last-child { padding-bottom: 0; }
.phase::before {
  content: ''; position: absolute; left: 17px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--green), var(--green-30));
}
.phase:last-child::before { background: linear-gradient(180deg, var(--green), transparent); }
.phase.done::before { background: var(--green); }

.phase-dot {
  position: absolute; left: 8px; top: 2px; width: 20px; height: 20px;
  border-radius: 50%; background: var(--bg); border: 2.5px solid var(--green); z-index: 1;
}
.phase.done .phase-dot {
  background: var(--green); display: flex; align-items: center; justify-content: center;
}
.phase.done .phase-dot::after {
  content: ''; display: block; width: 5px; height: 9px;
  border: solid var(--white); border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-0.5px);
}
.phase.active .phase-dot {
  background: var(--green); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 4px var(--green-10), 0 0 12px rgba(149,189,143,0.2);
  animation: rmpulse 2.5s ease-in-out infinite;
}
.phase.active .phase-dot::after {
  content: ''; display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--white);
}
@keyframes rmpulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--green-10), 0 0 12px rgba(149,189,143,0.15); }
  50% { box-shadow: 0 0 0 6px var(--green-10), 0 0 18px rgba(149,189,143,0.25); }
}

.phase-overline {
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--green); margin-bottom: 4px; opacity: 0.8;
}
.phase.active .phase-overline { opacity: 1; color: var(--gold); }
.phase.done .phase-overline { opacity: 0.6; }
.phase-title { font-size: 19px; font-weight: 800; color: var(--crust); line-height: 1.3; margin-bottom: 6px; }
.phase-desc { font-size: 14px; color: var(--t2); line-height: 1.65; margin-bottom: 14px; }
.phase-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tag {
  font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: var(--r-full);
  background: var(--green-10); color: var(--green); border: 1px solid var(--green-15);
  letter-spacing: 0.02em;
}
.phase.active .tag {
  background: var(--gold-10); color: var(--gold); border-color: var(--gold-15);
}

/* Sovereignty meters */
.meters {
  display: flex; flex-direction: column; gap: 10px;
  padding: 14px 16px; background: var(--green-10); border-radius: var(--r-sm); border: 1px solid var(--green-15);
}
.meter-row { display: grid; grid-template-columns: 130px minmax(0,1fr) 32px; align-items: center; gap: 10px; }
.meter-name { font-size: 12px; font-weight: 600; color: var(--t2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.meter-track { height: 6px; border-radius: 3px; background: var(--green-15); overflow: hidden; }
.meter-fill { height: 100%; border-radius: 3px; transition: width 0.6s ease; }
.meter-pct { font-size: 12px; font-weight: 800; color: var(--green); text-align: right; }
.meter-note { font-size: 12px; color: var(--t3); line-height: 1.5; font-style: italic; margin-top: 2px; grid-column: 1 / -1; }
.fill-full { background: var(--green); }
.fill-partial { background: var(--gold); }
.fill-growing { background: linear-gradient(90deg, var(--gold), var(--green)); }
.fill-complete { background: linear-gradient(90deg, #6a9d63, var(--gold)); }
.pct-partial { color: var(--gold); }

/* ===== FADE ===== */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; }
}
