/* ============================================================
   iGlobal Forum — Independent Sponsors Summit 2026
   Pixel-faithful CSS recreation from live site screenshots
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --gold:        #F1AC29;
  --gold-dim:    rgba(241,172,41,0.15);
  --bg:          #050505;
  --bg-card:     rgba(255,255,255,0.04);
  --bg-card-hov: rgba(255,255,255,0.07);
  --border:      rgba(255,255,255,0.08);
  --border-gold: rgba(241,172,41,0.4);
  --text:        #ffffff;
  --text-muted:  #9ca3af;
  --text-dim:    #6b7280;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-pill: 999px;
  --max-w:       80rem; /* max-w-7xl = 1280px */
  --nav-h:       56px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Fixed background layers — matches live site exactly */
body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
/* Radial gold glow layer (mix-blend-mode: screen) */
body::before {
  mix-blend-mode: screen;
  background:
    radial-gradient(ellipse 60% 45% at 85% 8%,  rgba(241,172,41,0.32), transparent 65%),
    radial-gradient(ellipse 45% 35% at 10% 75%, rgba(241,172,41,0.22), transparent 70%),
    radial-gradient(ellipse 90% 30% at 50% 100%, rgba(241,172,41,0.14), transparent 70%);
}
/* Subtle grid texture layer */
body::after {
  mix-blend-mode: screen;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
  background-size: 120px 120px;
}

/* Ensure all content sits above the background layers */
nav, main, footer { position: relative; z-index: 1; }

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

/* ── Utility ── */
.gold       { color: var(--gold); }
.muted      { color: var(--text-muted); }
.sr-only    { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(13,12,9,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
}

/* Logo */
nav > a:first-child {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
nav > a:first-child img {
  height: 22px;
  width: auto;
}
nav > a:first-child::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 16px;
  background: var(--border);
  margin-left: 0.75rem;
}

/* Nav links wrapper — target the aria-label nav or the second set of <a> tags */
nav > a:not(:first-child):not(:last-child),
nav [aria-label] a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.15s;
  white-space: nowrap;
}
nav > a:not(:first-child):not(:last-child):hover { color: var(--text); }

/* Spacer pushes Register to far right */
nav > a:last-child {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 1.1rem;
  background: var(--gold);
  color: #000;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  transition: opacity 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
nav > a:last-child:hover { opacity: 0.88; }
nav > a:last-child::after { content: ' ↗'; }

/* ============================================================
   SECTION LABEL (gold eyebrow with horizontal rule)
   ============================================================ */
.section-label,
header > p:first-child,
section > p:first-child,
main > section > p.label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-label::before,
header > p:first-child::before,
section > p.label::before {
  content: '✦';
  font-size: 0.65rem;
}
.section-label::after,
header > p:first-child::after,
section > p.label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--border-gold), transparent);
  max-width: 200px;
}

/* ============================================================
   HEADINGS
   ============================================================ */
h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
h3 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
h4 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1rem 0 0.4rem;
}

p { color: var(--text-muted); margin-bottom: 0.85rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, a.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.15s, background 0.15s;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { opacity: 0.88; }
.btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.25); color: var(--text); }

/* ============================================================
   CARDS
   ============================================================ */
.card, article {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background 0.2s;
}
.card:hover, article:hover { background: var(--bg-card-hov); }

/* ============================================================
   LAYOUT / INNER WRAPPER
   ============================================================ */
.inner, main > section, main > header, main > nav[aria-label], section {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
main > section, main > header {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
#hero {
  max-width: 100%;
  padding: 6rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
#hero .inner { max-width: var(--max-w); margin: 0 auto; width: 100%; }
/* Override for hero which spans full width */
#hero { display: block; }
#hero .hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}
#hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); color: #fff; }
#hero h1 span { color: var(--gold); display: block; }
#hero > p, #hero p { color: var(--text-muted); max-width: 580px; }
.hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* Hero meta line */
.hero-meta {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin: 1.5rem 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Hero CTA group */
.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
}
.stat {
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat .num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .desc {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.4rem;
}

/* ============================================================
   JUMP NAV
   ============================================================ */
nav[aria-label="Jump to section"] {
  max-width: 100%;
  padding: 0 2rem;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow-x: auto;
  white-space: nowrap;
}
nav[aria-label="Jump to section"] a {
  color: var(--text-dim);
  padding: 0 0.5rem;
  transition: color 0.15s;
}
nav[aria-label="Jump to section"] a:hover { color: var(--gold); }
/* "Jump to" label styling for | separators */
nav[aria-label="Jump to section"]::before {
  content: 'JUMP TO';
  font-size: 0.62rem;
  color: var(--text-dim);
  margin-right: 0.5rem;
  flex-shrink: 0;
}

/* ============================================================
   FEATURE CARDS (What's New)
   ============================================================ */
#whats-new { border-top: 1px solid var(--border); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
}
.feature-card {
  background: var(--bg-card);
  border: none;
  border-radius: 0;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--bg-card-hov); }

.feature-card .card-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dim);
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  letter-spacing: -0.02em;
}
.feature-card .pill {
  align-self: flex-start;
}
.feature-card h3 {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.4;
  padding-right: 2.5rem;
}
.feature-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   PILL / CHIP TAGS
   ============================================================ */
.pill {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(241,172,41,0.25);
}
.pill.dark {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  border-color: var(--border);
}
.pill.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

/* ============================================================
   PERSONA CARDS (Who Attends)
   ============================================================ */
#who-attends h3 {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 2rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
#who-attends h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 300px;
}

.persona-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.persona-card {
  background: var(--bg-card);
  border: none;
  border-radius: 0;
  padding: 1.5rem;
  transition: background 0.2s;
}
.persona-card:hover { background: var(--bg-card-hov); }
.persona-card .tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.persona-card h3 { font-size: 0.95rem; color: var(--text); margin-bottom: 0.5rem; }
.persona-card p  { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.persona-card a  {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.persona-card a:hover { text-decoration: underline; }

/* ============================================================
   WHY ATTEND CARDS
   ============================================================ */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
}
.reason-card {
  background: var(--bg-card);
  padding: 2rem;
  transition: background 0.2s;
}
.reason-card:hover { background: var(--bg-card-hov); }
.reason-card .n {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.reason-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.reason-card p  { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   PROGRAM OVERVIEW (phase grid)
   ============================================================ */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.phase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.phase-card h3 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.phase-card li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.phase-card li::before { content: '›'; color: var(--gold); font-size: 1rem; }

/* ============================================================
   AGENDA PAGE
   ============================================================ */
header { padding: 5rem 2rem 3rem; }
header p:first-child { margin-bottom: 1rem; }

/* Filter bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0.5rem 0;
}
.filter-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  min-width: 80px;
}
.filter-pill {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-pill:hover  { border-color: rgba(255,255,255,0.2); color: var(--text); }
.filter-pill.active { background: var(--gold); color: #000; border-color: var(--gold); }

/* Rooms legend */
.rooms-legend {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* Day label */
.day-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1px;
  overflow: hidden;
}
.day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.day-header .day-num { color: var(--gold); }
.day-header .day-date { color: var(--text-muted); font-weight: 400; letter-spacing: 0.05em; }
.day-label-bar {
  background: rgba(241,172,41,0.08);
  border-bottom: 1px solid var(--border-gold);
  padding: 0.5rem 1.5rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Session row */
.session {
  display: grid;
  grid-template-columns: 110px 1fr;
  min-height: 80px;
  border-bottom: 1px solid var(--border);
}
.session:last-child { border-bottom: none; }
.session-time {
  padding: 1.25rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-dim);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  padding-top: 1.4rem;
}
.session-body {
  padding: 1.25rem 1.5rem;
}
.session-body h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
  margin: 0.4rem 0 0.4rem;
}
.session-tags {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.4rem;
}
.room-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}
.session-tag {
  display: inline-block;
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.session-tag.gold-tag {
  background: var(--gold-dim);
  color: var(--gold);
  border-color: rgba(241,172,41,0.2);
}
.session-desc { font-size: 0.82rem; color: var(--text-muted); margin: 0.35rem 0; }

/* Takeaways & speaker lists */
.takeaways { margin: 0.5rem 0; }
.takeaways li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.2rem 0;
  display: flex;
  gap: 0.4rem;
}
.takeaways li::before { content: '→'; color: var(--gold); flex-shrink: 0; }
.speakers-list { margin-top: 0.5rem; }
.speakers-list li {
  font-size: 0.8rem;
  color: var(--text-dim);
  padding: 0.15rem 0;
  display: flex;
  gap: 0.3rem;
}
.speakers-list li::before { content: '—'; color: var(--text-dim); flex-shrink: 0; }
.tables-list { margin: 0.4rem 0 0.4rem 1rem; }
.tables-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  list-style: decimal;
  padding: 0.15rem 0;
}

/* ============================================================
   SPEAKERS PAGE
   ============================================================ */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.speaker-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: background 0.2s;
}
.speaker-card:hover { background: var(--bg-card-hov); }
.speaker-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.85rem;
  border: 2px solid var(--border);
}
.speaker-card .name  { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 0.15rem; }
.speaker-card .title { font-size: 0.75rem; color: var(--text-dim); }
.speaker-card .firm  { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.speaker-card .role  { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.speaker-card .sess  { font-size: 0.7rem; color: var(--text-dim); font-style: italic; margin-top: 0.2rem; }

/* ============================================================
   SECTOR CLINICS (dark full-bleed section)
   ============================================================ */
#clinics {
  background: rgba(0,0,0,0.35);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 100%;
  padding: 5rem 2rem;
}
#clinics .inner { max-width: var(--max-w); margin: 0 auto; }
#clinics h2 { color: var(--text); }
.clinics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.clinic-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.clinic-card h3  { font-size: 1rem; color: var(--text); margin-bottom: 0.35rem; }
.clinic-card .clinic-meta { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.06em; margin-bottom: 0.75rem; font-weight: 600; }
.clinic-card p   { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.provocation {
  background: rgba(241,172,41,0.06);
  border-left: 2px solid var(--gold);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.provocation .prov-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.provocation blockquote { font-size: 0.82rem; color: var(--text-muted); font-style: italic; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { border-top: 1px solid var(--border); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.testimonial blockquote {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.testimonial cite { font-size: 0.82rem; font-weight: 600; color: var(--text); font-style: normal; }
.testimonial .cite-org { font-size: 0.75rem; color: var(--text-dim); margin-top: 0.15rem; }

/* ============================================================
   SPONSORS
   ============================================================ */
#sponsors { border-top: 1px solid var(--border); }
.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: center;
  margin-top: 2rem;
}
.sponsors-grid img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.35;
  transition: opacity 0.2s, filter 0.2s;
}
.sponsors-grid img:hover { opacity: 0.8; }

/* ============================================================
   PARTNERS PAGE
   ============================================================ */
#partners { border-top: 1px solid var(--border); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 2rem;
}
.why-card {
  background: var(--bg-card);
  padding: 1.75rem;
  transition: background 0.2s;
}
.why-card:hover { background: var(--bg-card-hov); }
.why-card .pnum {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.why-card h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.82rem; color: var(--text-muted); }

.partners-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
}
.partner-item {
  background: var(--bg-card);
  padding: 1.25rem;
  transition: background 0.2s;
}
.partner-item:hover { background: var(--bg-card-hov); }
.partner-item img { height: 32px; width: auto; object-fit: contain; object-position: left; margin-bottom: 0.6rem; filter: brightness(0) invert(1); opacity: 0.5; }
.partner-item h4 { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 0.25rem; }
.partner-item p  { font-size: 0.78rem; color: var(--text-dim); }
.partner-initials {
  width: 44px;
  height: 32px;
  background: var(--gold-dim);
  border: 1px solid rgba(241,172,41,0.2);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

/* Inquiry box */
.inquiry-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 3rem;
}
.inquiry-box h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.inquiry-box ul li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.2rem 0;
}
.inquiry-box ul li::before { content: '·  '; color: var(--gold); }

/* ============================================================
   PERSONAS PAGE
   ============================================================ */
.persona-section {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.persona-section:last-of-type { border-bottom: none; }
.persona-tier-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.persona-section h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.why-list { margin: 1.5rem 0; }
.why-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: flex-start;
}
.why-list li::before { content: '✓'; color: var(--gold); font-weight: 700; margin-top: 0.05rem; }
.why-list li strong { color: var(--text); }
.mm-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.mm-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.mm-stat .num  { font-size: 1.8rem; font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.mm-stat .desc { font-size: 0.72rem; color: var(--text-dim); margin-top: 0.35rem; line-height: 1.4; }

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-hero {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  max-width: 760px;
}
.pricing-hero p:first-of-type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pricing-hero .date-meta {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}
.early-bird-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(241,172,41,0.08);
  border: 1px solid rgba(241,172,41,0.2);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
.early-bird-notice::before {
  content: '●';
  color: var(--gold);
  flex-shrink: 0;
}

/* Pricing table */
:root {
  --teal: #0d9488;
  --teal-dim: rgba(13,148,136,0.12);
  --teal-border: rgba(13,148,136,0.3);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.85rem;
}
.pricing-table th {
  padding: 1rem;
  text-align: left;
  background: rgba(255,255,255,0.04);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  vertical-align: bottom;
  line-height: 1.5;
}
/* Current/active column — teal highlight */
.pricing-table th.current {
  background: var(--teal-dim);
  color: #2dd4bf;
  border-bottom-color: var(--teal-border);
}
.pricing-table td.current {
  background: var(--teal-dim);
}
.pricing-table td {
  padding: 1.1rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text-muted);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td:first-child { color: var(--text); font-weight: 500; }
.price { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.price.gold { color: var(--gold); }
.price.teal { color: #2dd4bf; }
/* CURRENT badge */
.badge-current {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-pill);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--teal);
  color: #fff;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* Compare table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.85rem;
}
.compare-table th {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 2px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}
.compare-table td {
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.82rem;
}
.compare-table .group-head td {
  background: rgba(255,255,255,0.02);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding-top: 1rem;
}
.compare-table .check { color: var(--gold); font-weight: 700; }

/* ============================================================
   GALLERY
   ============================================================ */
#gallery { border-top: 1px solid var(--border); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.gallery-item figcaption {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.4rem;
  padding: 0 0.25rem;
  font-style: italic;
}

/* Featured in bar */
.featured-bar {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}
.featured-bar img {
  height: 18px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.25;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
#cta {
  max-width: 100%;
  padding: 6rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}
#cta .inner { max-width: 640px; margin: 0 auto; }
#cta h2 { color: var(--text); }
#cta p  { color: var(--text-muted); max-width: 480px; margin: 0 auto 0; }
#cta .cta-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  font-size: 0.8rem;
}
footer .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 0;
}
footer img { height: 20px; width: auto; margin-bottom: 0.6rem; }
footer p   { color: var(--text-dim); font-size: 0.78rem; }
footer h4  { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; }
footer ul  { list-style: none; }
footer ul li { margin-bottom: 0.35rem; }
footer ul li a { color: var(--text-dim); font-size: 0.78rem; transition: color 0.15s; }
footer ul li a:hover { color: var(--text); }
footer nav { list-style: none; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .phase-grid         { grid-template-columns: 1fr; }
  .stats-bar          { grid-template-columns: repeat(2, 1fr); }
  footer .inner       { grid-template-columns: 1fr 1fr; }
  .pricing-table      { font-size: 0.75rem; }
  .gallery-grid       { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  nav > a:not(:first-child):not(:last-child) { display: none; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  main > section, main > header { padding: 3rem 1.25rem; }
  .stats-bar  { grid-template-columns: repeat(2, 1fr); }
  .session    { grid-template-columns: 1fr; }
  .session-time { border-right: none; border-bottom: 1px solid var(--border); padding: 0.75rem 1rem; }
  footer .inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .pricing-table { display: block; overflow-x: auto; }
}

/* ============================================================
   PRICING PAGE — PIXEL-FAITHFUL FROM SOURCE
   ============================================================ */

/* Page section wrapper */
.pricing-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 6rem 2rem 7rem;
}

/* Section eyebrow (label + rule) */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.eyebrow-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.85rem, 1.5vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  filter: drop-shadow(0 0 18px rgba(241,172,41,0.35));
  white-space: nowrap;
}
.eyebrow-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(241,172,41,0.7), rgba(241,172,41,0.3), transparent);
}

/* Hero card */
.pricing-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(241,172,41,0.25);
  background: linear-gradient(135deg, rgba(241,172,41,0.08), rgba(255,255,255,0.03), transparent);
  padding: clamp(2rem, 5vw, 3rem);
  margin-bottom: 3.5rem;
}
.pricing-hero-inner-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 80% 0%, rgba(241,172,41,0.18), transparent 65%);
}
.pricing-hero-content { position: relative; max-width: 48rem; }
.pricing-hero-card h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1rem;
}
.date-line {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.hero-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.early-bird-box {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(241,172,41,0.4);
  background: rgba(241,172,41,0.08);
  padding: 1rem 1.25rem;
}
.eb-dot {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px 4px rgba(241,172,41,0.5);
  margin-top: 0.35rem;
}
.early-bird-box p {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.45;
  margin: 0;
}

/* Pricing table wrapper */
.ptable-wrap {
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  margin-bottom: 2rem;
}
.ptable-scroll { overflow-x: auto; }
.ptable {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

/* Table headers */
.ptable-th {
  padding: 1.25rem 1.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  vertical-align: bottom;
}
.ptable-th--eb0 { background: rgba(52,211,153,0.08); color: rgb(110,231,183); }
.ptable-th--eb1 { color: #7FD4E4; }
.ptable-th--eb2 { color: #F0BAD0; }
.ptable-th--full { color: #fff; }

.col-head-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.col-subhead {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
}

/* Current badge */
.badge-current {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(52,211,153,0.4);
  background: rgba(52,211,153,0.15);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgb(209,250,229);
}

/* Table cells */
.ptable-td {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  vertical-align: middle;
}
.ptable-td--eb0 { background: rgba(52,211,153,0.04); }
.ptable-td--label { min-width: 220px; }
.ptable-row--alt { background: rgba(255,255,255,0.015); }

.pass-name { font-size: 0.94rem; font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
.pass-desc { font-size: 0.75rem; color: rgba(255,255,255,0.55); line-height: 1.45; max-width: 280px; }
.price-val  { font-size: 1.1rem; font-weight: 600; color: #fff; letter-spacing: -0.02em; }
.price-dash { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.35); }
.price-comp { display: block; font-size: 0.94rem; font-weight: 600; color: rgb(110,231,183); margin-bottom: 0.5rem; }
.apply-btn  {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(52,211,153,0.15);
  border: 1px solid rgba(52,211,153,0.4);
  color: rgb(167,243,208);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.15s;
}
.apply-btn:hover { background: rgba(52,211,153,0.25); }

/* Deadline row */
.ptable-deadline-row td {
  padding: 1rem 1.5rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(241,172,41,0.04);
  color: rgba(241,172,41,0.9);
}
.ptable-deadline-row td.ptable-td--eb0 {
  background: rgba(52,211,153,0.06);
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.ptable-deadline-row td:not(:first-child) { color: rgba(255,255,255,0.85); font-weight: 500; }
.ptable-deadline-row td:first-child { color: rgba(241,172,41,0.9); }

/* CTA buttons */
.pricing-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 6rem; }
.btn-register {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #0d0d0d;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  box-shadow: 0 0 40px -10px rgba(241,172,41,0.6);
  transition: background 0.15s;
}
.btn-register:hover { background: #e5a225; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  font-weight: 400;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.875rem;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.15s, background 0.15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05); }

/* What's Included */
.whats-included { display: grid; grid-template-columns: 1fr 2fr; gap: 2.5rem; align-items: start; }
.whats-included-header .section-eyebrow { margin-bottom: 1.5rem; }
.whats-included-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.whats-included-header p { font-size: 0.875rem; color: rgba(255,255,255,0.75); line-height: 1.65; max-width: 28rem; }

/* Compare table */
.ctable-wrap {
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}
.ctable-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ctable-col-label,
.ctable-col-regular,
.ctable-col-premium {
  padding: 1rem 1.25rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.ctable-col-premium { color: var(--gold); }

.ctable-group-head {
  padding: 1.5rem 1.25rem 0.75rem;
  background: rgba(241,172,41,0.04);
}
.ctable-group-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(241,172,41,0.35);
  background: rgba(241,172,41,0.1);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.ctable-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  padding: 0 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ctable-row--alt { background: rgba(255,255,255,0.01); }
.ctable-feature { padding: 1rem 0.75rem 1rem 0; font-size: 0.82rem; color: #fff; }
.ctable-val     { padding: 1rem 0; font-size: 0.8rem; color: rgba(255,255,255,0.85); }
.check-icon {
  display: inline-flex;
  width: 1.75rem;
  height: 1.75rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(241,172,41,0.3);
  background: rgba(241,172,41,0.1);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
}
.dash-icon { color: rgba(255,255,255,0.25); font-size: 1rem; }

@media (max-width: 900px) {
  .whats-included { grid-template-columns: 1fr; }
  .pricing-page { padding: 3rem 1.25rem 4rem; }
}
@media (max-width: 640px) {
  .ptable-scroll { overflow-x: auto; }
  .ctable-header,
  .ctable-row { grid-template-columns: 1.2fr 1fr 1fr; }
}
