/* ============================================================
   1st Slemani Cancer Conference — shared styles
   Palette: deep navy / indigo-purple / ribbon pink
   ============================================================ */
:root {
  --navy: #0b0b2e;
  --navy-2: #14123f;
  --primary: #3f2fa6;
  --primary-dark: #2a1f75;
  --primary-light: #6a5ae0;
  --accent: #e5106e;
  --accent-soft: #fce8f1;
  --gold: #c99a2e;
  --ink: #1d1b3f;
  --muted: #62608a;
  --bg: #ffffff;
  --bg-soft: #f6f4fc;
  --line: #e7e3f5;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(29, 27, 63, 0.08);
  --shadow-lg: 0 18px 50px rgba(29, 27, 63, 0.16);
  --font-head: "Sora", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.section { padding: 72px 0; }
.section.soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head .kicker,
.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(26px, 3.4vw, 38px); color: var(--primary-dark); }
.section-head p { color: var(--muted); margin-top: 12px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: var(--font-body);
}
.btn-pink { background: var(--accent); color: #fff; }
.btn-pink:hover { background: #c50b5c; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(229, 16, 110, 0.35); }
.btn-purple { background: var(--primary); color: #fff; }
.btn-purple:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(63, 47, 166, 0.35); }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-outline-light { border-color: rgba(255,255,255,0.7); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--primary-dark); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand svg { width: 40px; height: 40px; }
.brand-text { line-height: 1.15; }
.brand-text .b1 { font-size: 10px; letter-spacing: 1.6px; font-weight: 700; color: var(--muted); text-transform: uppercase; }
.brand-text .b2 { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--accent); }
.brand-text .b3 { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--primary-dark); letter-spacing: 0.5px; }

.header-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
  font-size: 11.5px;
  color: var(--muted);
  flex-shrink: 0;
}
.header-meta b { color: var(--ink); font-size: 12px; }

.main-nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.main-nav > .nav-item { position: relative; }
.main-nav a.nav-link {
  display: block;
  padding: 10px 11px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 8px;
  white-space: nowrap;
}
.main-nav a.nav-link:hover { color: var(--accent); }
.main-nav .nav-item.active > a.nav-link { color: var(--accent); box-shadow: inset 0 -2px 0 var(--accent); border-radius: 0; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
}
.dropdown a:hover { background: var(--bg-soft); color: var(--accent); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { display: block; width: 24px; height: 2.5px; background: var(--primary-dark); margin: 5px 0; border-radius: 2px; transition: 0.25s; }

@media (max-width: 1120px) {
  .header-meta { display: none; }
}
@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 76px 0 0 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 6vw 40px;
    gap: 2px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }
  body.nav-open .main-nav { transform: translateX(0); }
  .main-nav a.nav-link { padding: 13px 10px; font-size: 14px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
  }
  .nav-item.open .dropdown { display: block; }
  .nav-cta { margin: 16px 0 0; }
}

/* ---------- hero (homepage) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(900px 480px at 85% 8%, rgba(229, 16, 110, 0.22), transparent 60%),
    radial-gradient(700px 500px at 12% 90%, rgba(106, 90, 224, 0.30), transparent 65%),
    linear-gradient(135deg, #0b0b2e 0%, #1b1554 55%, #2a1f75 100%);
}
.hero-decor { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; }
.hero-inner { position: relative; padding: 84px 0 90px; }
.hero .eyebrow {
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 700;
  text-transform: uppercase;
  color: #f8a7cd;
  margin-bottom: 14px;
}
.hero h1 { font-size: clamp(34px, 5.6vw, 62px); max-width: 700px; }
.hero h1 .accent { color: #ff5fa2; }
.hero .theme-line {
  font-style: italic;
  font-size: clamp(15px, 2vw, 19px);
  color: #d9d4ff;
  margin: 18px 0 22px;
  max-width: 560px;
}
.hero-facts { display: flex; flex-wrap: wrap; gap: 26px; margin: 8px 0 30px; }
.hero-facts .fact { display: flex; gap: 11px; align-items: center; }
.hero-facts .fact .ico {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  display: grid; place-items: center;
  font-size: 18px;
}
.hero-facts .fact b { display: block; font-size: 15px; }
.hero-facts .fact span { font-size: 12.5px; color: #bdb6ee; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }

.countdown-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 26px 28px;
  backdrop-filter: blur(8px);
  max-width: 470px;
}
.countdown-card h3 { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: #cfc8ff; margin-bottom: 16px; text-align: center; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; text-align: center; }
.countdown .cell { background: rgba(11, 11, 46, 0.55); border-radius: 12px; padding: 14px 6px 10px; border: 1px solid rgba(255,255,255,0.1); }
.countdown .num { font-family: var(--font-head); font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: #fff; }
.countdown .lbl { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #b3abe8; margin-top: 4px; }

.hero-grid { display: grid; grid-template-columns: 1.25fr 0.9fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .countdown-card { max-width: 100%; } }

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(700px 380px at 88% 20%, rgba(229, 16, 110, 0.25), transparent 60%),
    radial-gradient(600px 400px at 5% 100%, rgba(106, 90, 224, 0.3), transparent 60%),
    linear-gradient(120deg, #0b0b2e 0%, #1b1554 60%, #2a1f75 100%);
  padding: 64px 0 68px;
}
.page-hero .crumb { font-size: 12.5px; color: #b3abe8; margin-bottom: 16px; }
.page-hero .crumb a:hover { color: #fff; }
.page-hero h1 { font-size: clamp(30px, 4.6vw, 50px); text-transform: uppercase; letter-spacing: 0.5px; }
.page-hero .sub { color: #ff5fa2; font-family: var(--font-head); font-weight: 600; font-size: clamp(15px, 2vw, 20px); margin-top: 10px; }
.page-hero .desc { color: #d9d4ff; max-width: 620px; margin-top: 14px; font-size: 15px; }

/* ---------- stats strip ---------- */
.stats-strip { background: #fff; border-bottom: 1px solid var(--line); }
.stats-strip .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
.stat { text-align: center; padding: 26px 10px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: none; }
.stat .num { font-family: var(--font-head); font-size: clamp(24px, 3vw, 34px); font-weight: 700; color: var(--primary); }
.stat .lbl { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
@media (max-width: 700px) { .stat { border-left: none; padding: 16px 8px; } }

/* ---------- cards & grids ---------- */
.grid { display: grid; gap: 22px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid.cols-4 { grid-template-columns: repeat(2, 1fr); } .grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid.cols-4, .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .ico {
  width: 52px; height: 52px;
  border-radius: 13px;
  display: grid; place-items: center;
  font-size: 24px;
  background: var(--bg-soft);
  margin-bottom: 16px;
}
.card h3 { font-size: 17.5px; color: var(--primary-dark); margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--muted); }

.check-list li { display: flex; gap: 11px; padding: 7px 0; font-size: 14.5px; align-items: flex-start; }
.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 21px; height: 21px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

/* ---------- people (speakers / committees) ---------- */
.person-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
  display: flex;
  flex-direction: column;
}
.person-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.person-card .photo { position: relative; aspect-ratio: 1 / 0.92; background: var(--bg-soft); }
.person-card .photo svg, .person-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.person-card .tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary-dark);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 6px;
}
.person-card .flag { position: absolute; top: 12px; right: 12px; font-size: 20px; }
.person-card .body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.person-card h3 { font-size: 16.5px; color: var(--primary); }
.person-card .role { font-size: 13px; color: var(--accent); font-weight: 600; margin: 3px 0 6px; }
.person-card .inst { font-size: 13px; color: var(--muted); }
.person-card .field { margin-top: 10px; font-size: 12px; font-weight: 600; color: var(--primary-dark); background: var(--bg-soft); align-self: flex-start; padding: 4px 12px; border-radius: 999px; }
.person-card .link { margin-top: auto; padding-top: 14px; font-size: 13px; font-weight: 700; color: var(--accent); letter-spacing: 0.5px; }

.mini-person { display: flex; gap: 13px; align-items: center; padding: 12px 0; border-top: 1px dashed var(--line); }
.mini-person:first-of-type { border-top: none; }
.mini-person .avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.mini-person .avatar svg { width: 100%; height: 100%; }
.mini-person b { display: block; font-size: 14.5px; color: var(--primary); }
.mini-person .r { font-size: 12px; font-weight: 700; color: var(--ink); }
.mini-person .s { font-size: 12.5px; color: var(--muted); }

/* ---------- tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); background: #fff; }
table.nice { width: 100%; border-collapse: collapse; min-width: 640px; font-size: 14px; }
table.nice th {
  background: var(--primary-dark);
  color: #fff;
  text-align: left;
  padding: 14px 18px;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.5px;
}
table.nice th.center, table.nice td.center { text-align: center; }
table.nice td { padding: 14px 18px; border-top: 1px solid var(--line); }
table.nice tr:nth-child(even) td { background: var(--bg-soft); }
table.nice .fee { font-family: var(--font-head); font-weight: 700; color: var(--primary); }
table.nice .fee.hot { color: var(--accent); }

/* ---------- timeline / dates ---------- */
.timeline { position: relative; padding-left: 26px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline .t-item { position: relative; padding: 0 0 22px; }
.timeline .t-item::before {
  content: "";
  position: absolute;
  left: -26px; top: 5px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--accent);
}
.timeline .t-item.done::before { border-color: var(--primary-light); }
.timeline .t-item b { display: block; font-family: var(--font-head); color: var(--accent); font-size: 15px; }
.timeline .t-item.done b { color: var(--primary); }
.timeline .t-item span { font-size: 14px; color: var(--muted); }
.timeline .t-item.hot { background: var(--accent-soft); border: 1px solid #f7c2da; border-radius: 12px; padding: 12px 16px 12px 14px; margin-left: -8px; }
.timeline .t-item.hot::before { left: -32px; }

/* ---------- program tabs ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 40px; }
.tabs button {
  border: 1.5px solid var(--line);
  background: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-body);
  transition: 0.2s;
}
.tabs button:hover { border-color: var(--primary-light); color: var(--primary); }
.tabs button.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.tab-panel { display: none; }
.tab-panel.show { display: block; animation: fadeUp 0.35s ease; }

.session-row {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 20px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.session-row .time { font-family: var(--font-head); font-weight: 700; color: var(--primary); font-size: 15px; }
.session-row .time small { display: block; font-family: var(--font-body); font-weight: 500; color: var(--muted); font-size: 12px; margin-top: 2px; }
.session-row h4 { font-size: 16px; color: var(--ink); }
.session-row .who { font-size: 13px; color: var(--muted); margin-top: 4px; }
.session-row .hall {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--bg-soft);
  padding: 6px 13px;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 720px) { .session-row { grid-template-columns: 1fr; gap: 8px; } }

/* ---------- track pages ---------- */
.track-side { position: sticky; top: 96px; }
.track-side .card { padding: 18px; }
.track-side a.t-link { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 9px; font-size: 13.5px; font-weight: 500; }
.track-side a.t-link:hover { background: var(--bg-soft); color: var(--accent); }
.track-side a.t-link.on { background: var(--accent-soft); color: var(--accent); font-weight: 700; }
.track-layout { display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: start; }
@media (max-width: 980px) { .track-layout { grid-template-columns: 1fr; } .track-side { position: static; } }

.chair-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.chair-strip .chair { display: flex; gap: 14px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); }
.chair-strip .chair .avatar { width: 62px; height: 62px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.chair-strip .chair .avatar svg { width: 100%; height: 100%; }
.chair-strip .chair .tag { font-size: 10.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); }
.chair-strip .chair b { display: block; font-size: 14.5px; color: var(--primary); }
.chair-strip .chair span { font-size: 12px; color: var(--muted); display: block; }

/* ---------- speaker profile ---------- */
.profile-grid { display: grid; grid-template-columns: 320px 1fr; gap: 34px; align-items: start; }
@media (max-width: 880px) { .profile-grid { grid-template-columns: 1fr; } }
.profile-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.profile-photo svg { width: 100%; display: block; }
.profile-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.profile-links a {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  background: #fff;
  transition: 0.2s;
}
.profile-links a:hover { border-color: var(--accent); color: var(--accent); }
.profile-links a .l-ico { display: block; font-size: 17px; margin-bottom: 3px; }

/* ---------- accordion ---------- */
.acc-item { border: 1px solid var(--line); border-radius: 11px; margin-bottom: 10px; background: #fff; overflow: hidden; }
.acc-item summary {
  cursor: pointer;
  list-style: none;
  padding: 15px 18px;
  font-weight: 600;
  font-size: 14.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}
.acc-item summary::after { content: "▾"; color: var(--accent); transition: 0.2s; }
.acc-item[open] summary::after { transform: rotate(180deg); }
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item .acc-body { padding: 0 18px 16px; color: var(--muted); font-size: 14px; }

/* ---------- floor plan ---------- */
.floor-plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; overflow-x: auto; }
.floor-plan svg { min-width: 640px; width: 100%; height: auto; display: block; }
.legend-dot { display: inline-block; width: 14px; height: 14px; border-radius: 4px; margin-right: 8px; vertical-align: -2px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(110deg, var(--primary-dark), var(--primary) 60%, #5b2a9e);
  color: #fff;
  border-radius: 18px;
  padding: 40px 44px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}
.cta-band h3 { font-size: clamp(20px, 2.6vw, 27px); margin-bottom: 6px; }
.cta-band p { color: #d9d4ff; font-size: 14.5px; max-width: 560px; }

/* ---------- news ---------- */
.news-item { display: grid; grid-template-columns: 96px 1fr; gap: 16px; padding: 14px 0; border-top: 1px dashed var(--line); align-items: center; }
.news-item:first-child { border-top: none; }
.news-item .thumb {
  width: 96px; height: 68px;
  border-radius: 10px;
  display: grid; place-items: center;
  font-size: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.news-item .cat { font-size: 10.5px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); }
.news-item h4 { font-size: 15px; color: var(--ink); margin: 2px 0; }
.news-item .date { font-size: 12px; color: var(--muted); }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: #c6c1ee; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding: 60px 0 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 14px; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 18px; }
.site-footer .f-brand { display: flex; gap: 11px; align-items: center; margin-bottom: 14px; }
.site-footer .f-brand svg { width: 38px; height: 38px; }
.site-footer .f-brand .b2 { color: #ff5fa2; font-family: var(--font-head); font-weight: 700; }
.site-footer .f-brand .b3 { color: #fff; font-family: var(--font-head); font-weight: 700; }
.site-footer p, .site-footer a, .site-footer li { font-size: 13.5px; }
.site-footer ul li { padding: 5px 0; }
.site-footer ul a::before { content: "› "; color: var(--accent); font-weight: 700; }
.site-footer ul a:hover { color: #fff; }
.f-contact li { display: flex; gap: 10px; padding: 6px 0; align-items: flex-start; }
.f-contact .ci { color: #ff5fa2; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; font-size: 12.5px; color: #8f89c9; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px;
  transition: 0.2s;
}
.socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- misc ---------- */
.note-band {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--accent-soft);
  border: 1px solid #f7c2da;
  border-radius: var(--radius);
  padding: 20px 24px;
}
.note-band .ni {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-family: var(--font-head);
}
.pill { display: inline-block; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px; background: var(--bg-soft); color: var(--primary-dark); margin: 3px 4px 3px 0; }
.big-number { font-family: var(--font-head); font-size: 64px; font-weight: 800; color: var(--accent); line-height: 1; }
.tier-head { border-radius: 12px 12px 0 0; padding: 14px; text-align: center; color: #fff; font-family: var(--font-head); font-weight: 700; letter-spacing: 1.5px; }
.tier-gold { background: linear-gradient(135deg, #b8860b, #e6b93f); }
.tier-silver { background: linear-gradient(135deg, #7e8794, #b9c0cb); }
.tier-bronze { background: linear-gradient(135deg, #8c5a2b, #c98d50); }
.logo-chip {
  border: 1.5px dashed var(--line);
  border-radius: 10px;
  height: 74px;
  display: grid;
  place-items: center;
  color: #b6b1d8;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  background: var(--bg-soft);
}
