/* PrintNarc - modern bubbly. Soft cards, gradients, generous radii.
   The joke is no longer "this looks like a govt website". It's now
   "this is being SOLD to you as a SaaS product." Both are funny. */

:root {
  --bg: #f5f3ff;                /* very pale lavender */
  --bg-2: #ede9fe;              /* deeper lavender for accents */
  --card: #ffffff;
  --card-hover: #fefeff;
  --fg: #1e1b4b;                /* deep indigo, not black */
  --fg-muted: #6b7280;
  --border: rgba(99, 102, 241, 0.12);
  --primary: #6366f1;           /* indigo */
  --primary-dark: #4f46e5;
  --primary-soft: rgba(99, 102, 241, 0.08);
  --accent: #10b981;            /* emerald */
  --accent-soft: rgba(16, 185, 129, 0.10);
  --accent-dark: #059669;
  --warn: #f59e0b;
  --warn-soft: rgba(245, 158, 11, 0.10);
  --error: #ef4444;
  --pink: #ec4899;
  --shadow-sm: 0 1px 3px rgba(99,102,241,0.06), 0 1px 2px rgba(99,102,241,0.04);
  --shadow-md: 0 4px 16px rgba(99,102,241,0.10), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 36px rgba(99,102,241,0.16), 0 4px 12px rgba(99,102,241,0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --gradient: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
  --gradient-soft: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(236,72,153,0.06) 100%);
  --gradient-accent: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --serif: 'Georgia', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', 'Courier New', monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0f0d1f;
    --bg-2: #1a1633;
    --card: #1e1b3a;
    --card-hover: #25214a;
    --fg: #ede9fe;
    --fg-muted: #9ca3af;
    --border: rgba(139, 92, 246, 0.18);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.2);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
    --primary-soft: rgba(139, 92, 246, 0.18);
    --gradient-soft: linear-gradient(135deg, rgba(139,92,246,0.18) 0%, rgba(236,72,153,0.12) 100%);
  }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(236, 72, 153, 0.12), transparent),
    radial-gradient(900px 500px at -10% 30%, rgba(99, 102, 241, 0.16), transparent),
    var(--bg);
  background-attachment: fixed;
  color: var(--fg);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--primary); text-decoration: none; transition: color .15s; }
a:hover { color: var(--primary-dark); }
.hidden { display: none !important; }

/* -- Masthead -- */
.masthead {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin: 1rem auto 1.5rem;
  max-width: 940px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
}
.brand {
  display: flex; align-items: center; gap: 0.85rem;
}
.seal-mini {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(99,102,241,0.3);
}
.seal-mini::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.6rem;
  font-weight: 900;
}
.title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.subtitle {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-top: 0.1rem;
}
.subtitle sup { font-size: 0.55rem; }
.masthead-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
  background: var(--gradient-soft);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}
.masthead-tagline em {
  color: var(--primary-dark);
  font-style: normal;
  font-weight: 600;
}

/* -- Layout -- */
main {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}
.stage h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  font-weight: 800;
  line-height: 1.15;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin: 0 0 1.5rem;
  max-width: 680px;
}
.lede strong { color: var(--fg); font-weight: 600; }

/* -- State picker -- */
.state-picker {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin: 0 0 1.25rem;
  box-shadow: var(--shadow-sm);
}
.state-picker label {
  font-size: 0.7rem;
  color: var(--fg-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}
.state-buttons { display: flex; gap: 0.45rem; flex-wrap: wrap; }
.state-btn {
  background: var(--bg-2);
  border: 1px solid transparent;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--sans);
  color: var(--fg);
  transition: all .18s ease;
}
.state-btn:hover {
  background: var(--primary-soft);
  transform: translateY(-1px);
}
.state-btn.selected {
  background: var(--gradient);
  color: white;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(99,102,241,0.28);
}

/* -- Dropzone -- */
.dropzone {
  border: 2px dashed rgba(99, 102, 241, 0.25);
  border-radius: var(--radius-lg);
  padding: 3.5rem 1.25rem;
  text-align: center;
  cursor: pointer;
  background: var(--card);
  background-image: var(--gradient-soft);
  transition: all .25s ease;
  box-shadow: var(--shadow-sm);
}
.dropzone:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.dropzone.drag {
  border-color: var(--accent);
  border-style: solid;
  background-image: linear-gradient(135deg, rgba(16,185,129,0.10), rgba(99,102,241,0.06));
  transform: scale(1.01);
}
.dz-icon {
  font-size: 3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.dz-title { font-size: 1.15rem; font-weight: 700; margin-top: 0.4rem; color: var(--fg); }
.dz-sub { font-size: 0.85rem; color: var(--fg-muted); margin-top: 0.35rem; }

.legal {
  margin-top: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  box-shadow: var(--shadow-sm);
}
.legal summary {
  cursor: pointer; color: var(--primary); font-weight: 600;
  list-style: none;
}
.legal summary::-webkit-details-marker { display: none; }
.legal summary::before {
  content: '▸';
  display: inline-block;
  margin-right: 0.4rem;
  transition: transform .2s;
}
.legal[open] summary::before { transform: rotate(90deg); }
.legal p { color: var(--fg-muted); margin: 0.6rem 0; }

/* -- "How it works": straight-faced product explainer -- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin: 1rem 0 1.5rem;
}
.how-step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--bg-2);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}
.how-num {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--gradient);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(99,102,241,0.3);
}
.how-title {
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.15rem;
}
.how-body {
  font-size: 0.84rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.how-section {
  margin: 1.5rem 0 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  font-weight: 700;
}
.how-section.faq-section {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 1.5rem;
}
.how-citations, .how-spec {
  margin: 0.4rem 0 0.5rem;
  padding-left: 1.25rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.7;
}
.how-citations li, .how-spec li { margin: 0.15rem 0; }
.how-spec strong { color: var(--fg); font-weight: 600; }

/* FAQ items: nested details for the gradual reveal. */
.faq {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.85rem;
  margin: 0.4rem 0;
  background: var(--bg-2);
  font-size: 0.88rem;
}
.faq summary {
  cursor: pointer; color: var(--fg);
  font-weight: 600;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: '+';
  display: inline-block;
  margin-right: 0.5rem;
  width: 14px;
  color: var(--primary);
  font-weight: 800;
  transition: transform .2s;
}
.faq[open] summary::before { content: '-'; }
.faq p { margin: 0.5rem 0 0.3rem 1.25rem; color: var(--fg-muted); }
.faq[open] { background: var(--card); }

/* -- Scan stage -- */
.progress-wrap {
  height: 10px;
  background: var(--bg-2);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin: 1rem 0 0.5rem;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
}
.progress {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  transition: width .15s linear;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 12px rgba(99,102,241,0.4);
}
.progress-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.check-stream {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem;
  height: 420px;
  overflow-y: auto;
  box-shadow: var(--shadow-sm);
}
.check-stream::-webkit-scrollbar { width: 8px; }
.check-stream::-webkit-scrollbar-track { background: transparent; }
.check-stream::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.check-stream .row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  margin-bottom: 0.35rem;
  background: var(--bg-2);
  border-radius: var(--radius-sm);
  animation: slideIn .3s cubic-bezier(0.16, 1, 0.3, 1);
}
.check-stream .row .icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(16,185,129,0.3);
  animation: popIn .35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.check-stream .row .body { flex: 1; min-width: 0; }
.check-stream .row .name {
  font-weight: 600; color: var(--fg); font-size: 0.86rem; line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.check-stream .row .blurb {
  color: var(--fg-muted); font-size: 0.78rem; margin-top: 0.1rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.check-stream .row .cite {
  color: var(--fg-muted); font-size: 0.72rem; font-style: italic;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.check-stream .row .conf {
  font-family: var(--mono); font-size: 0.75rem;
  color: var(--accent-dark); font-weight: 700;
  white-space: nowrap;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes popIn {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* -- Approval stage: MAXIMUM APPROVED -- */
.big-stamp {
  display: block;
  position: relative;
  background: var(--gradient-accent);
  color: white;
  padding: 2.25rem 1rem 2rem;
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 5.25rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin: 1.5rem 0 0.75rem;
  border-radius: var(--radius-lg);
  box-shadow:
    0 24px 60px rgba(16,185,129,0.40),
    0 12px 24px rgba(16,185,129,0.25),
    inset 0 0 0 6px rgba(255,255,255,0.18),
    inset 0 0 0 12px rgba(255,255,255,0.06);
  text-shadow: 0 4px 16px rgba(0,0,0,0.20);
  line-height: 1;
  animation: stampIn .8s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
/* Subtle sweeping shimmer across the stamp every 4s */
.big-stamp::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.28) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  animation: shimmer 4s ease-in-out infinite;
  animation-delay: 1s;
  pointer-events: none;
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
@keyframes stampIn {
  0%   { opacity: 0; transform: scale(0.4) rotate(-4deg); }
  55%  { opacity: 1; transform: scale(1.08) rotate(1deg); }
  80%  { transform: scale(0.96) rotate(-0.5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.big-stamp.warn {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  box-shadow:
    0 24px 60px rgba(245,158,11,0.40),
    0 12px 24px rgba(245,158,11,0.25),
    inset 0 0 0 6px rgba(255,255,255,0.18);
}

/* Supporting badges around the main stamp (CERTIFIED, VERIFIED, etc.) */
.stamp-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 0 1.5rem;
  animation: fadeUp .8s ease-out .4s both;
}
.stamp-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--card);
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(16,185,129,0.18);
}
.stamp-badges .badge::before {
  content: '✓';
  background: var(--gradient-accent);
  color: white;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 900;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.approval-meta {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0.55rem 1rem;
  box-shadow: var(--shadow-sm);
}
.approval-meta .k {
  color: var(--fg-muted);
  font-weight: 500;
  font-size: 0.82rem;
}
.approval-meta .v {
  font-family: var(--mono); word-break: break-all;
  font-size: 0.82rem;
  color: var(--fg);
}

.cert-actions {
  display: flex; gap: 0.65rem; flex-wrap: wrap; margin-bottom: 1.25rem;
}

button {
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
  font-size: 0.9rem;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--fg);
  transition: all .18s ease;
  box-shadow: var(--shadow-sm);
}
button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
button.primary {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(99,102,241,0.32);
}
button.primary:hover:not(:disabled) {
  box-shadow: 0 8px 22px rgba(99,102,241,0.42);
}
button.primary.big {
  font-size: 1.05rem;
  padding: 0.95rem 1.85rem;
  font-weight: 700;
}
button.success {
  background: var(--gradient-accent);
  color: white;
  border-color: transparent;
  font-weight: 600;
}
button.ghost {
  background: var(--card);
  color: var(--primary);
  border-color: var(--border);
}
button.ghost:hover:not(:disabled) {
  background: var(--primary-soft);
}
button:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: var(--shadow-sm); }

.cert-frame {
  width: 100%;
  height: 600px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-md);
}

/* -- Rename stage -- */
.rename-box {
  background: var(--card);
  border: 1px solid rgba(245, 158, 11, 0.3);
  background-image: linear-gradient(135deg, rgba(245,158,11,0.06), rgba(249,115,22,0.04));
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.rename-box p { margin: 0.45rem 0; }
.rename-box code {
  display: inline-block;
  background: var(--card);
  padding: 0.55rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--mono);
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}
.rename-box .small { color: var(--fg-muted); font-size: 0.83rem; }

/* -- Footer -- */
footer {
  max-width: 940px;
  margin: 2rem auto 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--fg-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}
.footer-links a { margin: 0 0.35rem; }

/* About dialog */
dialog {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.85rem;
  max-width: 560px;
  font-family: var(--sans);
  background: var(--card);
  color: var(--fg);
  box-shadow: var(--shadow-lg);
}
dialog::backdrop {
  background: rgba(15, 13, 31, 0.55);
  backdrop-filter: blur(4px);
}
dialog h2 {
  margin-top: 0;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
dialog button { margin-top: 0.5rem; }

/* -- Roadmap section: "Beyond firearms" -- */
.roadmap {
  max-width: 1100px;
  margin: 3.5rem auto 1rem;
  padding: 2.5rem 1.5rem 1rem;
}
.roadmap-eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.roadmap h2 {
  font-family: var(--sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.roadmap-lede {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 720px;
  margin: 0 0 2rem;
  line-height: 1.65;
}
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.roadmap-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
  position: relative;
  overflow: hidden;
}
.roadmap-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient);
  opacity: 0.7;
}
.roadmap-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.roadmap-tag {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.7rem;
  font-weight: 600;
}
.roadmap-card h3 {
  font-family: var(--sans);
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0 0 0.55rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.roadmap-card h3 sup {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--fg-muted);
  font-weight: 400;
}
.roadmap-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--fg);
  margin: 0 0 0.7rem;
}
.roadmap-foot {
  font-size: 0.8rem !important;
  color: var(--fg-muted) !important;
  border-top: 1px dashed var(--border);
  padding-top: 0.55rem;
  margin: 0.6rem 0 0 !important;
  font-style: italic;
}
.roadmap-foot strong {
  font-style: normal;
  color: var(--fg);
}
.roadmap-note {
  font-size: 0.86rem;
  color: var(--fg-muted);
  background: var(--gradient-soft);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  line-height: 1.65;
  margin-top: 1.5rem;
  border-left: 3px solid var(--primary);
}
.roadmap-note sup { font-size: 0.6em; vertical-align: super; }
