/* =========================================================
   DORA Visual — base styles
   Strict-CSP-friendly: no @import, no remote assets.
   ========================================================= */

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

:root {
  --blue-900: #042C53;
  --blue-800: #0C447C;
  --blue-700: #0F4E91;
  --blue-600: #185FA5;
  --blue-500: #2474C2;
  --blue-400: #378ADD;
  --blue-100: #B5D4F4;
  --blue-50:  #E6F1FB;

  --teal-700: #0B5A45;
  --teal-600: #0F6E56;
  --teal-400: #1D9E75;
  --teal-50:  #E1F5EE;

  --amber-600: #854F0B;
  --amber-400: #BA7517;
  --amber-50:  #FAEEDA;

  --red-600:  #A32D2D;
  --red-500:  #C73B3B;
  --red-400:  #E24B4A;
  --red-50:   #FCEBEB;

  --purple-600: #534AB7;
  --purple-50:  #EEEDFE;

  --ink-900: #0B1322;
  --ink-800: #16213e;
  --ink-700: #1f2a44;
  --text:    #0F172A;
  --muted:   #475569;
  --light:   #94A3B8;
  --border:  #E2E8F0;
  --bg:      #FFFFFF;
  --bg-alt:  #F8FAFC;
  --bg-soft: #F0F4F8;

  --radius:    14px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --maxw:      1120px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06);
  --shadow:    0 6px 24px rgba(15,23,42,.08);
  --shadow-lg: 0 18px 48px rgba(8,15,35,.18);
  --ease:      cubic-bezier(.2,.7,.2,1);
}

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter,
               "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a {
  color: var(--blue-600);
  text-decoration: none;
  transition: color .2s var(--ease);
}
a:hover { color: var(--blue-800); text-decoration: underline; text-underline-offset: 3px; }
a:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}

p { margin: 0 0 14px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--blue-600); color: #fff;
  padding: 10px 14px; border-radius: 8px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 22px;
}

.muted  { color: var(--muted); }
.small  { font-size: .82rem; }

/* =========================================================
   Header / Nav
   ========================================================= */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 16px;
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: -0.01em; font-size: 17px;
  color: var(--ink-900);
}
.brand:hover { color: var(--ink-900); text-decoration: none; }
.brand-mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-400) 60%, var(--teal-400));
  box-shadow: 0 4px 12px rgba(24,95,165,.30);
}

.primary-nav { display: flex; gap: 22px; font-size: 14.5px; }
.primary-nav a { color: var(--muted); }
.primary-nav a:hover { color: var(--ink-900); text-decoration: none; }

.nav-cta { display: inline-flex; }

.nav-toggle {
  display: none; background: none; border: 0;
  width: 40px; height: 40px; padding: 8px; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--text);
  margin: 5px 0; border-radius: 2px;
}

.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 22px 18px; border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.mobile-nav a {
  padding: 10px 6px; border-radius: 8px; color: var(--text);
}

@media (max-width: 820px) {
  .primary-nav, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mobile-nav[data-open="true"] { display: flex; }
}

/* =========================================================
   Buttons
   ========================================================= */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s var(--ease), background .2s var(--ease),
              border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { text-decoration: none; }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(55,138,221,.35); }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--blue-500); color: #fff; box-shadow: 0 6px 18px rgba(36,116,194,.30); }
.btn-primary:hover { background: var(--blue-700); color: #fff; }

.btn-ghost-light {
  background: rgba(255,255,255,.10); color: #fff;
  border-color: rgba(255,255,255,.30);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.18); color: #fff; }

.btn-lg { padding: 14px 26px; font-size: 16px; }

/* =========================================================
   Hero
   ========================================================= */

.hero {
  position: relative;
  background: linear-gradient(135deg, #0B1322 0%, #112844 55%, #1A3A5C 100%);
  color: #fff;
  padding: 96px 24px 72px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 65% 35%, rgba(55,138,221,.22), transparent 65%),
    radial-gradient(40% 40% at 20% 85%, rgba(29,158,117,.15), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 760px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: rgba(55,138,221,.22);
  border: 1px solid rgba(55,138,221,.45);
  color: var(--blue-100);
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.hero h1 .accent { color: #60B4FF; }

.hero .lede {
  font-size: 1.1rem; line-height: 1.7;
  color: rgba(255,255,255,.78);
  max-width: 600px; margin: 0 auto 32px;
}

.hero-ctas {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* =========================================================
   Stat bar
   ========================================================= */

.stats-section { padding: 0; background: var(--bg); }
.stat-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item { background: var(--bg); padding: 28px 24px; text-align: center; }
.stat-num {
  font-size: 2.2rem; font-weight: 700;
  color: var(--blue-700); line-height: 1; margin-bottom: 6px;
}
.stat-lbl { font-size: .82rem; color: var(--muted); }

/* =========================================================
   Video section
   ========================================================= */

.video-section { padding-top: 56px; padding-bottom: 56px; }
.video-head { text-align: center; max-width: 640px; margin: 0 auto 28px; }
.video-head .section-sub { margin: 0 auto; }

.video-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #0B1322;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.demo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #0B1322;
}

/* Unmute / mute toggle — bottom-right floating pill */
.video-mute {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(11, 19, 34, 0.72);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.video-mute:hover { background: rgba(11, 19, 34, 0.88); border-color: rgba(255,255,255,0.30); }
.video-mute:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(96,180,255,.45); }

.vm-icon { display: inline-block; }
.video-mute .vm-unmuted-icon { display: none; }
.video-mute[aria-pressed="false"] .vm-muted-icon { display: none; }
.video-mute[aria-pressed="false"] .vm-unmuted-icon { display: inline-block; }

/* =========================================================
   Sections
   ========================================================= */

section { padding: 80px 0; }
section.alt { background: var(--bg-alt); }
section.cta { background: linear-gradient(135deg, #0B1322 0%, #16213e 60%, #0F4E91 100%); color: #fff; padding: 96px 0; }

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin: 0 0 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700; line-height: 1.25; letter-spacing: -.015em;
  margin: 0 0 14px;
}
.section-sub {
  font-size: 1.02rem; color: var(--muted); max-width: 640px;
  margin: 0 0 44px; line-height: 1.7;
}
.section-body { color: var(--muted); line-height: 1.75; margin-bottom: 16px; }

.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; gap: 36px; } }

/* =========================================================
   Tier diagram (What it does panel)
   ========================================================= */

.tier-panel {
  background: var(--ink-900);
  border-radius: var(--radius);
  padding: 30px 26px 22px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.tier-panel-title {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-100);
  margin: 0 0 18px; text-align: center;
}
.tier-diagram {
  position: relative; height: 270px;
  display: grid; place-items: center;
}
.ring {
  position: absolute; border: 1px dashed rgba(55,138,221,.30);
  border-radius: 50%;
}
.ring-1 { width: 270px; height: 270px; }
.ring-2 { width: 195px; height: 195px; border-color: rgba(55,138,221,.35); }
.ring-3 { width: 120px; height: 120px; border-color: rgba(55,138,221,.40); }

.node {
  position: absolute;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; color: #fff; text-align: center;
  font-size: 0.55rem;
}
.node-org {
  width: 46px; height: 46px;
  background: #0EA5E9;
  font-size: .58rem; line-height: 1.15;
  box-shadow: 0 0 0 4px rgba(14,165,233,.22);
}
.node-t1 { width: 36px; height: 36px; background: #EF4444; font-size: .55rem; }
.t1-a { top: 12%; left: 50%; transform: translateX(-50%); }
.t1-b { top: 60%; left: 22%; transform: translateX(-50%); }
.t1-c { top: 60%; left: 78%; transform: translateX(-50%); }

.node-t2 { width: 26px; height: 26px; background: #F59E0B; font-size: .48rem; }
.t2-a { top: 22%; left: 14%; transform: translateX(-50%); }
.t2-b { top: 22%; left: 86%; transform: translateX(-50%); }
.t2-c { top: 86%; left: 50%; transform: translateX(-50%); }

.node-t3 { width: 20px; height: 20px; background: #10B981; font-size: .42rem; }
.t3-a { top: 50%; left: 4%; transform: translateY(-50%); }
.t3-b { top: 50%; left: 96%; transform: translate(-100%, -50%); }

.tier-legend {
  display: flex; justify-content: center; gap: 14px;
  flex-wrap: wrap; margin: 12px 0 0; padding: 0;
  list-style: none;
  font-size: .68rem; color: rgba(255,255,255,.65);
}
.tier-legend li { display: inline-flex; align-items: center; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dot-org { background: #0EA5E9; }
.dot-t1  { background: #EF4444; }
.dot-t2  { background: #F59E0B; }
.dot-t3  { background: #10B981; }

/* =========================================================
   Feature grid
   ========================================================= */

.feature-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.feature-card:hover {
  box-shadow: var(--shadow);
  border-color: #d3dbe7;
  transform: translateY(-2px);
}
.feature-card h3 { font-size: 1rem; font-weight: 700; margin: 14px 0 8px; }
.feature-card p  { font-size: .92rem; color: var(--muted); line-height: 1.65; margin: 0; }

.feature-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
}
.icon-blue   { background: var(--blue-50);   color: var(--blue-700); }
.icon-teal   { background: var(--teal-50);   color: var(--teal-600); }
.icon-amber  { background: var(--amber-50);  color: var(--amber-600); }
.icon-red    { background: var(--red-50);    color: var(--red-600); }
.icon-purple { background: var(--purple-50); color: var(--purple-600); }

/* =========================================================
   Check list (risk intelligence)
   ========================================================= */

.check-list { list-style: none; padding: 0; margin: 18px 0 0; }
.check-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-top: 1px solid var(--border);
  color: var(--muted); line-height: 1.6;
}
.check-list li:first-child { border-top: 0; }
.check-list li strong { color: var(--text); margin-right: 4px; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 18px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--teal-50)
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8' fill='none'><path d='M1 4l3 3 5-6' stroke='%230F6E56' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>")
    center / 10px 8px no-repeat;
}

/* =========================================================
   Heatmap panel
   ========================================================= */

.heatmap-panel {
  background: var(--ink-900);
  border-radius: var(--radius);
  padding: 24px 22px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.heatmap-title {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue-100);
  margin: 0 0 14px;
}

.heatmap-row {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.heatmap-row:last-of-type { border-bottom: 0; }
.hm-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hm-name { font-size: .85rem; flex: 1; color: rgba(255,255,255,.88); }
.hm-bar-bg { width: 90px; height: 5px; background: rgba(255,255,255,.10); border-radius: 3px; overflow: hidden; }
.hm-bar { display: block; height: 100%; border-radius: 3px; }
.hm-score { font-size: .78rem; font-weight: 700; min-width: 22px; text-align: right; }

.dot-red    { background: #EF4444; }
.dot-amber  { background: #F59E0B; }
.dot-green  { background: #10B981; }

.bar-red    { background: #EF4444; }
.bar-amber  { background: #F59E0B; }
.bar-green  { background: #10B981; }
.bar-100 { width: 100%; }
.bar-75  { width: 75%; }
.bar-50  { width: 50%; }
.bar-25  { width: 25%; }

.score-red   { color: #EF4444; }
.score-amber { color: #F59E0B; }
.score-green { color: #10B981; }

.country-title {
  margin: 18px 0 10px;
  font-size: .60rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
}
.country-row {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 0;
}
.cc { font-size: .72rem; font-weight: 700; width: 28px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.cbar-bg { flex: 1; height: 5px; background: rgba(255,255,255,.10); border-radius: 3px; overflow: hidden; }
.cbar { display: block; height: 100%; border-radius: 3px; }
.cpct { font-size: .70rem; font-weight: 700; min-width: 36px; text-align: right; }

.cc-blue, .cpct-blue, .cbar-blue { color: #3B82F6; }
.cbar-blue { background: #3B82F6; }
.cc-red, .cpct-red, .cbar-red    { color: #EF4444; }
.cbar-red  { background: #EF4444; }
.cc-grey, .cpct-grey, .cbar-grey { color: #94A3B8; }
.cbar-grey { background: #64748B; }

.cbar-68 { width: 68%; }
.cbar-48 { width: 48%; }
.cbar-30 { width: 30%; }
.cbar-20 { width: 20%; }
.cbar-14 { width: 14%; }

/* =========================================================
   Compliance table
   ========================================================= */

.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); }
.compliance-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.compliance-table th {
  background: var(--bg-alt);
  padding: 12px 16px; text-align: left;
  font-weight: 600; color: var(--muted);
  font-size: .78rem; text-transform: uppercase; letter-spacing: .06em;
  border-bottom: 2px solid var(--border);
}
.compliance-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
.compliance-table tr:last-child td { border-bottom: none; }
.compliance-table tr:hover td { background: var(--bg-alt); }

.badge {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  padding: 3px 8px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: .04em;
  margin-right: 4px;
}
.badge-green { background: #D1FAE5; color: #065F46; }
.badge-blue  { background: var(--blue-50); color: var(--blue-800); }
.badge-amber { background: var(--amber-50); color: var(--amber-600); }
.badge-red   { background: var(--red-50); color: var(--red-600); }

/* =========================================================
   Exports
   ========================================================= */

.export-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.export-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.export-card:hover { box-shadow: var(--shadow); border-color: #d3dbe7; }
.export-card h3 { font-size: .98rem; font-weight: 700; margin: 0 0 6px; }
.export-card p  { font-size: .88rem; color: var(--muted); line-height: 1.6; margin: 0; }
.export-tag {
  position: absolute; top: 16px; right: 16px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .72rem; font-weight: 700; color: var(--blue-700);
  background: var(--blue-50);
  padding: 3px 8px; border-radius: 6px;
}

/* =========================================================
   Technical
   ========================================================= */

.tech-grid {
  list-style: none; margin: 0 0 36px; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.tech-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px;
}
.tech-card h3 { font-size: .98rem; font-weight: 700; margin: 0 0 6px; }
.tech-card p  { font-size: .88rem; color: var(--muted); line-height: 1.6; margin: 0; }

.tech-pills {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.tech-pills li {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: .82rem; font-weight: 500;
  background: var(--bg);
  color: var(--muted);
}

/* =========================================================
   CTA / demo form
   ========================================================= */

.cta::before {
  /* gentle texture */
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 50% at 75% 30%, rgba(55,138,221,.22), transparent 60%),
    radial-gradient(40% 40% at 20% 80%, rgba(29,158,117,.15), transparent 60%);
  pointer-events: none;
}
.cta { position: relative; }
.cta > .container { position: relative; }

.cta-head { text-align: center; margin-bottom: 36px; }
.cta-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 14px 0 10px; }
.cta-head p { color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto; }

.demo-form {
  max-width: 640px; margin: 0 auto;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid; gap: 14px;
}
.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.field { display: grid; gap: 6px; }
.field label { font-size: 14px; color: rgba(255,255,255,.78); }
.field input,
.field select,
.field textarea {
  font: inherit;
  color: #fff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm);
  padding: 12px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #60B4FF;
  background: rgba(255,255,255,.10);
  box-shadow: 0 0 0 4px rgba(96,180,255,.25);
}
.field select option { color: var(--text); background: var(--bg); }
.field textarea { resize: vertical; min-height: 110px; }

.field.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.form-status { margin: 4px 0 0; font-size: 14px; min-height: 1.2em; color: rgba(255,255,255,.75); }
.form-status.is-error   { color: #FCA5A5; }
.form-status.is-success { color: #6EE7B7; }

.form-fineprint {
  font-size: .82rem; color: rgba(255,255,255,.6); margin: 4px 0 0;
}
.form-fineprint a { color: #93C5FD; }

/* =========================================================
   Footer
   ========================================================= */

.site-footer {
  background: #0B1322;
  color: rgba(255,255,255,.62);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  padding: 44px 22px 22px;
}
.footer-grid .brand { color: #fff; }
.footer-grid h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: .14em;
  color: rgba(255,255,255,.55); margin: 0 0 10px;
}
.footer-grid nav { display: grid; gap: 8px; font-size: 14.5px; }
.footer-grid nav a { color: rgba(255,255,255,.78); }
.footer-grid nav a:hover { color: #fff; text-decoration: none; }
.footer-tag { color: rgba(255,255,255,.55); margin-top: 6px; font-size: .9rem; }

.footer-bottom {
  padding: 14px 22px 30px;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   Utility layouts for sub-pages (404, legal)
   ========================================================= */

.page-narrow { max-width: 760px; padding: 60px 22px; }
.page-center { text-align: center; padding: 120px 22px; }
.page-center h1 { margin: 8px 0 12px; }
.page-center .lede { margin: 0 auto 24px; max-width: 560px; color: var(--muted); }
