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

:root {
  /* brand accents from the Krummel logo: magenta → red/orange → violet */
  --accent:    #e11d74;   /* magenta / pink */
  --accent-2:  #7b2d8e;   /* logo violet */
  --grad:      linear-gradient(120deg, #7b2d8e 0%, #d6265b 48%, #f5732e 100%);
  --grad-135:  linear-gradient(135deg, #7b2d8e 0%, #d6265b 48%, #f5732e 100%);
  --on-accent: #ffffff;   /* text on gradient buttons */
  --soon:      #f5732e;    /* warm orange for "coming soon" */
  --maxw:      1160px;
}

/* ─── DARK THEME (default) ─── */
:root, [data-theme="dark"] {
  --bg:        #0b0810;
  --bg-2:      #0f0a15;
  --panel:     #150e1c;
  --panel-2:   #1b1324;
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.15);
  --text:      #f0e9f2;
  --text-2:    #b8a7c2;
  --muted:     #7c6b88;
  --live:      #e11d74;
  --glow-teal: rgba(225,29,116,.14);
  --glow-violet: rgba(123,45,142,.16);
  --grain-op:  .35;
}

/* ─── LIGHT THEME (matches the logo background) ─── */
[data-theme="light"] {
  --bg:        #f7f6f9;
  --bg-2:      #eeecf2;
  --panel:     #ffffff;
  --panel-2:   #faf8fc;
  --line:      rgba(30,16,40,0.09);
  --line-2:    rgba(30,16,40,0.16);
  --text:      #1e1226;
  --text-2:    #5a4e66;
  --muted:     #8a7f96;
  --live:      #d6265b;
  --on-accent: #ffffff;
  --glow-teal: rgba(225,29,116,.10);
  --glow-violet: rgba(123,45,142,.10);
  --grain-op:  .18;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
  transition: background .4s ease, color .4s ease;
}

a { color: inherit; text-decoration: none; }

.mono { font-family: 'JetBrains Mono', monospace; }

/* atmospheric glow — magenta + violet from the logo */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
  transition: opacity .4s ease;
  background:
    radial-gradient(55% 40% at 82% -5%, var(--glow-teal), transparent 60%),
    radial-gradient(50% 45% at 8% 3%, var(--glow-violet), transparent 60%);
}

/* subtle grain */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: var(--grain-op);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 160px;
}

/* ─── LAYOUT SHELL ─── */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 48px);
  padding-right: clamp(20px, 5vw, 48px);
  position: relative;
  z-index: 1;
}

/* ─── HEADER ─── */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(8,10,15,.6);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
header { background: color-mix(in srgb, var(--bg) 60%, transparent); }
header.scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--bg) 88%, transparent); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 92px; gap: 16px;
}
.project-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 10px;
}
/* monogram placeholder for projects without a logo image */
.project-logo.placeholder {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--grad-135);
  color: var(--on-accent);
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 2.1rem; letter-spacing: -.02em;
  user-select: none;
}
.brand {
  display: flex; align-items: center;
}
.brand img {
  height: 60px; width: auto; display: block;
}
.brand .brand-logo-light { display: none; }
.brand .brand-logo-dark  { display: block; }
[data-theme="light"] .brand .brand-logo-light { display: block; }
[data-theme="light"] .brand .brand-logo-dark  { display: none; }
.nav-right { display: flex; align-items: center; gap: 26px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: .82rem; color: var(--text-2);
  letter-spacing: .01em; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
@media (max-width: 640px) { .nav-links { display: none; } }

/* theme toggle */
.theme-toggle {
  width: 40px; height: 40px; border-radius: 10px;
  border: 1px solid var(--line-2); background: var(--panel);
  color: var(--text-2); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .2s, border-color .2s, background .3s, transform .15s;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); }
.theme-toggle:active { transform: scale(.94); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* ─── HERO ─── */
#hero { padding: 168px 0 96px; position: relative; overflow: hidden; }

/* animated tech grid */
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, #000 35%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 45%, #000 35%, transparent 100%);
  animation: gridDrift 22s linear infinite;
}
@keyframes gridDrift { from { background-position: 0 0; } to { background-position: 58px 58px; } }

/* glow blobs */
.hero-blob {
  position: absolute; z-index: 0; pointer-events: none;
  border-radius: 50%; filter: blur(10px);
  animation: blobPulse 9s ease-in-out infinite;
}
.hero-blob.b1 {
  width: 460px; height: 460px; top: -120px; right: -80px;
  background: radial-gradient(circle, var(--glow-teal), transparent 68%);
}
.hero-blob.b2 {
  width: 380px; height: 380px; bottom: -100px; left: -60px;
  background: radial-gradient(circle, var(--glow-violet), transparent 68%);
  animation-delay: 2.5s;
}
@keyframes blobPulse { 0%,100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.18); opacity: 1; } }

.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.hero-eyebrow::before {
  content: ''; width: 26px; height: 1px; background: var(--accent);
}
#hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.025em;
  max-width: 16ch;
  position: relative; z-index: 1;
}
#hero h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
#hero p {
  margin-top: 26px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--text-2);
  max-width: 52ch;
  line-height: 1.7;
  position: relative; z-index: 1;
}
.hero-cta { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: .9rem; font-weight: 600;
  padding: 14px 26px; border-radius: 10px;
  min-height: 50px; cursor: pointer;
  transition: transform .15s, box-shadow .25s, background .25s, border-color .25s;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary {
  background: var(--grad-135);
  color: var(--on-accent); font-weight: 700;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(214,38,91,.38); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn:active { transform: scale(.98); }

/* hero meta strip */
.hero-strip {
  margin-top: 64px;
  display: flex; gap: clamp(28px, 5vw, 64px); flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  position: relative; z-index: 1;
}
.hero-strip .item .k {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.7rem;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-strip .item .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}

/* ─── SECTION HEADINGS ─── */
.section { padding: 88px 0; position: relative; }
.section-head {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 44px; flex-wrap: wrap;
}
.section-index {
  font-family: 'JetBrains Mono', monospace;
  font-size: .8rem; color: var(--accent); letter-spacing: .1em;
}
.section-title {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem); letter-spacing: -.02em;
}
.section-note { color: var(--muted); font-size: .9rem; margin-left: auto; }

/* ─── PROJECT GRID (cards) ─── */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .grid { grid-template-columns: 1fr; } }

.card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.22,1,.36,1), border-color .3s, background .3s;
  cursor: pointer;
  min-height: 230px;
}
.card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(120% 100% at 100% 0%, var(--glow, rgba(225,29,116,.14)), transparent 55%);
  opacity: 0; transition: opacity .35s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  background: var(--panel-2);
}
.card:hover::before { opacity: 1; }

.card-top {
  display: flex; align-items: center; justify-content: space-between;
  position: relative; z-index: 1;
}
.card-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.05rem; color: var(--muted);
}
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px;
  border: 1px solid var(--line-2);
  color: var(--text-2);
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge.live { color: var(--live); border-color: color-mix(in srgb, var(--live) 40%, transparent); }
.badge.live .dot { animation: pulse 2s ease infinite; }
.badge.soon { color: var(--soon); border-color: color-mix(in srgb, var(--soon) 40%, transparent); }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.35;} }

.card-name {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.7rem; letter-spacing: -.02em;
  margin-top: 1px; position: relative; z-index: 1;
}
.card-tagline {
  color: var(--text-2); font-size: .95rem;
  margin-top: 8px; position: relative; z-index: 1;
  flex: 1;
}
.card-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--line);
  position: relative; z-index: 1;
}
.card-type {
  font-family: 'JetBrains Mono', monospace;
  font-size: .74rem; letter-spacing: .08em; color: var(--muted);
}
.card-arrow {
  font-size: 1rem; color: var(--accent);
  transition: transform .25s; opacity: .8;
}
.card:hover .card-arrow { transform: translateX(4px); opacity: 1; }

/* ─── PROJECT DETAIL SECTIONS ─── */
#detail-wrap { border-top: 1px solid var(--line); }
.detail {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 92px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 860px) { .detail-grid { grid-template-columns: 1fr; gap: 32px; } }

.detail-left { position: sticky; top: 96px; }
@media (max-width: 860px) { .detail-left { position: static; } }

.detail-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: .9; letter-spacing: -.03em;
  background: var(--grad-135);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: .95;
}
.detail-name {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -.02em;
  margin-top: 8px;
}
.detail-tagline { color: var(--text-2); font-size: 1.05rem; margin-top: 12px; }

.detail-desc {
  color: var(--text-2); font-size: 1.02rem; line-height: 1.8;
}
.detail-desc + .detail-desc { margin-top: 16px; }

/* consistent spec table — SAME fields for every project */
.spec {
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
}
.spec-row {
  display: grid; grid-template-columns: 130px 1fr;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
}
.spec-row:last-child { border-bottom: none; }
.spec-k {
  font-family: 'JetBrains Mono', monospace;
  font-size: .74rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
}
.spec-v { font-size: .95rem; color: var(--text); font-weight: 500; }
.spec-v .inline-badge {
  display: inline-flex; align-items: center; gap: 7px;
}
.spec-v .dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.dot-live { background: var(--live); box-shadow: 0 0 8px var(--live); }
.dot-soon { background: var(--soon); box-shadow: 0 0 8px var(--soon); }

.detail-actions { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.link-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .88rem; font-weight: 600;
  padding: 13px 24px; border-radius: 10px; min-height: 48px;
  background: var(--grad-135);
  color: var(--on-accent);
  transition: transform .15s, box-shadow .25s;
}
.link-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(214,38,91,.34); }
.link-primary .arrow { transition: transform .25s; }
.link-primary:hover .arrow { transform: translateX(3px); }
.link-disabled {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 13px 22px; border-radius: 10px; min-height: 48px;
  border: 1px dashed var(--line-2); color: var(--muted);
}
.link-disabled .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--soon); box-shadow: 0 0 8px var(--soon); }

/* ─── ABOUT ─── */
#about { border-top: 1px solid var(--line); }
.about-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 6vw, 72px);
}
@media (max-width: 780px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
.about-lead {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.25;
  letter-spacing: -.01em;
}
.about-body { color: var(--text-2); font-size: 1.02rem; line-height: 1.8; margin-top: 20px; }
.about-body + .about-body { margin-top: 14px; }

.founder {
  border: 1px solid var(--line); border-radius: 16px;
  padding: 24px; background: var(--panel);
  display: flex; align-items: center; gap: 18px;
}
.founder .av {
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
  background: var(--grad-135);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; color: var(--on-accent);
  font-size: 1.1rem;
}
.founder .fn { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; }
.founder .fr { color: var(--muted); font-size: .82rem; margin-top: 3px; font-family: 'JetBrains Mono', monospace; letter-spacing: .04em; }

/* ─── LEISTUNGEN (services) ─── */
#leistungen { border-top: 1px solid var(--line); }
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .services { grid-template-columns: 1fr; } }
.service {
  position: relative;
  padding: 30px 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform .3s cubic-bezier(.22,1,.36,1), border-color .3s, background .3s;
}
.service:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  background: var(--panel-2);
}
.service-icon {
  font-family: 'JetBrains Mono', monospace;
  font-size: .78rem; letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.service-name {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.35rem; letter-spacing: -.02em;
  margin-bottom: 10px;
}
.service-desc { color: var(--text-2); font-size: .98rem; line-height: 1.7; }

/* ─── KONTAKT ─── */
#kontakt { border-top: 1px solid var(--line); }
.contact {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  padding: clamp(32px, 5vw, 56px);
  position: relative; overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 100% 0%, var(--glow-violet), transparent 55%);
  opacity: .6; pointer-events: none;
}
.contact-lead {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem); letter-spacing: -.02em;
  position: relative; z-index: 1;
}
.contact-body {
  color: var(--text-2); font-size: 1.05rem; line-height: 1.7;
  max-width: 54ch; margin-top: 16px;
  position: relative; z-index: 1;
}
.contact-actions {
  margin-top: 32px;
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.contact-mail {
  color: var(--text-2); font-size: .95rem;
  border-bottom: 1px solid var(--line-2);
  transition: color .2s, border-color .2s;
}
.contact-mail:hover { color: var(--accent); border-color: var(--accent); }

/* ─── FOOTER / IMPRESSUM ─── */
footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 48px;
  position: relative; z-index: 1;
}
.foot-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot-imp .h {
  font-family: 'JetBrains Mono', monospace;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.foot-imp p { color: var(--text-2); font-size: .9rem; line-height: 1.9; }
.foot-brand { text-align: right; display: flex; flex-direction: column; align-items: flex-end; }
@media (max-width: 560px) { .foot-brand { text-align: left; align-items: flex-start; } }
.foot-brand .logo img { height: 84px; width: auto; display: block; }
.foot-brand .logo .brand-logo-light { display: none; }
.foot-brand .logo .brand-logo-dark  { display: block; }
[data-theme="light"] .foot-brand .logo .brand-logo-light { display: block; }
[data-theme="light"] .foot-brand .logo .brand-logo-dark  { display: none; }
.foot-brand .cr { color: var(--muted); font-size: .8rem; margin-top: 14px; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ─── SUBPAGE WORDMARK (Impressum / Datenschutz) ─── */
.brand-word {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1.35rem; letter-spacing: -.01em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.foot-brand .brand-word { font-size: 1.5rem; }

/* ─── LEGAL / CONTENT PAGES (Impressum / Datenschutz) ─── */
.page { padding: 148px 0 40px; position: relative; z-index: 1; min-height: 72vh; }
.legal { max-width: 780px; }
.legal .eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 22px;
}
.legal .eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--accent); }
.legal h1 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -.02em;
  line-height: 1.05; margin-bottom: 6px;
}
.legal h2 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem); letter-spacing: -.01em;
  margin-top: 44px; margin-bottom: 14px;
}
.legal h3 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1rem; margin-top: 28px; margin-bottom: 10px;
}
.legal p, .legal address {
  color: var(--text-2); font-size: 1rem; line-height: 1.8;
  margin-bottom: 16px; font-style: normal;
}
.legal .lead { font-size: 1.08rem; color: var(--text-2); margin-top: 10px; }
.legal ul { color: var(--text-2); font-size: 1rem; line-height: 1.8; margin: 0 0 16px 1.2em; }
.legal li { margin-bottom: 6px; }
.legal a {
  color: var(--accent); text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  transition: color .2s, border-color .2s;
}
.legal a:hover { color: var(--accent-2); border-color: var(--accent-2); }
.legal strong { color: var(--text); font-weight: 600; }
.legal .divider { height: 1px; background: var(--line); border: 0; margin: 40px 0; }
