/* ═══════════════════════════════════════════════════════════
   RegenX Longevity Summit 2026 — Main Stylesheet
   Design: Navy #16365C + Gold #B8862F · Playfair Display + Inter
   ═══════════════════════════════════════════════════════════ */

:root {
  --navy:       #16365C;
  --navy-deep:  #0E2540;
  --gold:       #B8862F;
  --gold-light: #D4A94A;
  --gold-soft:  #F5D78E;
  --blue:       #2E6DA4;
  --bg:         #F7F9FC;
  --ink:        #1A1A2E;
  --ink-muted:  #5B6675;
  --white:      #ffffff;
  --nav-h:      66px;
  --radius:     8px;
  --shadow:     0 4px 24px rgba(0,0,0,.10);
  --shadow-sm:  0 2px 8px  rgba(0,0,0,.08);
}

/* ── Reset / Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  padding-top: var(--nav-h); /* clear fixed nav */
}
:target { scroll-margin-top: 80px; }
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; }
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 5vw, 44px);
  color: var(--navy-deep);
  text-align: center;
  margin-bottom: 16px;
}
.section-eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.section-body { text-align: center; color: var(--ink-muted); max-width: 640px; margin: 0 auto 40px; }

/* ── Layout helpers ─────────────────────────────────────── */
.section-wrap         { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-wrap--narrow { max-width: 780px; }
.rx-section           { padding: 80px 0; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity .2s, transform .15s;
  text-decoration: none;
}
.btn:hover { opacity: .88; transform: translateY(-1px); text-decoration: none; }
.btn-gold    { background: var(--gold); color: var(--white); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-blue    { background: var(--blue); color: var(--white); }
.btn-wa      { background: #25D366; color: var(--white); }
.btn-lg      { padding: 16px 32px; font-size: 17px; }
.btn-sm      { padding: 8px 16px; font-size: 13px; }
.btn-xs      { padding: 5px 10px; font-size: 12px; }
.btn-full    { width: 100%; text-align: center; }
.btn-gold-sm    { background: var(--gold); color: var(--white); padding: 6px 14px; border-radius: 4px; font-size: 13px; font-weight: 600; text-decoration: none; }
.btn-outline-sm { border: 1px solid rgba(255,255,255,.5); color: var(--white); padding: 6px 14px; border-radius: 4px; font-size: 13px; text-decoration: none; }
.btn-gold-sm:hover, .btn-outline-sm:hover { opacity: .85; text-decoration: none; }

/* ── Nav ────────────────────────────────────────────────── */
#rx-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy-deep);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: var(--nav-h);
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  flex-shrink: 0;
}
.nav-logo-name         { white-space: nowrap; letter-spacing: .02em; }
.nav-logo .x           { color: var(--gold-light); }
.nav-logo-sub          { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 400; color: rgba(255,255,255,.55); letter-spacing: .06em; white-space: nowrap; }
.nav-links             { display: flex; align-items: center; gap: 4px; list-style: none; margin-left: auto; }
.nav-links a           { color: rgba(255,255,255,.82); font-size: 14px; font-weight: 500; padding: 8px 12px; border-radius: 4px; text-decoration: none; transition: color .2s, background .2s; }
.nav-links a:hover     { color: var(--white); background: rgba(255,255,255,.08); text-decoration: none; }
.nav-links .nav-cta    { background: var(--gold); color: var(--white) !important; margin-left: 8px; padding: 9px 20px !important; }
.nav-links .nav-cta:hover { background: var(--gold-light); }
.nav-ham               { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-ham span          { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .2s, opacity .2s; }
@media (max-width: 860px) {
  .nav-ham              { display: flex; }
  .nav-links            { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--navy-deep); flex-direction: column; align-items: stretch; padding: 16px; gap: 4px; border-top: 1px solid rgba(255,255,255,.1); }
  .nav-links.open       { display: flex; }
  .nav-links a          { padding: 12px 16px; border-radius: var(--radius); }
  .nav-links .nav-cta   { text-align: center; margin-left: 0; margin-top: 8px; }
}

/* ── Flash messages ─────────────────────────────────────── */
.flash {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.flash-success { background: #d4edda; color: #155724; border-bottom: 2px solid #28a745; }
.flash-error   { background: #f8d7da; color: #721c24; border-bottom: 2px solid #dc3545; }

/* ── Hero ───────────────────────────────────────────────── */
.rx-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #1a4080 100%);
  color: var(--white);
  padding: 100px 24px 80px;
  overflow: hidden;
  text-align: center;
}
.rx-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(184,134,47,.18) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(46,109,164,.25) 0%, transparent 60%);
}
#hero-3d {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.28;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.hero-eyebrow { margin-bottom: 20px; }
.launch-pill {
  display: inline-block;
  background: rgba(184,134,47,.18);
  border: 1px solid rgba(212,169,74,.5);
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
}
.ev-cpd-badge { color: #B8862F; font-weight: 600; }
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title .x    { color: var(--gold-light); }
.hero-title .year { color: var(--gold-soft); }
.hero-subtitle    { font-size: clamp(16px, 2.5vw, 20px); color: rgba(255,255,255,.82); margin-bottom: 28px; }
.hero-meta        { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 36px; }
.hero-ctas        { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.hero-launch      { display: flex; justify-content: center; }
.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}

/* ── Stats ──────────────────────────────────────────────── */
.rx-stats { background: var(--navy-deep); padding: 40px 24px; }
.stats-wrap { max-width: 900px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', Georgia, serif; font-size: 40px; font-weight: 800; color: var(--gold-light); line-height: 1; }
.stat-lbl { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 6px; }

/* ── Sections ───────────────────────────────────────────── */
.rx-why { background: var(--white); }
.rx-speakers, .rx-editions, .rx-register-cta { background: var(--bg); }
.rx-partner { background: var(--navy-deep); }

/* ── Why grid ───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.why-card { background: var(--bg); border-radius: var(--radius); padding: 32px 24px; border: 1px solid rgba(22,54,92,.1); }
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); transition: .2s; }
.why-icon { font-size: 36px; margin-bottom: 16px; }
.why-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.why-card p  { font-size: 14px; color: var(--ink-muted); }

/* ── Speaker grid ───────────────────────────────────────── */
.speaker-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; margin-top: 48px; }
.speaker-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); text-align: center; padding: 24px 16px; }
.speaker-avatar { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; margin: 0 auto 14px; background: var(--navy); display: flex; align-items: center; justify-content: center; }
.speaker-avatar img { width: 100%; height: 100%; object-fit: cover; }
.speaker-initials { font-size: 28px; font-weight: 700; color: var(--gold-light); font-family: 'Playfair Display', Georgia, serif; }
.speaker-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.speaker-role { font-size: 12px; color: var(--ink-muted); line-height: 1.4; }
.speaker-flag { font-size: 11px; color: var(--gold); display: block; margin-top: 6px; }
/* Large variant for speakers page */
.speaker-grid--large { grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .speaker-grid--large { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .speaker-grid--large { grid-template-columns: 1fr; } }
.speaker-card--large { display: flex; flex-direction: row; text-align: left; gap: 20px; padding: 24px; align-items: flex-start; }
.speaker-avatar--lg  { width: 120px; height: 120px; flex-shrink: 0; border: 3px solid var(--gold); }
.speaker-avatar--lg .speaker-initials { font-size: 36px; }
.speaker-bio         { font-size: 13px; color: var(--ink-muted); margin-top: 8px; line-height: 1.5; }

/* ── Editions grid ──────────────────────────────────────── */
.editions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; margin-top: 48px; }
.edition-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 24px 16px;
  color: var(--white);
  text-align: center;
  position: relative;
}
.edition-live { border: 2px solid var(--gold); }
.ed-num  { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.4); letter-spacing: .1em; margin-bottom: 8px; }
.ed-flag { font-size: 32px; margin-bottom: 8px; }
.ed-city { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.ed-dates { font-size: 12px; color: rgba(255,255,255,.7); margin-bottom: 4px; }
.ed-delegates { font-size: 11px; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.ed-tag { font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-soft); background: rgba(184,134,47,.2); border-radius: 100px; padding: 3px 10px; margin-bottom: 14px; display: inline-block; }
.ed-btn { display: block; margin-top: 10px; }

/* ── Partner card ───────────────────────────────────────── */
.partner-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--white);
}
.partner-icon { font-size: 48px; }
.partner-card h3 { font-size: 18px; font-weight: 700; color: var(--gold-light); margin-bottom: 8px; }
.partner-card p  { color: rgba(255,255,255,.8); }
@media (max-width: 600px) { .partner-card { flex-direction: column; text-align: center; } }

/* ── Register CTA band ──────────────────────────────────── */
.rx-register-cta { text-align: center; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ── Contact band ───────────────────────────────────────── */
.rx-contact-band { background: var(--navy-deep); }
.contact-grid    { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-around; }
.contact-item    { display: flex; align-items: center; gap: 16px; color: var(--white); }
.contact-icon    { font-size: 28px; }
.contact-item h4 { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.contact-item a  { color: var(--gold-light); font-size: 15px; font-weight: 600; }

/* ── Forms ──────────────────────────────────────────────── */
.rx-form { margin-top: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid #dce0e8;
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); outline: none; }
.req { color: var(--gold); }
.form-note  { font-size: 13px; color: var(--ink-muted); text-align: center; margin-top: 16px; }
.form-errors { background: #fff3cd; border: 1px solid #ffc107; border-radius: var(--radius); padding: 16px 20px; margin-bottom: 24px; }
.form-errors p { font-size: 14px; color: #856404; margin-bottom: 4px; }

/* ── Package status badges (BookMyShow style) ────────────── */
.pkg-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
  white-space: nowrap;
}
.pkg-badge--sm { font-size: 10px; padding: 2px 7px; margin-bottom: 0; }
/* Early Bird — gold/orange */
.pkg-badge--early-bird  { background: #FFF3CD; color: #7D5A00; border: 1px solid #F0C040; }
/* Most Popular — navy blue */
.pkg-badge--popular     { background: var(--navy); color: #fff; border: 1px solid var(--navy-deep); }
/* Filling Fast — red urgency */
.pkg-badge--filling     { background: #FFE5E5; color: #C0392B; border: 1px solid #E74C3C; }
/* Sold Out — dark grey, muted */
.pkg-badge--sold-out    { background: #EBEBEB; color: #666; border: 1px solid #CCC; }
/* Coming Soon — subtle teal */
.pkg-badge--coming-soon { background: #E8F4F8; color: #2980B9; border: 1px solid #85C1E9; }

/* ── Package detail cards ───────────────────────────────── */
.pkg-detail-card { background: var(--white); border: 2px solid #dce0e8; border-radius: var(--radius); padding: 20px; position: relative; }
.pkg-detail-card.pkg-popular  { border-color: var(--gold); }
.pkg-detail-card.pkg-sold-out { opacity: .65; }
.pkg-popular-badge { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.pkg-detail-name   { font-weight: 700; font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.pkg-price-row     { margin-bottom: 8px; }
.pkg-price-now     { font-size: 22px; font-weight: 800; color: var(--navy-deep); }
.pkg-price-was     { font-size: 14px; color: #9ea3ab; text-decoration: line-through; margin-left: 6px; }
.pkg-countdown     { font-size: 13px; color: #7D5A00; background: #FFF3CD; border: 1px solid #F0C040; border-radius: 4px; padding: 6px 12px; margin: 8px 0; display: inline-block; }
.pkg-offer-note    { font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.pkg-includes      { list-style: none; padding: 0; margin-top: 10px; }
.pkg-includes li   { font-size: 14px; color: var(--ink-muted); padding: 4px 0; }

/* ── Payment page ───────────────────────────────────────── */
.payment-summary {
  background: var(--white);
  border: 1px solid #dce0e8;
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}
.payment-summary h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.pay-detail { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #f0f2f5; font-size: 14px; }
.pay-detail:last-child { border-bottom: none; }
.pay-detail span { color: var(--ink-muted); }
.pay-method-card { background: var(--white); border: 1px solid #dce0e8; border-radius: var(--radius); padding: 28px; margin-bottom: 20px; }
.pay-method-card.pay-wa { border-color: #25D366; background: #f0fff4; }
.pay-method-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pay-method-card p  { font-size: 14px; color: var(--ink-muted); margin-bottom: 16px; }
.pay-note { font-size: 13px; color: var(--ink-muted); margin-top: 12px; background: rgba(184,134,47,.08); border-radius: 6px; padding: 10px 14px; }
.pay-footer-note { margin-top: 32px; text-align: center; font-size: 14px; color: var(--ink-muted); }

/* ── Events page ────────────────────────────────────────── */
.events-list { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.event-row {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid #e8edf2;
  box-shadow: var(--shadow-sm);
}
.event-live { border-left: 4px solid var(--gold); }
.ev-num  { font-size: 13px; font-weight: 700; color: var(--ink-muted); width: 28px; flex-shrink: 0; }
.ev-flag { font-size: 36px; flex-shrink: 0; }
.ev-detail { flex: 1; }
.ev-city { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.live-pill { font-size: 10px; font-weight: 700; background: var(--gold); color: var(--white); padding: 2px 8px; border-radius: 100px; letter-spacing: .06em; }
.ev-meta { font-size: 13px; color: var(--ink-muted); display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.ev-venue { font-size: 13px; color: var(--blue); }
.ev-description { font-size: 13px; color: var(--ink-muted); font-style: italic; margin-top: 6px; line-height: 1.5; }
.ev-packages { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.ev-pkg { background: var(--bg); border: 1px solid #dce0e8; border-radius: 6px; padding: 6px 12px; font-size: 13px; display: flex; gap: 8px; align-items: center; }
.ev-pkg.pkg-highlight { border-color: var(--gold); background: rgba(184,134,47,.06); }
.epkg-label { font-weight: 600; color: var(--navy); }
.epkg-price { color: var(--gold); font-weight: 700; }
.pkg-star   { font-size: 11px; color: var(--gold); }
.ev-action  { flex-shrink: 0; }
.cpd-note   { background: rgba(22,54,92,.06); border-radius: var(--radius); padding: 16px 20px; margin-top: 32px; font-size: 14px; text-align: center; }
@media (max-width: 700px) { .event-row { flex-direction: column; align-items: flex-start; } }

/* ── Gallery ────────────────────────────────────────────── */
.gallery-empty { text-align: center; padding: 80px 24px; }
.gallery-empty-icon { font-size: 72px; margin-bottom: 24px; }
.gallery-empty h2   { font-size: 28px; color: var(--navy); margin-bottom: 16px; }
.gallery-empty p    { color: var(--ink-muted); margin-bottom: 16px; }

/* ── Contact page ───────────────────────────────────────── */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; margin-top: 40px; }
@media (max-width: 800px) { .contact-page-grid { grid-template-columns: 1fr; } }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-card-item { display: flex; gap: 16px; align-items: flex-start; }
.cc-icon { font-size: 24px; margin-top: 2px; }
.contact-card-item h3 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; }
.contact-card-item a  { color: var(--blue); }
.contact-card-item p  { font-size: 14px; color: var(--ink-muted); }
.contact-form-wrap h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }

/* ── Sponsors page ──────────────────────────────────────── */
.sponsor-tiers { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin: 48px 0 32px; }
.sponsor-tier-card { background: var(--white); border-radius: var(--radius); padding: 24px 20px; box-shadow: var(--shadow-sm); border: 1px solid #e8edf2; }
.tier-name   { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.tier-diamond { color: #1a1a2e; }
.tier-platinum { color: #7e8a99; }
.tier-gold    { color: var(--gold); }
.tier-silver  { color: #9ea3ab; }
.tier-bronze  { color: #b5651d; }
.tier-price  { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.tier-perks  { list-style: none; padding: 0; }
.tier-perks li { font-size: 13px; color: var(--ink-muted); padding: 4px 0; }
.exhibitor-note { background: rgba(46,109,164,.07); border-left: 3px solid var(--blue); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 24px 0 40px; }
.exhibitor-note h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.current-sponsors { margin-bottom: 48px; }
.current-sponsors h2 { font-size: 22px; color: var(--navy); margin-bottom: 20px; }
.sponsor-logos { display: flex; flex-wrap: wrap; gap: 16px; }
.sponsor-logo-card { background: var(--white); border: 1px solid #e8edf2; border-radius: var(--radius); padding: 16px 24px; text-align: center; font-size: 14px; font-weight: 600; }
.sponsor-enquiry-form { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.sponsor-enquiry-form h2 { font-size: 24px; color: var(--navy); margin-bottom: 8px; }

/* ── Verify pass ────────────────────────────────────────── */
.verify-result { text-align: center; padding: 60px 32px; border-radius: var(--radius); margin: 32px 0; }
.verify-valid   { background: #d4edda; border: 2px solid #28a745; }
.verify-invalid { background: #f8d7da; border: 2px solid #dc3545; }
.verify-revoked { background: #fff3cd; border: 2px solid #ffc107; }
.vr-icon { font-size: 64px; margin-bottom: 16px; }
.verify-result h2 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.verify-details { display: inline-block; text-align: left; background: rgba(255,255,255,.7); border-radius: var(--radius); padding: 20px 28px; margin-top: 24px; }
.vd-row { display: flex; gap: 16px; padding: 8px 0; font-size: 15px; border-bottom: 1px solid rgba(0,0,0,.08); }
.vd-row:last-child { border-bottom: none; }
.vd-row span { color: var(--ink-muted); min-width: 90px; }

/* ── Sticky WhatsApp float ──────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  background: #25D366;
  color: var(--white);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform .2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); text-decoration: none; }

/* ── Footer ─────────────────────────────────────────────── */
.rx-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: 64px 24px 0; }
.footer-wrap { max-width: 1180px; margin: 0 auto; display: flex; gap: 48px; flex-wrap: wrap; justify-content: space-between; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo    { font-family: 'Playfair Display', Georgia, serif; font-size: 28px; font-weight: 800; color: var(--white); }
.footer-logo .x { color: var(--gold-light); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px; }
.footer-sub     { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 4px; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4  { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col ul  { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a   { font-size: 14px; color: rgba(255,255,255,.7); }
.footer-col a:hover { color: var(--gold-light); text-decoration: none; }
.footer-bottom  { max-width: 1180px; margin: 0 auto; padding: 24px 0; font-size: 13px; text-align: center; color: rgba(255,255,255,.4); }
.footer-bottom a { color: rgba(255,255,255,.6); }

/* ── Admin ───────────────────────────────────────────────── */
.admin-wrap       { max-width: 1300px; margin: 0 auto; padding: 32px 24px 64px; }
.admin-header     { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.admin-header h1  { font-size: 26px; font-weight: 700; color: var(--navy); }
.admin-actions    { display: flex; gap: 10px; }
.admin-stats      { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.a-stat           { background: var(--white); border-radius: var(--radius); padding: 16px 24px; box-shadow: var(--shadow-sm); text-align: center; }
.a-stat-num       { font-size: 32px; font-weight: 700; color: var(--navy); }
.a-stat-green .a-stat-num { color: #28a745; }
.a-stat-lbl       { font-size: 12px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: .06em; }
.admin-filters    { display: flex; gap: 12px; margin-bottom: 20px; align-items: center; }
.admin-filters select { border: 1.5px solid #dce0e8; border-radius: 6px; padding: 8px 12px; font-size: 14px; }
.admin-table-wrap { overflow-x: auto; }
.admin-table      { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.admin-table th   { background: var(--navy-deep); color: var(--white); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; padding: 12px 14px; text-align: left; }
.admin-table td   { padding: 12px 14px; font-size: 13px; border-bottom: 1px solid #f0f2f5; vertical-align: top; }
.admin-table tr:hover td { background: rgba(22,54,92,.03); }
.status-pill      { display: inline-block; padding: 3px 8px; border-radius: 100px; font-size: 11px; font-weight: 600; text-transform: uppercase; }
.status-pending   { background: #fff3cd; color: #856404; }
.status-confirmed { background: #d4edda; color: #155724; }
.status-paid      { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }
.status-failed    { background: #f8d7da; color: #721c24; }
.status-none      { background: #f0f2f5; color: #666; }
.pass-id          { font-family: monospace; font-size: 11px; background: #f0f2f5; padding: 2px 6px; border-radius: 4px; }

/* ── Register page inner section ───────────────────────── */
.rx-register { background: var(--bg); }

/* City-vibe register background */
.rx-register--vibe       { position: relative; overflow: hidden; }
.reg-vibe-bg             { position: absolute; inset: 0; background-size: cover; background-position: center top; filter: blur(8px) saturate(.9); transform: scale(1.05); z-index: 0; opacity: .45; }
.reg-vibe-overlay        { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(247,249,252,.80) 0%, rgba(247,249,252,.90) 100%); z-index: 0; }
@media (prefers-reduced-motion: reduce) { .reg-vibe-bg { filter: none; transform: none; } }
@media (max-width: 640px) { .reg-vibe-bg { filter: blur(10px); opacity: .12; } }

/* Events page city image header */
.ev-img-header {
  background-size: cover; background-position: center;
  height: 160px; border-radius: 8px 8px 0 0;
  display: flex; align-items: flex-end; padding: 16px 20px;
  margin-bottom: 0;
}
.ev-img-meta { display: flex; align-items: center; gap: 12px; }
.ev-num-badge { font-size: 11px; font-weight: 700; background: rgba(255,255,255,.15); color: rgba(255,255,255,.7); border-radius: 4px; padding: 2px 7px; letter-spacing: .08em; }
.ev-flag-lg   { font-size: 28px; line-height: 1; }
.ev-city-lg   { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 700; color: #fff; margin: 0; }
.ev-body      { display: flex; gap: 20px; align-items: flex-start; padding: 20px; flex-wrap: wrap; }
.ev-body .ev-detail { flex: 1; min-width: 240px; }
.ev-body .ev-action { flex-shrink: 0; display: flex; align-items: center; margin-left: auto; }
.event-row            { border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.07); margin-bottom: 24px; background: #fff; border: 1px solid #e8edf2; }
.event-row.event-live { border-color: var(--gold); box-shadow: 0 4px 20px rgba(184,134,47,.15); }
/* Override old event-row flex layout when we have image header */
.event-row:has(.ev-img-header) .ev-num,
.event-row:has(.ev-img-header) .ev-flag { display: none; }

/* ── Section CTA ─────────────────────────────────────────── */
.section-cta { text-align: center; margin-top: 40px; }

/* ── Sponsors page ──────────────────────────────────────── */
.price-key       { display:flex; flex-wrap:wrap; gap:10px; margin:0 0 32px; }
.pk-item         { font-size:13px; padding:6px 14px; border-radius:6px; font-weight:500; }
.pk-a            { background:#fff8e1; color:#7c5c00; border:1px solid #ffe082; }
.pk-b            { background:#e8f5e9; color:#1b5e20; border:1px solid #a5d6a7; }
.pk-c            { background:#e3f2fd; color:#0d47a1; border:1px solid #90caf9; }

.tiers-table     { border:1px solid #e8edf2; border-radius:8px; overflow:hidden; margin-bottom:48px; }
.tiers-head      { display:grid; grid-template-columns:160px 100px 100px 110px 1fr; background:var(--navy-deep); color:#fff; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.tiers-head > *  { padding:12px 14px; }
.tiers-row       { display:grid; grid-template-columns:160px 100px 100px 110px 1fr; border-top:1px solid #e8edf2; background:#fff; }
.tiers-row:hover { background:#fafbfc; }
.tiers-row > *   { padding:14px; font-size:13px; }
.tr-tier         { display:flex; flex-direction:column; gap:4px; }
.tier-dot        { width:10px; height:10px; border-radius:50%; display:inline-block; margin-right:6px; }
.tier-diamond .tier-dot { background:#1a1a2e; }
.tier-platinum .tier-dot,.tier-dot.tier-platinum { background:#9ea3ab; }
.tier-gold .tier-dot,.tier-dot.tier-gold   { background:var(--gold); }
.tier-silver .tier-dot,.tier-dot.tier-silver { background:#c0c0c0; }
.tier-bronze .tier-dot,.tier-dot.tier-bronze { background:#b5651d; }
.tier-name-text  { font-weight:700; color:var(--navy); font-size:14px; }
.tier-slots      { font-size:11px; color:#9ea3ab; }
.tr-price        { font-weight:700; font-size:14px; color:var(--navy); display:flex; align-items:center; }
.tr-perks        { display:flex; flex-wrap:wrap; gap:6px; align-content:flex-start; }
.perk-chip       { font-size:12px; background:#f7f9fc; border:1px solid #e8edf2; border-radius:4px; padding:3px 8px; color:var(--ink-muted); }
.pk-a-bg         { background:rgba(255,248,225,.4); }
.pk-b-bg         { background:rgba(232,245,233,.4); }
.pk-c-bg         { background:rgba(227,242,253,.4); }
.pk-a-col,.pk-c-col { font-weight:700; color:var(--navy); }

@media(max-width:860px) {
  .tiers-head,.tiers-row { grid-template-columns:1fr 1fr; }
  .th-perks,.tr-perks    { grid-column:1/-1; }
  .th-price:last-of-type,.tr-price:last-of-type { display:none; }
}

.sub-title       { font-size:22px; font-weight:700; color:var(--navy); margin-bottom:10px; }
.sub-desc        { font-size:14px; color:var(--ink-muted); margin-bottom:20px; }

.exhibitor-section,.alacarte-section,.discount-section { margin:48px 0; }
.stalls-grid     { border:1px solid #e8edf2; border-radius:8px; overflow:hidden; }
.stall-head,.stall-row { display:grid; grid-template-columns:1fr 130px 130px 80px; }
.stall-head      { background:var(--navy-deep); color:#fff; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; }
.stall-head > *,.stall-row > * { padding:12px 16px; }
.stall-row       { border-top:1px solid #e8edf2; background:#fff; font-size:13px; }
.stall-row:hover { background:#fafbfc; }
.stall-size      { font-size:11px; color:#9ea3ab; }
.stall-price     { font-weight:700; color:var(--navy); }

.alacarte-grid   { display:grid; grid-template-columns:repeat(auto-fill,minmax(220px,1fr)); gap:12px; }
.alacarte-card   { background:#fff; border:1px solid #e8edf2; border-radius:8px; padding:14px 16px; }
.ac-item         { font-weight:600; color:var(--navy); font-size:14px; margin-bottom:4px; }
.ac-from         { font-size:13px; color:var(--gold); font-weight:700; }

.discount-grid   { display:flex; gap:16px; flex-wrap:wrap; margin:16px 0; }
.disc-card       { background:#fff; border:2px solid #e8edf2; border-radius:8px; padding:20px 24px; text-align:center; min-width:120px; }
.disc-card.disc-highlight { border-color:var(--gold); background:#fffaf0; }
.disc-num        { font-size:32px; font-weight:800; color:var(--navy); font-family:'Playfair Display',Georgia,serif; }
.disc-lbl        { font-size:12px; color:var(--ink-muted); margin-top:4px; }
.disc-example    { font-size:14px; color:var(--ink-muted); margin-top:12px; }
.discount-note   { background:#fffaf0; border:1px solid rgba(184,134,47,.3); border-radius:6px; padding:10px 14px; font-size:14px; color:#7c5c00; margin-top:8px; }

/* Multi-select edition checkboxes */
.edition-checkboxes  { display:flex; flex-wrap:wrap; gap:8px; margin-top:8px; }
.checkbox-pill       { display:flex; align-items:center; gap:6px; background:#fff; border:1.5px solid #dce0e8; border-radius:6px; padding:7px 12px; font-size:13px; cursor:pointer; transition:border-color .15s,background .15s; }
.checkbox-pill:hover { border-color:var(--navy); }
.checkbox-pill input { cursor:pointer; width:15px; height:15px; }
.checkbox-pill input:checked + * { font-weight:600; }
.checkbox-pill--all  { border-color:var(--gold); background:#fffaf0; }

/* Admin speaker grid */
.admin-speaker-grid  { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:16px; }
.admin-speaker-card  { background:#fff; border:1px solid #e8edf2; border-radius:8px; padding:16px; display:flex; gap:14px; align-items:center; box-shadow:0 1px 4px rgba(0,0,0,.06); }
.asp-photo           { width:56px; height:56px; border-radius:50%; overflow:hidden; background:var(--navy); flex-shrink:0; display:flex; align-items:center; justify-content:center; }
.asp-photo img       { width:100%; height:100%; object-fit:cover; }
.asp-initials        { font-size:20px; font-weight:700; color:var(--gold-light); font-family:'Playfair Display',Georgia,serif; }
.asp-info            { flex:1; display:flex; flex-direction:column; gap:2px; font-size:13px; color:var(--ink-muted); }
.asp-info strong     { font-size:14px; color:var(--navy); }
.asp-actions         { display:flex; flex-direction:column; gap:6px; }

/* ═══════════════════════════════════════════════════════════
   FUTURISTIC REFRESH — Homepage premium biotech aesthetic
   Deep navy + gold glow · Glassmorphism · Scroll reveal
   ═══════════════════════════════════════════════════════════ */

/* Extra variables */
:root {
  --navy-darkest: #070F1E;
  --glow-gold:    0 0 28px rgba(184,134,47,.28);
  --glow-gold-lg: 0 8px 40px rgba(184,134,47,.20);
}

/* ── Hero: deeper, richer gradient + enhanced gold bloom ─── */
.rx-hero {
  background: linear-gradient(135deg, #070F1E 0%, #0D2240 40%, #16365C 75%, #1e4d8c 100%);
}
.rx-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 50% 44%, rgba(184,134,47,.22) 0%, transparent 65%),
    radial-gradient(ellipse at 12% 78%, rgba(212,169,74,.10) 0%, transparent 48%),
    radial-gradient(ellipse at 88% 18%, rgba(46,109,164,.20) 0%, transparent 50%);
  pointer-events: none;
}

/* 3D canvas: slightly stronger */
#hero-3d { opacity: 0.36; }

/* ── Stats: tighter gap so 5 cards fit one row ─────────────── */
.stats-wrap { gap: 14px; }

/* ── Hero outline button: white on dark bg ──────────────────── */
.rx-hero .btn-outline {
  border-color: rgba(255,255,255,.60);
  color: var(--white);
}
.rx-hero .btn-outline:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.85);
  box-shadow: none;
}

/* ── Hero pills: glassmorphism ────────────────────────────── */
.launch-pill {
  background: rgba(10,30,60,.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(212,169,74,.52);
  box-shadow: inset 0 1px 0 rgba(212,169,74,.22), 0 4px 20px rgba(0,0,0,.35);
  letter-spacing: .025em;
}
.hero-meta span {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 100px;
  padding: 4px 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s;
}
.hero-meta span:hover { background: rgba(255,255,255,.13); }
.launch-badge {
  background: rgba(10,30,60,.60);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 4px 20px rgba(0,0,0,.32);
}

/* ── Buttons: gold glow on hover ─────────────────────────── */
.btn-gold:hover {
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(184,134,47,.22), 0 6px 28px rgba(184,134,47,.42);
  transform: translateY(-2px);
}
.btn-outline:hover {
  background: rgba(22,54,92,.06);
  transform: translateY(-2px);
}

/* ── Eyebrow: more editorial letter-spacing ─────────────── */
.section-eyebrow { letter-spacing: .20em; font-size: 10.5px; }

/* ── Animated gold divider ──────────────────────────────── */
@keyframes rx-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}
.rx-divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 28%, var(--gold-light) 50%, var(--gold) 72%, transparent 100%);
  background-size: 200% 100%;
  animation: rx-shimmer 5s linear infinite;
  opacity: .42;
}
@media (prefers-reduced-motion: reduce) { .rx-divider-gold { animation: none; } }

/* ── Stats: deep dark glass cards ───────────────────────── */
.rx-stats {
  background: linear-gradient(180deg, #070F1E 0%, #0E2540 100%);
  border-top:    1px solid rgba(184,134,47,.12);
  border-bottom: 1px solid rgba(184,134,47,.12);
}
.stat {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  padding: 20px 18px;
  min-width: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 4px 24px rgba(0,0,0,.25);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.stat:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 1px 0 rgba(212,169,74,.14), var(--glow-gold-lg);
  border-color: rgba(212,169,74,.28);
}
.stat-num { font-size: 38px; }

/* ── Why Attend: gradient bg, refined hover cards ────────── */
.rx-why { background: linear-gradient(180deg, #ffffff 0%, #EEF2F7 100%); }
.why-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(22,54,92,.10);
  transition: transform .30s ease, box-shadow .30s ease, border-color .30s ease;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0;
  transition: opacity .30s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 44px rgba(184,134,47,.13), 0 2px 8px rgba(0,0,0,.07);
  border-color: rgba(184,134,47,.32);
}
.why-card:hover::before { opacity: 1; }

/* ── Speakers: hover lift + soft gold glow ───────────────── */
.speaker-card { transition: transform .28s ease, box-shadow .28s ease; }
.speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(184,134,47,.14), 0 2px 6px rgba(0,0,0,.08);
}

/* ── Edition cards: hover lift + LIVE glow ───────────────── */
.edition-card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.edition-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(0,0,0,.28); }
.edition-live {
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(184,134,47,.22), 0 4px 24px rgba(184,134,47,.18);
}
.edition-live:hover {
  box-shadow: 0 0 0 1px rgba(184,134,47,.32), var(--glow-gold-lg), 0 12px 40px rgba(184,134,47,.20);
}

/* ── Partner card: glass treatment on dark bg ─────────────── */
.partner-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.17);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 8px 32px rgba(0,0,0,.25);
}

/* ── Register CTA: elevated bg ────────────────────────────── */
.rx-register-cta { background: linear-gradient(180deg, #F7F9FC 0%, #EDF1F7 100%); }

/* ── Scroll reveal ────────────────────────────────────────── */
.rx-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.rx-reveal.rx-visible { opacity: 1; transform: none; }
.rx-delay-1 { transition-delay: .08s; }
.rx-delay-2 { transition-delay: .16s; }
.rx-delay-3 { transition-delay: .24s; }
.rx-delay-4 { transition-delay: .32s; }
.rx-delay-5 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .rx-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ══════════════════════════════════════════════════════════════
   INNER PAGE FUTURISTIC STYLES
   Applied to Events, Speakers, Sponsors, Register, Contact
   ══════════════════════════════════════════════════════════════ */

/* ── Page hero (inner pages) ──────────────────────────────── */
.rx-page-hero {
  background: linear-gradient(135deg, #070F1E 0%, #0D2240 40%, #16365C 75%, #1e4d8c 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 24px 72px;
  text-align: center;
}
.rx-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(184,134,47,.18) 0%, transparent 65%),
    radial-gradient(ellipse at 10% 80%, rgba(212,169,74,.09) 0%, transparent 48%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin: 12px 0 16px;
}
.page-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.70);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
/* Eyebrow in hero has gold colour */
.rx-page-hero .section-eyebrow { color: var(--gold-light); }

/* ── Events page: dark glassmorphism event rows ───────────── */
.rx-events-page { background: var(--bg); }
.event-row {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  margin-bottom: 28px;
  background: var(--white);
  border: 1px solid rgba(22,54,92,.10);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.event-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(22,54,92,.14), 0 2px 6px rgba(0,0,0,.06);
  border-color: rgba(184,134,47,.28);
}
.event-row.event-live {
  border: 2px solid var(--gold);
  box-shadow: 0 4px 20px rgba(184,134,47,.16);
}
.event-row.event-live:hover {
  box-shadow: 0 12px 40px rgba(184,134,47,.22);
}
.ev-pkg {
  background: rgba(22,54,92,.06);
  border: 1px solid rgba(22,54,92,.12);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 13px;
  display: flex;
  gap: 8px;
  align-items: center;
  transition: background .2s, border-color .2s;
}
.ev-pkg.pkg-highlight {
  border-color: var(--gold);
  background: rgba(184,134,47,.07);
}
.epkg-price { color: var(--navy); font-weight: 600; }

/* ── Speakers page: dark hero + glassmorphism cards ──────── */
.rx-speakers-page { background: var(--bg); }
.speaker-card--large {
  background: var(--white);
  border: 1px solid rgba(22,54,92,.09);
  border-radius: 14px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.speaker-card--large:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(184,134,47,.14), 0 2px 8px rgba(0,0,0,.07);
  border-color: rgba(184,134,47,.30);
}

/* ── Sponsors page: dark section + glass tier cards ──────── */
.rx-sponsors-page { background: var(--bg); }
.sponsor-tier-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 24px;
  border: 1px solid rgba(22,54,92,.10);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.sponsor-tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(184,134,47,.14), 0 2px 8px rgba(0,0,0,.07);
  border-color: rgba(184,134,47,.30);
}
.sponsor-tier-card.tier-diamond {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(184,134,47,.16);
}

/* ── Contact page: glassmorphism contact cards ────────────── */
.rx-contact-page { background: var(--bg); }
.contact-card-item {
  background: var(--white);
  border: 1px solid rgba(22,54,92,.09);
  border-radius: 12px;
  padding: 20px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.contact-card-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184,134,47,.12);
  border-color: rgba(184,134,47,.26);
}

/* ── Register page: clean form on light bg ────────────────── */
.rx-register { background: var(--bg); }

/* ── Payment / confirmation pages ────────────────────────── */
.rx-payment { background: var(--bg); }
.pay-method-card {
  border-radius: 12px;
  border: 1px solid rgba(22,54,92,.10);
  transition: box-shadow .25s ease;
}
.pay-method-card:hover { box-shadow: 0 6px 20px rgba(22,54,92,.10); }

/* ── cpd-note subtle glass card ───────────────────────────── */
.cpd-note {
  background: rgba(22,54,92,.05);
  border: 1px solid rgba(22,54,92,.12);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--text-light);
  margin-top: 40px;
  line-height: 1.6;
}

/* ── WhatsApp button style ─────────────────────────────────── */
.btn-wa {
  background: #25D366;
  color: var(--white) !important;
  border-color: #25D366;
}
.btn-wa:hover { background: #1da851; border-color: #1da851; opacity: 1; }

/* ── Mobile: page hero ─────────────────────────────────────── */
@media (max-width: 640px) {
  .rx-page-hero { padding: 80px 20px 56px; }
  .page-hero-title { font-size: 30px; }
}

/* ── Blog grid (public /blog listing) ──────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .blog-grid { grid-template-columns: 1fr; } }

.blog-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column; }
.blog-card-img { height: 200px; background-size: cover; background-position: center; }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { font-size: 12px; color: var(--ink-muted); display: flex; gap: 6px; margin-bottom: 10px; }
.blog-card-title { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 10px; }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { font-size: 14px; color: var(--ink-muted); line-height: 1.55; flex: 1; margin-bottom: 16px; }
.blog-card-link { font-size: 13px; font-weight: 600; color: var(--gold); text-decoration: none; }
.blog-card-link:hover { color: var(--navy); }

/* ── Blog post body ──────────────────────────────────────────── */
.blog-post-body { max-width: 720px; margin: 0 auto; font-size: 16px; line-height: 1.8; color: var(--ink); }
.blog-post-body h2, .blog-post-body h3 { font-family: 'Playfair Display', Georgia, serif; color: var(--navy); margin: 40px 0 16px; }
.blog-post-body h2 { font-size: 26px; }
.blog-post-body h3 { font-size: 20px; }
.blog-post-body p  { margin-bottom: 20px; }
.blog-post-body img { max-width: 100%; border-radius: 8px; margin: 24px 0; }
.blog-post-body ul, .blog-post-body ol { padding-left: 24px; margin-bottom: 20px; }
.blog-post-body li { margin-bottom: 8px; }
.blog-post-body blockquote { border-left: 3px solid var(--gold); padding: 16px 20px; background: var(--bg); margin: 32px 0; font-style: italic; color: var(--ink-muted); border-radius: 0 8px 8px 0; }
.blog-post-body a { color: var(--gold); }
