/* ==========================================================================
   kryptoexperte.de — Layout & Komponenten
   ========================================================================== */

/* Dichte-Stufen */
body[data-density="luftig"]  { --grid-gap: 24px; --card-pad: 26px; --row-pad: 20px; }
body[data-density="normal"]  { --grid-gap: 18px; --card-pad: 22px; --row-pad: 16px; }
body[data-density="kompakt"] { --grid-gap: 12px; --card-pad: 17px; --row-pad: 12px; }
body { --grid-gap: 18px; --card-pad: 22px; --row-pad: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: oklch(0.99 0.006 95 / 0.85);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header-in { display: flex; align-items: center; gap: 28px; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center; color: #fff;
}
.logo-coin {
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-400), var(--green-700));
  box-shadow: var(--shadow-sm), inset 0 0 0 2px oklch(1 0 0 / 0.22), inset 0 2px 5px oklch(1 0 0 / 0.28);
}
.logo-coin-k {
  font-family: var(--font-display); font-weight: 800; font-size: 22px; line-height: 1;
  letter-spacing: -0.04em; transform: translateY(-0.5px);
  text-shadow: 0 1px 1.5px oklch(0.3 0.05 160 / 0.4);
}
.logo-ring {
  border-radius: 50%;
  background: linear-gradient(150deg, var(--green-500), var(--green-700));
  box-shadow: var(--shadow-sm);
}
.logo-ring-in {
  width: 29px; height: 29px; border-radius: 50%; display: grid; place-items: center;
  background: var(--paper); color: var(--green-700);
  font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: -0.03em;
}
.logo-mono {
  border-radius: 13px;
  background: linear-gradient(150deg, var(--green-500), var(--green-700));
  box-shadow: var(--shadow-sm), inset 0 1px 0 oklch(1 0 0 / 0.25);
  font-family: var(--font-display); font-weight: 800; font-size: 23px; letter-spacing: -0.04em;
}
.logo-spark {
  border-radius: 13px;
  background: linear-gradient(150deg, var(--green-500), var(--green-700));
  box-shadow: var(--shadow-sm), inset 0 1px 0 oklch(1 0 0 / 0.25);
}
/* Freistehende Bildmarke (Swoosh / Orbit / Puls) */
.logo-brand { width: 46px; height: 46px; background: none; box-shadow: none; }
.brandmark { width: 100%; height: 100%; display: block; overflow: visible; }
.footer-brand .brandmark path[fill="none"] { stroke: var(--green-400); }
.footer-brand .brandmark stop:first-child { stop-color: var(--green-500); }
.footer-brand .brandmark stop:last-child { stop-color: var(--green-200); }
.logo-text { font-family: var(--font-display); font-weight: 600; font-size: 21px; letter-spacing: -0.02em; color: var(--green-950); }
.logo-text strong { font-weight: 800; }
.logo-tld { color: var(--green-600); font-weight: 800; }
.mainnav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.navlink {
  font-family: var(--font-display); font-weight: 600; font-size: 15.5px;
  color: var(--ink-soft); padding: 9px 14px; border-radius: var(--r-pill);
  transition: color .15s, background .15s;
}
.navlink:hover { color: var(--green-700); background: var(--green-50); }
.navlink.is-active { color: var(--green-700); background: var(--green-100); }
.header-cta { margin-left: auto; padding: 11px 20px; font-size: 15px; }

/* ---------- Mobile-Menü ---------- */
.nav-burger {
  display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 12px;
  border: 1.5px solid var(--line-strong); background: var(--surface); color: var(--green-900);
  place-items: center;
}
.nav-burger:hover { border-color: var(--green-400); color: var(--green-700); }
.mobile-menu { position: fixed; inset: 0; z-index: 90; pointer-events: none; }
.mobile-menu.is-open { pointer-events: auto; }
.mobile-menu-scrim { position: absolute; inset: 0; background: oklch(0.25 0.03 160 / 0.42); opacity: 0; transition: opacity .28s; }
.mobile-menu.is-open .mobile-menu-scrim { opacity: 1; }
.mobile-menu-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(360px, 86vw);
  background: var(--paper); box-shadow: var(--shadow-lg); padding: 20px 22px 28px;
  display: flex; flex-direction: column; transform: translateX(105%);
}
.mobile-menu.is-open .mobile-menu-panel { transform: translateX(0) !important; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.mobile-menu-close { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); color: var(--ink-soft); display: grid; place-items: center; }
.mobile-menu-close:hover { background: var(--sand); color: var(--ink); }
.mobile-menu-links { display: flex; flex-direction: column; gap: 2px; }
.mobile-navlink {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--green-950);
  padding: 15px 12px; border-radius: var(--r-md); transition: background .15s, color .15s;
}
.mobile-navlink svg { color: var(--ink-mute); }
.mobile-navlink:hover { background: var(--green-50); color: var(--green-700); }
.mobile-navlink.is-active { background: var(--green-100); color: var(--green-700); }
.mobile-navlink.is-active svg { color: var(--green-700); }
.mobile-menu-cta { margin-top: auto; justify-content: center; }

/* ---------- Breadcrumb ---------- */
.crumbs { display: flex; align-items: center; gap: 8px; padding-top: 22px; font-size: 14.5px; color: var(--ink-mute); }
.crumbs a { color: var(--ink-soft); font-weight: 600; }
.crumbs a:hover { color: var(--green-700); }
.crumbs [aria-current] { color: var(--green-800, var(--green-900)); font-weight: 700; }
.crumbs svg { color: var(--ink-mute); }

/* ---------- Hero ---------- */
.hero { padding: 30px 0 14px; }
.hero-in { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--green-700); background: var(--green-50);
  padding: 7px 15px; border-radius: var(--r-pill); border: 1px solid var(--green-100);
}
.hero-title { font-size: clamp(38px, 6vw, 60px); margin-top: 22px; }
.hero-sub { max-width: 640px; margin-top: 18px; font-size: 19px; color: var(--ink-soft); line-height: 1.55; }
.hero-sub em { font-style: normal; color: var(--green-700); font-weight: 700; }
.hero-search { width: 100%; max-width: 660px; margin-top: 30px; }
.hero-pop { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; margin-top: 18px; }
.hero-pop-label { font-size: 14px; color: var(--ink-mute); font-weight: 700; }
.pop-chip {
  border: 1px solid var(--line-strong); background: var(--surface);
  border-radius: var(--r-pill); padding: 7px 15px; font-size: 14.5px; font-weight: 700;
  font-family: var(--font-display); color: var(--green-900); transition: all .15s;
}
.pop-chip:hover { border-color: var(--green-400); background: var(--green-50); color: var(--green-700); transform: translateY(-1px); }

/* ---------- Suchfeld ---------- */
.searchbox {
  position: relative; display: flex; align-items: center;
  background: var(--surface); border: 2px solid var(--line-strong);
  border-radius: var(--r-pill); box-shadow: var(--shadow-md);
  transition: border-color .15s, box-shadow .15s;
}
.searchbox:focus-within { border-color: var(--green-500); box-shadow: 0 0 0 5px var(--green-100), var(--shadow-md); }
.searchbox-ic { position: absolute; left: 22px; color: var(--green-600); pointer-events: none; }
.searchbox-input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--font-body); font-size: 18px; color: var(--ink);
  padding: 19px 20px 19px 58px; border-radius: var(--r-pill);
}
.searchbox-input::placeholder { color: var(--ink-mute); }
.searchbox-input::-webkit-search-cancel-button { display: none; }
.searchbox-count { position: absolute; right: 24px; font-size: 13px; color: var(--ink-mute); }
.searchbox-clear {
  position: absolute; right: 14px; display: grid; place-items: center;
  width: 34px; height: 34px; border: none; border-radius: 50%;
  background: var(--sand); color: var(--ink-soft);
}
.searchbox-clear:hover { background: var(--green-100); color: var(--green-700); }

/* ---------- Glossar-Sektion ---------- */
.glossary { padding-block: 38px 20px; }

/* Filterleiste (Karten) */
.filters-top { display: flex; flex-direction: column; gap: 16px; }
.filters-row2 { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }

.catfilter { display: flex; flex-wrap: wrap; gap: 9px; }
.catbtn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--line); background: var(--surface);
  border-radius: var(--r-pill); padding: 9px 15px;
  font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--ink-soft);
  transition: all .15s;
}
.catbtn-dot { width: 9px; height: 9px; border-radius: 50%; background: oklch(0.62 0.13 var(--cat-hue)); }
.catbtn-n { font-size: 12px; color: var(--ink-mute); font-weight: 500; }
.catbtn:hover { border-color: var(--line-strong); transform: translateY(-1px); }
.catbtn.is-active {
  border-color: transparent; color: oklch(0.4 0.09 var(--cat-hue, 158));
  background: oklch(0.95 0.04 var(--cat-hue, 158));
}
.catbtn.is-active .catbtn-n { color: oklch(0.5 0.07 var(--cat-hue, 158)); }
/* "Alle" aktiv ohne hue */
.catfilter > .catbtn:first-child.is-active { background: var(--green-900); color: #fff; }
.catfilter > .catbtn:first-child.is-active .catbtn-n { color: oklch(1 0 0 / 0.7); }

.levelfilter { display: inline-flex; background: var(--sand); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 4px; gap: 2px; }
.levelbtn {
  border: none; background: transparent; border-radius: var(--r-pill);
  padding: 8px 15px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink-soft);
  transition: all .15s; white-space: nowrap;
}
.levelbtn:hover { color: var(--green-700); }
.levelbtn.is-active { background: var(--surface); color: var(--green-800, var(--green-900)); box-shadow: var(--shadow-sm); }

.alphabar { display: flex; flex-wrap: wrap; gap: 3px; }
.alpha {
  min-width: 30px; height: 30px; padding: 0 4px; border: none; background: transparent;
  border-radius: 8px; font-family: var(--font-display); font-weight: 700; font-size: 13.5px;
  color: var(--ink-soft); transition: all .12s;
}
.alpha:hover:not(.is-off) { background: var(--green-50); color: var(--green-700); }
.alpha.is-active { background: var(--green-600); color: #fff; }
.alpha.is-off { color: var(--line-strong); cursor: default; }

.results-meta { display: flex; align-items: center; gap: 14px; margin: 22px 0 16px; color: var(--ink-mute); font-size: 13.5px; }
.reset-link { border: none; background: none; color: var(--green-700); font-weight: 700; font-family: var(--font-display); font-size: 13.5px; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Karten-Grid ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }
.term-card {
  position: relative; text-align: left; display: flex; flex-direction: column;
  gap: 13px; padding: var(--card-pad); background: var(--surface);
  border: 1.5px solid var(--line); border-radius: var(--r-lg); cursor: pointer;
  transition: transform .16s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.term-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: oklch(0.66 0.13 var(--cat-hue)); opacity: 0; transition: opacity .2s;
}
.term-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.term-card:hover::before { opacity: 1; }
.term-card:focus-visible { outline: 3px solid var(--green-400); outline-offset: 2px; }
.term-card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.term-card-title { font-size: 22px; display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.term-card-abbr { font-size: 13px; font-weight: 500; color: var(--ink-mute); background: var(--sand); padding: 2px 8px; border-radius: 6px; }
.term-card-short { color: var(--ink-soft); font-size: 15.5px; line-height: 1.5; flex: 1; }
.term-card-more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 2px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--green-700);
  opacity: 0; transform: translateY(4px); transition: all .2s;
}
.term-card:hover .term-card-more, .term-card:focus-visible .term-card-more { opacity: 1; transform: none; }

/* ---------- Lexikon-Layout ---------- */
.lay-lex { display: grid; grid-template-columns: 248px 1fr; gap: 40px; align-items: start; }
.lex-side-sticky { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 26px; }
.lex-side-h {
  font-family: var(--font-display); font-weight: 800; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 12px;
}
.catfilter.is-vertical { flex-direction: column; gap: 4px; }
.catfilter.is-vertical .catbtn { width: 100%; justify-content: flex-start; border-color: transparent; background: transparent; padding: 9px 13px; }
.catfilter.is-vertical .catbtn .catbtn-n { margin-left: auto; }
.catfilter.is-vertical .catbtn:hover { background: var(--sand); }
.lex-levels-v { display: flex; flex-direction: column; gap: 4px; }
.lex-levelbtn {
  text-align: left; border: none; background: transparent; border-radius: var(--r-sm);
  padding: 9px 13px; font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--ink-soft);
}
.lex-levelbtn:hover { background: var(--sand); }
.lex-levelbtn.is-active { background: var(--green-100); color: var(--green-800, var(--green-900)); }

.lex-alpha-wrap {
  position: sticky; top: 80px; z-index: 5; background: oklch(0.99 0.006 95 / 0.9);
  backdrop-filter: blur(8px); padding: 12px 0; margin: -12px 0 0; border-bottom: 1px solid var(--line);
}
.lex-groups { display: flex; flex-direction: column; gap: 6px; }
.lex-group { padding-top: 8px; }
.lex-letter {
  font-size: 30px; color: var(--green-600); padding-bottom: 8px;
  border-bottom: 2px solid var(--green-100); margin-bottom: 4px;
}
.lex-dl { margin: 0; }
.term-row {
  display: grid; grid-template-columns: minmax(170px, 230px) 1fr auto; align-items: center; gap: 20px;
  padding: var(--row-pad) 12px; border-radius: var(--r-md); cursor: pointer;
  border-bottom: 1px solid var(--line); transition: background .14s;
}
.term-row:hover { background: var(--green-50); }
.term-row:focus-visible { outline: 3px solid var(--green-400); outline-offset: -2px; }
.term-row-term {
  font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--green-950);
  display: flex; align-items: center; gap: 10px;
}
.term-row-dot { width: 9px; height: 9px; border-radius: 50%; background: oklch(0.64 0.13 var(--cat-hue)); flex: none; }
.term-row-abbr { font-size: 12px; font-weight: 500; color: var(--ink-mute); font-family: var(--font-mono); }
.term-row-def { color: var(--ink-soft); font-size: 15px; line-height: 1.45; }
.term-row-meta { display: flex; align-items: center; gap: 8px; }

/* ---------- Detail-Drawer ---------- */
.drawer-root { position: fixed; inset: 0; z-index: 100; pointer-events: none; }
.drawer-root.is-open { pointer-events: auto; }
.drawer-scrim { position: absolute; inset: 0; background: oklch(0.25 0.03 160 / 0.4); opacity: 0; transition: opacity .3s; }
.drawer-root.is-open .drawer-scrim { opacity: 1; }
.drawer {
  position: absolute; top: 0; right: 0; height: 100%; width: min(520px, 100%);
  background: var(--paper); box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  overflow-y: auto;
}
.drawer-root.is-open .drawer { transform: none; }
.drawer-in { padding: 28px 36px 60px; --accent: oklch(0.62 0.13 var(--cat-hue)); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.drawer-close { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface); color: var(--ink-soft); display: grid; place-items: center; transition: all .15s; }
.drawer-close:hover { background: var(--sand); color: var(--ink); }
.drawer-titlewrap { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.drawer-title { font-size: 38px; }
.drawer-abbr { font-size: 16px; color: var(--ink-mute); background: var(--sand); padding: 3px 10px; border-radius: 8px; }
.drawer-levelrow { margin-top: 14px; }
.drawer-def { margin-top: 20px; font-size: 17.5px; line-height: 1.65; color: var(--ink); }

.callout { display: flex; gap: 14px; padding: 18px 20px; border-radius: var(--r-md); margin-top: 18px; }
.callout p { font-size: 15.5px; line-height: 1.55; color: var(--ink); }
.callout-label { font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 5px; }
.callout-ic { flex: none; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; }
.callout-simple { background: var(--green-50); border: 1px solid var(--green-100); }
.callout-simple .callout-ic { background: var(--green-600); color: #fff; }
.callout-simple .callout-label { color: var(--green-700); }
.callout-example { background: oklch(0.97 0.03 75); border: 1px solid oklch(0.92 0.05 75); }
.callout-example .callout-ic { background: oklch(0.74 0.12 70); color: #fff; }
.callout-example .callout-label { color: oklch(0.5 0.1 60); }

.drawer-related { margin-top: 26px; }
.drawer-related-label { display: flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 12px; }
.drawer-related-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.rel-chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px;
  border-radius: var(--r-pill); border: 1.5px solid oklch(0.9 0.04 var(--cat-hue));
  background: oklch(0.97 0.03 var(--cat-hue)); color: oklch(0.42 0.09 var(--cat-hue));
  font-family: var(--font-display); font-weight: 700; font-size: 14px; transition: all .15s;
}
.rel-chip:hover { background: oklch(0.93 0.06 var(--cat-hue)); transform: translateY(-1px); }

/* ---------- Leerer Zustand ---------- */
.empty { text-align: center; padding: 70px 20px; max-width: 460px; margin: 0 auto; }
.empty-ic { width: 70px; height: 70px; border-radius: 50%; background: var(--sand); color: var(--ink-mute); display: grid; place-items: center; margin: 0 auto 18px; }
.empty h3 { font-size: 22px; margin-bottom: 10px; }
.empty p { color: var(--ink-soft); margin-bottom: 22px; }

/* ---------- Sektions-Köpfe ---------- */
.section-kicker { font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--green-600); }
.section-title { font-size: clamp(28px, 4vw, 38px); margin-top: 10px; }

/* ---------- FAQ ---------- */
.faq { padding: 70px 0; background: var(--sand); border-top: 1px solid var(--line); margin-top: 40px; }
.faq-in { display: grid; grid-template-columns: 0.8fr 1.4fr; gap: 50px; align-items: start; }
.faq-head { position: sticky; top: 92px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .2s; }
.faq-item.is-open { border-color: var(--green-200); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; border: none; background: none; padding: 20px 22px; font-family: var(--font-display); font-weight: 700; font-size: 17.5px; color: var(--green-950); }
.faq-toggle { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; transition: transform .25s; }
.faq-item.is-open .faq-toggle { transform: rotate(180deg); background: var(--green-600); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; }
.faq-item.is-open .faq-a { max-height: none; }
.faq-a > p { padding: 0 22px; color: var(--ink-soft); font-size: 16px; line-height: 1.6; }
.faq-item.is-open .faq-a > p { padding-bottom: 22px; }

/* ---------- Cross-Link ---------- */
.crosslink { padding: 24px 0 80px; }
.crosslink-card {
  background: linear-gradient(155deg, var(--green-700), var(--green-950));
  border-radius: var(--r-xl); padding: 48px 44px; color: #fff;
  position: relative; overflow: hidden;
}
.crosslink-card::after {
  content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px;
  border-radius: 50%; background: oklch(0.7 0.13 var(--cat-hue, 158) / 0.18);
}
.crosslink-head { max-width: 620px; position: relative; }
.crosslink-head p { margin-top: 14px; color: oklch(0.92 0.03 158); font-size: 17px; }
.crosslink-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; position: relative; }
.crosslink-item {
  display: flex; flex-direction: column; gap: 9px; padding: 22px;
  background: oklch(1 0 0 / 0.07); border: 1px solid oklch(1 0 0 / 0.12);
  border-radius: var(--r-lg); transition: background .18s, transform .18s;
}
.crosslink-item:hover { background: oklch(1 0 0 / 0.13); transform: translateY(-3px); }
.crosslink-ic { width: 44px; height: 44px; border-radius: 13px; background: oklch(1 0 0 / 0.14); display: grid; place-items: center; }
.crosslink-t { font-family: var(--font-display); font-weight: 800; font-size: 19px; }
.crosslink-d { color: oklch(0.9 0.025 158); font-size: 14.5px; line-height: 1.5; flex: 1; }
.crosslink-go { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: oklch(0.88 0.08 145); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-950); color: oklch(0.88 0.02 158); padding: 60px 0 30px; }
.footer-in { display: grid; grid-template-columns: 1.4fr 2.6fr; gap: 50px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-tld { color: oklch(0.78 0.12 150); }
.footer-brand > p { margin-top: 16px; font-size: 15px; line-height: 1.6; color: oklch(0.82 0.02 158); max-width: 320px; }
.footer-disclaimer { font-size: 13px !important; color: oklch(0.68 0.02 158) !important; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col h4 { font-size: 14px; color: #fff; font-weight: 800; margin-bottom: 14px; letter-spacing: 0.02em; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 14.5px; color: oklch(0.82 0.02 158); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 44px; padding-top: 24px; border-top: 1px solid oklch(1 0 0 / 0.1); font-size: 13.5px; color: oklch(0.7 0.02 158); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .mainnav, .header-cta { display: none; }
  .nav-burger { display: grid; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .lay-lex { grid-template-columns: 1fr; }
  .lex-side-sticky { position: static; flex-direction: row; flex-wrap: wrap; gap: 18px; }
  .lex-side-block { flex: 1; min-width: 220px; }
  .faq-in { grid-template-columns: 1fr; gap: 26px; }
  .faq-head { position: static; }
  .footer-in { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 760px) {
  .mainnav, .header-cta { display: none; }
  .crosslink-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .filters-row2 { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 580px) {
  .card-grid { grid-template-columns: 1fr; }
  .term-row { grid-template-columns: 1fr auto; }
  .term-row-def { display: none; }
  .drawer-in { padding: 24px 22px 50px; }
}
