/* ============================================================
   Creative Cats FTC 27606 — Main Stylesheet
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: #111113;
  color: #c8c8cc;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: rgba(80, 160, 255, 0.25);
  color: #fff;
}

/* --- Grain Overlay --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' fill='%23fff' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(200, 200, 200, 0.15);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 200, 200, 0.25);
}

/* ============================================================
   Header / Nav
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17, 17, 19, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease;
}

header.scroll-hidden {
  transform: translateY(-100%);
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: #50a0ff;
  letter-spacing: -0.02em;
  cursor: default;
}

nav {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

nav a {
  color: #888;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

nav a:hover,
nav a.active {
  color: #e8e8e8;
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #888;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(17, 17, 19, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 0;
  }
  nav.open { display: flex; }
  nav a { padding: 0.75rem 0.5rem; }
}

/* ============================================================
   Main / Sections
   ============================================================ */
main {
  position: relative;
  z-index: 1;
}

section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 6rem 2rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(80, 160, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #e8e8e8;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeInUp 0.8s 0.2s forwards;
}

.hero h1 em {
  font-style: normal;
  color: #50a0ff;
}

.hero h2 {
  font-size: 1.25rem;
  font-weight: 400;
  color: #666;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 0.8s 0.4s forwards;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #888;
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.8s 0.6s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.8s 0.8s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Tilt canvas */
#hero-tilt {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  margin-top: auto;
}

.btn-primary {
  background: #50a0ff;
  color: #fff;
}
.btn-primary:hover {
  background: #6bb3ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(80, 160, 255, 0.2);
  text-decoration: none;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #888;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-ghost:hover {
  color: #e8e8e8;
  border-color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
}

/* ============================================================
   Stats Bar
   ============================================================ */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
}

.stat-item {
  text-align: center;
  min-width: 140px;
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: scale(1.05);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #50a0ff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-number .plus {
  font-size: 0.5em;
  opacity: 0.6;
}

.stat-label {
  font-size: 0.8rem;
  color: #666;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

/* ============================================================
   Section Headers
   ============================================================ */
.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #e8e8e8;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-header p {
  color: #666;
  font-size: 1.05rem;
  margin-top: 0.75rem;
  max-width: 520px;
}

.section-header.center {
  text-align: center;
}
.section-header.center p {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Cards
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
  border-color: rgba(80, 160, 255, 0.2);
  transform: translateY(-3px);
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e8e8e8;
  margin-bottom: 0.5rem;
}

.card p {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.6;
}

.card .card-accent {
  display: block;
  width: 32px;
  height: 3px;
  background: #50a0ff;
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* ============================================================
   Achievement Cards
   ============================================================ */
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}

.achievement-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #50a0ff;
  opacity: 0;
  transition: opacity 0.3s;
}

.achievement-card:hover {
  border-color: rgba(80, 160, 255, 0.2);
  transform: translateY(-3px);
}

.achievement-card:hover::before {
  opacity: 1;
}

.achievement-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #e8e8e8;
  margin-bottom: 0.25rem;
}

.achievement-card .subtitle {
  font-size: 0.85rem;
  color: #50a0ff;
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.achievement-card p {
  color: #888;
  font-size: 0.95rem;
}

/* ============================================================
   About Section
   ============================================================ */
.about-text {
  max-width: 680px;
}

.about-text p {
  color: #aaa;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.about-text strong {
  color: #50a0ff;
  font-weight: 600;
}

.about-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #e8e8e8;
  margin: 2rem 0 0.75rem;
}

.info-box {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.75rem;
  margin-top: 2rem;
}

.info-box p {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.info-box strong {
  color: #50a0ff;
}

/* ============================================================
   Team Members & School Badges
   ============================================================ */
.member-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.member-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
  display: grid;
}

.member-card:hover {
  border-color: rgba(80, 160, 255, 0.2);
  transform: translateY(-3px);
}

.member-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  background: rgba(80, 160, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #50a0ff;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.member-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e8e8e8;
  margin-bottom: 0.25rem;
}

.school-badge {
  display: inline-block;
  font-size: 0.75rem;
  background: rgba(80, 160, 255, 0.15);
  color: #50a0ff;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.member-role {
  font-size: 0.8rem;
  color: #50a0ff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.member-bio {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.5;
}

.filter-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #888;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.filter-btn:hover {
  border-color: rgba(80, 160, 255, 0.3);
}

.filter-btn.active {
  background: #50a0ff;
  color: #fff;
  border-color: #50a0ff;
}

/* Season divider */
.season-divider {
  margin: 4rem 0 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================================
   Robot Page
   ============================================================ */
.robot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.robot-gallery img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s, border-color 0.3s;
  cursor: pointer;
}

.robot-gallery img:hover {
  transform: scale(1.02);
  border-color: rgba(80, 160, 255, 0.25);
}

/* ============================================================
   Image Modal
   ============================================================ */
.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.image-modal.open {
  display: flex;
  opacity: 1;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 800px;
}

#modalImage {
  width: 100%;
  border-radius: 8px;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s;
}

.modal-close:hover {
  transform: scale(1.2);
}

.modal-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.modal-prev, .modal-next {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-prev:hover, .modal-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   Scroll-to-Top Button
   ============================================================ */
.scroll-top-btn {
  position: fixed;
  bottom: -60px;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #50a0ff;
  color: #fff;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: bottom 0.3s, box-shadow 0.3s;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top-btn.visible {
  bottom: 2rem;
}

.scroll-top-btn:hover {
  box-shadow: 0 4px 12px rgba(80, 160, 255, 0.4);
}

/* ============================================================
   Mentor Cards
   ============================================================ */
.mentor-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}

.mentor-card:hover {
  border-color: rgba(80, 160, 255, 0.15);
}

.mentor-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #e8e8e8;
}

.mentor-role {
  font-size: 0.85rem;
  color: #888;
  margin: 0.25rem 0 0.75rem;
}

.mentor-quote {
  font-style: italic;
  color: #aaa;
  padding: 0.75rem 1rem;
  background: rgba(80, 160, 255, 0.04);
  border-left: 3px solid rgba(80, 160, 255, 0.3);
  border-radius: 0 6px 6px 0;
  font-size: 0.95rem;
}

/* ============================================================
   Tabs
   ============================================================ */
.tab-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tab-btn {
  background: none;
  border: none;
  color: #666;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tab-btn:hover {
  color: #aaa;
}

.tab-btn.active {
  color: #50a0ff;
  border-bottom-color: #50a0ff;
}

.tab-panel {
  display: none;
  animation: fadeInUp 0.3s ease-out;
}

.tab-panel.active {
  display: block;
}

/* ============================================================
   Goals — Hex Grid
   ============================================================ */
.hex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.hex {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(80, 160, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #aaa;
  line-height: 1.4;
  transition: all 0.3s;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  min-height: 160px;
}

.hex:hover {
  background: rgba(80, 160, 255, 0.08);
  border-color: rgba(80, 160, 255, 0.2);
  color: #e8e8e8;
  transform: translateY(-4px);
}

.hex.highlight {
  background: rgba(80, 160, 255, 0.12);
  color: #50a0ff;
  border-color: rgba(80, 160, 255, 0.3);
  font-weight: 700;
}

/* ============================================================
   Progress Bar
   ============================================================ */
.progress-section {
  max-width: 800px;
  margin: 2.5rem auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.progress-section h3 {
  text-align: center;
  color: #e8e8e8;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.progress-subtitle {
  text-align: center;
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.progress-track {
  position: relative;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin: 0 30px;
}

.progress-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  border-radius: 4px;
  background: #50a0ff;
  width: 0%;
  transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.milestones {
  display: flex;
  justify-content: space-between;
  margin: 0 30px;
}

.milestone {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.milestone .dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #1a1a1e;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #555;
  margin-top: -16px;
  transition: all 0.5s;
}

.milestone .label {
  margin-top: 0.5rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: #555;
  max-width: 100px;
  line-height: 1.3;
  transition: color 0.5s;
}

.milestone .label small {
  display: block;
  font-weight: 400;
  color: #444;
  margin-top: 2px;
}

.milestone.reached .dot {
  background: #50a0ff;
  border-color: #50a0ff;
  color: #fff;
}

.milestone.reached .label {
  color: #50a0ff;
}

.milestone.reached .label small {
  color: rgba(80, 160, 255, 0.5);
}

.progress-percent {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: #50a0ff;
}

.progress-percent span {
  font-size: 0.5em;
  font-weight: 400;
  color: #666;
}

/* ============================================================
   Tables
   ============================================================ */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

th, td {
  padding: 0.85rem 1rem;
  text-align: left;
}

th {
  background: rgba(255, 255, 255, 0.03);
  color: #888;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

tbody tr:hover {
  background: rgba(80, 160, 255, 0.03);
}

tbody tr:last-child {
  border-bottom: none;
}

td {
  color: #aaa;
}

th[scope="row"],
td:first-child {
  color: #e8e8e8;
  font-weight: 600;
}

/* ============================================================
   Lists
   ============================================================ */
ul {
  list-style: none;
  padding: 0;
}

li {
  padding: 0.4rem 0 0.4rem 1.25rem;
  position: relative;
  color: #aaa;
  font-size: 0.95rem;
}

li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #50a0ff;
}

/* ============================================================
   Media Gallery
   ============================================================ */
.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.media-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s;
  cursor: pointer;
}

.media-item:hover {
  border-color: rgba(80, 160, 255, 0.2);
}

.media-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s;
}

.media-item:hover img {
  transform: scale(1.04);
}

.media-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #e8e8e8;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ============================================================
   Contact Section
   ============================================================ */
.contact-section {
  text-align: center;
}

.contact-box {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.contact-box p {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.contact-box strong {
  color: #50a0ff;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  padding: 0.6rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #aaa;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.25s;
}

.social-links a:hover {
  background: #50a0ff;
  color: #fff;
  border-color: #50a0ff;
}

/* ============================================================
   Sponsor Tiers
   ============================================================ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.tier-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tier-card:hover {
  border-color: rgba(80, 160, 255, 0.2);
  transform: translateY(-3px);
}

.tier-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e8e8e8;
  margin-bottom: 0.25rem;
}

.tier-card .tier-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: #50a0ff;
  margin: 0.5rem 0 1rem;
}

.tier-card .tier-price span {
  font-size: 0.6em;
  opacity: 0.7;
}

.tier-badge {
  display: inline-block;
  font-size: 0.7rem;
  background: rgba(80, 160, 255, 0.2);
  color: #50a0ff;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  white-space: nowrap;
  align-self: flex-start;
}

.tier-card ul {
  margin: 1rem 0;
  flex-grow: 1;
}

.tier-card li {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.tier-card .btn {
  align-self: stretch;
  text-align: center;
}

.tier-card.featured {
  border-color: rgba(80, 160, 255, 0.3);
  background: rgba(80, 160, 255, 0.03);
}

.tier-card.featured .tier-badge {
  background: rgba(80, 160, 255, 0.3);
}

/* ============================================================
   Sponsor Logos
   ============================================================ */
.sponsor-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
}

.sponsor-logo {
  filter: brightness(0.9);
  transition: filter 0.3s;
}

.sponsor-logo:hover {
  filter: brightness(1.1);
}

/* ============================================================
   Multi-School Highlight
   ============================================================ */
.multi-school-highlight {
  margin: 1.5rem 0;
}

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: rgba(17, 17, 19, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem;
  text-align: center;
  color: #555;
  font-size: 0.85rem;
}

footer p {
  margin-bottom: 0.5rem;
}

footer a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: #50a0ff;
}

/* ============================================================
   Reveal Animation
   ============================================================ */
.reveal {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.reveal-stagger > * {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.reveal-stagger > :nth-child(1) { animation-delay: 0.1s; }
.reveal-stagger > :nth-child(2) { animation-delay: 0.2s; }
.reveal-stagger > :nth-child(3) { animation-delay: 0.3s; }
.reveal-stagger > :nth-child(4) { animation-delay: 0.4s; }
.reveal-stagger > :nth-child(5) { animation-delay: 0.5s; }
.reveal-stagger > :nth-child(n+6) { animation-delay: 0.6s; }

.visible {
  opacity: 1 !important;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
  section {
    padding: 3rem 1.5rem;
  }

  .hero {
    padding: 3rem 1.5rem;
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .stats-bar {
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .tier-grid {
    grid-template-columns: 1fr;
  }

  .milestones {
    margin: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
  }

  .stats-bar {
    gap: 1rem;
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .milestones {
    flex-wrap: wrap;
    margin: 0;
  }

  .milestone {
    flex: 0 0 50%;
  }
}
