/* =========================
   Fonts
========================= */

/* Inter */
@font-face {
  font-family: "Inter";
  src: url("../images/Fonts/Inter/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../images/Fonts/Inter/Inter-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../images/Fonts/Inter/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../images/Fonts/Inter/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../images/Fonts/Inter/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("../images/Fonts/Inter/Inter-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}


/* Liberation Serif */
@font-face {
  font-family: "Liberation Serif";
  src: url("../images/Fonts/liberation-serif/LiberationSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Liberation Serif";
  src: url("../images/Fonts/liberation-serif/LiberationSerif-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Liberation Serif";
  src: url("../images/Fonts/liberation-serif/LiberationSerif-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Liberation Serif";
  src: url("../images/Fonts/liberation-serif/LiberationSerif-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}


/* Noto Serif */
@font-face {
  font-family: "Noto Serif";
  src: url("../images/Fonts/NotoSerif/NotoSerif-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Noto Serif";
  src: url("../images/Fonts/NotoSerif/NotoSerif-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Noto Serif";
  src: url("../images/Fonts/NotoSerif/NotoSerif-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Noto Serif";
  src: url("../images/Fonts/NotoSerif/NotoSerif-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Noto Serif";
  src: url("../images/Fonts/NotoSerif/NotoSerif-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Noto Serif";
  src: url("../images/Fonts/NotoSerif/NotoSerif-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Noto Serif";
  src: url("../images/Fonts/NotoSerif/NotoSerif-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Noto Serif";
  src: url("../images/Fonts/NotoSerif/NotoSerif-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

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

:root {
  --navy: #0a1f44;
  --navy-dark: #081733;
  --navy-light: #142a55;
  --gold: #f5c97a;
  --gold-light: #fde2b3;
  --bg: #f5f6f8;
  --white: #ffffff;
  --text: #0a1f44;
  --muted: #6b7280;
  --border: #e5e7eb;
  --red: #dc2626;
  --shadow: 0 10px 40px rgba(10, 31, 68, 0.08);
  --radius: 12px;
}

html { scroll-behavior: smooth; }
body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4
{
  font-family: "Noto Serif", Georgia, serif;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ==================== NAVBAR ==================== */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: 1280px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 12px; font-family: "Inter", Arial, sans-serif; font-weight: 700; font-size: 20px; color: var(--navy); }
.nav-logo img { width: 100%; height: 44px; }
.nav-menu { display: flex; gap: 32px; align-items: center; font-family: "Liberation Serif", Georgia, serif; }
.nav-menu a { font-size: 15px; color: var(--text); font-weight: 500; position: relative; padding: 8px 8px; }
.nav-menu a.active { color: var(--navy); font-weight: 600; }
.nav-menu a.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
}
.nav-menu a:hover { color: var(--navy); }
.btn-cta {
  background: var(--gold); color: var(--navy);
  padding: 12px 24px; border-radius: 8px; font-weight: 600;
  font-size: 14px; transition: all .2s;
}
.btn-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 24px; color: var(--navy); }

@media (max-width: 900px) {
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; box-shadow: var(--shadow); gap: 20px; }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: block; }
}

/* ==================== HERO ==================== */
.hero {
  background: linear-gradient(135deg, #0a1f44 0%, #1a3a6c 50%, #0a1f44 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero-home {
  background: url('../images/Homepage_1/Hero Section_BG.png') center/cover; /*linear-gradient(135deg, rgba(10,31,68,.92), rgba(10,31,68,.7)),*/
  min-height: 540px;
}
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  padding: 8px 16px; border-radius: 100px; font-size: 13px; margin-bottom: 24px;
}
.hero h1 {
  font-family: "Noto Serif", Georgia, serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero h1 .gold { color: var(--gold); }
.hero p { font-size: 17px; color: rgba(255,255,255,.75); max-width: 600px; margin-bottom: 32px; }
.hero-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; font-size: 14px; color: rgba(255,255,255,.8); }
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-weight: 600;
  font-size: 14px; transition: all .2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.3); }
.btn-outline:hover { background: rgba(255,255,255,.08); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); }

/* ==================== INFO CARDS ==================== */
.info-cards {
  max-width: 1200px; margin: -60px auto 0; padding: 0 24px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative; z-index: 3;
}
.info-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px; box-shadow: var(--shadow); transition: transform .2s;
}
.info-card:hover { transform: translateY(-4px); }
.info-card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: #eef1f7; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--navy);
}
.info-card h3 { font-family: "Noto Serif", Georgia, serif; font-size: 22px; margin-bottom: 6px; }
.info-card .subtitle { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.info-card a.link { color: var(--navy); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.info-card a.link:hover { color: var(--gold); }

@media (max-width: 900px) {
  .info-cards { grid-template-columns: 1fr; }
}

/* ==================== SECTION ==================== */
section { padding: 80px 0; }
.section-tag {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.section-title { font-family: "Noto Serif", Georgia, serif; font-size: clamp(32px, 4vw, 48px); line-height: 1.1; margin-bottom: 16px; }
.section-subtitle { color: var(--muted); max-width: 700px; font-size: 16px; }

/* ==================== INTRO ==================== */
.intro { background: var(--white); padding: 100px 0; }
.intro-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.intro-image { border-radius: var(--radius); padding: 60px; text-align: center; }
.intro-image img { max-width: 320px; margin: 0 auto; }
.intro h2 { font-family: "Noto Serif", Georgia, serif; font-size: 40px; margin-bottom: 24px; line-height: 1.1; }
.intro p { color: var(--muted); margin-bottom: 16px; font-size: 15px; }
.intro strong { color: var(--text); font-weight: 600; }
@media (max-width: 900px) { .intro-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ==================== TIMELINE / DEADLINES ==================== */
.timeline { background: var(--bg); }
.deadline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.deadline-card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  border-top: 3px solid transparent; transition: all .2s;
}
.deadline-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.deadline-card.active { background: var(--navy); color: var(--white); border-top-color: var(--gold); }
.deadline-label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.deadline-card.active .deadline-label { color: rgba(255,255,255,.6); }
.deadline-date { font-family: "Inter", Arial, sans-serif; font-size: 26px; margin-bottom: 8px; line-height: 1.1; }
.deadline-sub { font-size: 13px; color: var(--muted); }
.deadline-card.active .deadline-sub { color: rgba(255,255,255,.7); }
@media (max-width: 900px) { .deadline-grid { grid-template-columns: repeat(2, 1fr); } }

/* ==================== SCHEDULE ==================== */
.schedule-item {
  display: grid; grid-template-columns: 320px 1fr; gap: 0;
  margin-top: 32px; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.schedule-date { background: var(--navy); color: var(--gold); padding: 28px; }
.schedule-date .label { font-size: 11px; letter-spacing: 1px; color: rgba(255,255,255,.6); text-transform: uppercase; margin-bottom: 8px; }
.schedule-date .date { font-family: "Inter", Arial, sans-serif; font-size: 24px; margin-bottom: 4px; }
.schedule-date .venue { font-size: 13px; color: rgba(255,255,255,.7); }
.schedule-content { background: var(--white); padding: 28px; color: var(--muted); display: flex; align-items: center; }
@media (max-width: 700px) { .schedule-item { grid-template-columns: 1fr; } }

/* ==================== TWO COLUMN ==================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 40px; }
.two-col h3 { font-family: "Noto Serif", Georgia, serif; font-size: 24px; margin-bottom: 16px; border-left: 3px solid var(--gold); padding-left: 14px; }
.two-col p { color: var(--muted); font-size: 15px; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

/* ==================== AWARD BANNER ==================== */
.award-banner {
  background: url('../images/Homepage_1/CTA_Award_bg.png');/*linear-gradient(135deg, #0a1f44 0%, #1e3a6f 100%);*/
  max-height: 497px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--white); padding: 20px 0; position: relative; overflow: hidden;
}
.award-banner::before {
  content:''; position:absolute; right:-100px; top:50%; transform:translateY(-50%);
  width:600px; height:600px; border-radius:50%;
  background: radial-gradient(circle, rgba(245,201,122,.15), transparent 70%);
}
.award-inner { display: grid; grid-template-columns: 1.5fr 1fr; align-items: center; gap: 40px; position:relative; z-index:2; }
.award-inner h2 { font-family: "Noto Serif", Georgia, serif; font-size: 48px; margin-bottom: 16px; }
.award-inner h2 .gold-num { color: var(--gold); }
.award-inner p { color: rgba(255,255,255,.75); margin-bottom: 32px; max-width: 500px; }
.award-medals { display: flex; gap: 12px; margin-bottom: 24px; }
.medal {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: var(--navy);
  border: 3px solid rgba(255,255,255,.2);
}
.medal img {
  width:247px; height:84px; 
}
.medal.platinum { background: linear-gradient(135deg,#e5e4e2,#b8b8b8); }
.medal.gold { background: linear-gradient(135deg,#ffd700,#d4a017); }
.medal.silver { background: linear-gradient(135deg,#d3d3d3,#a9a9a9); }
.trophy-placeholder {
  font-size: 180px; text-align: center; color: var(--gold); opacity: .9;
}
@media (max-width: 800px) { .award-inner { grid-template-columns: 1fr; } }

/* ==================== PARTNERS ==================== */
.partners { background: var(--white); padding: 60px 0; text-align: center; }
.partners-tag { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.partners h3 { font-family: "Noto Serif", Georgia, serif; font-size: 28px; margin-bottom: 40px; }
.partners-org {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px; margin-bottom: 40px;
}
.partners-org .iise-logo {
  width: 140px; height: 100px;
  background: url('https://via.placeholder.com/140x100/0a1f44/ffffff?text=IISE') center/contain no-repeat;
}
.partner-logos {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 40px; opacity: .8;
}
.partner-logo {
  height: 50px; display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-weight: 600; font-size: 12px;
  padding: 0 16px; border-radius: 6px;
}

/* ==================== PARTNERS MARQUEE ==================== */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  /* Soft fade on both edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee .partner-logo {
  flex-shrink: 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  padding: 0 16px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: .7;
  transition: opacity .2s, color .2s;
}

.marquee .partner-logo:hover {
  opacity: 1;
  color: var(--navy);
}

.marquee .partner-logo img {
  height: 50px;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* exactly half = one full set */
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  background: linear-gradient(135deg, #0a1f44, #142a55);
  color: var(--white); text-align: center; padding: 100px 0;
}
.cta-section h2 { font-family: "Noto Serif", Georgia, serif; font-size: 44px; margin-bottom: 20px; line-height: 1.1; }
.cta-section p { color: rgba(255,255,255,.75); max-width: 600px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ==================== FOOTER ==================== */
footer { background: var(--white); padding: 60px 0 24px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px; margin-bottom: 40px; }
footer h4 { font-family: "Noto Serif", Georgia, serif; font-size: 20px; color: var(--navy); margin-bottom: 16px; }
.footer-col h5 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col p, .footer-col a { color: var(--muted); font-size: 14px; margin-bottom: 10px; display: block; }
.footer-col a:hover { color: var(--navy); }
.footer-contact { display: flex; align-items: flex-start; gap: 10px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; color: var(--muted); font-size: 13px; text-align: left; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ==================== COMMITTEES ==================== */
.hero-sm { padding: 80px 0; background: linear-gradient(135deg, #0a1f44, #142a55); color: var(--white); }
.hero-sm h1 { font-family: "Noto Serif", Georgia, serif; font-size: clamp(40px, 5vw, 64px); line-height: 1.1; margin-bottom: 20px; }
.hero-sm h1 .gold { color: var(--gold); }
.hero-sm p { color: rgba(255,255,255,.75); max-width: 700px; font-size: 16px; }
.hero-sm .hero-tag { background: rgba(255,255,255,.08); }

.member-section { padding: 80px 0; }
.member-section h2 { font-family: "Noto Serif", Georgia, serif; font-size: 36px; margin-bottom: 8px; border-left: 3px solid var(--gold); padding-left: 16px; }
.member-section > .container > p { color: var(--muted); margin-bottom: 40px; padding-left: 19px; }

.honorary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.honorary-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: grid; grid-template-columns: 100px 1fr; gap: 20px; align-items: start;
}
.hm-photo {
  width: 100px; height: 100px; border-radius: 50%;
  background: #eef1f7; display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 40px;
  overflow: hidden;
}
.hm-tag { display: inline-block; background: var(--gold-light); color: var(--navy); font-size: 10px; padding: 4px 10px; border-radius: 100px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.hm-name { font-family: "Inter", Arial, sans-serif; font-size: 20px; margin-bottom: 4px; }
.hm-affiliation { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.hm-fields-label { font-size: 10px; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; margin-bottom: 8px; }
.hm-fields { display: flex; flex-wrap: wrap; gap: 6px; }
.pill { background: #eef1f7; color: var(--navy); font-size: 11px; padding: 4px 10px; border-radius: 100px; }
@media (max-width: 800px) { .honorary-grid { grid-template-columns: 1fr; } }

.committee-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.committee-card { text-align: left; }
.committee-photo {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius);
  background: #eef1f7 center/cover no-repeat;
  margin-bottom: 16px; position: relative; overflow: hidden;
}
.committee-photo .role-tag {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--navy); color: var(--white);
  font-size: 10px; padding: 4px 10px; border-radius: 100px;
  letter-spacing: 1px; text-transform: uppercase;
}
.committee-card h4 { font-size: 15px; margin-bottom: 4px; font-weight: 600; }
.committee-card .aff { font-size: 12px; color: var(--muted); }
@media (max-width: 1000px) { .committee-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .committee-grid { grid-template-columns: repeat(2, 1fr); } }

.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tech-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  display: flex; gap: 16px; align-items: center;
}
.tech-photo {
  width: 70px; height: 70px; border-radius: 50%;
  background: #eef1f7 center/cover no-repeat;
  flex-shrink: 0;
}
.tech-card h4 { font-size: 15px; margin-bottom: 4px; }
.tech-card p { font-size: 12px; color: var(--muted); }
@media (max-width: 800px) { .tech-grid { grid-template-columns: 1fr; } }

/* ==================== SPEAKERS ==================== */
.speaker-card {
  display: grid; grid-template-columns: 400px 1fr; gap: 48px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; margin-bottom: 32px;
  align-items: center;
}
.speaker-card.reverse { grid-template-columns: 1fr 400px; }
.speaker-photo {
  aspect-ratio: 3/4; border-radius: 8px;
  background: #eef1f7 center/cover no-repeat;
  border: 2px solid #eef1f7;
}
.speaker-body .sp-tag {
  display: inline-block; background: var(--gold-light); color: var(--navy);
  font-size: 11px; padding: 6px 14px; border-radius: 100px;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.speaker-body.secondary .sp-tag { background: #e8eef7; color: var(--navy); }
.speaker-body h2 { font-family: "Noto Serif", Georgia, serif; font-size: 36px; margin-bottom: 8px; }
.speaker-body .sp-uni { color: var(--navy); font-weight: 500; margin-bottom: 16px; }
.speaker-body .sp-role { color: var(--muted); font-size: 14px; margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
.sp-fields-label { font-size: 10px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-bottom: 12px; }
.sp-fields { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.sp-bio { color: var(--muted); font-style: italic; margin-bottom: 24px; font-size: 14px; }
.sp-link { color: var(--navy); font-weight: 600; font-size: 14px; }
@media (max-width: 900px) {
  .speaker-card, .speaker-card.reverse { grid-template-columns: 1fr; gap: 24px; }
  .speaker-photo { max-width: 340px; margin: 0 auto; }
}

/* ==================== CFP ==================== */
.cfp-hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start; }
.cfp-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cfp-date-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 20px;
}
.cfp-date-card.highlight { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.cfp-date-card .lbl { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .7; margin-bottom: 8px; }
.cfp-date-card .dt { font-family: "Inter", Arial, sans-serif; font-size: 22px; }
@media (max-width: 800px) { .cfp-hero-grid { grid-template-columns: 1fr; } }

.cfp-intro { background: var(--bg); padding: 80px 0; }
.cfp-intro-grid { display: grid; grid-template-columns: 300px 1fr; gap: 60px; }
.cfp-intro h2 { font-family: "Noto Serif", Georgia, serif; font-size: 32px; line-height: 1.15; margin-bottom: 16px; }
.cfp-intro-tag { font-size: 11px; color: var(--muted); letter-spacing: 2px; border-top: 2px solid var(--gold); padding-top: 10px; display: inline-block; }
.cfp-intro p { margin-bottom: 18px; color: var(--muted); font-size: 15px; }
.cfp-intro strong { color: var(--navy); }
@media (max-width: 800px) { .cfp-intro-grid { grid-template-columns: 1fr; } }

.topics { padding: 80px 0; }
.topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.topic-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: all .2s;
}
.topic-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.topic-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: #eef1f7; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--navy);
}
.topic-card h4 { font-family: "Noto Serif", Georgia, serif; font-size: 18px; margin-bottom: 10px; }
.topic-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
@media (max-width: 1000px) { .topic-grid { grid-template-columns: repeat(2, 1fr); } }

.submission { background: var(--bg); padding: 80px 0; }
.submission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.sub-box {
  background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border);
}
.sub-box.dark { background: var(--navy); color: var(--white); border: none; }
.sub-box h3 { font-family: "Noto Serif", Georgia, serif; font-size: 24px; margin-bottom: 20px; }
.sub-item { display: flex; gap: 14px; margin-bottom: 20px; }
.sub-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: #eef1f7; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--navy);
}
.sub-box.dark .sub-icon { background: rgba(255,255,255,.1); color: var(--gold); }
.sub-box.dark .sub-item .step-num {
  width: 32px; height: 32px; border-radius: 50%; background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0;
}
.sub-item h5 { font-size: 15px; margin-bottom: 6px; }
.sub-item p { font-size: 13px; color: var(--muted); }
.sub-box.dark .sub-item p { color: rgba(255,255,255,.7); }
.template-pills { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }
.template-pill {
  background: var(--bg); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 8px; font-size: 13px; color: var(--navy); font-weight: 500;
}
.plagiarism-alert {
  border-left: 3px solid var(--red); padding: 14px 18px; background: #fef2f2;
  border-radius: 6px; margin-top: 20px;
}
.plagiarism-alert h5 { color: var(--red); font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; }
.plagiarism-alert p { font-size: 13px; color: var(--text); }
.easychair-pill {
  background: var(--white); color: var(--navy); padding: 10px 16px; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 8px; margin: 16px 0; font-weight: 600;
}
@media (max-width: 800px) { .submission-grid { grid-template-columns: 1fr; } }

.publication { padding: 80px 0; }
.pub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 40px; }
.pub-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px; text-align: center;
}
.pub-icon {
  width: 60px; height: 60px; border-radius: 12px;
  background: #eef1f7; display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--navy);
}
.pub-box h3 { font-family: "Noto Serif", Georgia, serif; font-size: 24px; margin-bottom: 16px; }
.pub-box p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.pub-box .featured {
  font-size: 10px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 20px;
}
.pub-box strong { color: var(--navy); }
@media (max-width: 800px) { .pub-grid { grid-template-columns: 1fr; } }

/* ==================== PROGRAM ==================== */
.day-grid { display: grid; grid-template-columns: 280px 1fr; gap: 20px; margin-bottom: 20px; }
.day-card {
  background: linear-gradient(135deg, #0a1f44, #1e3a6f); color: var(--white);
  padding: 28px; border-radius: var(--radius);
}
.day-card .day-label { font-size: 11px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.day-card .day-name { font-family: "Inter", Arial, sans-serif; font-size: 32px; margin-bottom: 6px; }
.day-card .day-date { font-size: 13px; color: rgba(255,255,255,.7); }
.day-content {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; display: flex; align-items: center;
  color: var(--muted); font-size: 16px;
}
@media (max-width: 700px) { .day-grid { grid-template-columns: 1fr; } }

/* ==================== AWARDS ==================== */
.award-hero { background: linear-gradient(135deg, #0a1f44, #142a55); color: var(--white); padding: 80px 0; }
.award-hero-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.trophy-icon { font-size: 220px; text-align: center; color: var(--gold); }
@media (max-width: 800px) { .award-hero-inner { grid-template-columns: 1fr; } }

.awards-layout { padding: 80px 0; }
.award-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 60px; }
.award-block { background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); }
.award-block h3 { font-family: "Noto Serif", Georgia, serif; font-size: 28px; margin-bottom: 20px; }
.award-block h4 { font-size: 15px; font-weight: 600; margin: 16px 0 10px; border-left: 2px solid var(--gold); padding-left: 12px; }
.award-block p { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.prize-box { background: var(--bg); border-radius: 8px; padding: 20px; margin: 20px 0; }
.prize-box .prize-lbl { font-size: 10px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-bottom: 12px; }
.prize-item { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; font-size: 14px; }
.prize-medal { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.cert-img {
  background: linear-gradient(135deg,#f5f6f8,#fff); border: 2px solid var(--gold);
  border-radius: var(--radius); padding: 50px 30px; text-align: center; margin-top: 20px;
}
.cert-img h5 { font-family: "Inter", Arial, sans-serif; font-size: 20px; margin-bottom: 10px; color: var(--navy); }
.cert-img p { font-size: 11px; color: var(--muted); }

.award-quote {
  background: linear-gradient(rgba(10,31,68,.9), rgba(10,31,68,.95)), url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1600') center/cover;
  color: var(--white); text-align: center; padding: 100px 0;
}
.award-quote h2 { font-family: "Noto Serif", Georgia, serif; font-size: 48px; margin-bottom: 20px; }
.award-quote .rule { width: 60px; height: 3px; background: var(--gold); margin: 0 auto 20px; }
.award-quote p { font-size: 11px; letter-spacing: 3px; color: rgba(255,255,255,.6); text-transform: uppercase; }
@media (max-width: 800px) { .award-row { grid-template-columns: 1fr; } }

/* ==================== ATTENDING / REGISTRATION ==================== */
.reg-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 60px; }
.reg-side h2 { font-family: "Noto Serif", Georgia, serif; font-size: 36px; margin-bottom: 16px; line-height: 1.1; }
.reg-side h2 .gold { color: var(--gold); }
.reg-side p { color: var(--muted); margin-bottom: 24px; }
.reg-note {
  background: #eef4ff; border-radius: 8px; padding: 16px; font-size: 13px; color: var(--navy);
}
.reg-note strong { display: block; margin-bottom: 6px; }
.reg-table { background: var(--navy); border-radius: var(--radius); color: var(--white); overflow: hidden; }
.reg-table-head {
  display: flex; justify-content: space-between; padding: 20px 28px;
  background: rgba(255,255,255,.05); font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
}
.reg-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 28px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.reg-row:last-child { border-bottom: none; }
.reg-row h4 { font-family: "Noto Serif", Georgia, serif; font-size: 20px; margin-bottom: 4px; }
.reg-row .rsub { font-size: 12px; color: rgba(255,255,255,.6); }
.reg-row .price { font-family: "Inter", Arial, sans-serif; font-size: 22px; color: var(--gold); }
@media (max-width: 800px) { .reg-grid { grid-template-columns: 1fr; } }

.guidelines { background: var(--bg); padding: 80px 0; }
.guidelines h2 { font-family: "Noto Serif", Georgia, serif; font-size: 36px; text-align: center; margin-bottom: 40px; border-bottom: 3px solid var(--gold); padding-bottom: 16px; display: inline-block; }
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 40px; }
.guide-item { display: flex; gap: 16px; align-items: flex-start; }
.guide-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.guide-item p { font-size: 14px; color: var(--muted); }
.guide-item strong { color: var(--navy); }
@media (max-width: 800px) { .guide-grid { grid-template-columns: 1fr; } }

.alert-box {
  background: var(--navy); color: var(--white); border-radius: var(--radius);
  padding: 32px; margin: 60px auto; max-width: 900px;
  display: grid; grid-template-columns: 1fr 80px; gap: 30px; align-items: center;
}
.alert-box h3 { font-family: "Noto Serif", Georgia, serif; font-size: 22px; margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.alert-box p { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 16px; }
.alert-box .excluded { display: flex; gap: 40px; flex-wrap: wrap; }
.excluded-item .lbl { font-size: 10px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 4px; }
.alert-i { font-size: 60px; color: var(--gold); opacity: .3; text-align: center; }
.not-included { color: var(--gold); text-decoration: underline; font-weight: 600; }

/* ==================== PRESENTATION ==================== */
.pres-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.pres-side h2 { font-family: "Noto Serif", Georgia, serif; font-size: 28px; margin-bottom: 16px; border-top: 3px solid var(--gold); padding-top: 20px; display: inline-block; }
.pres-side p { color: var(--muted); margin-bottom: 24px; }
.pres-side .meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.timing-bar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.timing-bar .lbl { font-size: 10px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-bottom: 12px; }
.timing-split { display: grid; grid-template-columns: 2fr 1fr; gap: 4px; margin-bottom: 10px; }
.timing-split > div { padding: 14px; border-radius: 6px; text-align: center; font-size: 13px; font-weight: 600; }
.discourse { background: var(--navy); color: var(--white); }
.qa { background: var(--gold); color: var(--navy); }
.timing-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); }
.equipment-box, .protocol-box {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px;
}
.protocol-box { background: var(--navy); color: var(--white); border: none; }
.equipment-box h4, .protocol-box h4 {
  font-size: 15px; margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.equipment-box li { font-size: 13px; color: var(--muted); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.protocol-box p { color: rgba(255,255,255,.75); font-size: 13px; margin-bottom: 14px; }
.protocol-tag { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; }
.equip-protocol { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
@media (max-width: 800px) { .pres-grid { grid-template-columns: 1fr; } .equip-protocol { grid-template-columns: 1fr; } }

.poster-section { background: var(--bg); padding: 80px 0; border-radius: var(--radius); }
.poster-header { text-align: center; margin-bottom: 40px; }
.poster-header .lbl { font-size: 11px; letter-spacing: 3px; color: var(--muted); text-transform: uppercase; margin-bottom: 10px; }
.poster-header h2 { font-family: "Noto Serif", Georgia, serif; font-size: 36px; }
.poster-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 50px; align-items: start; }
.poster-visual {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; aspect-ratio: 594/841; max-width: 300px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.poster-title-block {
  background: var(--navy); color: var(--white); padding: 12px; border-radius: 4px;
  font-size: 10px; margin-bottom: 8px;
}
.poster-body-bar { flex: 1; background: #eef1f7; border-radius: 4px; margin-bottom: 6px; }
.poster-caption { text-align: center; font-size: 12px; color: var(--red); margin-top: 16px; font-weight: 600; }
.poster-content-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.poster-content-item h4 { font-family: "Noto Serif", Georgia, serif; font-size: 18px; margin-bottom: 12px; }
.poster-content-item.dark { background: var(--navy); color: var(--white); border: none; }
.poster-content-item.dark p { color: rgba(255,255,255,.75); font-size: 13px; }
.abc-item { display: flex; gap: 12px; margin-bottom: 12px; font-size: 13px; }
.abc-letter {
  width: 28px; height: 28px; border-radius: 6px;
  background: #eef1f7; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0; font-size: 13px;
}
.abc-item strong { color: var(--navy); }
.abc-item span { color: var(--muted); }
@media (max-width: 800px) { .poster-grid { grid-template-columns: 1fr; } }

/* ==================== VENUE ==================== */
.venue-hero {
  background: linear-gradient(rgba(10,31,68,.75), rgba(10,31,68,.55)), url('https://images.unsplash.com/photo-1561736778-92e52a7769ef?w=1600') center/cover;
  padding: 100px 0 140px; color: var(--white);
}
.journey { padding: 80px 0; text-align: center; }
.journey .lbl { font-size: 11px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; font-weight: 600; }
.journey h2 { font-family: "Noto Serif", Georgia, serif; font-size: 38px; margin-bottom: 50px; }
.journey-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: left; max-width: 1100px; margin: 0 auto; }
.journey-item { }
.journey-icon {
  width: 44px; height: 44px; border-radius: 8px; background: var(--navy);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.journey-item h4 { font-family: "Noto Serif", Georgia, serif; font-size: 20px; margin-bottom: 12px; }
.journey-item p { color: var(--muted); font-size: 14px; }
@media (max-width: 900px) { .journey-grid { grid-template-columns: repeat(2, 1fr); } }

.venue-map { padding: 40px 0 80px; }
.map-embed { width: 100%; height: 500px; border-radius: var(--radius); border: 0; }

.venue-cta { padding: 80px 0; }
.venue-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.venue-cta-img {
  aspect-ratio: 4/5; background: url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?w=800') center/cover;
  border-radius: var(--radius);
}
.venue-cta h2 { font-family: "Noto Serif", Georgia, serif; font-size: 40px; margin-bottom: 20px; }
.venue-cta p { color: var(--muted); margin-bottom: 28px; }
@media (max-width: 800px) { .venue-cta-grid { grid-template-columns: 1fr; } }

/* ==================== HELP ==================== */
.help-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; }
.help-main h2 { font-family: "Noto Serif", Georgia, serif; font-size: 28px; margin-bottom: 20px; }
.help-main p { color: var(--muted); margin-bottom: 16px; font-size: 15px; }
.response-time {
  background: #eef4ff; border-radius: var(--radius); padding: 20px; margin: 24px 0;
  display: flex; gap: 14px;
}
.response-time h5 { font-size: 14px; margin-bottom: 6px; color: var(--navy); }
.response-time p { font-size: 13px; color: var(--muted); margin: 0; }
.help-banner {
  aspect-ratio: 3/1; background: linear-gradient(rgba(10,31,68,.7), rgba(10,31,68,.5)), url('https://images.unsplash.com/photo-1677442136019-21780ecad995?w=1600') center/cover;
  border-radius: var(--radius); margin-top: 24px;
}
.contact-box {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow);
}
.contact-box .lbl { font-size: 11px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; border-bottom: 2px solid var(--gold); padding-bottom: 10px; display: inline-block; margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-item:last-of-type { border-bottom: none; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item .lbl2 { font-size: 10px; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; margin-bottom: 4px; }
.contact-item a, .contact-item span { color: var(--navy); font-weight: 600; font-size: 15px; }

.common-inquiries { background: var(--bg); padding: 80px 0; text-align: center; }
.common-inquiries h2 { font-family: "Noto Serif", Georgia, serif; font-size: 36px; margin-bottom: 10px; }
.common-inquiries .sub { color: var(--muted); margin-bottom: 40px; }
.inquiry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.inquiry-card {
  background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border);
}
.inquiry-icon {
  width: 40px; height: 40px; border-radius: 8px; background: #eef1f7;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--navy);
}
.inquiry-card h4 { font-size: 18px; margin-bottom: 10px; }
.inquiry-card p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.inquiry-card a { color: var(--gold); font-weight: 700; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }
@media (max-width: 800px) { .help-grid, .inquiry-grid { grid-template-columns: 1fr; } }

/* ==================== UTILS ==================== */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* ==================== DROPDOWN NAV ==================== */
.nav-menu .has-dropdown { position: relative; }
.nav-menu .has-dropdown > a { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }
.nav-menu .has-dropdown > a::after {
  content: '▾';
  font-size: 11px;
  margin-left: 4px;
  transition: transform .2s;
  display: inline-block;
}
.nav-menu .has-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white);
  min-width: 220px;
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 10px 40px rgba(10,31,68,.12);
  border: 1px solid var(--border);
  opacity: 0; visibility: hidden;
  transition: all .2s ease;
  z-index: 1001;
}
.nav-menu .has-dropdown:hover .dropdown-menu,
.nav-menu .has-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  transition: all .15s;
}
.dropdown-menu a::after { display: none !important; }
.dropdown-menu a:hover { background: var(--bg); color: var(--navy); }
.dropdown-menu a.active { background: var(--navy); color: var(--white); }
.dropdown-menu a.active::after { display: none; }

/* Mobile dropdown */
@media (max-width: 900px) {
  .dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: none; background: var(--bg);
    padding: 4px; margin-top: 8px; min-width: auto;
  }
  .dropdown-menu::before { display: none; }
  .nav-menu .has-dropdown > a::after { margin-left: auto; }
}

/* ==================== PEER REVIEW PAGE ==================== */
.peer-hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 800px) { .peer-hero-grid { grid-template-columns: 1fr; } }

.review-process { padding: 80px 0; }
.review-process h2 { font-family: "Noto Serif", Georgia, serif; font-size: 32px; margin-bottom: 12px; border-left: 3px solid var(--gold); padding-left: 16px; }
.review-process > .container > p.lead { color: var(--muted); padding-left: 19px; margin-bottom: 40px; max-width: 700px; }
.process-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px;
}
.process-step {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 16px; text-align: center;
  transition: all .2s; position: relative;
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.process-step .step-badge {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; margin: 0 auto 16px;
}
.process-step.highlight .step-badge { background: var(--gold); color: var(--navy); }
.process-step h4 { font-size: 14px; margin-bottom: 12px; line-height: 1.3; min-height: 36px; }
.process-step p { font-size: 12px; color: var(--muted); line-height: 1.5; }
@media (max-width: 1100px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 700px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }

.committee-invite { padding: 60px 0; }
.invite-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.invite-grid.reverse > div:first-child { order: 2; }
.invite-image {
  aspect-ratio: 4/3; border-radius: var(--radius);
  background: linear-gradient(rgba(10,31,68,.4), rgba(10,31,68,.4)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=900') center/cover;
}
.invite-image.organizing {
  background: linear-gradient(rgba(245,201,122,.2), rgba(10,31,68,.3)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=900') center/cover;
}
.invite-content h2 { font-family: "Noto Serif", Georgia, serif; font-size: 38px; line-height: 1.15; margin-bottom: 20px; }
.invite-content h2 .gold { color: var(--gold); }
.invite-content p { color: var(--muted); margin-bottom: 16px; font-size: 15px; }
.invite-content .check-link { color: var(--navy); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 14px; }
.invite-content .check-link i { color: var(--gold); }
@media (max-width: 800px) {
  .invite-grid, .invite-grid.reverse { grid-template-columns: 1fr; gap: 30px; }
  .invite-grid.reverse > div:first-child { order: 0; }
}

.qualifications { padding: 80px 0; background: var(--bg); }
.qualifications h2 { font-family: "Noto Serif", Georgia, serif; font-size: 36px; text-align: center; margin-bottom: 8px; }
.qualifications h2::after {
  content: ''; display: block; width: 80px; height: 3px;
  background: var(--gold); margin: 14px auto 40px;
}
.qual-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.qual-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; border: 1px solid var(--border);
  display: flex; gap: 16px; align-items: flex-start;
}
.qual-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: #eef1f7; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.qual-card h4 { font-size: 15px; margin-bottom: 8px; }
.qual-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
@media (max-width: 900px) { .qual-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .qual-grid { grid-template-columns: 1fr; } }

.benefits-section { padding: 80px 0; }
.benefits-section h2 { font-family: "Noto Serif", Georgia, serif; font-size: 36px; text-align: center; margin-bottom: 40px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: all .2s;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-icon {
  width: 44px; height: 44px; border-radius: 8px;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.benefit-card h4 { font-family: "Noto Serif", Georgia, serif; font-size: 18px; margin-bottom: 10px; }
.benefit-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
@media (max-width: 900px) { .benefit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .benefit-grid { grid-template-columns: 1fr; } }

.contribute-cta {
  background: linear-gradient(135deg, #0a1f44, #142a55);
  color: var(--white); border-radius: var(--radius);
  padding: 60px 40px; text-align: center; margin: 60px auto;
  max-width: 1140px;
}
.contribute-cta h2 { font-family: "Noto Serif", Georgia, serif; font-size: 36px; margin-bottom: 16px; }
.contribute-cta p { color: rgba(255,255,255,.75); margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; }
.email-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--navy);
  padding: 14px 24px; border-radius: 100px;
  font-weight: 600; font-size: 14px;
  transition: all .2s;
}
.email-pill:hover { transform: translateY(-2px); background: var(--gold-light); }