/* ============================================================
   PARAGON STATE — Regelwerk "Statement"
   Aurora · Riesen-§ · Editorial Type · Babyblau
   ============================================================ */

:root{
  --bg:          #04060a;
  --ice:         #f2f7fc;
  --ice-2:       #b3c4d4;
  --dim:         #64798d;
  --faint:       #3e4e5e;
  --accent:      #8fcff5;
  --accent-soft: #c9e8fc;
  --accent-deep: #3f89c2;
  --line:        rgba(178,205,228,0.08);
  --line-2:      rgba(178,205,228,0.16);
  --glass:       rgba(4,6,10,.72);
  --warning:     #e9c67e;
  --danger:      #f79a8e;
  --success:     #8ddcae;

  --display: "Fraunces", "Times New Roman", serif;
  --sans:    "Geist", system-ui, -apple-system, sans-serif;
  --mono:    "Geist Mono", ui-monospace, monospace;

  --container: 1200px;
  --nav-h:     68px;

  /* Legacy-Aliase (Inline-Styles im HTML) */
  --paper: var(--ice);
  --paper-2: var(--ice-2);
  --paper-dim: var(--dim);
  --blood: var(--accent);
  --blood-2: var(--accent-deep);
  --silver: var(--ice-2);
  --gold: var(--accent-soft);
}

/* ─── Basis ─────────────────────────────────────────────── */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }

html{
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--nav-h) + 40px);
}

body{
  background:var(--bg);
  color:var(--ice);
  font-family:var(--sans);
  font-size:15.5px;
  line-height:1.75;
  font-weight:330;
  letter-spacing:.004em;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

/* Aurora: zwei driftende Babyblau-Nebel */
@keyframes aurora{
  0%  { background-position: 20% 0%, 85% 100%; }
  50% { background-position: 45% 18%, 60% 70%; }
  100%{ background-position: 20% 0%, 85% 100%; }
}
body::before{
  content:"";
  position:fixed; inset:-10%;
  pointer-events:none;
  z-index:0;
  background:
    radial-gradient(ellipse 46% 34% at 30% 8%,  rgba(143,207,245,.10), transparent 62%),
    radial-gradient(ellipse 40% 30% at 78% 86%, rgba(63,137,194,.075), transparent 62%);
  background-repeat:no-repeat;
  animation:aurora 26s ease-in-out infinite;
}

/* Scroll-Fortschritt */
@keyframes grow-progress{ from{ transform:scaleX(0);} to{ transform:scaleX(1);} }
body::after{
  content:"";
  position:fixed; top:0; left:0; right:0;
  height:1.5px;
  background:linear-gradient(90deg, var(--accent-deep), var(--accent));
  transform-origin:0 50%;
  transform:scaleX(0);
  z-index:300;
  animation:grow-progress linear both;
  animation-timeline:scroll(root);
}

::selection{ background:var(--accent); color:#04121f; }

a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
img{ display:block; max-width:100%; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }

:focus-visible{
  outline:1.5px solid var(--accent);
  outline-offset:4px;
  border-radius:4px;
}

::-webkit-scrollbar{ width:8px; }
::-webkit-scrollbar-track{ background:transparent; }
::-webkit-scrollbar-thumb{ background:rgba(143,207,245,.14); border-radius:99px; }
::-webkit-scrollbar-thumb:hover{ background:rgba(143,207,245,.3); }

.container{
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:32px;
  position:relative;
  z-index:1;
}

/* ─── Riesen-§: fixe Kapitelanzeige rechts (per JS befüllt) ── */
.chapter-ghost{
  position:fixed;
  right:-1.5vw; bottom:-6vh;
  z-index:0;
  font-family:var(--display);
  font-style:italic;
  font-weight:560;
  font-size:clamp(200px, 30vw, 460px);
  line-height:.8;
  padding:0 .16em .1em 0;
  white-space:nowrap;
  color:transparent;
  background:linear-gradient(170deg, rgba(143,207,245,.085), rgba(143,207,245,.01) 75%);
  -webkit-background-clip:text;
  background-clip:text;
  pointer-events:none;
  user-select:none;
  opacity:0;
  transform:translateY(24px);
  transition:opacity .8s ease, transform .8s ease;
}
.chapter-ghost.is-on{ opacity:1; transform:none; }
@media (max-width:1280px){ .chapter-ghost{ display:none; } }

/* ─── Navigation ────────────────────────────────────────── */
.nav{
  position:fixed; top:0; left:0; right:0;
  z-index:200;
  transition:background .35s ease, border-color .35s ease;
  border-bottom:1px solid transparent;
}
.nav--shrunk{
  background:var(--glass);
  -webkit-backdrop-filter:blur(22px) saturate(1.5);
  backdrop-filter:blur(22px) saturate(1.5);
  border-bottom-color:var(--line);
}
.nav__row{
  display:flex; align-items:center; justify-content:space-between;
  gap:24px;
  height:var(--nav-h);
}

.brand{
  display:flex; align-items:center; gap:11px;
  font-size:13.5px;
  font-weight:500;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--ice);
}
.brand__logo{ height:30px; width:auto; }

.nav__links{ display:flex; align-items:center; gap:36px; }
.nav__links a{
  position:relative;
  font-size:13px;
  font-weight:400;
  letter-spacing:.03em;
  color:var(--dim);
  padding:6px 0;
  transition:color .22s ease;
}
.nav__links a::after{
  content:"";
  position:absolute; left:0; right:100%; bottom:0;
  height:1px;
  background:var(--accent);
  box-shadow:0 0 8px rgba(143,207,245,.6);
  transition:right .28s cubic-bezier(.4,0,.2,1);
}
.nav__links a:hover{ color:var(--ice-2); }
.nav__links a.active{ color:var(--ice); }
.nav__links a.active::after{ right:0; }

.nav__right{ display:flex; align-items:center; }

.nav__toggle{
  display:none;
  width:40px; height:40px;
  flex-direction:column; align-items:center; justify-content:center; gap:5px;
}
.nav__toggle span{
  display:block; width:18px; height:1px;
  background:var(--ice);
  transition:transform .25s ease;
}
.nav__toggle.is-open span:nth-child(1){ transform:translateY(3px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2){ transform:translateY(-3px) rotate(-45deg); }

/* ─── Mobile Menu ───────────────────────────────────────── */
.mobile-menu-backdrop{
  position:fixed; inset:0;
  background:rgba(3,5,8,.72);
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px);
  opacity:0; pointer-events:none;
  transition:opacity .3s ease;
  z-index:190;
}
.mobile-menu-backdrop.is-open{ opacity:1; pointer-events:auto; }

.mobile-menu{
  position:fixed;
  top:calc(var(--nav-h) + 12px);
  left:18px; right:18px;
  z-index:195;
  padding:10px;
  background:var(--glass);
  -webkit-backdrop-filter:blur(24px) saturate(1.5);
  backdrop-filter:blur(24px) saturate(1.5);
  border:1px solid var(--line-2);
  border-radius:20px;
  box-shadow:0 32px 90px -24px rgba(0,0,0,.85);
  display:flex; flex-direction:column; gap:2px;
  opacity:0; transform:translateY(-8px) scale(.985);
  pointer-events:none;
  transition:opacity .28s ease, transform .28s ease;
}
.mobile-menu.is-open{ opacity:1; transform:none; pointer-events:auto; }
.mobile-menu a{
  font-size:15px;
  font-weight:380;
  color:var(--ice-2);
  padding:15px 18px;
  border-radius:14px;
  transition:color .2s ease, background .2s ease;
}
.mobile-menu a:hover{ color:var(--accent-soft); background:rgba(143,207,245,.06); }
body.menu-open{ overflow:hidden; }

/* ─── Page Hero: Statement ──────────────────────────────── */
.page-hero{
  min-height:100vh;
  min-height:100svh;
  display:flex;
  align-items:center;
  padding:calc(var(--nav-h) + 40px) 0 80px;
  text-align:center;
  position:relative;
}
.page-hero .container{ width:100%; }

.eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--mono);
  font-size:10.5px;
  font-weight:400;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--dim);
  margin-bottom:34px;
}
.eyebrow .dot{
  width:5px; height:5px; border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 12px rgba(143,207,245,.9);
  animation:pulse 2.6s ease-in-out infinite;
}
@keyframes pulse{
  0%,100%{ opacity:1; }
  50%    { opacity:.35; }
}

.page-hero__title{
  font-family:var(--display);
  font-size:clamp(52px, 9.5vw, 112px);
  font-weight:330;
  line-height:.98;
  letter-spacing:-.025em;
  color:var(--ice);
}
@keyframes shimmer{
  0%  { background-position:0% 50%; }
  100%{ background-position:200% 50%; }
}
.page-hero__title .accent{
  font-style:italic;
  font-weight:310;
  color:transparent;
  background:linear-gradient(110deg,
    var(--accent-soft) 0%,
    var(--accent) 30%,
    var(--accent-deep) 50%,
    var(--accent) 70%,
    var(--accent-soft) 100%);
  background-size:200% 100%;
  -webkit-background-clip:text;
  background-clip:text;
  animation:shimmer 7s linear infinite;
}
.page-hero__sub{
  margin:30px auto 0;
  max-width:460px;
  font-size:16px;
  color:var(--dim);
  line-height:1.8;
}
/* Scroll-Cue */
.page-hero::after{
  content:"";
  position:absolute; left:50%; bottom:36px;
  transform:translateX(-50%);
  width:1px; height:52px;
  background:linear-gradient(180deg, var(--accent), transparent);
  animation:cue 2.2s ease-in-out infinite;
}
@keyframes cue{
  0%,100%{ opacity:.9; transform:translateX(-50%) scaleY(1); }
  50%    { opacity:.25; transform:translateX(-50%) scaleY(.55); transform-origin:top; }
}

/* ─── Rules Layout ──────────────────────────────────────── */
.rules{ padding:40px 0 150px; }
.rules__grid{
  display:grid;
  grid-template-columns:230px minmax(0,1fr);
  gap:72px;
  align-items:start;
}

/* TOC */
.rules__toc{
  position:sticky;
  top:calc(var(--nav-h) + 44px);
  max-height:calc(100vh - var(--nav-h) - 88px);
  overflow-y:auto;
  overscroll-behavior:contain;
  scrollbar-width:none;
}
.rules__toc::-webkit-scrollbar{ display:none; }
.rules__toc h4{
  font-family:var(--mono);
  font-size:10px;
  font-weight:400;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--faint);
  margin-bottom:20px;
}
.rules__toc ul{
  border-left:1px solid var(--line);
  display:flex; flex-direction:column;
}
.rules__toc a{
  position:relative;
  display:block;
  font-size:12.5px;
  font-weight:360;
  color:var(--dim);
  padding:7px 0 7px 17px;
  margin-left:-1px;
  border-left:1px solid transparent;
  line-height:1.5;
  transition:color .2s ease, border-color .2s ease, padding-left .2s ease;
}
.rules__toc a:hover{ color:var(--ice-2); padding-left:20px; }
.rules__toc a.is-active{
  color:var(--accent);
  border-left-color:var(--accent);
}

/* ─── Rule-Sektionen: Editorial mit Riesen-Numeral ──────── */
.rules__body{ display:flex; flex-direction:column; }

.rule{
  position:relative;
  padding:76px 0 60px;
}
.rule + .rule::before{
  content:"";
  position:absolute; top:0; left:0; right:0;
  height:1px;
  background:linear-gradient(90deg, rgba(143,207,245,.28), var(--line) 40%, transparent 90%);
}

/* Reveal beim Scrollen (JS setzt .reveal/.in-view) */
.rule.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s ease, transform .7s cubic-bezier(.2,.6,.2,1);
}
.rule.reveal.in-view{ opacity:1; transform:none; }

/* Riesen-Nummer hinter der Überschrift */
.rule__num{
  position:absolute;
  top:34px; left:-14px;
  padding:0 .18em .08em 0;
  font-family:var(--display);
  font-style:italic;
  font-weight:480;
  font-size:clamp(96px, 12vw, 150px);
  line-height:1;
  letter-spacing:-.03em;
  color:transparent;
  background:linear-gradient(180deg, rgba(143,207,245,.14), rgba(143,207,245,.012) 85%);
  -webkit-background-clip:text;
  background-clip:text;
  pointer-events:none;
  user-select:none;
  white-space:nowrap;
}

.rule__content{ position:relative; min-width:0; }
.rule__content h2{
  font-family:var(--display);
  font-size:clamp(30px, 4.2vw, 44px);
  font-weight:360;
  letter-spacing:-.018em;
  line-height:1.1;
  color:var(--ice);
  padding-top:44px;
  margin-bottom:40px;
}
.rule__content h2 em{
  font-style:italic;
  font-weight:320;
  color:var(--accent);
}

.rule__list{ display:flex; flex-direction:column; }
.rule__list > li{
  position:relative;
  display:grid;
  grid-template-columns:58px minmax(0,1fr);
  gap:20px;
  padding:16px 0 16px 16px;
  margin-left:-16px;
  font-size:14.5px;
  color:var(--ice-2);
  border-radius:12px;
  transition:background .25s ease;
}
.rule__list > li + li::before{
  content:"";
  position:absolute; top:0; left:16px; right:0;
  height:1px;
  background:var(--line);
}
.rule__list > li:hover{ background:rgba(143,207,245,.03); }
.rule__list > li:hover::after{
  content:"";
  position:absolute; left:0; top:14px; bottom:14px;
  width:2px; border-radius:2px;
  background:var(--accent);
}
/* Verschachtelte Unterlisten in Klauseln */
.rule__list ul{
  margin-top:10px;
  display:flex; flex-direction:column;
  gap:7px;
}
.rule__list ul li{
  position:relative;
  padding-left:18px;
  font-size:14px;
  color:var(--ice-2);
}
.rule__list ul li::before{
  content:"";
  position:absolute; left:2px; top:.72em;
  width:5px; height:1px;
  background:var(--accent);
}

.clause{
  font-family:var(--mono);
  font-size:11.5px;
  font-weight:400;
  color:var(--faint);
  padding-top:4px;
  letter-spacing:.04em;
  font-variant-numeric:tabular-nums;
}

.example{
  display:block;
  margin:14px 0 6px;
  padding:12px 18px;
  font-size:13px;
  line-height:1.7;
  color:var(--dim);
  background:rgba(143,207,245,.045);
  border-left:1px solid var(--accent-deep);
  border-radius:0 12px 12px 0;
}

.mark-warning{ color:var(--warning); font-weight:400; }
.mark-danger { color:var(--danger);  font-weight:420; }
.mark-success{ color:var(--success); font-weight:400; }
.mark-info   { color:var(--accent-soft); }

/* ─── Regel-Suche ───────────────────────────────────────── */
.toc-search{
  position:relative;
  margin-bottom:20px;
}
.toc-search input{
  width:100%;
  height:40px;
  font:inherit;
  font-size:13px;
  font-weight:360;
  color:var(--ice);
  background:rgba(178,205,228,.045);
  border:1px solid var(--line-2);
  border-radius:11px;
  padding:0 34px 0 34px;
  outline:none;
  transition:border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.toc-search input::placeholder{ color:var(--faint); }
.toc-search input:hover{ border-color:rgba(178,205,228,.24); }
.toc-search input:focus{
  border-color:rgba(143,207,245,.5);
  background:rgba(143,207,245,.055);
  box-shadow:0 0 0 3px rgba(143,207,245,.09);
}
.toc-search svg{
  position:absolute; left:12px; top:13px;
  width:14px; height:14px;
  color:var(--faint);
  pointer-events:none;
  transition:color .25s ease;
}
.toc-search:focus-within svg{ color:var(--accent); }
.toc-search input::-webkit-search-cancel-button{
  -webkit-appearance:none;
  appearance:none;
  height:13px; width:13px;
  background:var(--dim);
  -webkit-mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M2 2l8 8M10 2l-8 8" stroke="black" stroke-width="1.6" stroke-linecap="round"/></svg>') center/contain no-repeat;
  mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path d="M2 2l8 8M10 2l-8 8" stroke="black" stroke-width="1.6" stroke-linecap="round"/></svg>') center/contain no-repeat;
  cursor:pointer;
  transition:background .2s ease;
}
.toc-search input::-webkit-search-cancel-button:hover{ background:var(--accent); }
.toc-search__count{
  display:none;
  align-items:center;
  gap:7px;
  margin:10px 2px 0;
  font-family:var(--mono);
  font-size:10px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--dim);
}
.toc-search__count::before{
  content:"";
  flex:none;
  width:4px; height:4px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 8px rgba(143,207,245,.7);
}
.toc-search__count.is-visible{ display:flex; }

.rule.is-hidden,
.rule__list li.is-hidden,
.rules__toc li.is-hidden{ display:none; }
/* Bei aktiver Suche keine Reveal-Verzögerung */
.rule.is-hidden.reveal{ transition:none; }

mark.search-hit{
  background:rgba(143,207,245,.22);
  color:var(--accent-soft);
  border-radius:3px;
  padding:0 1px;
}

.rules__empty{
  display:none;
  padding:64px 0;
  text-align:center;
  color:var(--dim);
  font-size:14px;
}
.rules__empty.is-visible{ display:block; }
.rules__empty strong{ color:var(--ice-2); font-weight:440; }

/* ─── Footer ────────────────────────────────────────────── */
footer{
  position:relative;
  border-top:1px solid var(--line);
  padding:80px 0 44px;
  background:linear-gradient(180deg, transparent, rgba(143,207,245,.02));
}
.foot__row{
  display:grid;
  grid-template-columns:minmax(0,1.5fr) minmax(0,1fr) minmax(0,1fr);
  gap:56px;
  margin-bottom:60px;
}
.foot__brand p{
  margin-top:18px;
  font-size:13.5px;
  color:var(--dim);
  line-height:1.8;
  max-width:300px;
}
.foot__col h4{
  font-family:var(--mono);
  font-size:10px;
  font-weight:400;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--faint);
  margin-bottom:20px;
}
.foot__col ul{ display:flex; flex-direction:column; gap:12px; }
.foot__col a{
  font-size:13.5px;
  font-weight:360;
  color:var(--ice-2);
  transition:color .2s ease;
}
.foot__col a:hover{ color:var(--accent); }

.foot__bottom{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
  padding-top:30px;
  border-top:1px solid var(--line);
  font-size:12px;
  color:var(--faint);
}
.foot__bottom a{ transition:color .2s ease; }
.foot__bottom a:hover{ color:var(--accent); }

/* ─── Rechtliches ───────────────────────────────────────── */
.legal{
  max-width:720px;
  margin-inline:auto;
  padding-bottom:130px;
}
.legal h2{
  font-family:var(--display);
  font-size:22px;
  font-weight:420;
  color:var(--ice);
  margin:44px 0 14px;
}
.legal p, .legal address{
  font-style:normal;
  font-size:14.5px;
  color:var(--ice-2);
  margin-bottom:12px;
}
.legal a{ color:var(--accent); }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width:1020px){
  .rules__grid{ grid-template-columns:1fr; gap:44px; }
  .rules__toc{ position:static; max-height:none; }
  .rules__toc ul{
    border-left:0;
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(210px, 1fr));
    gap:0 24px;
  }
  .rules__toc a{ border-left:0; margin-left:0; padding-left:0; border-bottom:1px solid var(--line); padding-block:9px; }
  .rules__toc a:hover{ padding-left:0; }
  .rules__toc h4{ }
}

@media (max-width:820px){
  .nav__links{ display:none; }
  .nav__toggle{ display:flex; }

  .page-hero{ min-height:100vh; min-height:100svh; padding:calc(var(--nav-h) + 24px) 0 56px; }

  .rules{ padding-bottom:110px; }
  .rule{ padding:56px 0 44px; }
  .rule__num{ font-size:88px; top:26px; left:-4px; }
  .rule__content h2{ padding-top:34px; }
  .rule__list li{ grid-template-columns:46px minmax(0,1fr); gap:12px; font-size:14px; padding-left:10px; margin-left:-10px; }
  .rule__list li + li::before{ left:10px; }

  .foot__row{ grid-template-columns:1fr; gap:40px; }
  .foot__bottom{ flex-direction:column; align-items:flex-start; }
}

/* ─── Fonts (self-hosted, DSGVO-konform) ────────────────── */
@font-face{
  font-family:"Fraunces";
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url("/fonts/fraunces-latin-opsz-normal.woff2") format("woff2");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face{
  font-family:"Fraunces";
  font-style:italic;
  font-weight:100 900;
  font-display:swap;
  src:url("/fonts/fraunces-latin-opsz-italic.woff2") format("woff2");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face{
  font-family:"Fraunces";
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url("/fonts/fraunces-latin-ext-opsz-normal.woff2") format("woff2");
  unicode-range:U+0100-02AF,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face{
  font-family:"Fraunces";
  font-style:italic;
  font-weight:100 900;
  font-display:swap;
  src:url("/fonts/fraunces-latin-ext-opsz-italic.woff2") format("woff2");
  unicode-range:U+0100-02AF,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face{
  font-family:"Geist";
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url("/fonts/geist-latin-wght-normal.woff2") format("woff2");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face{
  font-family:"Geist";
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url("/fonts/geist-latin-ext-wght-normal.woff2") format("woff2");
  unicode-range:U+0100-02AF,U+0300-0301,U+0303-0304,U+0308-0309,U+0323,U+0329,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face{
  font-family:"Geist Mono";
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url("/fonts/geist-mono-latin-wght-normal.woff2") format("woff2");
  unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* ─── Reduced Motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
  }
  body::after{ display:none; }
  .rule.reveal{ opacity:1; transform:none; }
}
