/* =====================================================================
   LACTASOFT - Public website & forum
   Design system  •  site.css
   ---------------------------------------------------------------------
   Volledig los van de app. Alleen nieuwe bestanden.
   Uitbreidbaar: gebruik de utility- en componentklassen hieronder.
   ===================================================================== */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Brand surfaces (dark, premium) */
  --bg:        #070b13;
  --bg-2:      #0b111d;
  --surface:   #0f1725;
  --surface-2: #141d2e;
  --border:    rgba(255, 255, 255, 0.08);
  --border-2:  rgba(255, 255, 255, 0.14);

  /* Text */
  --text:      #eaf0f8;
  --muted:     #94a3b8;
  --muted-2:   #64748b;

  /* Accents */
  --accent:    #3b82f6;   /* primary blue */
  --accent-2:  #22d3ee;   /* cyan */
  --gold:      #f5b53d;   /* champions gold */
  --danger:    #ef4444;
  --grad:      linear-gradient(135deg, #3b82f6 0%, #22d3ee 100%);
  --grad-gold: linear-gradient(135deg, #f5b53d 0%, #ff7a18 100%);

  /* Radius & shadow */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow:    0 10px 30px -12px rgba(0,0,0,.6);
  --shadow-lg: 0 30px 70px -20px rgba(0,0,0,.75);
  --glow:      0 0 0 1px rgba(59,130,246,.35), 0 20px 60px -18px rgba(34,211,238,.35);

  /* Layout */
  --maxw: 1200px;
  --nav-h: 72px;

  --font-body: "Instrument Sans", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-head: "Space Grotesk", var(--font-body);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- 3. Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.center { text-align: center; }
.grid { display: grid; gap: 24px; }
@media (max-width: 640px) { .section { padding: 64px 0; } }

/* Section intro */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-2);
  padding: 6px 14px; border-radius: 999px;
  background: rgba(34,211,238,.08);
  border: 1px solid rgba(34,211,238,.22);
}
.eyebrow--gold { color: var(--gold); background: rgba(245,181,61,.08); border-color: rgba(245,181,61,.25); }
.section-title { font-size: clamp(1.9rem, 3.4vw, 3rem); margin-top: 20px; }
.section-lead { color: var(--muted); font-size: 1.075rem; max-width: 60ch; margin-top: 16px; }
.center .section-lead { margin-inline: auto; }
.text-grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-gold { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #04121f; box-shadow: 0 10px 30px -10px rgba(34,211,238,.5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px rgba(34,211,238,.65); }
.btn-gold { background: var(--grad-gold); color: #1a1200; box-shadow: 0 10px 30px -10px rgba(245,181,61,.5); }
.btn-gold:hover { transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.04); color: var(--text); border-color: var(--border-2); }
.btn-ghost:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- 5. Navigation ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center;
  background: rgba(7,11,19,.6); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: background .25s, border-color .25s;
}
.nav.is-scrolled { background: rgba(7,11,19,.9); border-bottom-color: var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; }
.brand__mark { width: 34px; height: 34px; border-radius: 9px; background: var(--grad); display: grid; place-items: center; color: #04121f; font-weight: 800; box-shadow: 0 6px 18px -6px rgba(34,211,238,.6); }
.brand__logo { width: 46px; height: 34px; border-radius: 9px; background: #fff; display: grid; place-items: center; padding: 4px 5px; box-shadow: 0 4px 14px -6px rgba(0,0,0,.5); flex: 0 0 auto; }
.brand__logo img { width: 100%; height: 100%; object-fit: contain; }
.footer__brand .brand { margin-bottom: 4px; }
.brand small { display: block; font-family: var(--font-body); font-size: .62rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a { padding: 9px 14px; border-radius: 999px; font-size: .93rem; font-weight: 500; color: var(--muted); transition: color .18s, background .18s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--text); background: rgba(255,255,255,.06); }
.nav__actions { display: flex; align-items: center; gap: 10px; }

/* Language selector */
.lang { position: relative; }
.lang__btn { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.04); border: 1px solid var(--border); color: var(--text); padding: 9px 12px; border-radius: 999px; font-size: .88rem; font-weight: 500; }
.lang__btn:hover { background: rgba(255,255,255,.09); }
.lang__menu { position: absolute; right: 0; top: calc(100% + 10px); background: var(--surface-2); border: 1px solid var(--border-2); border-radius: var(--r); padding: 8px; min-width: 210px; box-shadow: var(--shadow-lg); display: none; max-height: 320px; overflow-y: auto; }
.lang__menu.is-open { display: block; }
.lang__menu button { display: flex; width: 100%; align-items: center; gap: 10px; background: none; border: 0; color: var(--muted); padding: 9px 11px; border-radius: 9px; font-size: .9rem; text-align: left; }
.lang__menu button:hover { background: rgba(255,255,255,.06); color: var(--text); }
.lang__note { font-size: .72rem; color: var(--muted-2); padding: 6px 11px 10px; border-bottom: 1px solid var(--border); margin-bottom: 6px; }

/* Mobile toggle */
.nav__burger { display: none; width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.05); border: 1px solid var(--border); color: var(--text); align-items: center; justify-content: center; }
.nav__burger svg { width: 22px; height: 22px; }

@media (max-width: 940px) {
  .nav__links, .nav__actions .btn-ghost { display: none; }
  .nav__burger { display: inline-flex; }
}

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 120; background: rgba(4,7,12,.75); backdrop-filter: blur(6px); opacity: 0; pointer-events: none; transition: opacity .25s; }
.drawer.is-open { opacity: 1; pointer-events: auto; }
.drawer__panel { position: absolute; right: 0; top: 0; height: 100%; width: min(86vw, 340px); background: var(--surface); border-left: 1px solid var(--border-2); padding: 24px; transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; gap: 8px; }
.drawer.is-open .drawer__panel { transform: none; }
.drawer__panel a { padding: 13px 14px; border-radius: 12px; font-weight: 500; color: var(--text); }
.drawer__panel a:hover { background: rgba(255,255,255,.06); }
.drawer__close { align-self: flex-end; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.06); border: 1px solid var(--border); color: var(--text); font-size: 1.3rem; }
.drawer hr { border: 0; border-top: 1px solid var(--border); margin: 10px 0; }

/* ---------- 6. Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: var(--nav-h); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 42% top; }
@media (min-aspect-ratio: 16/10) { .hero__bg img { object-position: 40% top; } }
@media (min-aspect-ratio: 21/9) { .hero__bg img { object-position: 38% top; } }
.hero__bg::after { content: ""; position: absolute; inset: 0; background:
    linear-gradient(180deg, rgba(7,11,19,.55) 0%, rgba(7,11,19,.35) 40%, rgba(7,11,19,.92) 100%),
    linear-gradient(90deg, rgba(7,11,19,.85) 0%, rgba(7,11,19,.25) 60%, rgba(7,11,19,.1) 100%); }
.hero__inner { position: relative; z-index: 1; width: 100%; }
.hero__badge { margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); max-width: 16ch; }
.hero__sub { margin-top: 22px; font-size: clamp(1.05rem, 2vw, 1.28rem); color: #cdd8e8; max-width: 54ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 44px; }
.hero__meta div { }
.hero__meta b { font-family: var(--font-head); font-size: 1.7rem; display: block; }
.hero__meta span { font-size: .82rem; color: var(--muted); letter-spacing: .04em; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index:1; color: var(--muted); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll span { width: 1px; height: 34px; background: linear-gradient(var(--accent-2), transparent); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0%{opacity:.2;transform:scaleY(.4)} 50%{opacity:1;transform:scaleY(1)} 100%{opacity:.2;transform:scaleY(.4)} }

/* ---------- 7. Marquee (champions / trust) ---------- */
.trust { border-block: 1px solid var(--border); background: var(--bg-2); padding: 26px 0; }
.trust__row { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.trust__label { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }
.trust__items { display: flex; gap: 34px; flex-wrap: wrap; align-items: center; color: var(--muted); font-family: var(--font-head); font-weight: 600; }
.trust__items span { opacity: .8; }

/* ---------- 8b. Feature groups (platform overview) ---------- */
.feature-groups { display: grid; gap: 56px; margin-top: 48px; }
.feature-group__head { margin-bottom: 22px; }
.feature-group__head h3 { font-size: 1.35rem; margin-top: 10px; }
.feature-group__head p { color: var(--muted); margin-top: 8px; font-size: .96rem; max-width: 62ch; }
.role-split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 48px; }
@media (max-width: 820px) { .role-split { grid-template-columns: 1fr; } }
.role-col { background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; }
.role-col h3 { font-size: 1.3rem; margin-top: 14px; margin-bottom: 6px; }
.role-col > p { color: var(--muted); font-size: .92rem; margin-bottom: 20px; }
.role-col ul { display: grid; gap: 10px; }
.role-col li { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .93rem; }
.role-col li svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--accent-2); margin-top: 2px; }
.role-col li b { color: var(--text); font-weight: 600; }
.card--compact { padding: 22px; }
.card--compact h3 { font-size: 1.05rem; margin-bottom: 6px; }
.card--compact p { font-size: .88rem; }

/* ---------- 8. Cards / features ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px;
  transition: transform .22s, border-color .22s, box-shadow .22s; position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-5px); border-color: var(--border-2); box-shadow: var(--shadow-lg); }
.card__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.25); color: var(--accent-2); margin-bottom: 18px; }
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.24rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }
.card--wide { grid-column: span 2; }
@media (max-width: 720px){ .card--wide { grid-column: span 1; } }

/* ---------- 9. Split (about Luc / showcase) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--rev .split__media { order: 2; }
@media (max-width: 900px){ .split { grid-template-columns: 1fr; gap: 36px; } .split--rev .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { border-radius: var(--r-lg); border: 1px solid var(--border-2); box-shadow: var(--shadow-lg); width: 100%; }

/* Luc duo-photo composition */
.luc-media { position: relative; padding-bottom: 20px; padding-right: 20px; }
.luc-media__main { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border-2); box-shadow: var(--shadow-lg); }
.luc-media__main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 22%; display: block; border: 0; border-radius: 0; box-shadow: none; }
.luc-media__accent { position: absolute; right: 0; bottom: 0; width: 54%; border-radius: var(--r); overflow: hidden; border: 5px solid var(--bg); box-shadow: var(--shadow-lg); }
.luc-media__accent img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center 30%; display: block; border: 0; border-radius: 0; box-shadow: none; }
.luc-media .split__badge { left: -14px; top: -14px; bottom: auto; }
@media (max-width: 640px) {
  .luc-media { padding-right: 0; padding-bottom: 0; }
  .luc-media__accent { position: static; width: 100%; margin-top: 14px; border-width: 1px; border-color: var(--border-2); }
  .luc-media .split__badge { position: static; display: inline-block; margin-bottom: 14px; left: auto; top: auto; }
}

/* Luc achievements + quote */
.luc-stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 28px; }
.luc-stats b { font-family: var(--font-head); font-size: 1.5rem; display: block; }
.luc-stats span { font-size: .8rem; color: var(--muted); letter-spacing: .03em; }
.luc-quote { margin: 26px 0 0; padding-left: 18px; border-left: 3px solid var(--accent); font-family: var(--font-head); font-size: 1.12rem; line-height: 1.45; color: var(--text); }
.luc-quote cite { display: block; margin-top: 10px; font-size: .84rem; color: var(--muted); font-style: normal; letter-spacing: .04em; }
.split__badge { position: absolute; left: -18px; bottom: -18px; background: var(--surface-2); border: 1px solid var(--border-2); border-radius: var(--r); padding: 16px 20px; box-shadow: var(--shadow-lg); }
.split__badge b { font-family: var(--font-head); font-size: 1.4rem; display:block; }
.split__badge span { font-size: .78rem; color: var(--muted); }
.split ul.check { margin-top: 22px; display: grid; gap: 12px; }
.check li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); }
.check li b { color: var(--text); font-weight: 600; }
.check li svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--accent-2); margin-top: 1px; }

/* ---------- 10. App showcase mockup ---------- */
.mock {
  background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.mock__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; background: var(--bg-2); border-bottom: 1px solid var(--border); }
.mock__bar i { width: 11px; height: 11px; border-radius: 50%; background: #33405a; display: inline-block; }
.mock__bar i:nth-child(1){ background:#ff5f57 } .mock__bar i:nth-child(2){ background:#febc2e } .mock__bar i:nth-child(3){ background:#28c840 }
.mock__bar span { margin-left: 10px; font-size: .78rem; color: var(--muted-2); font-family: var(--font-head); }
.mock__body { padding: 22px; display: grid; gap: 16px; }
.mock__stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.mstat { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 14px; }
.mstat b { font-family: var(--font-head); font-size: 1.35rem; display: block; }
.mstat.accent b { color: var(--accent-2); }
.mstat span { font-size: .72rem; color: var(--muted); }
.mock__chart { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 16px; }
.mock__chart h4 { font-size: .85rem; color: var(--muted); font-weight: 500; margin-bottom: 6px; font-family: var(--font-body); }
@media (max-width:520px){ .mock__stats{ grid-template-columns: repeat(2,1fr);} }

/* zones bar */
.zones { display:flex; height: 14px; border-radius: 999px; overflow:hidden; margin-top: 4px; }
.zones i { display:block; height:100%; }
.zone-legend { display:flex; flex-wrap:wrap; gap: 12px; margin-top: 12px; font-size: .74rem; color: var(--muted); }
.zone-legend span { display:inline-flex; align-items:center; gap:6px; }
.zone-legend b { width:10px; height:10px; border-radius: 3px; display:inline-block; }

/* ---------- 10b. Worldwide field testing ---------- */
.dest-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.dest-chip { padding: 8px 14px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); font-size: .88rem; color: var(--muted); font-weight: 500; display: inline-flex; gap: 8px; align-items: center; }
.dest-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ---------- 11. Languages ---------- */
.lang-hero { text-align:center; }
.lang-globe { font-family: var(--font-head); font-size: clamp(3rem, 10vw, 7rem); font-weight: 700; background: var(--grad); -webkit-background-clip:text; background-clip:text; color: transparent; line-height:1; }
.lang-chips { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top: 30px; max-width: 900px; margin-inline:auto; }
.lang-chip { padding: 9px 16px; border-radius: 999px; background: var(--surface); border:1px solid var(--border); font-size:.9rem; color: var(--muted); font-weight:500; transition: all .18s; }
.lang-chip:hover { color: var(--text); border-color: var(--accent); transform: translateY(-2px); }

/* ---------- 12. Access / audience ---------- */
.access { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width:820px){ .access{ grid-template-columns:1fr; } }
.access .card { text-align: left; }
.access .num { font-family: var(--font-head); font-size: .8rem; color: var(--accent-2); letter-spacing:.1em; }

/* ---------- 13. Forum preview ---------- */
.forum-list { display: grid; gap: 12px; }
.frow {
  display:grid; grid-template-columns: 46px 1fr auto; gap: 16px; align-items:center;
  background: var(--surface); border:1px solid var(--border); border-radius: var(--r); padding: 16px 18px;
  transition: border-color .18s, transform .18s, background .18s;
}
.frow:hover { border-color: var(--border-2); transform: translateX(3px); background: var(--surface-2); }
.frow__ico { width:46px; height:46px; border-radius: 12px; display:grid; place-items:center; background: rgba(34,211,238,.1); border:1px solid rgba(34,211,238,.2); color: var(--accent-2); }
.frow__ico svg { width: 22px; height: 22px; }
.frow h4 { font-size: 1.02rem; }
.frow p { font-size: .85rem; color: var(--muted); margin-top: 2px; }
.frow__meta { text-align:right; font-size:.8rem; color: var(--muted-2); }
.frow__meta b { color: var(--text); font-family: var(--font-head); display:block; font-size: 1.05rem; }
.badge { display:inline-block; font-size:.68rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; padding: 3px 9px; border-radius: 999px; }
.badge--open { color:#4ade80; background: rgba(74,222,128,.12); border:1px solid rgba(74,222,128,.25); }
.badge--closed { color: var(--gold); background: rgba(245,181,61,.12); border:1px solid rgba(245,181,61,.25); }
.badge--pill { color: var(--accent-2); background: rgba(34,211,238,.1); border:1px solid rgba(34,211,238,.22); }

/* ---------- 14. CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); margin: 0 24px; }
.cta-band__bg { position:absolute; inset:0; }
.cta-band__bg img { width:100%; height:100%; object-fit: cover; }
.cta-band__bg::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(7,11,19,.82), rgba(7,11,19,.72)), radial-gradient(120% 120% at 50% 50%, rgba(7,11,19,.35), rgba(7,11,19,.85)); }
.cta-band__inner { position:relative; z-index:1; padding: 72px 40px; text-align:center; }
.cta-band h2 { font-size: clamp(2rem,4vw,3rem); }
.cta-band p { color:#cdd8e8; margin: 16px auto 30px; max-width: 54ch; }

/* ---------- 15. Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 64px 0 30px; }
.footer__grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px){ .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px){ .footer__grid { grid-template-columns: 1fr; } }
.footer h5 { font-family: var(--font-head); font-size: .8rem; letter-spacing:.12em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 16px; }
.footer a { display:block; color: var(--muted); padding: 5px 0; font-size: .93rem; }
.footer a:hover { color: var(--text); }
.footer__brand p { color: var(--muted); font-size: .92rem; margin-top: 14px; max-width: 34ch; }
.footer__bottom { display:flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: .84rem; }

/* ---------- 16. Page header (sub pages) ---------- */
.page-head { padding: calc(var(--nav-h) + 60px) 0 40px; border-bottom: 1px solid var(--border); background:
   radial-gradient(1200px 400px at 70% -10%, rgba(34,211,238,.12), transparent 60%), var(--bg-2); }
.page-head h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
.page-head p { color: var(--muted); margin-top: 14px; max-width: 60ch; }
.breadcrumb { display:flex; gap:8px; align-items:center; color: var(--muted-2); font-size:.85rem; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--text); }

/* ---------- 17. Forum detail components ---------- */
.forum-layout { display:grid; grid-template-columns: 1fr 300px; gap: 32px; align-items:start; }
@media (max-width: 900px){ .forum-layout { grid-template-columns: 1fr; } }
.aside-card { background: var(--surface); border:1px solid var(--border); border-radius: var(--r); padding: 22px; }
.aside-card h4 { font-size: 1rem; margin-bottom: 14px; }
.aside-card + .aside-card { margin-top: 20px; }
.tag { display:inline-block; font-size:.78rem; color: var(--muted); background: rgba(255,255,255,.05); border:1px solid var(--border); border-radius:999px; padding:5px 11px; margin: 0 6px 6px 0; }
.post { display:grid; grid-template-columns: 56px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.avatar { width:48px; height:48px; border-radius: 50%; display:grid; place-items:center; font-family:var(--font-head); font-weight:700; color:#04121f; background: var(--grad); }
.avatar--gold { background: var(--grad-gold); color:#1a1200; }
.post__meta { font-size:.82rem; color: var(--muted-2); margin-bottom: 8px; }
.post__meta b { color: var(--text); }
.post__body { color: #cdd8e8; }
.post__body p + p { margin-top: 12px; }

/* Locked forum */
.locked { max-width: 460px; margin: 0 auto; text-align:center; }
.locked__ico { width: 72px; height:72px; border-radius: 20px; background: rgba(245,181,61,.12); border:1px solid rgba(245,181,61,.28); color: var(--gold); display:grid; place-items:center; margin: 0 auto 22px; }
.locked__ico svg { width: 34px; height: 34px; }
.field { text-align:left; margin-bottom: 14px; }
.field label { display:block; font-size:.85rem; color: var(--muted); margin-bottom: 7px; font-weight:500; }
.field input { width:100%; background: var(--bg-2); border:1px solid var(--border-2); border-radius: 12px; padding: 13px 15px; color: var(--text); font-size: .95rem; }
.field input:focus { outline:none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(59,130,246,.18); }

/* ---------- 18. Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity:1; transform:none; } .hero__scroll span{ animation:none; } }

/* ---------- 19. Misc ---------- */
.divider-glow { height:1px; background: linear-gradient(90deg, transparent, var(--border-2), transparent); }
.pill-note { display:inline-flex; gap:8px; align-items:center; font-size:.85rem; color: var(--muted); background: var(--surface); border:1px solid var(--border); border-radius:999px; padding: 8px 16px; }
.dot { width:8px; height:8px; border-radius:50%; background:#4ade80; box-shadow:0 0 0 4px rgba(74,222,128,.15); }
