/* ───────────────────────────────────────────────────────────── */
/* Noetik Governance · Design System v2 (2026-05)               */
/* Inter + JetBrains Mono · Accent #1d4ed8                      */
/* ───────────────────────────────────────────────────────────── */

@font-face { font-family:'Inter'; font-weight:100 900; font-style:normal; font-display:swap; src:url('/static/fonts/InterVariable.woff2') format('woff2-variations'); }
@font-face { font-family:'Inter'; font-weight:100 900; font-style:italic; font-display:swap; src:url('/static/fonts/InterVariable-Italic.woff2') format('woff2-variations'); }
@font-face { font-family:'JetBrains Mono'; font-weight:100 800; font-style:normal; font-display:swap; src:url('/static/fonts/JetBrainsMono.woff2') format('woff2-variations'); }

:root {
  --bg:          #ffffff;
  --bg-dark:     #0a0e1a;
  --bg-soft:     #fafafa;
  --fg:          #0a0e1a;
  --fg-on-dark:  #f5f5f5;
  --fg-muted:    #525252;
  --fg-soft:     #737373;
  --fg-on-dark-soft: #a3a3a3;
  --rule:        #e5e5e5;
  --rule-strong: #171717;
  --rule-on-dark:#1f2937;
  --accent:      #1d4ed8;
  --accent-hover:#1e40af;
  --accent-soft: #eff6ff;
  --warn:        #b91c1c;
  --warn-soft:   #fef2f2;
  --easing:      cubic-bezier(.2,.7,.2,1);
  --content-w:   1080px;
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; background: var(--bg); color: var(--fg); }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-feature-settings: 'cv11','ss01','ss03';
  font-variation-settings: 'opsz' 14;
  font-size: 15.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
.mono { font-family:'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

/* ───── HEADER / NAV ───────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.site-header .inner {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.site-header .brand { display: inline-flex; align-items: center; }
.site-header .brand img { height: 112px; width: auto; }
.site-header nav { display: flex; gap: 28px; align-items: center; font-size: 13.5px; font-weight: 500; }
.site-header nav a {
  color: var(--fg-muted);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s var(--easing), border-color .15s var(--easing);
}
.site-header nav a:hover,
.site-header nav a[aria-current="page"] { color: var(--fg); border-bottom-color: var(--accent); text-decoration: none; }
.site-header nav .audit-link {
  font-family:'JetBrains Mono';
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 7px 14px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  transition: background .15s var(--easing), color .15s var(--easing);
}
.site-header nav .audit-link:hover {
  background: var(--accent); color: #fff; border-bottom-color: var(--accent); text-decoration: none;
}

/* ───── LAYOUT WRAPPERS ────────────────────────────────────── */
.site { max-width: var(--content-w); margin: 0 auto; padding: 64px 32px 96px; }
.site.narrow { max-width: 760px; }

/* ───── HERO ───────────────────────────────────────────────── */
.hero-x {
  position: relative;
  padding: 64px 0 80px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 80px;
  overflow: hidden;
}
.hero-x::before {
  content: '';
  position: absolute;
  inset: -50% -10% auto auto;
  width: 800px; height: 800px;
  background: radial-gradient(circle at center, rgba(29,78,216,0.12) 0%, rgba(29,78,216,0) 60%);
  pointer-events: none; z-index: 0;
}
.hero-x > * { position: relative; z-index: 1; }
.eyebrow {
  font-family:'JetBrains Mono';
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.h-hero {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(40px, 6.5vw, 72px);
  line-height: 1.02;
  margin: 0 0 24px;
  max-width: 18ch;
  font-variation-settings: 'opsz' 32, 'wght' 700;
}
.h-hero em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent) 0%, #6366f1 60%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 60ch;
  margin: 0 0 32px;
  line-height: 1.5;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  font-weight: 500; font-size: 14.5px;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid;
  transition: background .15s var(--easing), color .15s var(--easing), border-color .15s var(--easing);
}
.cta-btn.primary   { background: var(--accent); border-color: var(--accent); color: #fff; }
.cta-btn.primary:hover   { background: var(--accent-hover); border-color: var(--accent-hover); text-decoration: none; }
.cta-btn.secondary { background: transparent; border-color: var(--rule-strong); color: var(--fg); }
.cta-btn.secondary:hover { background: var(--fg); color: #fff; text-decoration: none; }
.cta-btn .arrow { transition: transform .15s var(--easing); }
.cta-btn:hover .arrow { transform: translateX(3px); }

/* ───── STATS GRID ─────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  margin: 0 0 80px;
  border-block: 1px solid var(--rule);
}
.stat { background: #fff; padding: 28px 24px; }
.stat .num {
  font-family:'JetBrains Mono';
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  font-variant-numeric: tabular-nums;
  color: var(--fg);
}
.stat .num .unit { color: var(--accent); font-weight: 500; }
.stat .lbl {
  font-family:'JetBrains Mono';
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-soft);
}

/* ───── NUMBERED SECTION ───────────────────────────────────── */
.section-num {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  margin: 80px 0 18px;
  align-items: start;
}
.section-num .gutter {
  font-family:'JetBrains Mono';
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  padding-top: 10px;
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}
.section-num h2 {
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0;
  max-width: 22ch;
}
.section-body { margin-left: 120px; }
.section-body .lede { font-size: 17px; }

/* ───── MODERN CARDS ───────────────────────────────────────── */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card-modern {
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
  transition: border-color .2s var(--easing), transform .2s var(--easing), box-shadow .2s var(--easing);
}
.card-modern:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px -10px rgba(29,78,216,0.18);
}
.card-modern .num {
  font-family:'JetBrains Mono';
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.card-modern h3 { margin: 0 0 8px; font-size: 17px; font-weight: 600; letter-spacing: -0.005em; }
.card-modern p  { margin: 0; font-size: 14px; color: var(--fg-muted); line-height: 1.55; }

/* ───── DARK SECTION (PREEXEC product showcase) ────────────── */
.section-dark {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
  margin: 80px 0;
  padding: 80px 56px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content:'';
  position: absolute;
  bottom: -40%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle at center, rgba(29,78,216,0.25) 0%, rgba(29,78,216,0) 65%);
  pointer-events: none;
}
.section-dark::after {
  content:'';
  position: absolute;
  top: -30%; left: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle at center, rgba(99,102,241,0.16) 0%, rgba(99,102,241,0) 65%);
  pointer-events: none;
}
.section-dark > * { position: relative; }
.section-dark .eyebrow { color: var(--accent); }
.section-dark .h-section {
  color: #fff;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  max-width: 22ch;
}
.section-dark .lede { color: var(--fg-on-dark-soft); max-width: 60ch; }
.section-dark .preexec-logo { height: 64px; margin-bottom: 32px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 56px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--rule-on-dark);
}
.feature h4 {
  font-family:'JetBrains Mono';
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.feature p { margin: 0; color: var(--fg-on-dark); font-size: 14.5px; line-height: 1.55; }

/* ───── PROSE / HEADINGS ───────────────────────────────────── */
h2.h-section {
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  margin: 56px 0 14px;
}
h3.h-sub { font-weight: 600; font-size: 17px; margin: 28px 0 6px; letter-spacing: -0.005em; }
.prose p { margin: 0 0 14px; color: var(--fg); max-width: 70ch; }
.prose p.dim { color: var(--fg-muted); }
.prose ul { padding-left: 18px; }
.prose li { margin-bottom: 8px; }

/* ───── KEY-VALUE LISTS ────────────────────────────────────── */
.kvs {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 28px;
  row-gap: 10px;
  font-size: 14px;
  margin: 18px 0 24px;
}
.kvs dt {
  font-family:'JetBrains Mono';
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-soft);
}
.kvs dd { margin: 0; }
.placeholder {
  font-family:'JetBrains Mono';
  font-size: 12px;
  background: #fef3c7;
  color: #92400e;
  padding: 1px 6px;
  border-radius: 3px;
}

/* ───── SECTOR PILLS ───────────────────────────────────────── */
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.pill {
  font-family:'JetBrains Mono';
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border: 1px solid var(--rule-strong);
  border-radius: 999px;
  color: var(--fg);
}

/* ───── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--rule);
  margin-top: 120px;
}
.site-footer .grid {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 64px 32px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 56px;
}
.site-footer .col h4 {
  font-family:'JetBrains Mono';
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin: 0 0 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--fg-muted); text-decoration: none; font-size: 13.5px; }
.site-footer a:hover { color: var(--fg); }
.site-footer .brand-block .mark-noetik { margin-bottom: 0; }
.site-footer .brand-block p { color: var(--fg-muted); font-size: 13px; max-width: 38ch; line-height: 1.5; }
.site-footer .legal-bar { border-top: 1px solid var(--rule); }
.site-footer .legal-bar .inner {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--fg-soft);
  gap: 18px; flex-wrap: wrap;
}

/* ───── REVEAL ANIMATIONS ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms var(--easing), transform 700ms var(--easing); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .cta-btn, .card-modern, .site-header nav a { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ───── AUDIT PORTAL — kept compatible ─────────────────────── */
.page { max-width: 920px; margin: 0 auto; padding: 56px 32px 96px; }
.cover { border-bottom: 1px solid var(--rule-strong); padding-bottom: 28px; margin-bottom: 40px; }
.cover .wordmark { font-weight: 800; letter-spacing: -0.02em; font-size: 34px; margin: 0; }
.cover .wordmark sup { font-size: 0.45em; font-weight: 600; vertical-align: super; margin-left: 2px; }
.cover .subtitle { font-weight: 500; color: var(--fg-muted); font-size: 17px; margin: 2px 0 18px; letter-spacing: -0.01em; }
.cover .ref { font-family:'JetBrains Mono'; font-size: 12px; color: var(--accent); letter-spacing: 0.05em; text-transform: uppercase; }
.status { margin: 0 0 56px; display: grid; grid-template-columns: max-content 1fr; column-gap: 28px; row-gap: 8px; font-size: 14px; }
.status dt { font-family:'JetBrains Mono'; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-soft); padding-top: 1px; }
.status dd { margin: 0; color: var(--fg); }
.section { margin: 0 0 56px; }
.section-label { font-family:'JetBrains Mono'; font-size: 12px; letter-spacing: 0.08em; color: var(--accent); text-transform: uppercase; padding-bottom: 10px; border-bottom: 1px solid var(--rule-strong); margin-bottom: 0; }
.section-sub { font-size: 13px; color: var(--fg-soft); margin-top: 6px; margin-bottom: 18px; }
.items { display: flex; flex-direction: column; }
.item { display: grid; grid-template-columns: 1fr auto; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--rule); }
.item:last-child { border-bottom: 0; }
.item .title-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: baseline; }
.item .filename { font-family:'JetBrains Mono'; font-weight: 600; font-size: 14px; word-break: break-all; }
.item .version { font-family:'JetBrains Mono'; font-size: 11px; color: var(--fg-soft); }
.item .badge { display: inline-block; font-family:'JetBrains Mono'; font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 2px 7px; border-radius: 3px; }
.badge.trade { background: var(--warn-soft); color: var(--warn); border: 1px solid #fecaca; }
.badge.pending { background: #f5f5f5; color: var(--fg-soft); border: 1px solid var(--rule); }
.item .desc { margin: 6px 0 8px; color: var(--fg-muted); font-size: 13.5px; }
.item .stats-row { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--fg-soft); }
.item .sha { cursor: help; border-bottom: 1px dotted var(--fg-soft); }
.btn {
  display: inline-block; background: var(--accent); color: #fff;
  font-family:'JetBrains Mono'; font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 9px 16px; border-radius: 4px; border: 1px solid var(--accent);
  cursor: pointer; text-decoration: none;
  transition: background .12s, border-color .12s;
}
.btn:hover { background: var(--accent-hover); border-color: var(--accent-hover); text-decoration: none; color: #fff; }
.btn.disabled, .btn[aria-disabled="true"] { background: #f5f5f5; color: var(--fg-soft); border-color: var(--rule); cursor: not-allowed; pointer-events: none; }
footer .footer-label { font-family:'JetBrains Mono'; font-size: 11px; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }

/* ───── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 800px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; gap: 22px; }
  .section-num { grid-template-columns: 1fr; gap: 12px; }
  .section-body { margin-left: 0; }
  .section-dark { padding: 56px 28px; }
  .site-footer .grid { grid-template-columns: 1fr; gap: 32px; padding: 40px 22px 28px; }
  .site-footer .legal-bar .inner { flex-direction: column; gap: 6px; padding: 16px 22px; }
  .site-header .inner { flex-direction: column; align-items: flex-start; padding: 12px 22px; gap: 14px; }
  .site-header nav { gap: 16px; flex-wrap: wrap; }
  .site { padding: 36px 22px 56px; }
  .hero-x { padding: 36px 0 56px; margin-bottom: 56px; }
  .h-hero { font-size: clamp(32px, 8vw, 48px); }
}

/* ───── Hero brand-reveal centered (Home only) ─── */
.hero-center { text-align: center; padding-top: 96px; padding-bottom: 96px; }
.hero-center .hero-logo {
  height: clamp(180px, 22vw, 280px);
  width: auto;
  margin: 0 auto 40px;
  display: block;
}
.hero-center .h-hero { max-width: none; margin-left: auto; margin-right: auto; }
.hero-center .lede   { max-width: 60ch; margin-left: auto; margin-right: auto; }
.hero-center .cta-row { justify-content: center; }
@media (max-width: 800px) {
  .hero-center .hero-logo { height: clamp(140px, 38vw, 200px); margin-bottom: 28px; }
  .hero-center { padding-top: 48px; padding-bottom: 56px; }
}

/* ───── continuous motion: drifting hero blobs ─── */
@keyframes blob-drift-a {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-50px, 70px) scale(1.08); }
  100% { transform: translate(60px, -40px) scale(0.94); }
}
@keyframes blob-drift-b {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(80px, -50px) scale(1.12); }
  100% { transform: translate(-40px, 40px) scale(0.9); }
}
.hero-x::before { animation: blob-drift-a 22s ease-in-out infinite alternate; will-change: transform; }
.hero-x::after {
  content: "";
  position: absolute;
  inset: auto auto -40% -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle at center, rgba(99,102,241,0.12) 0%, rgba(99,102,241,0) 65%);
  pointer-events: none; z-index: 0;
  animation: blob-drift-b 30s ease-in-out infinite alternate;
  will-change: transform;
}

/* ───── compliance marquee ─── */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 16px 0;
  background: #fff;
  margin: 56px 0 0;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, #fff, rgba(255,255,255,0)); }
.marquee::after  { right: 0; background: linear-gradient(to left,  #fff, rgba(255,255,255,0)); }
.marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-scroll 40s linear infinite;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  will-change: transform;
}
.marquee-track span { display: inline-block; padding: 0 28px; }
.marquee-track .dot { color: var(--accent); padding: 0 4px; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ───── dark section: pulsing glow ─── */
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}
.section-dark::before { animation: glow-pulse 8s ease-in-out infinite; }
.section-dark::after  { animation: glow-pulse 11s ease-in-out infinite reverse; }

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-x::before, .hero-x::after,
  .section-dark::before, .section-dark::after,
  .marquee-track { animation: none !important; }
}

/* ───── Hero word-cycle ───── */
.cycle {
  display: inline-grid;
  vertical-align: top;
  margin: 0 0.05em;
}
.cycle > span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(20px);
  animation: word-show 12s infinite;
  background: linear-gradient(120deg, #1d4ed8 0%, #6366f1 60%, #818cf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
  will-change: transform, opacity;
}
.cycle > span:nth-child(1) { animation-delay: 0s; }
.cycle > span:nth-child(2) { animation-delay: 2.4s; }
.cycle > span:nth-child(3) { animation-delay: 4.8s; }
.cycle > span:nth-child(4) { animation-delay: 7.2s; }
.cycle > span:nth-child(5) { animation-delay: 9.6s; }
@keyframes word-show {
  0%   { opacity: 0; transform: translateY(24px); }
  2%   { opacity: 1; transform: translateY(0); }
  18%  { opacity: 1; transform: translateY(0); }
  20%  { opacity: 0; transform: translateY(-24px); }
  100% { opacity: 0; transform: translateY(-24px); }
}

/* ───── Big outline marquee (full-bleed) ───── */
.big-marquee {
  position: relative;
  overflow: hidden;
  padding: 56px 0;
  border-block: 1px solid var(--rule);
  width: 100vw;
  margin-left:  calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 96px;
  margin-bottom: 96px;
  background: #fff;
}
.big-marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee-big 36s linear infinite;
  font-family: "Inter";
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: clamp(64px, 13vw, 180px);
  line-height: 1;
  will-change: transform;
}
.big-marquee-track span {
  display: inline-block;
  padding: 0 36px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--fg);
  text-stroke: 1.5px var(--fg);
}
.big-marquee-track span.alt {
  -webkit-text-stroke: 1.5px var(--accent);
  text-stroke: 1.5px var(--accent);
}
@keyframes marquee-big {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .cycle > span { animation: none; }
  .cycle > span:nth-child(1) { opacity: 1; transform: none; }
  .big-marquee-track { animation: none; }
}

/* ───── Two-tone text wordmark (replaces nav logo) ─── */
.brand-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(16px, 1.73vw, 23px);
  letter-spacing: -0.025em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4ch;
  white-space: nowrap;
  font-variation-settings: 'opsz' 28, 'wght' 800;
}
.brand-text .dark  { color: #1e3a8a; }   /* navy / dark blue */
.brand-text .light { color: #3b82f6; }   /* sky / lighter blue */

.brand-text .ltd {
  color: #1e3a8a;
  font-weight: 600;
  font-size: 0.62em;
  margin-left: 0.25ch;
  position: relative;
  top: -0.05em;
  font-variation-settings: \"opsz\" 18, \"wght\" 600;
}

.brand-text .dot {
  color: #1e3a8a;
  font-weight: 800;
  margin: 0 0.1ch;
}

.icon {
  /* +25% larger */
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: -0.3em;
  margin-right: 0.5em;
}

/* ───── PREEXEC product stripe (footer) ───── */
.preexec-stripe {
  background: #0a0e1a;
  border-top: 1px solid var(--rule);
}
.preexec-stripe .inner {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.preexec-stripe img { height: 40px; width: auto; }
.preexec-stripe span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a3a3a3;
}
@media (max-width: 700px) {
  .preexec-stripe .inner { padding: 20px 22px; }
  .preexec-stripe img { height: 32px; }
}

/* ───── Footer brand-marks (Noetik + PREEXEC pill) ───── */
.brand-marks {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.brand-marks .mark-noetik-OLD {
  height: 96px;
  width: auto;
  display: block;
}
.brand-marks .mark-preexec {
  background: #0a0e1a;
  padding: 14px 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform .15s var(--easing), background .15s var(--easing);
}
.brand-marks .mark-preexec:hover {
  background: #111827;
  transform: translateY(-1px);
  text-decoration: none;
}
.brand-marks .mark-preexec img {
  height: 28px;
  width: auto;
  display: block;
}
@media (max-width: 800px) {
  .brand-marks { gap: 14px; }
  .brand-marks .mark-noetik-OLD { height: 80px; }
  .brand-marks .mark-preexec img { height: 24px; }
  .brand-marks .mark-preexec { padding: 12px 14px; }
}

/* upsize after trimming */
.brand-marks .mark-noetik { height: 112px; width: auto; display: block; margin-bottom: 0; }
.brand-marks .mark-preexec { padding: 20px 22px; }
.brand-marks .mark-preexec img { height: 56px; width: auto; display: block; }
@media (max-width: 800px) {
  .brand-marks .mark-noetik { height: 88px; }
  .brand-marks .mark-preexec img { height: 44px; }
  .brand-marks .mark-preexec { padding: 16px 18px; }
}

/* ───── Brand-marks alignment + text balance ─── */
/* Pill jetzt exakt so hoch wie das Noetik-Logo (112 px), Logos vertikal zentriert */
.brand-marks { align-items: stretch; margin-bottom: 22px; }
.brand-marks .mark-preexec {
  padding: 24px 24px;
  display: inline-flex;
  align-items: center;
}
.brand-marks .mark-preexec img { height: 64px !important; }

/* Beschreibungstext: ausgeglichene Zeilenumbrüche, klare Spalte */
.site-footer .brand-block p {
  text-wrap: balance;
  max-width: 44ch;
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 800px) {
  .brand-marks .mark-preexec { padding: 18px 18px; }
  .brand-marks .mark-preexec img { height: 48px !important; }
}


/* ───── Audit Portal: tighter inter-item gap (only this) ───── */
.item { padding: 4px 0; }

/* gap zwischen items = 0 */
.item { padding: 0 !important; }

.section { margin: 0 !important; }

.item .desc { margin: 0 !important; }
.item div.stats:not(:has(*)) { display: none; }

.item { padding: 1px 0 !important; }

.item { padding: 1.5px 0 !important; }

/* Audit Portal — encryption-format banner */
.open-hint {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  margin: 0 0 24px;
  font-size: 13px;
  line-height: 1.5;
  color: #525252;
  border-radius: 4px;
}
.open-hint strong { color: #0a0e1a; }
.open-hint a { color: var(--accent); }

/* ───── Footer typography: unified ─── */
.site-footer .grid { align-items: start; }
.site-footer .col { line-height: 1.5; }
.site-footer .col h4 {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-soft);
  margin: 0 0 16px;
}
.site-footer .col ul { margin: 0; padding: 0; list-style: none; }
.site-footer .col li {
  margin: 0 0 8px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--fg-muted);
}
.site-footer .col a,
.site-footer .col li a {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13.5px;
  color: var(--fg-muted);
  text-decoration: none;
}
.site-footer .col a:hover { color: var(--fg); }
.site-footer .col .mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12.5px;
  letter-spacing: 0;
}
.site-footer .col .mute { color: var(--fg-soft); }
.site-footer .col a.audit-link {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.site-footer .col a.audit-link:hover { color: var(--accent-hover); }

/* brand-block paragraph: aligned font + color with the rest */
.site-footer .brand-block p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 38ch;
  margin: 0;
}

/* Bottom legal bar — single mono line */
.site-footer .legal-bar .inner {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-soft);
  padding-top: 20px;
  padding-bottom: 20px;
}

/* ───── Footer: drop JetBrains Mono, everything in Inter ───── */
.site-footer .col h4 {
  font-family: "Inter", system-ui, sans-serif !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--fg);
  margin: 0 0 14px;
}
.site-footer .col li,
.site-footer .col li a,
.site-footer .col .mono,
.site-footer .col .mono.mute,
.site-footer .col a.audit-link,
.site-footer .legal-bar .inner,
.site-footer .legal-bar .inner span {
  font-family: "Inter", system-ui, sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.site-footer .col li,
.site-footer .col li a {
  font-size: 13.5px;
}
.site-footer .col .mono {
  font-size: 13.5px;
  font-weight: 400;
}
.site-footer .col .mono.mute { color: var(--fg-soft); }
.site-footer .col a.audit-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--accent);
}
.site-footer .col a.audit-link:hover { color: var(--accent-hover); }
.site-footer .legal-bar .inner {
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-soft);
}

/* ───── Language switcher ───── */
.site-header .inner { gap: 18px; flex-wrap: wrap; }
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-soft);
}
.lang-switcher a {
  color: var(--fg-soft);
  text-decoration: none;
  padding: 2px 4px;
  transition: color .15s var(--easing);
}
.lang-switcher a:hover { color: var(--fg); }
.lang-switcher a[aria-current="true"] {
  color: var(--fg);
  font-weight: 600;
}
.lang-switcher .sep { color: var(--rule); user-select: none; }
@media (max-width: 800px) {
  .lang-switcher { font-size: 11px; }
}

/* ───── Language switcher (dropdown, replaces inline) ───── */
.lang-switcher {
  position: relative;
  display: inline-block;
}
.lang-switcher summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg);
  background: #fff;
  transition: border-color .15s var(--easing);
  user-select: none;
}
.lang-switcher summary::-webkit-details-marker { display: none; }
.lang-switcher summary::after {
  content: "";
  display: inline-block;
  width: 0; height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 2px;
  transition: transform .15s var(--easing);
}
.lang-switcher[open] summary { border-color: var(--accent); }
.lang-switcher[open] summary::after { transform: rotate(180deg); }
.lang-switcher .cur { color: var(--fg); }

.lang-switcher ul {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  box-shadow: 0 8px 24px -10px rgba(10,14,26,0.15);
  z-index: 100;
  min-width: 130px;
}
.lang-switcher li { margin: 0; }
.lang-switcher li a {
  display: block;
  padding: 7px 14px;
  text-decoration: none;
  color: var(--fg-muted);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  white-space: nowrap;
}
.lang-switcher li a:hover { background: var(--bg-soft); color: var(--fg); }
.lang-switcher li a[aria-current="true"] { color: var(--accent); font-weight: 500; }

/* override previous inline switcher rules */
.lang-switcher > a, .lang-switcher > span { display: none; }

/* ═══════════════════════════════════════════════════════════════════════
   CONSERVATIVE GOVERNANCE REDESIGN — Source Serif headlines, gedecktes Navy
   ═══════════════════════════════════════════════════════════════════════ */

@font-face {
  font-family: \"Source Serif 4\";
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
  src: url(\"/static/fonts/SourceSerif4Variable-Roman.woff2\") format(\"woff2-variations\");
}
@font-face {
  font-family: \"Source Serif 4\";
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
  src: url(\"/static/fonts/SourceSerif4Variable-Italic.woff2\") format(\"woff2-variations\");
}

:root {
  --fg: #0B1729;
  --fg-muted: #4A5160;
  --fg-soft: #6B7280;
  --rule: #E5E7EB;
  --rule-strong: #0B1729;
  --accent: #1E3A8A;
  --accent-hover: #1E2F6B;
  --bg: #ffffff;
  --bg-soft: #FAFAF7;
}

body { color: var(--fg); }

/* Headlines in Source Serif */
.h-hero, h2.h-section, .section-num h2, .card-modern h3, .feature h4 {
  font-family: \"Source Serif 4\", Georgia, \"Times New Roman\", serif !important;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--fg);
}
.h-hero { font-weight: 500; }

/* Hero em: italic serif, no gradient */
.h-hero em {
  font-style: italic;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  color: var(--accent);
  font-weight: 400;
}

/* Hide word-cycle: show only first word, no animation */
.cycle > span:not(:first-child) { display: none !important; }
.cycle > span:first-child {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  background: none !important;
  -webkit-text-fill-color: initial !important;
  color: var(--accent) !important;
  font-style: italic;
  font-weight: 400;
}

/* Disable ALL animations + hover effects */
*, *::before, *::after { animation: none !important; }
.card-modern { transition: border-color .15s ease; }
.card-modern:hover { transform: none !important; box-shadow: none !important; border-color: var(--accent); }
.cta-btn { transition: background .15s ease, color .15s ease; }
.cta-btn:hover { transform: none !important; }
.cta-btn .arrow, .cta-btn:hover .arrow { transform: none !important; }

/* Hero blobs out */
.hero-x::before, .hero-x::after { display: none !important; }
.hero-x { padding: 64px 0 48px; border-bottom: 1px solid var(--rule); margin-bottom: 56px; overflow: visible; }

/* Stats grid hide */
.stats { display: none !important; }

/* Dark section becomes a regular editorial section */
.section-dark {
  background: var(--bg-soft) !important;
  color: var(--fg) !important;
  margin: 56px 0 !important;
  padding: 56px 48px !important;
  border-radius: 0 !important;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.section-dark::before, .section-dark::after { display: none !important; }
.section-dark .eyebrow { color: var(--accent) !important; }
.section-dark .h-section { color: var(--fg) !important; }
.section-dark .lede { color: var(--fg-muted) !important; }
.section-dark .preexec-logo { display: none !important; }
.section-dark .feature h4 { color: var(--accent) !important; font-family: \"Source Serif 4\", serif !important; font-style: italic; font-weight: 500; text-transform: none !important; letter-spacing: 0; font-size: 16px; }
.section-dark .feature p { color: var(--fg) !important; }
.section-dark .feature-grid { border-top-color: var(--rule) !important; }

/* Pills hide; the heading above gets used as a small label list */
.pills { display: none !important; }

/* CTA buttons: more reserved */
.cta-btn.primary { background: var(--accent); border-color: var(--accent); }
.cta-btn.primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.cta-btn.secondary { border-color: var(--fg); color: var(--fg); }
.cta-btn.secondary:hover { background: var(--fg); color: #fff; }

/* Eyebrow more restrained */
.eyebrow { color: var(--accent); letter-spacing: 0.08em; }

/* Hero h1: tighter, less display */
.h-hero {
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.1;
  max-width: 22ch;
}
.lede { color: var(--fg-muted); font-size: 17px; line-height: 1.55; max-width: 64ch; }

/* Section headlines */
.section-num h2 { font-size: clamp(22px, 2.8vw, 30px); max-width: 24ch; }
.section-num .gutter { color: var(--accent); }

/* Card headings: serif italic */
.card-modern h3 {
  font-family: \"Source Serif 4\", serif !important;
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.card-modern .num { color: var(--accent); }

/* Brand text in nav: stays sans, slightly lower contrast */
.brand-text .light { color: var(--accent); }
.brand-text .dark { color: var(--fg); }
.brand-text .dot { color: var(--accent); }
.brand-text .ltd { color: var(--fg-muted); }

/* Wordmark oben links: Source Serif, kleiner, eleganter */
.brand-text {
  font-family: \"Source Serif 4\", Georgia, serif !important;
  font-size: clamp(13px, 1.05vw, 15px) !important;
  font-weight: 500 !important;
  letter-spacing: 0.03em !important;
}
.brand-text .light { color: var(--accent); font-weight: 500; }
.brand-text .dot   { color: var(--accent); font-weight: 400; padding: 0 0.15ch; }
.brand-text .dark  { color: var(--fg); font-weight: 500; }
.brand-text .ltd {
  color: var(--fg-soft);
  font-size: 0.65em;
  font-style: italic;
  font-weight: 400;
  margin-left: 0.4ch;
  top: -0.05em;
  letter-spacing: 0;
}

/* New editorial product/engine section (replaces the old dark block) */
.section-engine {
  background: var(--bg-soft);
  margin: 56px 0;
  padding: 56px 48px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: visible;
}
.section-engine::before, .section-engine::after { display: none; }
.section-engine .h-section {
  color: var(--fg);
  font-family: \"Source Serif 4\", serif;
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 32px);
  margin: 0 0 16px;
  max-width: 26ch;
}
.section-engine .lede { color: var(--fg-muted); max-width: 60ch; }
.section-engine .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 48px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.section-engine .feature h4 {
  font-family: \"Source Serif 4\", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
  margin: 0 0 6px;
}
.section-engine .feature p { color: var(--fg); font-size: 14.5px; line-height: 1.55; margin: 0; }
@media (max-width: 800px) {
  .section-engine { padding: 40px 24px; margin: 36px 0; }
  .section-engine .feature-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* Sectors list (replaced pills) */
.prose-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 36px;
}
.prose-list li {
  font-size: 15px;
  color: var(--fg);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.prose-list li::before {
  content: \"\";
  position: absolute;
  left: 0; top: 0.7em;
  width: 8px; height: 1px;
  background: var(--accent);
}
@media (max-width: 700px) {
  .prose-list { grid-template-columns: 1fr; }
}

/* ───── Editorial figures: dashboard visuals on public site ───── */
.figure {
  margin: 32px 0 8px;
  padding: 0;
}
.figure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: #fff;
}
.figure figcaption {
  margin-top: 10px;
  font-family: \"Source Serif 4\", serif;
  font-style: italic;
  font-size: 13.5px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.figure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0 8px;
}
.figure-grid .figure { margin: 0; }
.pdf-link {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 16px;
  border: 1px solid var(--rule-strong);
  font-family: \"Inter\", system-ui, sans-serif;
  font-size: 13.5px;
  color: var(--fg);
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.pdf-link:hover { background: var(--fg); color: #fff; text-decoration: none; }
.pdf-link .meta { color: var(--fg-soft); margin-left: 6px; font-size: 12px; }
@media (max-width: 700px) {
  .figure-grid { grid-template-columns: 1fr; }
}

/* Audit Portal logout link */
.cover .ref { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.logout-link {
  font-family: \"Inter\", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid var(--rule);
  border-radius: 3px;
  transition: background .12s ease, color .12s ease, border-color .12s ease;
}
.logout-link:hover { background: var(--fg); color: #fff; border-color: var(--fg); text-decoration: none; }

/* ───── Audit Portal · Login Page ───── */
html, body.login-body { height: 100%; margin: 0; }
body.login-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafaf7;
  padding: 40px 20px;
  box-sizing: border-box;
}
.login-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  padding: 44px 40px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  box-shadow: 0 12px 40px -20px rgba(11,23,41,0.18), 0 2px 4px rgba(11,23,41,0.04);
  box-sizing: border-box;
  text-align: center;
}
.login-eyebrow {
  font-family: \"JetBrains Mono\", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.login-h1 {
  font-family: \"Source Serif 4\", Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 0 0 8px;
}
.login-sub {
  font-family: \"Inter\", system-ui, sans-serif;
  font-size: 13px;
  color: var(--fg-muted);
  margin: 0 0 28px;
  line-height: 1.5;
}
.login-err {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 9px 13px;
  border-radius: 4px;
  font-family: \"Inter\", sans-serif;
  font-size: 13px;
  margin-bottom: 18px;
}
.login-form { max-width: 280px; margin: 0 auto; text-align: left; }
.login-form label { display: block; margin-bottom: 16px; font-family: \"Inter\", sans-serif; }
.login-form label span {
  display: block;
  margin-bottom: 5px;
  font-family: \"JetBrains Mono\", monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-soft);
}
.login-form input {
  width: 100%;
  padding: 10px 12px;
  font-family: \"Inter\", sans-serif;
  font-size: 14.5px;
  color: var(--fg);
  background: #fff;
  border: 1px solid #d4d4d8;
  border-radius: 4px;
  box-sizing: border-box;
  outline: none;
  transition: border-color .12s ease;
}
.login-form input:focus { border-color: var(--accent); }
.login-form button {
  width: 100%;
  margin-top: 8px;
  padding: 11px;
  font-family: \"Inter\", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  border-radius: 4px;
  cursor: pointer;
  transition: background .12s ease;
}
.login-form button:hover { background: var(--accent-hover); }
.login-footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #f1f3f5;
}
.login-footer a {
  display: inline-block;
  font-family: \"Inter\", sans-serif;
  font-size: 12.5px;
  color: var(--fg-muted);
  text-decoration: none;
}
.login-footer a:hover { color: var(--fg); }
.login-co {
  display: block;
  font-family: \"Inter\", sans-serif;
  font-size: 11px;
  color: var(--fg-soft);
  margin-top: 8px;
}
