/* ============================================================
   Plano ISD Technology Services v2 — Design System
   Colors: #9D2235 (Red), #0057B8 (Blue), #CB9700 (Yellow)
   Fonts: Montserrat (headings), Lato (body)
   ============================================================ */

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

:root {
  --red: #9D2235;
  --red-dark: #7a1a28;
  --blue: #0057B8;
  --blue-dark: #00408a;
  --blue-light: #0068db;
  --yellow: #CB9700;
  --yellow-light: #e0aa00;
  --gray-neutral: #58595B;
  --gray-light: #DCDCDC;
  --gray-50: #f7f7f8;
  --gray-100: #efefef;
  --white: #ffffff;
  --black: #111111;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
  --space-1: 0.25rem; --space-2: 0.5rem; --space-3: 0.75rem;
  --space-4: 1rem; --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem; --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem; --space-20: 5rem; --space-24: 6rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 16px; --radius-xl: 24px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 150ms; --dur-base: 250ms; --dur-slow: 400ms;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1200px, 100% - 3rem); margin-inline: auto; }
.container--narrow { width: min(860px, 100% - 3rem); margin-inline: auto; }

/* ── Top Bar ── */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  height: 64px;
  transition: box-shadow var(--dur-base) var(--ease);
}
.top-bar.scrolled { box-shadow: var(--shadow-md); }
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.top-bar-logo { display: flex; align-items: center; gap: var(--space-3); }
.top-bar-logo img { height: 38px; width: auto; }
.top-bar-logo .division-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.top-bar-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray-neutral);
  transition: color var(--dur-fast);
}
.top-bar-link:hover { color: var(--blue); }
.top-bar-link svg { width: 14px; height: 14px; }
.schools-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--blue);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
}
.schools-btn svg { width: 14px; height: 14px; }

/* Hamburger / Menu btn */
.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: none;
  border: 2px solid var(--gray-light);
  border-radius: 100px;
  padding: 8px 18px 8px 14px;
  cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.menu-btn:hover { border-color: var(--blue); background: rgba(0,87,184,0.04); }
.menu-hamburger { display: flex; flex-direction: column; gap: 4px; }
.menu-hamburger span { display: block; width: 18px; height: 2px; background: var(--black); transition: all var(--dur-base) var(--ease); }

/* ── Side Panel ── */
.side-panel-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease);
}
.side-panel-overlay.open { opacity: 1; pointer-events: all; }
.side-panel {
  position: fixed;
  top: 0; right: 0;
  width: 360px;
  max-width: 90vw;
  height: 100vh;
  background: var(--white);
  z-index: 301;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 40px rgba(0,0,0,0.15);
}
.side-panel.open { transform: translateX(0); }
.side-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--gray-light);
}
.side-panel-header h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}
.side-panel-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-light);
  border-radius: 50%;
  cursor: pointer;
  color: var(--gray-neutral);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.side-panel-close:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.side-panel-close svg { width: 16px; height: 16px; }
.side-panel-nav {
  flex: 1;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.side-panel-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.side-panel-link:hover { background: rgba(0,87,184,0.06); color: var(--blue); }
.side-panel-link svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }
.side-panel-footer {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--gray-light);
  font-size: 12px;
  color: var(--gray-neutral);
}
.side-panel-footer a { color: var(--blue); font-weight: 700; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #001f45 0%, #003580 40%, #0057B8 100%);
  margin-top: 64px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(203,151,0,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(157,34,53,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding: var(--space-24) 0; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--space-4);
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--yellow); }
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  max-width: 680px;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: var(--space-8);
}
.hero-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.hero-stats {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  z-index: 2;
}
.hero-stat-card {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  min-width: 200px;
}
.hero-stat-card .stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat-card .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  transition: all var(--dur-base) var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-primary:hover { background: var(--yellow-light); border-color: var(--yellow-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.10); }
.btn-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); }
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }

/* ── Quick Access Strip ── */
.quick-access {
  background: var(--white);
  padding: var(--space-10) 0;
  border-bottom: 1px solid var(--gray-light);
}
.quick-access-grid {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}
.quick-access-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  text-align: center;
  min-width: 100px;
  transition: transform var(--dur-fast);
}
.quick-access-item:hover { transform: translateY(-3px); }
.qa-icon {
  width: 56px; height: 56px;
  background: rgba(0,87,184,0.08);
  border: 2px solid rgba(0,87,184,0.15);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.quick-access-item:hover .qa-icon { background: var(--blue); border-color: var(--blue); color: var(--white); }
.qa-icon svg { width: 24px; height: 24px; }
.qa-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gray-neutral);
  max-width: 90px;
  line-height: 1.3;
}

/* ── Section ── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--space-3);
}
.section-tag::before { content: ''; display: inline-block; width: 16px; height: 2px; background: var(--blue); }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.02em;
}
.section-title em { font-style: normal; color: var(--blue); }
.section-sub {
  font-size: 1.0625rem;
  color: var(--gray-neutral);
  line-height: 1.7;
  margin-top: var(--space-4);
  max-width: 600px;
}
.section-lg { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-md { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section-bg-light { background: var(--gray-50); }

/* ── News Grid ── */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-6);
}
.news-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.news-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  display: flex; align-items: center; justify-content: center;
}
.news-card-body { padding: var(--space-6); }
.news-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0,87,184,0.08);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: var(--space-3);
}
.news-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: var(--space-2);
}
.news-card p { font-size: 0.9375rem; color: var(--gray-neutral); line-height: 1.6; }
.news-date {
  font-size: 12px;
  color: var(--gray-neutral);
  margin-top: var(--space-3);
  font-family: var(--font-heading);
  font-weight: 600;
}
.news-sidebar { display: flex; flex-direction: column; gap: var(--space-4); }
.news-item-small {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  border-left: 3px solid var(--blue);
  transition: box-shadow var(--dur-fast), transform var(--dur-fast);
}
.news-item-small:hover { box-shadow: var(--shadow-md); transform: translateX(2px); }
.news-item-small h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--black);
  margin-bottom: var(--space-1);
}
.news-item-small span {
  font-size: 11px;
  color: var(--gray-neutral);
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ── Calendar Module ── */
.calendar-section {
  padding: var(--space-12) 0 var(--space-16);
}
.calendar-header {
  text-align: center;
  margin-bottom: var(--space-8);
}
.calendar-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--blue);
}
.calendar-header p {
  font-size: 0.9375rem;
  color: var(--gray-neutral);
  margin-top: var(--space-2);
}
.calendar-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-6);
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.calendar-dates {
  display: grid;
  grid-template-columns: repeat(3, 70px);
  gap: var(--space-2);
}
.cal-date {
  width: 70px;
  height: 70px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--dur-fast);
  background: var(--white);
}
.cal-date:hover, .cal-date.active { border-color: var(--blue); background: var(--blue); color: var(--white); }
.cal-date.active .cal-day, .cal-date:hover .cal-day { color: var(--white); }
.cal-date.active .cal-month, .cal-date:hover .cal-month { color: rgba(255,255,255,0.75); }
.cal-day {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.cal-month {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray-neutral);
  letter-spacing: 0.06em;
}
.calendar-events { display: flex; flex-direction: column; gap: var(--space-3); }
.calendar-event {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--gray-50);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--blue);
}
.calendar-event-time {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-neutral);
  white-space: nowrap;
  min-width: 80px;
}
.calendar-event h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}
.calendar-event p { font-size: 0.8125rem; color: var(--gray-neutral); }
.cal-view-full {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--blue);
}
.cal-view-full svg { width: 20px; height: 20px; }
.cal-view-full span {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── CTA Band ── */
.cta-band {
  position: relative;
  padding: var(--space-24) 0;
  text-align: center;
  overflow: hidden;
  /* Datacenter / structured cabling background */
  background: linear-gradient(135deg, rgba(0,20,50,0.85), rgba(0,60,130,0.80)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400"><rect fill="%23001430" width="400" height="400"/><g stroke="%23003880" stroke-width="0.5" fill="none"><line x1="0" y1="50" x2="400" y2="50"/><line x1="0" y1="100" x2="400" y2="100"/><line x1="0" y1="150" x2="400" y2="150"/><line x1="0" y1="200" x2="400" y2="200"/><line x1="0" y1="250" x2="400" y2="250"/><line x1="0" y1="300" x2="400" y2="300"/><line x1="0" y1="350" x2="400" y2="350"/><line x1="50" y1="0" x2="50" y2="400"/><line x1="100" y1="0" x2="100" y2="400"/><line x1="150" y1="0" x2="150" y2="400"/><line x1="200" y1="0" x2="200" y2="400"/><line x1="250" y1="0" x2="250" y2="400"/><line x1="300" y1="0" x2="300" y2="400"/><line x1="350" y1="0" x2="350" y2="400"/></g><g fill="%230068db" opacity="0.3"><circle cx="50" cy="100" r="3"/><circle cx="150" cy="200" r="3"/><circle cx="250" cy="50" r="3"/><circle cx="350" cy="300" r="3"/><circle cx="100" cy="350" r="3"/><circle cx="300" cy="150" r="3"/><circle cx="200" cy="250" r="3"/></g></svg>');
  background-size: cover;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 30% 50%, rgba(0,87,184,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 70% 60%, rgba(203,151,0,0.15) 0%, transparent 50%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-logo {
  width: 64px; height: 64px;
  margin: 0 auto var(--space-4);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
}
.cta-logo svg { width: 32px; height: 32px; color: var(--yellow); }
.cta-band h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: var(--space-3);
}
.cta-band p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto var(--space-8);
}
.cta-actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }

/* ── Footer (matching Finalsite style) ── */
.site-footer {
  background: var(--white);
  padding: var(--space-12) 0 var(--space-6);
  border-top: 1px solid var(--gray-light);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}
.footer-logo img { height: 56px; width: auto; }
.footer-contact {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.fc-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-icon.red { background: var(--red); color: var(--white); }
.fc-icon svg { width: 16px; height: 16px; }
.fc-text {
  font-size: 0.875rem;
  color: var(--gray-neutral);
  line-height: 1.35;
}
.footer-links {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-neutral);
  transition: color var(--dur-fast);
}
.footer-links a:hover { color: var(--blue); }
.footer-copyright {
  font-size: 11px;
  color: var(--gray-neutral);
  text-align: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--gray-light);
  width: 100%;
}

/* Blue wave divider */
.wave-divider {
  position: relative;
  height: 60px;
  overflow: hidden;
}
.wave-divider svg { position: absolute; bottom: 0; width: 100%; height: 100%; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #001f45 0%, #003580 50%, #0057B8 100%);
  padding: var(--space-16) 0 var(--space-12);
  position: relative;
  overflow: hidden;
  margin-top: 64px;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--space-4);
}
.page-hero p { font-size: 1.0625rem; color: rgba(255,255,255,0.80); line-height: 1.7; max-width: 560px; }
.breadcrumb {
  display: flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-4);
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--white); }

/* ── Department cards ── */
.dept-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-6) var(--space-8);
  transition: box-shadow var(--dur-base) var(--ease), transform var(--dur-base) var(--ease), border-color var(--dur-base);
  position: relative;
  overflow: hidden;
}
.dept-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}
.dept-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.dept-card:hover::before { transform: scaleX(1); }
.dept-icon {
  width: 48px; height: 48px;
  background: rgba(0,87,184,0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--blue);
}
.dept-icon svg { width: 24px; height: 24px; }
.dept-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: var(--space-2); }
.dept-card p { font-size: 0.9375rem; color: var(--gray-neutral); line-height: 1.6; }

/* ── Value cards ── */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.value-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  border: 1px solid var(--gray-light);
  text-align: center;
}
.value-icon {
  width: 44px; height: 44px;
  background: rgba(0,87,184,0.08);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin: 0 auto var(--space-3);
}
.value-card h4 { font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 700; color: var(--black); margin-bottom: var(--space-1); }
.value-card p { font-size: 0.8125rem; color: var(--gray-neutral); line-height: 1.5; }

/* ── Leader cards ── */
.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.leader-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--dur-base), transform var(--dur-base);
}
.leader-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.leader-avatar {
  height: 100px;
  display: flex; align-items: center; justify-content: center;
}
.leader-avatar svg { width: 48px; height: 48px; color: rgba(255,255,255,0.35); }
.leader-body { padding: var(--space-5); }
.leader-body h4 { font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.leader-title { font-family: var(--font-heading); font-size: 11px; font-weight: 600; color: var(--blue); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: var(--space-1); }
.leader-role { font-size: 0.8125rem; color: var(--gray-neutral); }

/* ── Stats row ── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-4); }
.stat-box {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.stat-box .num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: var(--space-2); }
.stat-box .label { font-family: var(--font-heading); font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-neutral); }

/* ── Simon mascot ── */
.simon-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-8);
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0,87,184,0.04);
  border: 2px solid rgba(0,87,184,0.12);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}
.simon-img { width: 200px; flex-shrink: 0; }
.simon-img img { width: 100%; border-radius: var(--radius-lg); }
.simon-text h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: var(--space-3);
}
.simon-text blockquote {
  font-size: 1.0625rem;
  color: var(--gray-neutral);
  line-height: 1.7;
  border-left: 3px solid var(--yellow);
  padding-left: var(--space-4);
  margin-bottom: var(--space-4);
}
.simon-text .simon-cta {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--red);
}

/* ── Tip cards ── */
.tip-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-6); }
.tip-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--dur-base), transform var(--dur-base);
}
.tip-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.tip-card-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; }
.tip-card-accent.red { background: var(--red); }
.tip-card-accent.blue { background: var(--blue); }
.tip-card-accent.yellow { background: var(--yellow); }
.tip-num { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; color: var(--gray-light); line-height: 1; margin-bottom: var(--space-2); }
.tip-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: var(--space-2); }
.tip-card p { font-size: 0.9375rem; color: var(--gray-neutral); line-height: 1.65; }

/* ── Resource links (cyber) ── */
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.resource-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.resource-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.resource-card h3 svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }
.resource-card ul { display: flex; flex-direction: column; gap: var(--space-2); }
.resource-card li a {
  font-size: 0.9375rem;
  color: var(--blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--dur-fast);
}
.resource-card li a:hover { color: var(--blue-dark); }
.resource-card li a::before { content: '→'; font-size: 12px; color: var(--blue); }

/* ── Bond cards ── */
.bond-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
.bond-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.bond-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.bond-status.active { color: #1a7a3c; }
.bond-status.active::before { content: ''; display: inline-block; width: 7px; height: 7px; background: #2da85a; border-radius: 50%; }
.bond-status.planned { color: var(--blue); }
.bond-status.planned::before { content: ''; display: inline-block; width: 7px; height: 7px; background: var(--blue); border-radius: 50%; }
.bond-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: var(--space-2); }
.bond-card p { font-size: 0.9375rem; color: var(--gray-neutral); line-height: 1.6; }
.bond-progress { margin-top: var(--space-4); }
.bond-progress-label {
  display: flex; justify-content: space-between;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700; color: var(--gray-neutral);
  margin-bottom: var(--space-2);
}
.bond-bar { height: 6px; background: var(--gray-light); border-radius: 100px; overflow: hidden; }
.bond-bar-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--yellow)); border-radius: 100px; transition: width 1s var(--ease); }

/* Dept detail sections */
.dept-section { padding: var(--space-16) 0; border-bottom: 1px solid var(--gray-light); }
.dept-section:last-of-type { border-bottom: none; }
.dept-detail { display: grid; grid-template-columns: 1fr 2fr; gap: var(--space-12); align-items: start; }
.dept-sidebar { position: sticky; top: 90px; }
.dept-sidebar-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
}
.dept-sidebar-icon.blue-bg { background: rgba(0,87,184,0.08); color: var(--blue); }
.dept-sidebar-icon.red-bg { background: rgba(157,34,53,0.08); color: var(--red); }
.dept-sidebar-icon.yellow-bg { background: rgba(203,151,0,0.10); color: var(--yellow); }
.dept-sidebar h2 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--black); line-height: 1.2; margin-bottom: var(--space-3); }
.dept-contact {
  margin-top: var(--space-5);
  background: var(--gray-50);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}
.dept-contact h5 { font-family: var(--font-heading); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-neutral); margin-bottom: var(--space-2); }
.dept-contact a { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700; color: var(--blue); display: block; }
.dept-main p { font-size: 1.0625rem; color: var(--gray-neutral); line-height: 1.75; margin-bottom: var(--space-4); }
.dept-main h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: var(--space-3); margin-top: var(--space-6); }
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.service-item {
  display: flex; align-items: flex-start; gap: var(--space-2); font-size: 0.9375rem; color: var(--gray-neutral);
}
.service-item::before { content: ''; flex-shrink: 0; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; margin-top: 8px; }

/* Jump nav */
.jump-nav {
  background: var(--gray-50);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  margin-bottom: var(--space-12);
}
.jump-nav-label { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-neutral); margin-bottom: var(--space-3); }
.jump-nav ul { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.jump-nav a {
  font-family: var(--font-heading); font-size: 13px; font-weight: 600;
  color: var(--blue); background: rgba(0,87,184,0.07);
  border: 1px solid rgba(0,87,184,0.15); border-radius: 100px;
  padding: 5px 14px; transition: all var(--dur-fast);
}
.jump-nav a:hover { background: var(--blue); color: var(--white); }

/* Phishing cards */
.phishing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.phishing-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-lg); padding: var(--space-6); }
.phishing-card.warning { background: rgba(157,34,53,0.03); border-color: rgba(157,34,53,0.2); }
.phishing-card.safe { background: rgba(0,87,184,0.03); border-color: rgba(0,87,184,0.2); }
.phishing-card h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: var(--space-4); display: flex; align-items: center; gap: var(--space-2); }
.phishing-card.warning h3 { color: var(--red); }
.phishing-card.safe h3 { color: var(--blue); }
.phishing-card ul { display: flex; flex-direction: column; gap: var(--space-2); }
.phishing-card li { font-size: 0.9375rem; color: var(--gray-neutral); padding-left: var(--space-4); position: relative; }
.phishing-card.warning li::before { content: '✕'; position: absolute; left: 0; color: var(--red); font-size: 12px; font-weight: 700; }
.phishing-card.safe li::before { content: '✓'; position: absolute; left: 0; color: var(--blue); font-size: 12px; font-weight: 700; }

/* Report box */
.report-box {
  background: linear-gradient(135deg, #001f45, #0057B8);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.report-box::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.report-box > * { position: relative; z-index: 1; }
.report-box h2 { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 800; color: var(--white); margin-bottom: var(--space-3); }
.report-box p { color: rgba(255,255,255,0.78); font-size: 1.0625rem; margin-bottom: var(--space-6); }

/* Alert banner */
.alert-banner { background: rgba(157,34,53,0.06); border: 1px solid rgba(157,34,53,0.2); border-radius: var(--radius-lg); padding: var(--space-4) var(--space-6); display: flex; align-items: flex-start; gap: var(--space-4); margin-bottom: var(--space-6); }
.alert-icon { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.alert-icon svg { width: 20px; height: 20px; }
.alert-text h4 { font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 700; color: var(--red); margin-bottom: var(--space-1); }
.alert-text p { font-size: 0.9375rem; color: var(--gray-neutral); }

/* ── Mission block ── */
.mission-statement {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}
.mission-statement blockquote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: var(--space-4);
}
.mission-statement cite { font-size: 0.875rem; font-style: normal; color: var(--gray-neutral); font-family: var(--font-heading); font-weight: 600; }

/* Bond full card (bond page) */
.bond-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); }
.bond-full-card {
  background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-xl); overflow: hidden;
  transition: box-shadow var(--dur-base);
}
.bond-full-card:hover { box-shadow: var(--shadow-lg); }
.bond-card-header { padding: var(--space-6) var(--space-6) var(--space-4); border-bottom: 1px solid var(--gray-light); display: flex; align-items: flex-start; gap: var(--space-4); }
.bond-card-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bond-card-icon.blue { background: rgba(0,87,184,0.08); color: var(--blue); }
.bond-card-icon.red { background: rgba(157,34,53,0.08); color: var(--red); }
.bond-card-icon.yellow { background: rgba(203,151,0,0.10); color: var(--yellow); }
.bond-card-icon svg { width: 24px; height: 24px; }
.bond-card-title { flex: 1; }
.bond-card-title h3 { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.bond-card-body { padding: var(--space-5) var(--space-6) var(--space-6); }
.bond-card-body p { font-size: 0.9375rem; color: var(--gray-neutral); line-height: 1.65; margin-bottom: var(--space-4); }
.bond-meta { display: flex; gap: var(--space-4); margin-bottom: var(--space-4); flex-wrap: wrap; }
.bond-meta-item { display: flex; flex-direction: column; gap: 2px; }
.bond-meta-label { font-family: var(--font-heading); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-neutral); }
.bond-meta-value { font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 700; color: var(--black); }

/* Timeline */
.timeline-strip { background: var(--gray-50); border: 1px solid var(--gray-light); border-radius: var(--radius-lg); padding: var(--space-8) var(--space-10); }
.timeline { position: relative; padding-left: var(--space-8); }
.timeline::before { content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: var(--gray-light); }
.timeline-item { position: relative; margin-bottom: var(--space-6); }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: calc(-1 * var(--space-8) + 4px); top: 6px; width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--white); }
.timeline-dot.done { background: var(--blue); }
.timeline-dot.active { background: var(--yellow); box-shadow: 0 0 0 4px rgba(203,151,0,0.2); }
.timeline-dot.future { background: var(--gray-light); }
.timeline-date { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-neutral); margin-bottom: 4px; }
.timeline-title { font-family: var(--font-heading); font-size: 0.9375rem; font-weight: 700; color: var(--black); }
.timeline-desc { font-size: 0.875rem; color: var(--gray-neutral); margin-top: 4px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-stats { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .bond-grid, .bond-full-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .leadership-grid { grid-template-columns: 1fr 1fr; }
  .dept-detail { grid-template-columns: 1fr; gap: var(--space-6); }
  .dept-sidebar { position: static; }
  .service-list { grid-template-columns: 1fr; }
  .calendar-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }
  .phishing-grid { grid-template-columns: 1fr; }
  .simon-section { grid-template-columns: 1fr; text-align: center; }
  .simon-img { width: 160px; margin: 0 auto; }
  .simon-text blockquote { text-align: left; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .top-bar-link.hide-mobile { display: none; }
}
@media (max-width: 600px) {
  .value-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .quick-access-grid { gap: var(--space-4); }
  .cta-band { padding: var(--space-16) 0; }
  .report-box { padding: var(--space-8) var(--space-6); }
}

/* Animation */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.fade-in.visible { opacity: 1; transform: none; }
