/* ============================================
   MIDWEST MAKOS — DESIGN SYSTEM
   Pups design language applied site-wide
   ============================================ */

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

:root {
  /* Brand */
  --cyan: #00BEDC;
  --cyan-dark: #0099B5;
  --deep-blue: #0C2340;
  --orange: #EB8232;
  --caliente-red: #EF3340;

  /* Legacy aliases (for any leftover references) */
  --miami-blue: #00BEDC;
  --miami-black: #0C2340;
  --sunset-orange: #EB8232;
  --light-blue: #e6f7fa;

  /* Light palette */
  --bg-light: #ffffff;
  --bg-alt: #f4f6f9;
  --card-bg: #ffffff;
  --text-dark: #0C2340;
  --text-body: #4a5568;
  --text-muted-light: #94a3b8;
  --border-light: rgba(12,35,64,0.08);
  --border-light-strong: rgba(12,35,64,0.12);
  --shadow-sm: 0 1px 3px rgba(12,35,64,0.06);
  --shadow-md: 0 4px 20px rgba(12,35,64,0.08);
  --shadow-lg: 0 12px 40px rgba(12,35,64,0.1);

  /* Dark palette */
  --bg-dark: #111113;
  --bg-dark-alt: #0d0d10;
  --card-dark: #18181B;
  --text-white: #ffffff;
  --text-white-secondary: rgba(255,255,255,0.6);
  --text-white-muted: rgba(255,255,255,0.35);
  --border-dark: rgba(255,255,255,0.08);

  /* Legacy */
  --white: #ffffff;
  --gray: #666666;
  --light-gray: #E8E8E8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   NAVIGATION -- DARK GLASS
   ============================================ */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(17,17,19,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(1rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1) drop-shadow(0 0 6px rgba(0,190,220,0.3));
}

.logo-text {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text-white-secondary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a.active {
  color: #fff;
  border-bottom: 2px solid var(--cyan);
  padding-bottom: 4px;
}

.cta-button {
  background: var(--cyan);
  color: var(--deep-blue) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.cta-button:hover {
  background: #fff;
  color: var(--deep-blue) !important;
  transform: translateY(-1px);
}

.pups-button {
  background: var(--orange);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.pups-button:hover {
  background: #d4722b;
  transform: translateY(-1px);
}

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
}

.nav-dropdown .dropdown-trigger {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--card-dark);
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  border-radius: 12px;
  border: 1px solid var(--border-dark);
  padding: 10px 0;
  z-index: 1000;
  margin-top: 10px;
}

.nav-dropdown .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.nav-dropdown .dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: var(--text-white-secondary);
  transition: all 0.2s;
}

.nav-dropdown .dropdown-menu a:hover {
  background: rgba(0,190,220,0.08);
  color: var(--cyan);
}

.nav-dropdown .dropdown-menu a i {
  width: 20px;
  text-align: center;
  color: var(--cyan);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
  border-radius: 1px;
}

/* ============================================
   HERO — BASE
   ============================================ */
.hero {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 120px 20px 60px;
  text-align: center;
  margin-top: 64px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 900;
  color: #fff;
}

.hero .subtitle {
  font-size: 1.6rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 30px;
}

.hero .tagline {
  font-size: 1.3rem;
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto 30px;
  color: var(--text-white-secondary);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   BUTTONS — PUPS SYSTEM
   ============================================ */
.btn {
  padding: 15px 35px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: #d4722b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(235,130,50,0.3);
}

.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text-white-secondary);
  border: 1px solid var(--border-dark);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  transform: translateY(-2px);
}

/* Pups button variants */
.btn-primary-dark {
  background: var(--cyan);
  color: var(--deep-blue);
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-dark:hover {
  background: #fff;
  color: var(--deep-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,190,220,0.3);
}

.btn-secondary-dark {
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--border-dark);
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  transform: translateY(-2px);
}

.btn-primary-light {
  background: var(--deep-blue);
  color: #fff;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-light:hover {
  background: var(--cyan);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,190,220,0.25);
}

/* Pre-Register Button - Special Styling */
.btn-preregister {
  position: relative;
  animation: pulse-glow 2s ease-in-out infinite;
}

.btn-preregister:hover {
  animation: none;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(235,130,50,0.4);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(235,130,50,0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(235,130,50,0.5);
  }
}

/* ============================================
   SECTION SYSTEM — SHARED
   ============================================ */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--deep-blue);
}

.section-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-body);
  max-width: 640px;
  line-height: 1.6;
}

/* Light sections */
.light-section {
  padding: clamp(60px, 10vw, 120px) clamp(1rem, 5vw, 4rem);
  background: var(--bg-light);
  position: relative;
}

.light-section.alt {
  background: var(--bg-alt);
}

/* Dark content sections */
.dark-content {
  padding: clamp(60px, 10vw, 120px) clamp(1rem, 5vw, 4rem);
  background: var(--bg-dark);
  position: relative;
}

.dark-content.alt {
  background: var(--bg-dark-alt);
}

.dark-content .section-tag { color: var(--cyan); }
.dark-content .section-heading { color: var(--text-white); }
.dark-content .section-sub { color: var(--text-white-secondary); }

/* Footer CTA Section */
.footer-cta {
  text-align: center;
}

.footer-cta .btn-preregister {
  font-size: 0.9rem;
  padding: 12px 20px;
}

/* Sections */
section {
  padding: 50px 20px;
}

/* Dark Section */
.dark-section {
  background: var(--bg-dark) !important;
  color: var(--text-white);
}

.dark-section h2,
.dark-section .section-header h2 {
  color: var(--text-white) !important;
}

.dark-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.dark-section .section-header .accent-line {
  background: var(--orange);
}

.section-header {
  text-align: center;
  margin-bottom: 35px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--deep-blue);
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-body);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-header .accent-line {
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin: 20px auto 0;
}

/* ============================================
   GRADIENT TRANSITIONS
   ============================================ */
.edge-dark-to-light {
  height: 160px;
  background: linear-gradient(180deg,
    var(--bg-dark) 0%, #151520 12%, #1e2638 25%,
    #3a4d6e 40%, #7b8fad 55%, #b8c4d6 68%,
    #e0e5ed 80%, #eef1f5 90%, var(--bg-light) 100%);
}

.edge-light-to-dark {
  height: 160px;
  background: linear-gradient(180deg,
    var(--bg-light) 0%, #eef1f5 10%, #dde2eb 20%,
    #b0bdd0 35%, #6e82a0 50%, #3a4d6e 63%,
    #1e2638 76%, #151520 88%, var(--bg-dark) 100%);
}

.edge-light-to-deepblue {
  height: 160px;
  background: linear-gradient(180deg,
    var(--bg-alt) 0%, #e8ecf2 10%, #c8d0de 22%,
    #8a9ab5 38%, #4b6080 52%, #233754 65%,
    #142d4c 78%, #0e2542 88%, var(--deep-blue) 100%);
}

.edge-dark-to-alt {
  height: 160px;
  background: linear-gradient(180deg,
    var(--bg-dark) 0%, #151520 12%, #1e2638 25%,
    #3a4d6e 40%, #7b8fad 55%, #b0bcc8 68%,
    #d5dae3 80%, #e8ebf0 90%, var(--bg-alt) 100%);
}

.edge-alt-to-dark {
  height: 160px;
  background: linear-gradient(180deg,
    var(--bg-alt) 0%, #e8ebf0 10%, #d5dae3 20%,
    #b0bcc8 35%, #7b8fad 50%, #3a4d6e 63%,
    #1e2638 76%, #151520 88%, var(--bg-dark) 100%);
}

.edge-deepblue-to-dark {
  height: 100px;
  background: linear-gradient(180deg,
    var(--deep-blue) 0%, #0a1929 40%, #111113 100%);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   FEATURES / VALUES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,190,220,0.2);
}

.feature-card .icon {
  width: 70px;
  height: 70px;
  background: rgba(0,190,220,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--cyan);
}

.feature-card .icon i {
  line-height: 1;
}

.feature-card h3 {
  color: var(--deep-blue);
  margin-bottom: 15px;
  font-size: 1.3rem;
  font-weight: 800;
}

.feature-card p {
  color: var(--text-body);
  line-height: 1.7;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--deep-blue);
  padding: 50px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--orange);
  margin-bottom: 5px;
  font-weight: 900;
}

.stat-item p {
  color: var(--text-white-secondary);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   FOUNDERS SECTION
   ============================================ */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.founder-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.founder-card.devan {
  border-top: 4px solid var(--cyan);
}

.founder-card.nick {
  border-top: 4px solid var(--orange);
}

.founder-info {
  padding: 30px;
}

.founder-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  font-weight: 800;
}

.founder-card.devan h3 {
  color: var(--cyan-dark);
}

.founder-card.nick h3 {
  color: var(--orange);
}

.founder-info .title {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.founder-info ul {
  color: var(--text-dark);
}

.founder-info ul li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.founder-info ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--cyan);
}

/* ============================================
   PROGRAMS / AGE GROUPS
   ============================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.program-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--cyan);
  transition: all 0.3s;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.program-card h3 {
  color: var(--cyan-dark);
  font-size: 1.8rem;
  margin-bottom: 5px;
  font-weight: 900;
}

.program-card .age-range {
  color: var(--text-body);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.program-card ul li {
  padding: 5px 0;
  color: var(--text-dark);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 3px solid var(--cyan);
  transform: scale(1.05);
}

.pricing-card .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: var(--deep-blue);
  margin-bottom: 10px;
  font-weight: 800;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--cyan-dark);
  margin-bottom: 5px;
}

.pricing-card .period {
  color: var(--text-body);
  margin-bottom: 25px;
}

.pricing-card ul {
  text-align: left;
  margin-bottom: 30px;
}

.pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

/* Payment Options */
.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 50px auto 0;
}

.payment-card {
  background: var(--bg-alt);
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.payment-card h4 {
  color: var(--cyan-dark);
  margin-bottom: 10px;
  font-weight: 800;
}

.payment-card p {
  color: var(--text-dark);
  font-size: 0.95rem;
}

.payment-card .highlight {
  color: var(--caliente-red);
  font-weight: bold;
}

/* ============================================
   TRYOUTS SECTION
   ============================================ */
.tryout-info {
  max-width: 800px;
  margin: 0 auto;
}

.tryout-box {
  background: var(--deep-blue);
  color: var(--white);
  padding: 50px;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 40px;
}

.tryout-box h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 900;
}

.tryout-box .year {
  font-size: 1.5rem;
  opacity: 0.9;
  margin-bottom: 20px;
}

.tryout-box p {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.tryout-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.tryout-detail-card {
  background: var(--card-bg);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.tryout-detail-card h4 {
  color: var(--cyan-dark);
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 800;
}

.tryout-detail-card ul li {
  padding: 5px 0;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  color: var(--cyan-dark);
  margin-bottom: 20px;
  font-weight: 800;
}

.contact-card p {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.contact-card a {
  color: var(--cyan-dark);
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
  color: var(--cyan);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  margin-bottom: 15px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(0,190,220,0.2);
}

.faq-item.active {
  border-color: var(--cyan);
  box-shadow: 0 4px 20px rgba(0,190,220,0.08);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--cyan);
}

.faq-item.active .faq-question::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 25px 20px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-body);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--deep-blue) 0%, #0a1929 100%) !important;
  color: var(--text-white);
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 40px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,190,220,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--text-white);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 15px;
  font-weight: 900;
}

.cta-section p {
  color: var(--text-white-secondary);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  margin-bottom: 30px;
}

.cta-section .hero-buttons {
  justify-content: center;
}

/* ============================================
   FOOTER — DEEP BLUE
   ============================================ */
footer {
  background: var(--deep-blue);
  color: var(--text-white);
  padding: 40px 20px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 25px;
}

.footer-content .footer-section {
  flex: 0 1 180px;
}

.footer-section h4 {
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-section p,
.footer-section a {
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
  display: block;
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-section a:hover {
  color: var(--cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* ============================================
   INTEL BANNER / STAGED REVEAL
   ============================================ */
.intel-banner {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg-dark-alt);
  border-bottom: 1px solid rgba(0,190,220,0.2);
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.intel-banner .intel-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: intel-pulse 2s ease-in-out infinite;
}

@keyframes intel-pulse {
  0%, 100% { opacity: 0.4; box-shadow: 0 0 4px var(--cyan); }
  50% { opacity: 1; box-shadow: 0 0 12px var(--cyan), 0 0 20px rgba(0,190,220,0.3); }
}

.intel-banner .intel-text {
  color: var(--text-white-secondary);
}

.intel-banner .intel-link {
  color: var(--cyan);
  font-weight: 700;
  border-bottom: 1px solid rgba(0,190,220,0.4);
  transition: all 0.3s;
}

.intel-banner .intel-link:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* Hero offset for pages WITH intel banner */
.has-intel-banner {
  margin-top: 104px !important;
}

/* ============================================
   REVEAL TIMELINE
   ============================================ */
.reveal-timeline {
  background: var(--bg-dark-alt);
  padding: 60px 20px;
  text-align: center;
}

.reveal-timeline h3 {
  color: var(--text-white-muted);
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.timeline-track {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255,255,255,0.1);
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.timeline-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.timeline-dot.revealed {
  background: var(--cyan);
  box-shadow: 0 0 15px rgba(0,190,220,0.5), 0 0 30px rgba(0,190,220,0.2);
  color: white;
}

.timeline-dot.upcoming {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
  animation: upcoming-pulse 2s ease-in-out infinite;
}

@keyframes upcoming-pulse {
  0%, 100% { box-shadow: 0 0 5px rgba(235,130,50,0.3); }
  50% { box-shadow: 0 0 15px rgba(235,130,50,0.6); }
}

.timeline-dot.locked {
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.2);
}

.timeline-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.timeline-label.revealed { color: var(--cyan); }
.timeline-label.upcoming { color: var(--orange); }
.timeline-label.locked { color: rgba(255,255,255,0.2); }

.timeline-status {
  font-family: 'Courier New', monospace;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.timeline-status.revealed { color: rgba(0,190,220,0.6); }
.timeline-status.upcoming { color: rgba(235,130,50,0.6); }
.timeline-status.locked { color: rgba(255,255,255,0.15); }

.reveal-timeline .timeline-cta {
  margin-top: 40px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.reveal-timeline .timeline-cta a {
  color: var(--orange);
  font-weight: 600;
  border-bottom: 1px solid rgba(235,130,50,0.4);
}

.reveal-timeline .timeline-cta a:hover {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

/* ============================================
   DOSSIER CARDS (About page)
   ============================================ */
.dossier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 30px;
}

.dossier-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,190,220,0.2);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.dossier-card::before {
  content: 'CLASSIFIED';
  position: absolute;
  top: 15px;
  right: -25px;
  background: rgba(235,130,50,0.15);
  color: var(--orange);
  font-family: 'Courier New', monospace;
  font-size: 0.6rem;
  letter-spacing: 3px;
  padding: 4px 35px;
  transform: rotate(45deg);
}

.dossier-silhouette {
  width: 60px;
  height: 60px;
  background: rgba(0,190,220,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: rgba(0,190,220,0.4);
}

.dossier-card .dossier-title {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dossier-card .dossier-redacted {
  height: 16px;
  background: linear-gradient(90deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%);
  border-radius: 3px;
  margin-bottom: 15px;
  max-width: 180px;
}

.dossier-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dossier-tags span {
  background: rgba(0,190,220,0.1);
  border: 1px solid rgba(0,190,220,0.2);
  color: rgba(255,255,255,0.7);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.dossier-reveal-box {
  margin-top: 25px;
  padding: 20px;
  background: rgba(235,130,50,0.08);
  border: 1px solid rgba(235,130,50,0.2);
  border-radius: 8px;
  text-align: center;
}

.dossier-reveal-box p {
  color: rgba(255,255,255,0.7) !important;
  font-size: 0.9rem !important;
  margin: 0 0 10px !important;
}

.dossier-reveal-box a {
  color: var(--orange) !important;
  font-weight: 600;
  font-size: 0.85rem;
}

/* ============================================
   FLIP CARDS (Programs page)
   ============================================ */
.flip-cards-container {
  display: flex;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.flip-card {
  flex: 1;
  height: 320px;
  perspective: 1000px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.flip-card-front {
  background: var(--card-dark);
  border: 2px solid var(--border-dark);
}

.flip-card.unlocked .flip-card-front {
  border-color: rgba(0,190,220,0.3);
  box-shadow: 0 0 20px rgba(0,190,220,0.1);
}

.flip-card.locked .flip-card-front {
  opacity: 0.4;
  cursor: default;
}

.flip-card.next-unlock .flip-card-front {
  border-color: rgba(0,190,220,0.4);
  animation: card-glow 2s ease-in-out infinite;
}

@keyframes card-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(0,190,220,0.1); }
  50% { box-shadow: 0 0 25px rgba(0,190,220,0.3); }
}

.flip-card-front .card-phase-num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.flip-card-front .card-phase-name {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-white-secondary);
  margin-bottom: 15px;
}

.flip-card-front .card-tap-hint {
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  color: rgba(0,190,220,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.flip-card.locked .flip-card-front .card-tap-hint {
  color: rgba(255,255,255,0.15);
}

.flip-card-front .lock-icon {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.15);
  margin-bottom: 10px;
}

.flip-card-back {
  background: var(--cyan);
  transform: rotateY(180deg);
  color: white;
  justify-content: flex-start;
  padding-top: 30px;
}

.flip-card-back h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.flip-card-back .back-skills {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.flip-card-back .back-skills span {
  background: rgba(255,255,255,0.15);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  text-align: left;
}

.flip-card-back .redacted-content {
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.flip-cards-complete {
  display: none;
  text-align: center;
  padding: 30px 20px;
  max-width: 600px;
  margin: 0 auto;
}

.flip-cards-complete.visible {
  display: block;
  animation: fadeIn 0.5s ease;
}

.flip-cards-complete .complete-badge {
  display: inline-block;
  background: rgba(0,190,220,0.15);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  padding: 10px 25px;
  border-radius: 6px;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ============================================
   SPOTS METER (Tryouts page)
   ============================================ */
.spots-meter {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 30px;
}

.spots-meter-bar {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.spots-meter-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  border-radius: 4px;
  transition: width 1s ease;
}

.spots-meter-label {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-white-secondary);
  text-align: center;
}

.spots-meter-label strong {
  color: var(--cyan);
}

/* Inaugural Season Tag */
.inaugural-tag {
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-white-muted);
  margin-top: 15px;
}

/* VIP Badge */
.vip-badge {
  background: var(--orange);
  color: white;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  align-self: flex-start;
  margin-bottom: 25px;
}

.early-message {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  color: var(--text-white-muted);
  letter-spacing: 1px;
  margin-top: 20px;
  padding: 15px;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .timeline-track {
    flex-direction: column;
    gap: 20px;
  }

  .timeline-track::before {
    top: 0;
    bottom: 0;
    left: 20px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .timeline-node {
    flex-direction: row;
    gap: 15px;
    text-align: left;
  }

  .timeline-dot {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .flip-cards-container {
    flex-direction: column;
  }

  .flip-card {
    height: 280px;
  }

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

  .intel-banner {
    font-size: 0.65rem;
    letter-spacing: 1px;
    gap: 10px;
    padding: 8px 15px;
  }

  .edge-dark-to-light, .edge-light-to-dark, .edge-light-to-deepblue, .edge-dark-to-alt, .edge-alt-to-dark, .edge-deepblue-to-dark {
    height: 90px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(17,17,19,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-dark);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: var(--text-white-secondary);
    font-size: 15px;
  }

  .nav-links a:hover {
    color: #fff;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* Mobile Dropdown */
  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    margin-top: 10px;
    margin-left: 15px;
    padding: 0;
    display: none;
    min-width: auto;
    border: none;
    background: transparent;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown.active .dropdown-menu {
    display: block;
  }

  .nav-dropdown .dropdown-menu a {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 100px 20px 50px;
  }

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

  .hero .tagline {
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

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

  .pricing-card.featured {
    transform: none;
  }

  .tryout-box {
    padding: 30px 20px;
  }

  .tryout-box h2 {
    font-size: 2rem;
  }
}

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

  .hero .subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  section {
    padding: 40px 15px;
  }

  .feature-card {
    padding: 30px 20px;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }

  .intel-banner {
    font-size: 0.6rem;
    flex-wrap: wrap;
    text-align: center;
    gap: 6px;
  }
}
