/* ============================================================
   FRANNZI LUX — DESIGN SYSTEM
   Lux Tech Empire | Corporate Identity CSS
   ============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Palette — Light Mode (default) */
  --bg:           #ffffff;
  --bg-secondary: #f8f9fb;
  --bg-tertiary:  #f1f3f7;
  --border:       #e5e7eb;
  --border-hover: #d1d5db;

  --text-primary:   #111827;
  --text-secondary: #4b5563;
  --text-muted:     #9ca3af;

  --accent:        #1d4ed8;
  --accent-hover:  #1e40af;
  --accent-light:  #eff6ff;
  --accent-mid:    #bfdbfe;

  /* Typography */
  --font-display: 'Syne', 'Georgia', serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Spacing Scale (8px grid) */
  --s1:  4px;
  --s2:  8px;
  --s3:  12px;
  --s4:  16px;
  --s5:  24px;
  --s6:  32px;
  --s7:  48px;
  --s8:  64px;
  --s9:  96px;
  --s10: 128px;

  /* Borders */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.11), 0 4px 12px rgba(0,0,0,.07);

  /* Transitions */
  --ease-out: cubic-bezier(.22,.68,0,1.2);
  --ease-std: cubic-bezier(.4,0,.2,1);
  --transition: 200ms var(--ease-std);
  --transition-slow: 400ms var(--ease-std);

  /* Nav */
  --nav-height: 68px;
}

/* ── DARK MODE ──────────────────────────────────────────────── */
[data-theme="dark"] {
  --bg:           #0b1120;
  --bg-secondary: #111827;
  --bg-tertiary:  #1a2236;
  --border:       #1f2d3d;
  --border-hover: #2d3f52;

  --text-primary:   #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted:     #64748b;

  --accent:       #3b82f6;
  --accent-hover: #60a5fa;
  --accent-light: #0f172a;
  --accent-mid:   #1e3a5f;

  --shadow-xs: 0 1px 3px rgba(0,0,0,.3);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.35);
  --shadow-md: 0 4px 16px rgba(0,0,0,.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.45);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  transition: background var(--transition-slow), color var(--transition-slow);
  overflow-x: hidden;
}

body.page-loading { opacity: 0; }
body.page-ready   { opacity: 1; transition: opacity 500ms ease; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; color: var(--text-muted); font-family: var(--font-body); font-weight: 600; }

p { color: var(--text-secondary); line-height: 1.75; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--s5);
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--s5);
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s5);
}

section { padding: var(--s9) 0; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: background var(--transition-slow), border-color var(--transition-slow);
}

[data-theme="dark"] .nav {
  background: rgba(11,17,32,.92);
}

.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--s5);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__logo-circle:hover { transform: scale(1.05); opacity: .9; }

.nav__logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -.01em;
  line-height: 1.1;
}

.nav__logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s1);
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav__link:hover { color: var(--text-primary); background: var(--bg-secondary); }
.nav__link.active { color: var(--accent); background: var(--accent-light); }

.nav__link .nav-icon {
  width: 15px; height: 15px;
  stroke: currentColor; stroke-width: 1.8;
  fill: none; flex-shrink: 0;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.theme-toggle {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.theme-toggle:hover { color: var(--accent); border-color: var(--accent-mid); background: var(--accent-light); }

.theme-toggle svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; }

.nav__hamburger {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  color: var(--text-secondary);
}

.nav__hamburger svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.8; fill: none; }

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: var(--s4);
  z-index: 999;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav__mobile-link {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: 12px var(--s4);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition), background var(--transition);
}

.nav__mobile-link:hover,
.nav__mobile-link.active { color: var(--accent); background: var(--accent-light); }

.nav__mobile-link svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.8; }

/* ── PAGE OFFSET ────────────────────────────────────────────── */
.page-body { padding-top: var(--nav-height); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-mid) 0%, transparent 70%);
  opacity: .15;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: center;
  padding: var(--s9) 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: var(--s5);
  background: var(--bg-secondary);
}

.hero__badge svg { width: 12px; height: 12px; stroke: var(--accent); fill: none; stroke-width: 2; }

.hero__name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: var(--s3);
}

.hero__title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: .03em;
  margin-bottom: var(--s5);
  font-family: var(--font-body);
}

.hero__statement {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: var(--s5);
}

.hero__roles {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-bottom: var(--s7);
  flex-wrap: wrap;
}

.hero__role-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero__typer {
  font-size: .95rem;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--font-mono);
  border-right: 2px solid var(--accent);
  padding-right: 3px;
  white-space: nowrap;
}

.hero__cta-group {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
}

/* Logo circle in hero */
.hero__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo-circle {
  width: clamp(260px, 30vw, 380px);
  height: clamp(260px, 30vw, 380px);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero__logo-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  pointer-events: none;
}

.hero__logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-body);
}

.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; flex-shrink: 0; }

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(29,78,216,.3); }

.btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}
.btn--secondary:hover { border-color: var(--text-primary); background: var(--bg-secondary); transform: translateY(-1px); }

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header { margin-bottom: var(--s8); }

.section-header--center { text-align: center; }
.section-header--center .section-header__line { margin: var(--s4) auto 0; }

.section-header__label {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s3);
}

.section-header__label svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.section-header__title { margin-bottom: var(--s3); }

.section-header__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
}

.section-header__line {
  width: 40px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: var(--s4);
}

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s6);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hover);
}

.card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: var(--radius-md);
  margin-bottom: var(--s4);
}

.card__icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; }

.card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--s2);
  font-family: var(--font-display);
  letter-spacing: -.01em;
}

.card__desc {
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Skill cards grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--s4);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: var(--s7) 0 var(--s6);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s5);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.footer__logo-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  opacity: .7;
  flex-shrink: 0;
}

.footer__logo-circle img { width: 100%; height: 100%; object-fit: cover; }

.footer__name {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer__tagline {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.footer__links {
  display: flex;
  gap: var(--s1);
  flex-wrap: wrap;
}

.footer__link {
  padding: 6px 12px;
  font-size: .8rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.footer__link:hover { color: var(--text-primary); background: var(--bg-tertiary); }

.footer__copy {
  font-size: .78rem;
  color: var(--text-muted);
  padding-top: var(--s5);
  border-top: 1px solid var(--border);
  margin-top: var(--s5);
  text-align: center;
}

/* ── DIVIDER ────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── STAT BLOCKS ────────────────────────────────────────────── */
.stat-block {
  text-align: center;
  padding: var(--s6);
}

.stat-block__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -.04em;
  line-height: 1;
}

.stat-block__label {
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: var(--s2);
}

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  padding: var(--s9) 0 var(--s8);
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent-mid) 0%, transparent 70%);
  opacity: .12;
  pointer-events: none;
}

.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s3);
}

.page-hero__label svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.page-hero__title { margin-bottom: var(--s4); }

.page-hero__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
}

/* ── ANIMATION SYSTEM ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms var(--ease-std), transform 600ms var(--ease-std);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }

/* ── BRAND PAGE SPECIFIC ────────────────────────────────────── */
.brand-seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--s9) 0;
}

.brand-seal__circle {
  width: clamp(200px, 28vw, 320px);
  height: clamp(200px, 28vw, 320px);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--s6);
  position: relative;
}

.brand-seal__circle::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(29,78,216,.12);
  pointer-events: none;
}

.brand-seal__circle img { width: 100%; height: 100%; object-fit: cover; }

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  text-align: center;
}

.brand-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: .04em;
  margin-top: var(--s2);
  font-style: italic;
}

/* ── INFO PAGE ──────────────────────────────────────────────── */
.identity-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.identity-table th,
.identity-table td {
  padding: 14px var(--s5);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.identity-table th {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-secondary);
  width: 200px;
}

.identity-table td { color: var(--text-primary); }

.identity-table tr:last-child th,
.identity-table tr:last-child td { border-bottom: none; }

.identity-table a { color: var(--accent); }
.identity-table a:hover { text-decoration: underline; }

/* ── ABOUT PAGE SPECIFIC ────────────────────────────────────── */
.bio-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: start;
}

.bio-text p { margin-bottom: var(--s4); }
.bio-text p:last-child { margin-bottom: 0; }

.bio-aside {
  position: sticky;
  top: calc(var(--nav-height) + var(--s6));
}

.profile-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--s6);
  text-align: center;
}

.profile-card__logo {
  width: 100px; height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  margin: 0 auto var(--s4);
}

.profile-card__logo img { width: 100%; height: 100%; object-fit: cover; }

.profile-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.profile-card__title-text {
  font-size: .8rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.profile-card__divider { height: 1px; background: var(--border); margin: var(--s4) 0; }

.profile-card__meta { text-align: left; }

.profile-card__item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: 8px 0;
  font-size: .85rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.profile-card__item:last-child { border-bottom: none; }

.profile-card__item svg { width: 15px; height: 15px; stroke: var(--accent); fill: none; stroke-width: 1.8; flex-shrink: 0; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__logo-wrap { display: none; }
  .bio-block { grid-template-columns: 1fr; }
  .bio-aside { position: static; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { display: block; }
}

@media (max-width: 640px) {
  :root { --s9: 64px; --s10: 80px; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .hero__cta-group { flex-direction: column; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 2.4rem; }
}

@media (max-width: 400px) {
  .skills-grid { grid-template-columns: 1fr; }
}

/* ── UTILITY ────────────────────────────────────────────────── */
.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-muted); }
.font-mono   { font-family: var(--font-mono); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── INFO BADGE ─────────────────────────────────────────────── */
.info-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 6px 14px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
}

.info-badge svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-hover); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ── FOCUS ──────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

/* ── SELECTION ──────────────────────────────────────────────── */
::selection { background: var(--accent-mid); color: var(--text-primary); }
