/* =========================================================
   BJAOICON 2026 — Shared Design System
   Golden Jubilee | 50th Annual Conference, AOI Bihar & Jharkhand
   Theme tokens: deep steel-navy + jubilee gold, glassmorphism
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---------------------------------------------------------
   1. Tokens
--------------------------------------------------------- */
:root{
  /* Dark theme (default) — steel-city night */
  --navy-950:#060c18;
  --navy-900:#0a1426;
  --navy-850:#0d1930;
  --navy-800:#122140;
  --navy-700:#1a2e52;
  --navy-line:rgba(212,175,55,0.18);

  --gold-300:#f3dd9b;
  --gold-400:#e6c460;
  --gold-500:#d4af37;
  --gold-600:#b8902b;
  --gold-700:#8f6c1f;

  --ink-50:#f7f9fc;
  --ink-100:#e8edf5;
  --ink-300:#c2cee0;
  --ink-400:#94a4bd;
  --ink-500:#6d7f9c;

  --emerald:#3f7a5d;
  --saffron:#c97a3a;

  --bg:var(--navy-950);
  --bg-soft:var(--navy-900);
  --surface:rgba(255,255,255,0.045);
  --surface-strong:rgba(255,255,255,0.07);
  --surface-border:rgba(255,255,255,0.09);
  --text:var(--ink-100);
  --text-muted:var(--ink-400);
  --text-dim:var(--ink-500);
  --accent:var(--gold-500);
  --accent-strong:var(--gold-400);
  --shadow-color:rgba(0,0,0,0.45);
  --glass-blur:14px;

  --font-display:'Fraunces', 'Georgia', serif;
  --font-body:'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:'Space Grotesk', 'Courier New', monospace;

  --container:1180px;
  --radius-sm:10px;
  --radius-md:18px;
  --radius-lg:28px;
  --ease:cubic-bezier(.22,1,.36,1);
}

[data-theme="light"]{
  --bg:#f7f3e8;
  --bg-soft:#f1ead5;
  --surface:rgba(255,255,255,0.55);
  --surface-strong:rgba(255,255,255,0.78);
  --surface-border:rgba(20,30,50,0.08);
  --text:#16243c;
  --text-muted:#4d5d78;
  --text-dim:#7c8aa3;
  --accent:#a8791f;
  --accent-strong:#8f6420;
  --shadow-color:rgba(60,50,20,0.16);
  --navy-line:rgba(168,121,31,0.25);
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  transition:background .4s var(--ease), color .4s var(--ease);
  overflow-x:hidden;
}

img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
ul{margin:0;padding:0;}
button{font-family:inherit;}

::selection{background:var(--gold-500);color:#1a1305;}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:2px solid var(--gold-400);
  outline-offset:3px;
  border-radius:4px;
}

/* ---------------------------------------------------------
   2. Layout helpers
--------------------------------------------------------- */
.wrap{
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}
.section{
  position:relative;
  padding:108px 0;
}
.section--tight{padding:72px 0;}
@media (max-width:720px){
  .section{padding:72px 0;}
  .section--tight{padding:52px 0;}
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--accent);
  font-weight:600;
}
.eyebrow::before{
  content:'';
  width:22px;height:1px;
  background:var(--accent);
  display:inline-block;
}
.eyebrow-nodash::before{display:none;}

h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:600;
  margin:0;
  letter-spacing:-0.01em;
  color:var(--text);
}
.h-display{
  font-size:clamp(2.6rem, 6vw, 5rem);
  font-weight:600;
  line-height:1.02;
}
.h-section{
  font-size:clamp(1.9rem, 3.4vw, 2.7rem);
  line-height:1.08;
}
.h-card{
  font-size:1.3rem;
  line-height:1.2;
}
.lede{
  font-size:clamp(1.02rem,1.6vw,1.18rem);
  color:var(--text-muted);
  max-width:640px;
  line-height:1.7;
}
.theme-script{
  font-family:var(--font-display);
  font-style:italic;
  font-weight:400;
  color:var(--accent-strong);
}
.section-head{
  max-width:680px;
  margin-bottom:48px;
}
.section-head p{margin-top:14px;}
.section-head--center{margin-left:auto;margin-right:auto;text-align:center;}

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

/* ---------------------------------------------------------
   3. Glass surfaces & cards
--------------------------------------------------------- */
.glass{
  background:var(--surface);
  border:1px solid var(--surface-border);
  border-radius:var(--radius-md);
  backdrop-filter:blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter:blur(var(--glass-blur)) saturate(140%);
  box-shadow:0 18px 50px -20px var(--shadow-color);
}
.glass--strong{background:var(--surface-strong);}

.card{
  padding:30px;
  transition:transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.card:hover{
  transform:translateY(-4px);
  border-color:rgba(212,175,55,0.35);
}

.divider{
  height:1px;
  background:linear-gradient(90deg, transparent, var(--navy-line) 30%, var(--navy-line) 70%, transparent);
  margin:40px 0;
}
.divider-glyph{
  display:flex;align-items:center;gap:16px;
  color:var(--accent);
  margin:36px 0;
}
.divider-glyph::before,.divider-glyph::after{
  content:'';flex:1;height:1px;
  background:linear-gradient(90deg, transparent, var(--navy-line));
}
.divider-glyph::after{background:linear-gradient(90deg, var(--navy-line), transparent);}

/* ---------------------------------------------------------
   4. Buttons & badges
--------------------------------------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 30px;
  border-radius:100px;
  font-family:var(--font-body);
  font-weight:700;
  font-size:.92rem;
  letter-spacing:.02em;
  cursor:pointer;
  border:1px solid transparent;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space:nowrap;
}
.btn-gold{
  background:linear-gradient(135deg, var(--gold-300), var(--gold-600));
  color:#1c1404;
  box-shadow:0 12px 30px -10px rgba(212,175,55,0.55);
}
.btn-gold:hover{transform:translateY(-2px); box-shadow:0 16px 36px -10px rgba(212,175,55,0.7);}
.btn-ghost{
  background:transparent;
  border-color:var(--surface-border);
  color:var(--text);
}
.btn-ghost:hover{border-color:var(--accent); color:var(--accent-strong);}
.btn[disabled],.btn.is-disabled{
  background:var(--surface);
  color:var(--text-dim);
  border-color:var(--surface-border);
  cursor:not-allowed;
  box-shadow:none;
}
.btn[disabled]:hover,.btn.is-disabled:hover{transform:none;}
.btn-sm{padding:10px 18px;font-size:.82rem;}
.btn svg{width:18px;height:18px;flex-shrink:0;}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 18px;
  border-radius:100px;
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-weight:700;
  background:rgba(212,175,55,0.1);
  border:1px solid rgba(212,175,55,0.35);
  color:var(--accent-strong);
}
.pill-dot{width:7px;height:7px;border-radius:50%;background:var(--gold-400);box-shadow:0 0 0 3px rgba(212,175,55,0.25);}
.pill-dot.live{animation:pulse-dot 1.8s infinite;}
@keyframes pulse-dot{0%,100%{opacity:1;}50%{opacity:.35;}}

/* ---------------------------------------------------------
   5. Nav
--------------------------------------------------------- */
.nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:200;
  padding:18px 0;
  transition:padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.is-scrolled{
  padding:10px 0;
  background:rgba(6,12,24,0.78);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 10px 30px -16px rgba(0,0,0,0.5);
  border-bottom:1px solid var(--surface-border);
}
[data-theme="light"] .nav.is-scrolled{background:rgba(247,243,232,0.82);}

.nav .wrap{display:flex;align-items:center;justify-content:space-between;gap:18px;}
.brand{display:flex;align-items:center;gap:12px;}
.brand img{width:42px;height:42px;border-radius:50%;}
.brand-text{display:flex;flex-direction:column;line-height:1.15;}
.brand-text strong{font-family:var(--font-display);font-size:1.05rem;letter-spacing:.01em;}
.brand-text span{font-family:var(--font-mono);font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;color:var(--text-dim);}

.nav-links{display:flex;align-items:center;gap:30px;}
.nav-links a{
  font-size:.86rem;font-weight:600;color:var(--text-muted);
  position:relative;padding:4px 0;
  transition:color .25s;
}
.nav-links a:hover{color:var(--accent-strong);}
.nav-links a::after{
  content:'';position:absolute;left:0;bottom:0;width:0;height:1px;background:var(--accent);
  transition:width .3s var(--ease);
}
.nav-links a:hover::after{width:100%;}

.nav-actions{display:flex;align-items:center;gap:14px;}

.theme-toggle{
  width:42px;height:42px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:var(--surface);border:1px solid var(--surface-border);
  cursor:pointer;color:var(--accent);
  transition:transform .4s var(--ease), border-color .3s;
}
.theme-toggle:hover{border-color:var(--accent);transform:rotate(15deg);}
.theme-toggle svg{width:19px;height:19px;}
.theme-toggle .icon-moon{display:none;}
[data-theme="light"] .theme-toggle .icon-sun{display:none;}
[data-theme="light"] .theme-toggle .icon-moon{display:block;}

.nav-burger{
  display:none;
  width:42px;height:42px;border-radius:50%;
  align-items:center;justify-content:center;
  background:var(--surface);border:1px solid var(--surface-border);
  cursor:pointer;color:var(--text);
}
.nav-burger svg{width:19px;height:19px;}

@media (max-width:900px){
  .nav-links{
    position:fixed;inset:0;top:74px;
    flex-direction:column;
    justify-content:flex-start;
    padding:36px 28px;
    background:var(--navy-950);
    background:color-mix(in srgb, var(--bg) 96%, transparent);
    backdrop-filter:blur(18px);
    transform:translateX(100%);
    transition:transform .45s var(--ease);
    gap:8px;
  }
  [data-theme="light"] .nav-links{background:color-mix(in srgb, var(--bg) 97%, transparent);}
  .nav-links.is-open{transform:translateX(0);}
  .nav-links a{font-size:1.15rem;padding:14px 4px;border-bottom:1px solid var(--surface-border);width:100%;}
  .nav-burger{display:flex;}
}

/* ---------------------------------------------------------
   6. Parallax / hero media
--------------------------------------------------------- */
.parallax{
  position:relative;
  overflow:hidden;
  isolation:isolate;
}
.parallax-media{
  position:absolute;
  inset:-12% 0;
  width:100%;
  height:124%;
  z-index:0;
  will-change:transform;
}
.parallax-media img{
  width:100%;height:100%;object-fit:cover;
  filter:saturate(1.05);
}
.parallax-veil{
  position:absolute;inset:0;z-index:1;
  background:var(--veil, linear-gradient(180deg, rgba(6,10,20,.78), rgba(6,10,20,.55) 45%, rgba(6,10,20,.92)));
}
.parallax > *{position:relative;}
.parallax > .parallax-media, .parallax > .parallax-veil, .parallax > .seal-float{position:absolute;z-index:0;}
.parallax > .parallax-veil{z-index:1;}
.parallax > *:not(.parallax-media):not(.parallax-veil):not(.seal-float){z-index:2;}

.seal-float{
  position:absolute;
  opacity:.07;
  pointer-events:none;
  z-index:1;
  filter:drop-shadow(0 0 40px rgba(212,175,55,.25));
}
[data-theme="light"] .seal-float{opacity:.1;}

/* ---------------------------------------------------------
   7. Hero (shared skeleton, content differs per page)
--------------------------------------------------------- */
.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:160px;
  padding-bottom:80px;
}
.hero-inner{
  position:relative;z-index:2;
  width:100%;
  text-align:center;
  display:flex;flex-direction:column;align-items:center;
}
.hero-eyebrow{margin-bottom:22px;justify-content:center;}
.hero-title{
  font-size:clamp(2.6rem, 8.4vw, 6.4rem);
  font-weight:600;
  color:var(--gold-400);
  text-shadow:0 2px 40px rgba(212,175,55,0.35);
  line-height:0.98;
  margin-bottom:18px;
  letter-spacing:-0.01em;
}
[data-theme="light"] .hero-title{color:var(--gold-700);text-shadow:0 2px 30px rgba(168,121,31,0.18);}
.hero-org{
  font-size:clamp(1.05rem,2.4vw,1.5rem);
  color:var(--ink-100);
  font-weight:600;
  margin-bottom:6px;
}
[data-theme="light"] .hero-org{color:var(--text);}
.hero-chapter{
  font-size:1rem;
  color:var(--text-muted);
  margin-bottom:22px;
}
.hero-theme{
  font-family:var(--font-display);
  font-style:italic;
  font-size:clamp(1.2rem,2.6vw,1.7rem);
  color:var(--accent-strong);
  margin-bottom:30px;
}
.hero-meta{
  display:flex;flex-wrap:wrap;justify-content:center;gap:14px;
  margin-bottom:46px;
}
.meta-chip{
  display:flex;align-items:center;gap:9px;
  padding:11px 20px;
  font-size:.84rem;
  font-weight:600;
  color:var(--text);
}
.meta-chip svg{width:16px;height:16px;color:var(--accent);flex-shrink:0;}

/* ---------------------------------------------------------
   8. Countdown
--------------------------------------------------------- */
.countdown{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  width:100%;
  max-width:640px;
  margin:0 auto 28px;
}
.countdown-cell{
  padding:22px 6px 18px;
  text-align:center;
  position:relative;
}
.countdown-num{
  font-family:var(--font-mono);
  font-weight:700;
  font-size:clamp(1.9rem,5.2vw,3.1rem);
  color:var(--accent-strong);
  line-height:1;
  font-variant-numeric:tabular-nums;
}
.countdown-label{
  display:block;
  margin-top:10px;
  font-size:.66rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--text-dim);
  font-weight:700;
}
.countdown-sep{display:none;}
.clock-line{
  display:flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--font-mono);
  font-size:.84rem;
  color:var(--text-muted);
  margin-bottom:44px;
}
.clock-line strong{color:var(--text);font-weight:600;letter-spacing:.03em;}
@media (max-width:560px){
  .countdown{gap:10px;}
  .countdown-cell{padding:16px 2px 12px;}
}
@media (max-width:480px){
  .eyebrow{flex-wrap:wrap;justify-content:center;row-gap:6px;text-align:center;}
  .clock-line{flex-direction:column;gap:4px;}
  .clock-line .pill-dot, .clock-line .clock-sep{display:none;}
}

/* contact row (index + footer reuse) */
.contact-row{
  display:flex;flex-wrap:wrap;justify-content:center;gap:14px;
}
.contact-pill{
  display:flex;align-items:center;gap:10px;
  padding:13px 22px;
  border-radius:100px;
  font-size:.88rem;font-weight:600;
  transition:border-color .3s, transform .3s;
}
.contact-pill:hover{border-color:var(--accent);transform:translateY(-2px);}
.contact-pill svg{width:17px;height:17px;color:var(--accent);}
.contact-pill span small{display:block;font-size:.68rem;color:var(--text-dim);font-weight:600;letter-spacing:.04em;text-transform:uppercase;}

/* Contact Us CTA — glassmorphism, in line with the rest of the site */
.contact-cta{
  margin-top:64px;
  padding:46px 32px;
  text-align:center;
}
.contact-cta h3{
  font-family:var(--font-display);
  font-weight:600;
  font-size:clamp(1.8rem,3.6vw,2.5rem);
  color:var(--gold-400);
  margin-bottom:10px;
}
[data-theme="light"] .contact-cta h3{color:var(--gold-700);}
.contact-cta > p{color:var(--text-muted);margin:0 auto 30px;max-width:460px;}
.contact-cta-row{display:flex;flex-wrap:wrap;justify-content:center;gap:14px;}
.cta-pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:15px 26px;
  border-radius:100px;
  background:var(--surface);
  border:1px solid var(--surface-border);
  backdrop-filter:blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter:blur(var(--glass-blur)) saturate(140%);
  color:var(--text);
  font-weight:700;font-size:.92rem;
  transition:transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.cta-pill i{color:var(--accent);font-size:1rem;width:1em;text-align:center;}
.cta-pill:hover{transform:translateY(-3px);border-color:var(--accent);box-shadow:0 14px 30px -14px var(--shadow-color);}
@media (max-width:560px){
  .contact-cta{padding:34px 20px;margin-top:48px;}
  .contact-cta-row{flex-direction:column;align-items:stretch;}
  .cta-pill{justify-content:center;}
}

/* ---------------------------------------------------------
   9. Grids: committee / patrons / hotels / sponsors
--------------------------------------------------------- */
.grid{display:grid;gap:24px;}
.grid-4{grid-template-columns:repeat(4,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-2{grid-template-columns:repeat(2,1fr);}
@media (max-width:980px){
  .grid-4{grid-template-columns:repeat(2,1fr);}
  .grid-3{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:620px){
  .grid-4,.grid-3,.grid-2{grid-template-columns:1fr;}
}

.person-card{
  text-align:center;
  padding:26px 18px 22px;
}
.person-photo{
  width:96px;height:96px;border-radius:50%;
  overflow:hidden;margin:0 auto 16px;
  border:2px solid var(--navy-line);
  box-shadow:0 8px 24px -8px rgba(0,0,0,.5);
}
.person-photo img{width:100%;height:100%;object-fit:cover;}
.person-card h4{font-size:1.02rem;margin-bottom:4px;}
.person-role{font-size:.78rem;color:var(--accent-strong);font-weight:700;letter-spacing:.03em;margin-bottom:3px;}
.person-org{font-size:.78rem;color:var(--text-dim);}

.role-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:36px 48px;
}
@media (max-width:760px){.role-list{grid-template-columns:1fr;}}
.role-group h4{
  font-size:.74rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--accent);margin-bottom:14px;font-family:var(--font-mono);font-weight:700;
}
.role-group ul li{
  padding:9px 0;
  border-bottom:1px solid var(--surface-border);
  font-size:.92rem;
  color:var(--text);
  display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap;
}
.role-group ul li:last-child{border-bottom:none;}
.role-group ul li span.role-org{color:var(--text-dim);font-size:.8rem;text-align:right;}

/* ---------------------------------------------------------
   10. Tables (registration fees)
--------------------------------------------------------- */
.table-wrap{overflow-x:auto;border-radius:var(--radius-md);}
.scroll-hint{display:none;text-align:center;font-size:.78rem;color:var(--text-muted);margin:4px 0 10px;letter-spacing:.02em;}
@media (max-width:680px){
  .scroll-hint{display:block;}
}
table.fees{
  width:100%;
  border-collapse:collapse;
  min-width:640px;
}
table.fees th,table.fees td{
  padding:16px 18px;
  text-align:center;
  font-size:.9rem;
  border-bottom:1px solid var(--surface-border);
}
table.fees th{
  font-family:var(--font-mono);
  font-size:.68rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--accent);
  text-align:left;
  white-space:nowrap;
}
table.fees td:first-child, table.fees th:first-child{text-align:left;font-weight:700;color:var(--text);}
table.fees tbody tr:last-child td{border-bottom:none;}
table.fees td.price{font-family:var(--font-mono);font-weight:600;}
table.fees td.free{color:var(--emerald);font-weight:700;}

/* ---------------------------------------------------------
   11. Sponsor tiers
--------------------------------------------------------- */
.tier-card{padding:32px 26px;position:relative;}
.tier-card .tier-icon{width:44px;height:44px;margin-bottom:18px;}
.tier-name{font-family:var(--font-mono);letter-spacing:.1em;text-transform:uppercase;font-size:.78rem;font-weight:700;color:var(--accent);margin-bottom:6px;}
.tier-amount{font-family:var(--font-display);font-size:1.6rem;margin-bottom:16px;}
.tier-card ul{margin:0;padding:0;list-style:none;}
.tier-card li{
  font-size:.86rem;color:var(--text-muted);
  padding:8px 0 8px 22px;
  position:relative;
  border-top:1px solid var(--surface-border);
}
.tier-card li:first-child{border-top:none;}
.tier-card li::before{
  content:'';position:absolute;left:0;top:15px;
  width:8px;height:8px;border-radius:50%;
  background:var(--accent);opacity:.7;
}
.tier-card.tier-platinum{border-color:rgba(212,175,55,0.45);}

/* ---------------------------------------------------------
   12. Explore Jamshedpur cards
--------------------------------------------------------- */
.explore-card{
  border-radius:var(--radius-lg);
  overflow:hidden;
  position:relative;
  min-height:380px;
  display:flex;
  align-items:flex-end;
}
.explore-card .media{
  position:absolute;inset:0;z-index:0;
}
.explore-card .media img{width:100%;height:100%;object-fit:cover;transition:transform .8s var(--ease);}
.explore-card:hover .media img{transform:scale(1.06);}
.explore-card .media::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(6,10,20,0.1) 15%, rgba(6,10,20,0.55) 55%, rgba(6,10,20,0.97) 78%, rgba(6,10,20,0.97) 100%);
}
.explore-card .body{position:relative;z-index:1;padding:30px;color:#fff;}
.explore-card .body h3{color:#fff;font-size:1.5rem;margin-bottom:8px;}
.explore-card .body p{color:rgba(255,255,255,.82);font-size:.92rem;max-width:380px;}
.explore-card .tag{
  display:inline-block;margin-bottom:12px;
  font-family:var(--font-mono);font-size:.66rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--gold-300);
}

/* illustration-style explore card (no licensed photo available) */
.explore-card.illustrated .media{background:linear-gradient(160deg, var(--navy-800), var(--navy-950));}
.explore-card.illustrated svg{width:100%;height:100%;}

/* ---------------------------------------------------------
   13. Stat strip / golden jubilee block
--------------------------------------------------------- */
.stat-strip{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center;}
@media (max-width:760px){.stat-strip{grid-template-columns:repeat(2,1fr);}}
.stat-strip .num{
  font-family:var(--font-display);font-weight:600;
  font-size:clamp(2rem,4vw,2.8rem);
  color:var(--accent-strong);
}
.stat-strip .label{font-size:.74rem;letter-spacing:.08em;text-transform:uppercase;color:var(--text-dim);margin-top:6px;}

/* ---------------------------------------------------------
   14. Forms (registration preview - disabled / coming soon)
--------------------------------------------------------- */
.form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;}
@media (max-width:680px){.form-grid{grid-template-columns:1fr;}}
.field{display:flex;flex-direction:column;gap:7px;}
.field label{font-size:.76rem;font-weight:700;color:var(--text-dim);letter-spacing:.03em;}
.field input,.field select,.field textarea{
  padding:13px 16px;border-radius:10px;
  border:1px solid var(--surface-border);
  background:rgba(255,255,255,0.03);
  color:var(--text);
  font-family:var(--font-body);font-size:.92rem;
}
.field textarea{resize:vertical;min-height:48px;line-height:1.5;}
.field select{cursor:pointer;}
[data-theme="light"] .field input,[data-theme="light"] .field select,[data-theme="light"] .field textarea{background:rgba(255,255,255,0.5);}
.field input::placeholder,.field textarea::placeholder{color:var(--text-dim);}
.field input:disabled,.field select:disabled,.field textarea:disabled{opacity:.55;cursor:not-allowed;}
.field input:focus-visible,.field select:focus-visible,.field textarea:focus-visible{outline:2px solid var(--gold-400);outline-offset:1px;}
.field .req{color:#e2574c;margin-left:2px;font-weight:700;}
.field-error{display:block;font-size:.76rem;color:#e2574c;margin-top:2px;}
.field-error:empty{display:none;}
.field.has-error input,.field.has-error select,.field.has-error textarea{border-color:#e2574c;}
.form-note{
  display:flex;gap:10px;align-items:flex-start;
  padding:16px 18px;border-radius:12px;
  background:rgba(212,175,55,0.08);
  border:1px solid rgba(212,175,55,0.25);
  font-size:.84rem;color:var(--text-muted);
  margin-top:22px;
}
.form-note svg{width:18px;height:18px;color:var(--accent);flex-shrink:0;margin-top:1px;}

/* ---------------------------------------------------------
   15. Footer
--------------------------------------------------------- */
.site-footer{
  padding:64px 0 32px;
  position:relative;
}
.footer-grid{
  display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:40px;
  margin-bottom:40px;
}
@media (max-width:760px){.footer-grid{grid-template-columns:1fr;gap:32px;}}
.footer-grid h5{
  font-family:var(--font-mono);font-size:.7rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--accent);margin-bottom:16px;
}
.footer-brand{display:flex;align-items:center;gap:12px;margin-bottom:14px;}
.footer-brand img{width:46px;height:46px;border-radius:50%;}
.footer-grid p{font-size:.88rem;}
.footer-links li{margin-bottom:10px;font-size:.88rem;}
.footer-links a:hover{color:var(--accent-strong);}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:14px;
  padding-top:28px;border-top:1px solid var(--surface-border);
  font-size:.78rem;color:var(--text-dim);
}

/* ---------------------------------------------------------
   16. Scroll reveal
--------------------------------------------------------- */
.reveal{opacity:0;transform:translateY(28px);transition:opacity .8s var(--ease), transform .8s var(--ease);}
.reveal.is-visible{opacity:1;transform:translateY(0);}
.reveal-stagger > *{opacity:0;transform:translateY(24px);transition:opacity .7s var(--ease), transform .7s var(--ease);}
.reveal-stagger.is-visible > *{opacity:1;transform:translateY(0);}
.reveal-stagger.is-visible > *:nth-child(1){transition-delay:.03s;}
.reveal-stagger.is-visible > *:nth-child(2){transition-delay:.09s;}
.reveal-stagger.is-visible > *:nth-child(3){transition-delay:.15s;}
.reveal-stagger.is-visible > *:nth-child(4){transition-delay:.21s;}
.reveal-stagger.is-visible > *:nth-child(5){transition-delay:.27s;}
.reveal-stagger.is-visible > *:nth-child(6){transition-delay:.33s;}

/* misc */
.badge-soon{
  display:inline-flex;align-items:center;gap:8px;
  font-size:.72rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  color:var(--text-dim);
}
.section-bg-soft{background:var(--bg-soft);}
.text-center{text-align:center;}
.mt-32{margin-top:32px;}
.mx-auto{margin-left:auto;margin-right:auto;}
.kicker-logo-row{display:flex;align-items:center;gap:16px;justify-content:center;margin-bottom:18px;margin-top:150px;}
.kicker-logo-row img{width:54px;height:54px;border-radius:50%;border:1px solid var(--navy-line);}

/* ---------------------------------------------------------
   17. Main informational page additions
--------------------------------------------------------- */
.mini-hero{min-height:82vh;display:flex;align-items:center;padding-top:160px;padding-bottom:64px;}
.hero-cta-row{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-top:8px;}

.split{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
.split.reverse .split-media{order:2;}
@media (max-width:860px){
  .split{grid-template-columns:1fr;}
  .split.reverse .split-media{order:0;}
}
.media-frame{border-radius:var(--radius-lg);overflow:hidden;box-shadow:0 30px 60px -30px var(--shadow-color);border:1px solid var(--navy-line);aspect-ratio:4/5;}
.media-frame img{width:100%;height:100%;object-fit:cover;display:block;}
.media-frame.landscape{aspect-ratio:16/11;}

.welcome-photos{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;}
.welcome-photos .person-card{text-align:center;padding:20px;}
.welcome-photos .person-photo{
  width:100%;height:auto;aspect-ratio:4/5;margin:0 0 14px;
  border-radius:var(--radius-lg);
  border:1px solid var(--navy-line);
  box-shadow:0 16px 38px -16px var(--shadow-color);
}
.welcome-photos .person-photo img{width:100%;height:100%;object-fit:cover;display:block;}
@media (max-width:560px){
  .welcome-photos{grid-template-columns:1fr;max-width:280px;margin-left:auto;margin-right:auto;}
}

.info-rows{display:flex;flex-direction:column;gap:22px;margin-top:30px;}
.info-row h5{font-family:var(--font-mono);font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--accent);margin-bottom:6px;font-weight:700;}
.info-row p{margin:0;font-size:.92rem;}

.session-tags{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin-top:34px;}
.session-tag{display:flex;align-items:center;gap:10px;padding:13px 22px;border-radius:100px;font-size:.86rem;font-weight:600;}

.hotel-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:14px;}
.hotel-list li{display:flex;align-items:center;gap:14px;padding:16px 20px;font-weight:600;font-size:.95rem;}
.hotel-list li svg{width:18px;height:18px;color:var(--accent);flex-shrink:0;}

.travel-rows{display:flex;flex-direction:column;gap:18px;margin-top:26px;}
.travel-rows .trow{display:flex;gap:14px;align-items:flex-start;}
.travel-rows .trow svg{width:20px;height:20px;color:var(--accent);flex-shrink:0;margin-top:2px;}
.travel-rows .trow strong{display:block;font-size:.92rem;color:var(--text);}
.travel-rows .trow span{font-size:.86rem;color:var(--text-muted);}

.qr-block{display:flex;gap:26px;align-items:center;flex-wrap:wrap;}
.qr-block img{width:138px;height:auto;border-radius:14px;border:1px solid var(--navy-line);}
.qr-details{font-size:.86rem;color:var(--text-muted);line-height:1.75;}
.qr-details strong{color:var(--text);}

.center-icon{width:46px;height:46px;margin:0 auto 18px;display:block;}
.icon-circle{
  width:64px;height:64px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:rgba(212,175,55,0.1);border:1px solid rgba(212,175,55,0.3);
  margin:0 auto 18px;
}
.icon-circle img{width:30px;height:30px;}
.icon-circle svg{width:26px;height:26px;color:var(--accent);}

.committee-sub-head{text-align:center;margin-bottom:36px;}
.lead-person{max-width:280px;margin:0 auto 56px;}

/* ---------------------------------------------------------
   18. Live registration form (BJAOICON v10)
--------------------------------------------------------- */
.badge-live{color:var(--emerald);}
.badge-live .pill-dot{background:var(--emerald);box-shadow:0 0 0 3px rgba(63,122,93,0.25);}

.fee-field input#rg-fee{
  font-family:var(--font-mono);font-weight:700;font-size:1.05rem;
  color:var(--accent-strong);
  border-color:rgba(212,175,55,0.4);
  background:rgba(212,175,55,0.07);
}
[data-theme="light"] .fee-field input#rg-fee{background:rgba(212,175,55,0.12);}
.fee-breakdown{display:block;font-size:.78rem;color:var(--text-muted);margin-top:6px;line-height:1.5;}

.file-drop{display:flex;align-items:center;gap:14px;flex-wrap:wrap;}
.file-drop input[type="file"]{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}
.file-drop-btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 20px;border-radius:10px;
  border:1px solid var(--surface-border);
  background:rgba(255,255,255,0.04);
  color:var(--text);font-size:.86rem;font-weight:700;
  cursor:pointer;transition:border-color .25s, color .25s;
}
.file-drop-btn:hover{border-color:var(--accent);color:var(--accent-strong);}
.file-drop-btn svg{width:16px;height:16px;flex-shrink:0;}
[data-theme="light"] .file-drop-btn{background:rgba(255,255,255,0.5);}
.file-drop-name{font-size:.82rem;color:var(--text-dim);}
.file-drop.has-file .file-drop-name{color:var(--text);font-weight:600;}

#regSubmitBtn.is-loading{opacity:.7;cursor:wait;pointer-events:none;}
#regSubmitBtn .spinner{
  display:inline-block;width:14px;height:14px;margin-right:8px;
  border:2px solid rgba(0,0,0,.25);border-top-color:#1c1404;border-radius:50%;
  animation:reg-spin .7s linear infinite;vertical-align:-2px;
}
@keyframes reg-spin{to{transform:rotate(360deg);}}

.reg-result{margin-top:22px;padding:16px 20px;border-radius:12px;font-size:.9rem;line-height:1.6;}
.reg-result[hidden]{display:none;}
.reg-result.success{background:rgba(63,122,93,0.12);border:1px solid rgba(63,122,93,0.4);}
.reg-result.success strong{color:var(--emerald);}
.reg-result.error{background:rgba(226,87,76,0.1);border:1px solid rgba(226,87,76,0.4);}
.reg-result.error strong{color:#e2574c;}

/* ---------------------------------------------------------
   19. Dropdown (select) appearance — dark popup, gold hover
   Native <option> styling is limited and inconsistent across
   browsers (and largely unstyleable on iOS Safari, which uses
   its own picker wheel regardless of CSS), but this covers
   Chrome/Edge/Firefox on desktop and Android, which is the vast
   majority of visitors. Specificity/order is deliberate so this
   wins over the earlier light-theme input rule.
--------------------------------------------------------- */
.field select,
[data-theme="light"] .field select{
  background-color:var(--navy-900);
  color:#fdf9ee;
}
.field select option{
  background-color:var(--navy-900);
  color:#fdf9ee;
}
.field select option:hover,
.field select option:focus,
.field select option:checked{
  background-color:var(--gold-500);
  color:#1c1404;
}
