/* ============================================================
   Wheeler High School FBLA — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:        #002D62;
  --navy-deep:   #001a3a;
  --navy-mid:    #003580;
  --gold:        #F2A900;
  --gold-light:  #FFC72C;
  --bg:          #F4F6F9;
  --white:       #FFFFFF;
  --text-dark:   #111827;
  --text-mid:    #374151;
  --text-light:  #6B7280;
  --shadow-sm:   0 2px 8px rgba(0,45,98,.10);
  --shadow-md:   0 6px 24px rgba(0,45,98,.15);
  --shadow-lg:   0 16px 48px rgba(0,45,98,.22);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s ease-in-out;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; margin: 0; padding: 0; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-size: 0.975rem; line-height: 1.75; }

.section-title {
  text-align: center;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.section-title span { color: var(--gold); }

.title-underline {
  display: block;
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0.5rem auto 2.5rem;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,45,98,.18);
  height: 60px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.navbar-brand img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 50%;
}

.navbar-brand .brand-text {
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.navbar-brand .brand-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.nav-links a:hover { color: var(--navy); background: rgba(242,169,0,.08); }
.nav-links a:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: translateX(-50%) scaleX(1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 68px; left: 0; right: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(242,169,0,.1); color: var(--navy); }
.mobile-menu a.active { color: var(--gold); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(242,169,0,.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242,169,0,.45);
  filter: brightness(1.05);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 4rem;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(242,169,0,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(0,53,128,.4) 0%, transparent 60%);
  pointer-events: none;
}

/* Decorative geometric shapes */
.hero::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 360px; height: 360px;
  border: 2px solid rgba(242,169,0,.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(242,169,0,.15);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(242,169,0,.3);
  margin-bottom: 1.2rem;
}

.hero h1 { color: var(--white); margin-bottom: 0.6rem; }

.hero-accent-line {
  width: 80px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0.8rem 0 1.5rem;
}

.hero p {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  max-width: 680px;
  line-height: 1.8;
}

/* ── Section Wrapper ────────────────────────────────────────── */
.section { padding: 4.5rem 2rem; }
.container { max-width: 1140px; margin: 0 auto; }

/* Hero and main page areas grow to fill available space */
.hero, #aiApp {
  flex: 1 0 auto;
}

/* ── Calendar ───────────────────────────────────────────────── */
.calendar-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
}

.calendar-header {
  background: var(--navy);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.calendar-header h3 { font-size: 1.05rem; font-weight: 700; }

.cal-nav-btn {
  background: rgba(255,255,255,.12);
  border: none;
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 8px;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cal-nav-btn:hover { background: rgba(242,169,0,.25); color: var(--gold-light); }

.calendar-grid { padding: 1rem 1rem 1.25rem; }

.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.cal-days-header span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.3rem 0;
}

.cal-cells {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-cell {
  min-height: 78px;
  border-radius: 8px;
  padding: 6px;
  position: relative;
  background: #fafbfc;
  border: 1px solid #eef0f3;
  transition: var(--transition);
}

.cal-cell:hover { background: rgba(242,169,0,.05); border-color: var(--gold); }

.cal-cell.today { background: rgba(0,45,98,.04); border-color: rgba(0,45,98,.2); }
.cal-cell.today .cal-num { color: var(--navy); font-weight: 800; }

.cal-cell.other-month .cal-num { color: #c5cad4; }
.cal-cell.other-month { background: #f8f9fa; }

.cal-num {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
}

.cal-event {
  margin-top: 4px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  line-height: 1.3;
  cursor: pointer;
  transition: var(--transition);
}
.cal-event:hover { filter: brightness(1.08); transform: scale(1.02); }

/* ── Leadership Grid ────────────────────────────────────────── */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
}

.profile-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e8edf3;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  background: #dde2ea;
}

.profile-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(242,169,0,0);
  transition: var(--transition);
}

.profile-card:hover .profile-avatar {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(242,169,0,.25), var(--shadow-md);
  transform: scale(1.06);
}

.profile-card:hover .profile-avatar::after {
  background: rgba(242,169,0,.08);
}

.profile-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.profile-card:hover .profile-avatar img { transform: scale(1.06); }

.profile-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.2;
}
.profile-role {
  font-size: 0.73rem;
  color: var(--gold);
  font-weight: 600;
  text-align: center;
}

/* ── Modal ──────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: scale(0.88) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
}

.modal-backdrop.open .modal-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-header {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  background: rgba(255,255,255,.12);
  border: none;
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 8px;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(242,169,0,.3); color: var(--gold-light); }

.modal-avatar {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px rgba(242,169,0,.2);
  overflow: hidden;
  background: #dde2ea;
}
.modal-avatar img { width: 100%; height: 100%; object-fit: cover; }

.modal-name { color: var(--white); font-size: 1.2rem; font-weight: 800; }
.modal-role { color: var(--gold-light); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; }

.modal-body { padding: 1.5rem; }

.modal-bio-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.modal-bio { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 1.25rem; }

.modal-duties {
  background: var(--bg);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--gold);
}
.modal-duties h4 { font-size: 0.8rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.modal-duties li {
  font-size: 0.83rem;
  color: var(--text-mid);
  padding: 0.2rem 0;
  padding-left: 1rem;
  position: relative;
}
.modal-duties li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 0;
  width: 100%;
  margin: 0;
  flex-shrink: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  max-width: 1140px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: 0.65rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-col p { font-size: 0.85rem; line-height: 1.75; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,.65); transition: var(--transition); }
.footer-col a:hover { color: var(--gold-light); }

.footer-links { display: flex; flex-direction: column; gap: 0.45rem; }

.footer-social { display: flex; gap: 0.75rem; margin-top: 0.25rem; }

.social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(242,169,0,.35);
}

.footer-bottom {
  width: 100%;
  padding: 1.5rem 2rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,.4);
  margin-top: 0;
}

/* ── Resource Cards ─────────────────────────────────────────── */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.resource-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 1.5rem 1.5rem;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.resource-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-left-color: var(--gold-light);
}

.resource-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(242,169,0,.15), rgba(255,199,44,.2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

.resource-card h3 { font-size: 1rem; color: var(--navy); }
.resource-card p { font-size: 0.87rem; color: var(--text-mid); flex: 1; }

/* ── Navy Content Blocks ────────────────────────────────────── */
.navy-block {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.navy-block::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border: 1px solid rgba(242,169,0,.08);
  border-radius: 50%;
  pointer-events: none;
}

.navy-block h2 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.3rem; }

.gold-bullet-list { display: flex; flex-direction: column; gap: 0.75rem; }

.gold-bullet-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.gold-bullet-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(242,169,0,.5);
}

.gold-bullet-item p { color: rgba(255,255,255,.85); font-size: 0.9rem; }

/* ── Dress Code Layout ──────────────────────────────────────── */
.dress-code-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.dress-code-card {
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid rgba(255,255,255,.1);
}

.dress-code-card h4 {
  color: var(--gold-light);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex; align-items: center; gap: 0.5rem;
}

.dress-code-card ul { display: flex; flex-direction: column; gap: 0.45rem; }
.dress-code-card li {
  color: rgba(255,255,255,.8);
  font-size: 0.85rem;
  padding-left: 1rem;
  position: relative;
}
.dress-code-card li::before {
  content: '·';
  position: absolute; left: 0;
  color: var(--gold);
  font-weight: 900;
}

/* ── AI Page ────────────────────────────────────────────────── */
.ai-page-hero {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, #004080 100%);
  position: relative;
  overflow: hidden;
  padding: 3rem 2rem;
}

.ai-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242,169,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,169,0,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.ai-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.ai-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(242,169,0,.12), transparent 70%);
  top: -100px; right: -100px;
}
.ai-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,64,128,.5), transparent 70%);
  bottom: -80px; left: -80px;
}

.ai-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(242,169,0,.12);
  border: 1px solid rgba(242,169,0,.25);
  color: var(--gold-light);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.ai-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.ai-title { color: var(--white); margin-bottom: 1rem; }
.ai-title span { color: var(--gold); }

.ai-subtitle {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.ai-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
  text-align: left;
}

.ai-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.ai-icon-ring {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(242,169,0,.3);
  background: rgba(242,169,0,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  animation: float-ring 4s ease-in-out infinite;
}

@keyframes float-ring {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.ai-coming-soon { color: rgba(255,255,255,.9); font-size: 1.1rem; font-weight: 700; }
.ai-coming-desc { color: rgba(255,255,255,.5); font-size: 0.88rem; line-height: 1.7; }

.ai-features { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-top: 0.5rem; }

.ai-feature-tag {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
}

/* ── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 3.5rem 1.25rem 3rem; }
  .section { padding: 3rem 1.25rem; }

  .leadership-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 1rem; }
  .profile-avatar { width: 88px; height: 88px; }

  .dress-code-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .navy-block { padding: 1.75rem 1.25rem; }

  .modal-box { margin: 0 0.5rem; }
}

@media (max-width: 480px) {
  .resource-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Page Load Animations ───────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.anim-fade-up   { animation: fadeInUp 0.7s ease both; }
.anim-fade-in   { animation: fadeIn 0.6s ease both; }
.anim-slide-left{ animation: slideInLeft 0.7s ease both; }
.anim-scale-in  { animation: scaleIn 0.5s ease both; }

.delay-100 { animation-delay: .1s; }
.delay-200 { animation-delay: .2s; }
.delay-300 { animation-delay: .3s; }
.delay-400 { animation-delay: .4s; }
.delay-500 { animation-delay: .5s; }
.delay-600 { animation-delay: .6s; }