/* =============================================================
   Christian Engelhardt — Freelancer-Website
   Design: Dark AI-Premium
   Vanilla CSS, keine Frameworks. Läuft statisch auf All-Inkl.
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --bg:            #070b16;
  --bg-2:          #0a1020;
  --surface:       rgba(19, 27, 48, 0.55);
  --surface-solid: #0e1526;
  --elevated:      rgba(26, 36, 62, 0.7);
  --border:        rgba(125, 160, 255, 0.12);
  --border-strong: rgba(125, 160, 255, 0.28);

  --text:    #e8edf9;
  --text-2:  #aab6d2;
  --muted:   #6f7d9c;

  --cyan:   #38e1ff;
  --blue:   #4d7cff;
  --violet: #9b8cff;
  --accent: #52c8ff;

  --grad: linear-gradient(120deg, #38e1ff 0%, #6ea8ff 45%, #a98bff 100%);
  --grad-soft: linear-gradient(120deg, rgba(56,225,255,.16), rgba(169,139,255,.16));

  --glow-cyan:   0 0 40px rgba(56, 225, 255, 0.25);
  --shadow-card: 0 20px 50px -20px rgba(0, 0, 0, 0.75);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-disp: "Space Grotesk", var(--font-sans);
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --maxw: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Ambient background layer */
.bg-orbs { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.bg-orbs::before, .bg-orbs::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
}
.bg-orbs::before { width: 640px; height: 640px; top: -220px; left: -160px;
  background: radial-gradient(circle, rgba(56,225,255,.35), transparent 65%); }
.bg-orbs::after  { width: 620px; height: 620px; top: 480px; right: -220px;
  background: radial-gradient(circle, rgba(155,140,255,.32), transparent 65%); }
body::before { /* fine grid */
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(125,160,255,.035) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(125,160,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 80%);
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(72px, 11vw, 130px) 0; position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 80px); }

.eyebrow {
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .08em;
  color: var(--accent); text-transform: uppercase; display: inline-flex; align-items: center; gap: .55rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--grad); display: inline-block; }

h1, h2, h3 { font-family: var(--font-disp); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }
.h-section { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 1rem; }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--text-2); max-width: 60ch; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 999px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { color: #04121b; background: var(--grad); box-shadow: 0 10px 30px -8px rgba(56,225,255,.5); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -8px rgba(56,225,255,.65); }
.btn--ghost { color: var(--text); border: 1px solid var(--border-strong); background: rgba(255,255,255,.02); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--accent); background: rgba(56,225,255,.08); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100; transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(7, 11, 22, 0.78); backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%); border-bottom-color: var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--font-disp); font-weight: 600; }
.brand .mono {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: var(--grad); color: #04121b; font-weight: 700; letter-spacing: -.02em; font-size: 1.05rem;
  box-shadow: var(--glow-cyan);
}
.brand small { display: block; font-family: var(--font-mono); font-size: .6rem; color: var(--muted); letter-spacing: .06em; font-weight: 400; line-height: 1.45; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a { font-size: .93rem; color: var(--text-2); transition: color .2s; position: relative; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--grad); transition: width .25s var(--ease); border-radius: 2px; }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1rem; }

.lang {
  display: inline-flex; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; font-family: var(--font-mono); font-size: .74rem;
}
.lang button { padding: .32rem .62rem; color: var(--muted); transition: all .2s; }
.lang button.active { background: var(--grad); color: #04121b; font-weight: 600; }

.burger { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--border); }
.burger span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px auto; transition: .3s; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(40px, 7vw, 80px); padding-bottom: clamp(60px, 9vw, 110px); overflow: hidden; }
#neural { position: absolute; inset: 0; z-index: 0; opacity: .55; pointer-events: none; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }

.hero h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); margin: .4rem 0 1.3rem; }
.hero .roles {
  font-family: var(--font-mono); font-size: clamp(.85rem, 1.5vw, 1rem); color: var(--text-2);
  display: flex; flex-wrap: wrap; gap: .5rem 1.1rem; margin-bottom: 1.6rem;
}
.hero .roles span { display: inline-flex; align-items: center; gap: .5rem; }
.hero .roles span::before { content: "▹"; color: var(--accent); }
.hero-desc { font-size: 1.12rem; color: var(--text-2); max-width: 52ch; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 2.6rem; }

.stats { display: flex; flex-wrap: wrap; gap: 2.2rem; }
.stat .num { font-family: var(--font-disp); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 600; }
.stat .lbl { font-size: .82rem; color: var(--muted); font-family: var(--font-mono); letter-spacing: .02em; }

/* Portrait card */
.portrait-wrap { position: relative; justify-self: center; width: min(100%, 400px); }
.portrait-card {
  position: relative; border-radius: 26px; overflow: hidden; border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card); background: var(--surface-solid);
}
.portrait-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 20%; }
.portrait-card::after { /* gradient sheen */
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,11,22,.55));
}
.portrait-ring {
  position: absolute; inset: -2px; border-radius: 28px; padding: 2px; z-index: -1;
  background: var(--grad); opacity: .8; filter: blur(.5px);
}
.chip-float {
  position: absolute; z-index: 3; font-family: var(--font-mono); font-size: .74rem; font-weight: 500;
  padding: .5rem .8rem; border-radius: 12px; background: rgba(10,16,32,.82); backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong); box-shadow: var(--shadow-card); display: flex; align-items: center; gap: .5rem;
  animation: float 6s ease-in-out infinite;
}
.chip-float .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); box-shadow: var(--glow-cyan); }
.chip-1 { top: 12%; left: -38px; }
.chip-2 { bottom: 20%; right: -30px; animation-delay: -2s; }
.chip-3 { bottom: 6%; left: -26px; animation-delay: -4s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Trust marquee */
.marquee { border-block: 1px solid var(--border); overflow: hidden; padding: 18px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: scroll 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--font-mono); font-size: .9rem; color: var(--muted); white-space: nowrap; letter-spacing: .02em; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.7rem; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  overflow: hidden;
}
.card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad-soft); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .3s; }
.card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow-card); }
.card:hover::before { opacity: 1; }
.card .ic {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--grad-soft); border: 1px solid var(--border-strong); color: var(--accent);
}
.card .ic svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.22rem; margin-bottom: .55rem; }
.card p { color: var(--text-2); font-size: .96rem; }
.card .num-tag { position: absolute; top: 1.3rem; right: 1.4rem; font-family: var(--font-mono); font-size: .8rem; color: var(--muted); }

/* Section head */
.sec-head { max-width: 720px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }

/* ---------- Competencies ---------- */
.comp-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.2rem; align-items: start; }
.comp-list { display: grid; gap: 1rem; }
.comp-item { padding: 1.3rem 1.5rem; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--surface); backdrop-filter: blur(10px); }
.comp-item h4 { font-family: var(--font-disp); font-size: 1.05rem; margin-bottom: .5rem; display: flex; align-items: center; gap: .6rem; }
.comp-item h4 .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--grad); }
.comp-item p { font-size: .9rem; color: var(--text-2); }
.comp-item.ai { border-color: var(--border-strong); background: linear-gradient(160deg, rgba(56,225,255,.08), rgba(155,140,255,.06)); }

.tagcloud { display: flex; flex-wrap: wrap; gap: .55rem; align-content: flex-start; }
.tag {
  font-family: var(--font-mono); font-size: .8rem; padding: .42rem .8rem; border-radius: 9px;
  border: 1px solid var(--border); background: rgba(255,255,255,.02); color: var(--text-2); transition: all .2s;
}
.tag:hover { border-color: var(--accent); color: var(--text); transform: translateY(-2px); }
.tag.hot { border-color: var(--border-strong); color: var(--text); background: var(--grad-soft); }

/* ---------- Certificates / Branchen ---------- */
.cert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.cert {
  display: flex; gap: 1.1rem; padding: 1.6rem; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface); backdrop-filter: blur(10px); align-items: flex-start;
}
.cert .badge { flex: none; width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border-strong); color: var(--accent); }
.cert .badge svg { width: 26px; height: 26px; }
.cert h4 { font-family: var(--font-disp); font-size: 1.08rem; margin-bottom: .25rem; }
.cert p { font-size: .87rem; color: var(--muted); font-family: var(--font-mono); }
.branch-chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.6rem; }
.branch-chips .tag { font-family: var(--font-sans); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-photo { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border-strong); box-shadow: var(--shadow-card); }
.about-photo img { width: 100%; }
.about-grid p { color: var(--text-2); margin-bottom: 1.1rem; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.6rem; }
.fact { padding: 1rem 1.2rem; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--surface); }
.fact .k { font-family: var(--font-mono); font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.fact .v { font-weight: 600; font-family: var(--font-disp); margin-top: .2rem; }

/* ---------- Projects (teaser + full) ---------- */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.proj {
  position: relative; padding: 1.6rem; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--surface); backdrop-filter: blur(10px); transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  display: flex; flex-direction: column; gap: .7rem;
}
.proj:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow-card); }
.proj .meta { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-mono); font-size: .74rem; color: var(--muted); }
.proj .cat-dot { display: inline-flex; align-items: center; gap: .4rem; }
.proj .cat-dot i { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }
.proj h3 { font-size: 1.14rem; line-height: 1.25; }
.proj .role { font-family: var(--font-mono); font-size: .78rem; color: var(--accent); }
.proj p { font-size: .92rem; color: var(--text-2); flex: 1; }
.proj .ptags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .3rem; }
.proj .ptags span { font-family: var(--font-mono); font-size: .68rem; color: var(--muted); border: 1px solid var(--border); padding: .2rem .5rem; border-radius: 6px; }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.4rem; }
.filter {
  font-family: var(--font-mono); font-size: .82rem; padding: .5rem 1rem; border-radius: 999px;
  border: 1px solid var(--border); color: var(--text-2); transition: all .2s;
}
.filter:hover { border-color: var(--border-strong); color: var(--text); }
.filter.active { background: var(--grad); color: #04121b; font-weight: 600; border-color: transparent; }
.proj.hide { display: none; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 4vw, 3.2rem); align-items: start; }
.contact-info { display: grid; gap: 1rem; }
.cinfo {
  display: flex; gap: 1rem; align-items: center; padding: 1.15rem 1.3rem; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--surface); transition: border-color .25s, transform .25s;
}
.cinfo:hover { border-color: var(--border-strong); transform: translateX(4px); }
.cinfo .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-soft); border: 1px solid var(--border-strong); color: var(--accent); }
.cinfo .ic svg { width: 20px; height: 20px; }
.cinfo > span:last-child { min-width: 0; }
.cinfo .k { display: block; font-family: var(--font-mono); font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .15rem; }
.cinfo .v { display: block; font-weight: 500; line-height: 1.3; overflow-wrap: anywhere; }

form { display: grid; gap: 1.1rem; padding: 2rem; border-radius: var(--radius); border: 1px solid var(--border); background: var(--surface); backdrop-filter: blur(12px); }
.field { display: grid; gap: .4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
label { font-size: .85rem; font-weight: 500; color: var(--text-2); }
label .req { color: var(--accent); }
input, textarea {
  font-family: inherit; font-size: .98rem; color: var(--text); background: rgba(7,11,22,.6);
  border: 1px solid var(--border); border-radius: 10px; padding: .8rem .95rem; transition: border-color .2s, box-shadow .2s;
  width: 100%; resize: vertical;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(56,225,255,.14); }
input::placeholder, textarea::placeholder { color: var(--muted); }
.hp { position: absolute; left: -9999px; opacity: 0; }
.consent { display: flex; gap: .6rem; align-items: flex-start; font-size: .82rem; color: var(--muted); }
.consent input { width: auto; margin-top: .25rem; accent-color: var(--cyan); }
.consent a { color: var(--accent); text-decoration: underline; }
.form-note { font-size: .95rem; padding: .9rem 1.1rem; border-radius: 10px; display: none; }
.form-note.ok { display: block; background: rgba(56,225,255,.1); border: 1px solid var(--border-strong); color: var(--text); }
.form-note.err { display: block; background: rgba(255,90,120,.1); border: 1px solid rgba(255,90,120,.4); color: #ffd0d8; }
button[type=submit] { justify-self: start; }
button[disabled] { opacity: .6; cursor: not-allowed; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 3rem 0 2.4rem; margin-top: 2rem; }
.footer-top { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 2.2rem; }
.footer p { color: var(--muted); font-size: .9rem; max-width: 40ch; margin-top: .8rem; }
.footer-links { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-2); font-size: .9rem; transition: color .2s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.6rem; border-top: 1px solid var(--border); color: var(--muted); font-size: .82rem; font-family: var(--font-mono); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

/* ---------- Legal / content pages ---------- */
.doc { max-width: 820px; }
.doc h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.5rem; }
.doc h2 { font-family: var(--font-disp); font-size: 1.3rem; margin: 2.2rem 0 .8rem; }
.doc h3 { font-size: 1.05rem; margin: 1.4rem 0 .5rem; }
.doc p, .doc li { color: var(--text-2); margin-bottom: .8rem; }
.doc ul { padding-left: 1.3rem; }
.doc a { color: var(--accent); text-decoration: underline; }
.doc .back { font-family: var(--font-mono); font-size: .85rem; display: inline-flex; gap: .5rem; margin-bottom: 2rem; color: var(--text-2); }
.doc .back:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
/* Navigation kollabiert früh, damit sie bei mittleren Breiten nicht umbricht */
@media (max-width: 920px) {
  .nav-links { position: fixed; inset: 72px 0 auto; flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(8,12,24,.97); backdrop-filter: blur(18px); border-bottom: 1px solid var(--border);
    padding: 1rem 24px 1.6rem; transform: translateY(-120%); transition: transform .35s var(--ease); z-index: 90; }
  .nav-links.open { transform: none; }
  .nav-links a { width: 100%; padding: .85rem 0; border-bottom: 1px solid var(--border); }
  .nav-links a::after { display: none; }
  .burger { display: block; }
  .nav-right .btn--primary { display: none; } /* CTA im Mobile-Menü / Kontakt genügt */
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: left; }
  .portrait-wrap { grid-row: 1; margin-bottom: 1rem; width: min(78%, 320px); }
  .comp-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .grid-3, .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .about-photo { max-width: 340px; }
}
@media (max-width: 760px) {
  .grid-3, .grid-2, .proj-grid, .cert-grid, .field-row, .about-facts { grid-template-columns: 1fr; }
  .stats { gap: 1.4rem 2rem; }
  .chip-float { display: none; }
  .brand small { display: none; }
  .brand span { line-height: 1.15; }
  body { font-size: 16px; }
}
