:root {
  --navy: #1a2332;
  --navy-light: #243044;
  --amber: #c8973a;
  --amber-light: #d4aa4f;
  --cream: #f5f2ed;
  --cream-dark: #ede9e1;
  --ink: #111820;
  --ink-muted: #4a5568;
  --white: #ffffff;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 48px;
}

.hero-inner {
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  display: inline-block;
}

.hero-headline {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--navy);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s, opacity 0.15s;
}
.hero-cta:hover { background: var(--amber-light); }

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255,255,255,0.82);
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.25);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.hero-cta-secondary:hover { border-color: var(--amber); color: var(--amber); }

.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.proof-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  color: var(--amber);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Ornament rings */
.hero-ornament {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  z-index: 1;
}

.ornament-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200, 151, 58, 0.2);
}

.ring-1 { width: 320px; height: 320px; top: 0; left: 0; }
.ring-2 { width: 240px; height: 240px; top: 40px; left: 40px; }
.ring-3 { width: 160px; height: 160px; top: 80px; left: 80px; }

.ornament-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(200, 151, 58, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── PROVENANCE ─────────────────────────────────── */
.provenance {
  padding: 96px 48px;
  background: var(--cream);
}

.provenance-header {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.provenance-header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--navy);
  margin-bottom: 16px;
}

.provenance-body {
  font-size: 18px;
  color: var(--ink-muted);
  line-height: 1.65;
}

.provenance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
}

.prov-card {
  background: var(--white);
  padding: 40px;
}

.prov-icon {
  margin-bottom: 20px;
}

.prov-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
}

.prov-card p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ── FEATURES ────────────────────────────────────── */
.features {
  padding: 96px 48px;
  background: var(--navy);
  color: var(--white);
}

.features-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.features-headline {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--white);
  margin-bottom: 56px;
  max-width: 560px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
}

.feature-item {
  display: flex;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  align-items: flex-start;
}

.feature-num {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
  min-width: 32px;
  padding-top: 4px;
}

.feature-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ── OUTPUTS ─────────────────────────────────────── */
.outputs {
  padding: 96px 48px;
  background: var(--cream-dark);
}

.outputs-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.outputs-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--navy);
  margin-bottom: 20px;
}

.outputs-text p {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.65;
}

.outputs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.output-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(26,35,50,0.12);
}

.output-region {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--navy);
  padding: 4px 10px;
  min-width: 48px;
  text-align: center;
  border-radius: 3px;
}

.output-desc {
  font-size: 15px;
  color: var(--ink);
}

/* ── MANIFESTO ───────────────────────────────────── */
.manifesto {
  padding: 96px 48px;
  background: var(--cream);
}

.manifesto-inner {
  max-width: 680px;
  margin: 0 auto;
}

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 36px;
  line-height: 1.4;
  font-style: normal;
  position: relative;
  padding-left: 28px;
}

.manifesto-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: var(--amber);
}

.manifesto-body {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ── CLOSING ─────────────────────────────────────── */
.closing {
  padding: 96px 48px;
  background: var(--navy-light);
  text-align: center;
}

.closing h2 {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.closing p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.closing-stamp {
  display: flex;
  justify-content: center;
}

.stamp-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 40px;
  border: 1.5px solid var(--amber);
  opacity: 0.7;
}

.stamp-inner span {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 40px 48px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand strong {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.footer-brand span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.12s;
}

.footer-link:hover { color: var(--amber); }

.footer-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-align: right;
}

/* ── TRUST PAGE ──────────────────────────────────── */
.trust-header { background: var(--navy); padding: 80px 48px 64px; color: var(--white); }
.trust-header-inner { max-width: 760px; margin: 0 auto; }
.trust-header-label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--amber); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.trust-header h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: var(--white); margin-bottom: 20px; letter-spacing: -0.02em; }
.trust-header-sub { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.65; max-width: 620px; }

.trust-toc { background: var(--cream-dark); border-bottom: 1px solid rgba(26,35,50,0.12); padding: 24px 48px; }
.trust-toc-inner { max-width: 900px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; }
.trust-toc-label { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-right: 8px; }
.trust-toc a { font-size: 14px; color: var(--navy); text-decoration: none; border-bottom: 1px solid rgba(26,35,50,0.25); padding-bottom: 1px; transition: color 0.12s, border-color 0.12s; }
.trust-toc a:hover { color: var(--amber); border-color: var(--amber); }

.trust-body { max-width: 900px; margin: 0 auto; padding: 64px 48px; }
.trust-section { margin-bottom: 72px; scroll-margin-top: 80px; }
.trust-section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin-bottom: 10px; }
.trust-section h2 { font-size: clamp(22px, 2.8vw, 32px); color: var(--navy); margin-bottom: 24px; letter-spacing: -0.01em; }
.trust-section h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-top: 32px; margin-bottom: 10px; }
.trust-section p { font-size: 15px; color: var(--ink-muted); line-height: 1.75; margin-bottom: 14px; }
.trust-section ul { margin: 12px 0 20px 0; padding-left: 0; list-style: none; }
.trust-section ul li { font-size: 15px; color: var(--ink-muted); line-height: 1.65; padding: 6px 0 6px 22px; position: relative; border-bottom: 1px solid rgba(26,35,50,0.07); }
.trust-section ul li::before { content: '→'; position: absolute; left: 0; color: var(--amber); font-weight: 600; }

.status-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 9px; border-radius: 3px; vertical-align: middle; margin-left: 8px; }
.badge-ga { background: rgba(52,168,83,0.12); color: #2d7a3a; border: 1px solid rgba(52,168,83,0.3); }
.badge-roadmap { background: rgba(200,151,58,0.12); color: #8a6020; border: 1px solid rgba(200,151,58,0.4); }

.reg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin: 28px 0; }
.reg-card { background: var(--white); padding: 28px 32px; border-left: 3px solid transparent; }
.reg-card.primary { border-left-color: var(--amber); }
.reg-card-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.05em; color: var(--navy); margin-bottom: 12px; }
.reg-card p { margin-bottom: 0; }

.trust-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.trust-table th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.trust-table td { padding: 12px 16px; border-bottom: 1px solid rgba(26,35,50,0.1); color: var(--ink-muted); vertical-align: top; }
.trust-table tr:nth-child(even) td { background: rgba(245,242,237,0.6); }
.trust-table td strong { color: var(--ink); }

.trust-divider { border: none; border-top: 1px solid rgba(26,35,50,0.1); margin: 0 0 72px 0; }

.trust-contact-box { background: var(--navy); color: var(--white); padding: 40px 48px; margin: 0; }
.trust-contact-box h2 { color: var(--white); margin-bottom: 14px; }
.trust-contact-box p { color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.trust-contact-box a.contact-link { display: inline-flex; align-items: center; gap: 8px; background: var(--amber); color: var(--navy); font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; padding: 12px 24px; border-radius: 4px; text-decoration: none; transition: background 0.15s; }
.trust-contact-box a.contact-link:hover { background: var(--amber-light); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 64px 24px; }
  .hero-ornament { display: none; }
  .provenance { padding: 64px 24px; }
  .provenance-grid { grid-template-columns: 1fr; }
  .features { padding: 64px 24px; }
  .outputs { padding: 64px 24px; }
  .outputs-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; }
  .trust-header { padding: 60px 24px 48px; }
  .trust-toc { padding: 20px 24px; }
  .trust-body { padding: 48px 24px; }
  .reg-grid { grid-template-columns: 1fr; }
  .trust-contact-box { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .feature-item { flex-direction: column; gap: 8px; }
}
