/* ============================================================
   КИЗЛЯР · дизайн-система 2.0 — «тёмная сталь»
   Кинематографичная тёмная тема, фирменный синий как электрический
   акцент, металлические текстуры, насыщенная анимация.
   ============================================================ */
:root {
  /* Фирменный синий + свечение для тёмного фона */
  --brand:        #15589C;
  --brand-glow:   #3b8ae6;
  --brand-dark:   #0e3d6b;
  --brand-tint:   rgba(59,138,230,.12);

  /* Графит / сталь */
  --bg:           #0a0d10;
  --bg-2:         #0e1216;
  --surface:      #12171c;
  --surface-2:    #171d23;
  --surface-3:    #1e252c;
  --paper:        #12171c;   /* алиас для старых стилей */

  --ink:          #eef2f6;
  --steel:        #9aa6b2;
  --steel-light:  #6b7783;
  --hairline:     rgba(255,255,255,.09);
  --hairline-2:   rgba(255,255,255,.06);

  --ok:           #27c281;
  --warn:         #e0a23a;
  --danger:       #e5564b;

  --r:            6px;
  --r-lg:         14px;
  --shadow:       0 2px 8px rgba(0,0,0,.4), 0 12px 40px rgba(0,0,0,.35);
  --shadow-lift:  0 20px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(59,138,230,.12);
  --glow:         0 0 0 1px rgba(59,138,230,.35), 0 8px 30px rgba(21,88,156,.35);
  --ease:         cubic-bezier(.4,.14,.3,1);
  --ease-out:     cubic-bezier(.16,1,.3,1);
  --container:    1280px;

  --metal:        linear-gradient(180deg,#ffffff 0%,#cdd6df 42%,#8c98a4 72%,#b9c3cd 100%);
  --accent-grad:  linear-gradient(135deg,var(--brand) 0%,var(--brand-glow) 100%);

  --font-display: 'Oswald','Arial Narrow',sans-serif;
  --font-body:    'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; color: var(--ink); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-glow); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand-glow); }
button { font-family: inherit; cursor: pointer; }

/* Плёночное зерно поверх всего — премиальная текстура */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--brand); color: #fff; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 99px; border: 3px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: #2c353d; }

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

.skip-link { position: absolute; left: -999px; top: 0; background: var(--brand); color: #fff; padding: 10px 16px; z-index: 1000; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--brand-glow); outline-offset: 3px; }

/* Технический надзаголовок */
.eyebrow {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .22em;
  font-size: .92rem; font-weight: 600; color: var(--brand-glow);
  display: inline-flex; align-items: center; gap: 12px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem); text-transform: uppercase; letter-spacing: .01em; margin: 12px 0 0; font-weight: 700;
}
/* Металлический «выбитый по стали» заголовок */
.metal-text {
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent;
}

/* ---------------- Анимации появления ---------------- */
[data-anim] { opacity: 0; will-change: transform, opacity; }
[data-anim="up"]    { transform: translateY(38px); }
[data-anim="left"]  { transform: translateX(-40px); }
[data-anim="right"] { transform: translateX(40px); }
[data-anim="scale"] { transform: scale(.94); }
[data-anim="clip"]  { clip-path: inset(0 100% 0 0); opacity: 1; }
[data-anim].in {
  opacity: 1; transform: none; clip-path: inset(0 0 0 0);
  transition: opacity .8s var(--ease-out), transform .9s var(--ease-out), clip-path 1s var(--ease-out);
  transition-delay: var(--d, 0s);
}

/* ---------------- Шапка ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,13,16,.55); backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--hairline);
  transition: background .3s var(--ease), border-color .3s var(--ease), height .3s var(--ease);
}
.site-header.scrolled { background: rgba(8,11,14,.9); box-shadow: 0 10px 30px rgba(0,0,0,.5); }
.header-inner { display: flex; align-items: center; gap: 32px; height: 92px; transition: height .3s var(--ease); }
.site-header.scrolled .header-inner { height: 74px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { height: 64px; width: auto; transition: height .3s var(--ease); filter: drop-shadow(0 0 14px rgba(59,138,230,.25)); }
.site-header.scrolled .brand-logo { height: 50px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; border-left: 1px solid var(--hairline); padding-left: 14px; }
.brand-name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; font-size: 1.5rem; color: var(--ink); white-space: nowrap; }
.brand-sub { font-family: var(--font-body); font-weight: 500; text-transform: uppercase; letter-spacing: .15em; font-size: .58rem; color: var(--steel-light); margin-top: 6px; white-space: nowrap; }

.nav { margin-left: auto; }
.nav ul { display: flex; gap: 4px; list-style: none; }
.nav > ul > li > a, .nav .sub-trigger {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .12em; font-size: .82rem; font-weight: 500;
  color: var(--ink); padding: 10px 16px; border-radius: var(--r); position: relative; display: inline-flex; align-items: center;
}
.nav a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--accent-grad); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav > ul > li > a:hover::after, .nav a.is-active::after, .nav .sub-trigger:hover::after { transform: scaleX(1); }
.nav a.is-active { color: var(--brand-glow); }
.nav > ul > li > a:hover, .nav .sub-trigger:hover { color: var(--brand-glow); }

/* Подменю */
.has-sub { position: relative; }
.sub-caret { font-size: .6em; margin-left: 6px; transition: transform .25s var(--ease); }
.has-sub:hover .sub-caret, .has-sub:focus-within .sub-caret { transform: rotate(180deg); }
.subnav {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 230px; list-style: none;
  background: var(--surface-2); border: 1px solid var(--hairline); border-radius: var(--r-lg);
  box-shadow: var(--shadow); padding: 8px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s var(--ease-out); z-index: 50;
}
.has-sub:hover .subnav, .has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: none; }
.subnav a { display: block; padding: 12px 14px; border-radius: var(--r); white-space: nowrap; color: var(--steel); font-size: .92rem; }
.subnav a::after { display: none; }
.subnav a:hover { background: var(--brand-tint); color: var(--brand-glow); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.cart-toggle {
  position: relative; background: var(--surface); border: 1px solid var(--hairline);
  width: 46px; height: 46px; border-radius: var(--r); color: var(--ink); font-size: 1.05rem;
  transition: .25s var(--ease); display: grid; place-items: center;
}
.cart-toggle:hover { border-color: var(--brand-glow); color: var(--brand-glow); box-shadow: var(--glow); }
.cart-count {
  position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; background: var(--accent-grad);
  color: #fff; border-radius: 999px; font-size: .7rem; font-weight: 700; display: none; align-items: center;
  justify-content: center; padding: 0 5px; font-family: var(--font-body); box-shadow: 0 0 12px rgba(59,138,230,.6);
}
.cart-count.has { display: flex; }
.cart-count.bump { animation: bump .3s var(--ease); }
@keyframes bump { 50% { transform: scale(1.4); } }

.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px; border: 1px solid var(--hairline); border-radius: var(--r); background: var(--surface); align-items: center; justify-content: center; }
.menu-toggle span { width: 20px; height: 2px; background: var(--ink); transition: .25s var(--ease); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Кнопки ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; position: relative; overflow: hidden;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; font-weight: 500;
  padding: 14px 28px; border-radius: var(--r); border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  background: var(--surface-3); color: var(--ink); border-color: var(--hairline);
}
.btn:hover { transform: translateY(-2px); }
/* блик по кнопке */
.btn::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg,transparent,rgba(255,255,255,.25),transparent); transform: skewX(-20deg); transition: left .6s var(--ease);
}
.btn:hover::before { left: 140%; }
.btn-primary { background: var(--accent-grad); color: #fff; border-color: transparent; box-shadow: 0 8px 24px rgba(21,88,156,.35); }
.btn-primary:hover { box-shadow: 0 12px 34px rgba(59,138,230,.5); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--hairline); }
.btn-outline:hover { border-color: var(--brand-glow); color: var(--brand-glow); background: var(--brand-tint); }
.btn-ghost { background: transparent; color: var(--steel); border-color: transparent; }
.btn-block { width: 100%; }
.btn:disabled, .btn.btn-disabled { opacity: .45; cursor: not-allowed; transform: none; pointer-events: none; }

/* ---------------- Бегущая строка ---------------- */
.marquee { overflow: hidden; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--bg-2); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 18px; padding: 18px 32px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .18em; font-size: .9rem; color: var(--steel); white-space: nowrap; }
.marquee-item b { color: var(--ink); font-weight: 600; }
.marquee-item i { color: var(--brand-glow); }
.marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--brand-glow); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------------- Корзина ---------------- */
.cart-overlay { position: fixed; inset: 0; background: rgba(4,6,8,.66); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: .3s var(--ease); z-index: 200; }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; width: min(430px,100%); height: 100%; background: var(--surface); z-index: 201; transform: translateX(100%); transition: transform .4s var(--ease-out); display: flex; flex-direction: column; border-left: 1px solid var(--hairline); box-shadow: -20px 0 60px rgba(0,0,0,.6); }
.cart-drawer.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--hairline); }
.cart-head h2 { text-transform: uppercase; letter-spacing: .06em; font-size: 1.2rem; }
.cart-close { background: none; border: none; font-size: 1.9rem; line-height: 1; color: var(--steel); }
.cart-close:hover { color: var(--ink); }
.cart-body { flex: 1; overflow-y: auto; padding: 12px 24px; }
.cart-item { display: grid; grid-template-columns: 58px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--hairline-2); align-items: center; }
.cart-item-thumb { width: 58px; height: 58px; border-radius: var(--r); background: var(--surface-2); display: grid; place-items: center; overflow: hidden; color: var(--steel-light); }
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item h4 { font-family: var(--font-body); font-weight: 600; font-size: .92rem; margin-bottom: 4px; }
.cart-item .price { color: var(--steel); font-size: .88rem; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--hairline); border-radius: var(--r); margin-top: 6px; }
.qty button { width: 28px; height: 28px; background: none; border: none; color: var(--ink); font-size: 1rem; }
.qty button:disabled { color: var(--steel-light); cursor: not-allowed; }
.qty span { min-width: 28px; text-align: center; font-size: .9rem; font-weight: 600; }
.cart-item-remove { background: none; border: none; color: var(--steel-light); font-size: 1.1rem; }
.cart-item-remove:hover { color: var(--danger); }
.cart-empty { text-align: center; color: var(--steel-light); padding: 60px 0; }
.cart-empty i { font-size: 2.4rem; margin-bottom: 12px; }
.cart-foot { border-top: 1px solid var(--hairline); padding: 22px 24px; }
.cart-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.cart-row.total strong { font-family: var(--font-display); font-size: 1.5rem; }

/* ---------------- Тост ---------------- */
.toast { position: fixed; bottom: 26px; left: 50%; transform: translate(-50%,20px); background: var(--surface-3); color: var(--ink); padding: 14px 24px; border-radius: var(--r); font-size: .9rem; opacity: 0; visibility: hidden; transition: .3s var(--ease); z-index: 300; border: 1px solid var(--hairline); box-shadow: var(--shadow); }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%,0); }
.toast.warn { border-color: var(--warn); color: var(--warn); }

/* ---------------- Наверх ---------------- */
.to-top { position: fixed; right: 26px; bottom: 26px; width: 50px; height: 50px; border-radius: 50%; background: var(--surface-3); border: 1px solid var(--hairline); color: var(--ink); display: grid; place-items: center; z-index: 150; opacity: 0; visibility: hidden; transform: translateY(14px); transition: .3s var(--ease); }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--accent-grad); border-color: transparent; box-shadow: var(--glow); }

/* ---------------- Подвал ---------------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--hairline); margin-top: 100px; padding: 64px 0 0; position: relative; }
.site-footer::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg,transparent,var(--brand-glow),transparent); opacity: .5; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1.2fr .8fr .8fr; gap: 44px; }
.footer-logo { height: 46px; margin-bottom: 18px; filter: drop-shadow(0 0 12px rgba(59,138,230,.25)); }
.footer-note { color: var(--steel); font-size: .9rem; max-width: 34ch; }
.footer-col h4 { color: var(--ink); text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; margin-bottom: 18px; }
.footer-link { display: flex; align-items: center; gap: 9px; color: var(--steel); font-size: .9rem; padding: 6px 0; }
.footer-link:hover { color: var(--brand-glow); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 42px; height: 42px; border: 1px solid var(--hairline); border-radius: var(--r); display: grid; place-items: center; color: var(--steel); font-size: 1.1rem; background: var(--surface); }
.footer-social a:hover { background: var(--accent-grad); border-color: transparent; color: #fff; box-shadow: var(--glow); }
.footer-bottom { border-top: 1px solid var(--hairline); margin-top: 52px; padding: 24px 28px; font-size: .82rem; color: var(--steel-light); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-legal a { color: var(--steel); }
.footer-legal a:hover { color: var(--brand-glow); }

/* ---------------- Адаптив ---------------- */
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 768px) {
  .header-inner { height: 76px; }
  .brand-logo, .site-header.scrolled .brand-logo { height: 48px; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: flex; }
  .nav {
    position: fixed; top: 76px; right: 0; width: min(320px,82%); height: calc(100vh - 76px);
    background: var(--surface); border-left: 1px solid var(--hairline); padding: 24px; overflow-y: auto;
    transform: translateX(100%); transition: transform .35s var(--ease-out); margin-left: 0;
  }
  .nav.open { transform: translateX(0); }
  .nav ul { flex-direction: column; gap: 4px; }
  .nav > ul > li > a, .nav .sub-trigger { display: block; padding: 14px 16px; font-size: 1rem; }
  .nav a::after { display: none; }
  .sub-caret { display: none; }
  .subnav { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 14px; min-width: 0; background: transparent; }
}
@media (max-width: 600px) { .brand-sub { display: none; } .container { padding: 0 18px; } }
@media (max-width: 460px) { .brand-text { display: none; } .footer-grid { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-anim] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .grain { display: none; }
}
section[id]{scroll-margin-top:100px}

/* ---------------- Переключатель темы ---------------- */
.theme-toggle { background: var(--surface); border: 1px solid var(--hairline); width: 46px; height: 46px; border-radius: var(--r); color: var(--ink); font-size: 1rem; display: grid; place-items: center; transition: .25s var(--ease); }
.theme-toggle:hover { border-color: var(--brand-glow); color: var(--brand-glow); box-shadow: var(--glow); }
.theme-toggle i { transition: transform .4s var(--ease); }
.theme-toggle:hover i { transform: rotate(40deg); }

/* ============================================================
   СВЕТЛАЯ ТЕМА  ([data-theme="light"])
   ============================================================ */
:root[data-theme="light"] {
  --brand: #15589C; --brand-glow: #1768c4; --brand-dark: #0e3d6b; --brand-tint: rgba(21,88,156,.10);
  --bg: #f4f6f8; --bg-2: #eef1f4; --surface: #ffffff; --surface-2: #f6f8fa; --surface-3: #eef1f4; --paper: #ffffff;
  --ink: #14181d; --steel: #54606b; --steel-light: #8a949c;
  --hairline: rgba(20,24,29,.10); --hairline-2: rgba(20,24,29,.055);
  --shadow: 0 1px 2px rgba(20,24,29,.05), 0 12px 34px rgba(20,24,29,.08);
  --shadow-lift: 0 18px 50px rgba(14,61,107,.16), 0 0 0 1px rgba(21,88,156,.12);
  --glow: 0 0 0 1px rgba(21,88,156,.3), 0 8px 24px rgba(21,88,156,.22);
  --metal: linear-gradient(180deg, #3a444e 0%, #5b6770 45%, #2c343c 100%);
  --accent-grad: linear-gradient(135deg, #15589C, #1768c4);
}
[data-theme="light"] .grain { opacity: .02; }
[data-theme="light"] .brand-logo, [data-theme="light"] .footer-logo { filter: none; }
[data-theme="light"] .site-header { background: rgba(255,255,255,.72); }
[data-theme="light"] .site-header.scrolled { background: rgba(255,255,255,.94); box-shadow: 0 8px 24px rgba(20,24,29,.08); }
[data-theme="light"] ::-webkit-scrollbar-thumb { background: #cdd5dd; border-color: var(--bg-2); }
[data-theme="light"] .hero-bg.empty {
  background:
    radial-gradient(70% 80% at 78% 16%, rgba(21,88,156,.16), transparent 60%),
    radial-gradient(60% 60% at 12% 92%, rgba(21,88,156,.07), transparent 60%),
    linear-gradient(180deg, #eef2f6, #f4f6f8);
}
[data-theme="light"] .hero-bg.empty::before { opacity: .35; }
[data-theme="light"] .hero-bg .slide::after { background: linear-gradient(95deg, rgba(244,246,248,.95) 0%, rgba(244,246,248,.8) 42%, rgba(244,246,248,.42) 100%); }
[data-theme="light"] .hero-knife { opacity: .14; filter: grayscale(.18) brightness(.96) drop-shadow(0 24px 50px rgba(20,24,29,.18)); }
[data-theme="light"] .knife-figure { background: radial-gradient(120% 120% at 50% 0%, #f6f8fa, #e9edf1); }
[data-theme="light"] .knife-figure img { filter: grayscale(.35) brightness(.99); }
[data-theme="light"] .knife-card:hover .knife-figure img { filter: none; }
[data-theme="light"] .knife-figure::after { border-color: rgba(20,24,29,.10); }
[data-theme="light"] .knife-card:hover .knife-figure::after { border-color: rgba(21,88,156,.4); }
[data-theme="light"] .knife-actions { background: linear-gradient(to top, rgba(255,255,255,.97) 55%, transparent); }
[data-theme="light"] .blade-mark { color: rgba(20,24,29,.18); }
[data-theme="light"] .product-media { background: radial-gradient(120% 120% at 50% 0%, #f6f8fa, #e9edf1); }
[data-theme="light"] .heritage-art { background: radial-gradient(120% 120% at 30% 10%, #f6f8fa, #e9edf1); }
[data-theme="light"] .cart-overlay { background: rgba(20,24,29,.45); }

/* ---------------- Правовые страницы ---------------- */
.legal { max-width: 860px; margin: 0 auto; padding: 16px 0 40px; }
.legal h2 { font-size: 1.3rem; text-transform: uppercase; letter-spacing: .02em; margin: 34px 0 12px; }
.legal h2:first-of-type { margin-top: 8px; }
.legal p, .legal li { color: var(--steel); line-height: 1.8; }
.legal p { margin-bottom: 12px; }
.legal ul { margin: 0 0 14px 22px; display: grid; gap: 6px; }
.legal .req { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--r-lg); padding: 22px 24px; margin: 8px 0 18px; }
.legal .req b { color: var(--ink); }
.legal .muted-note { color: var(--steel-light); font-size: .86rem; border-left: 2px solid var(--brand-glow); padding-left: 14px; margin-top: 26px; }
.legal a { color: var(--brand-glow); }
