﻿:root {
  --bg: #FFFFFF;
  --bg-soft: #FAFCFA;
  --bg-dark: #0A1F14;
  --ink: #0A1F14;
  --ink-soft: #3A4540;
  --ink-faded: #7A857F;
  --line: rgba(10,31,20,0.1);
  --line-strong: rgba(10,31,20,0.18);
  --green-50: #ECFDF1;
  --green-100: #C8F2D5;
  --green-200: #93E0AB;
  --green-300: #5BC97D;
  --green-400: #1FB852;
  --green-500: #0F9D40;
  --green-600: #0B7A31;
  --green-700: #075824;
  --green-800: #053A17;
  --green-glow: #00FF7F;
  --accent: #0F9D40;
  --accent-bright: #1FB852;
  --accent-deep: #075824;
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-heading: 'Outfit', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* 5. Ambient Glows (Aurora Effect) via pseudo-elements */
body::before, body::after {
  content: ""; position: fixed; width: 60vw; height: 60vw;
  border-radius: 50%; z-index: -1; pointer-events: none;
  filter: blur(120px); opacity: 0.6;
}
body::before {
  top: -20%; left: -10%;
  background: radial-gradient(circle, rgba(31,184,82,0.15) 0%, transparent 70%);
  animation: orbit 25s linear infinite;
}
body::after {
  bottom: -20%; right: -10%;
  background: radial-gradient(circle, rgba(15,157,64,0.12) 0%, transparent 70%);
  animation: orbit 30s linear infinite reverse;
}
@keyframes orbit {
  0% { transform: rotate(0deg) translateX(80px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(80px) rotate(-360deg); }
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }
.italic-serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: normal;
}
  a { text-decoration: none; color: inherit; }
  .announcement-bar {
    background: #0B1612; color: white; text-align: center; padding: 10px 16px;
    font-size: 13px; font-weight: 500; display: flex; justify-content: center;
    align-items: center; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .pulse-dot {
    width: 8px; height: 8px; background: var(--green-500); border-radius: 50%;
    animation: pulse 2s infinite;
  }
  .nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(10, 31, 20, 0.95);
  backdrop-filter: blur(40px) saturate(180%);
  color: white;
  padding: 16px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
  }
  .logo { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 20px; }
  .logo-mark {
    width: 36px; height: 36px; border-radius: 12px;
    background: linear-gradient(135deg, var(--green-300), var(--green-700));
    color: white; display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 16px;
  }
  .nav-links { display: flex; align-items: center; gap: 32px; font-weight: 500; }
.nav-links a:not(.btn-signin) { color: white; text-decoration: none; transition: color 0.2s; }
.nav-links a:not(.btn-signin):hover { color: var(--green-400); }
.nav-right { position: relative; display: none; }
  .hamburger-btn {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); 
    color: white; width: 44px; height: 44px; border-radius: 12px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all 0.2s;
  }
  .hamburger-btn:hover { background: rgba(255,255,255,0.1); }
  .dropdown-menu {
    position: absolute; top: 56px; right: 0; background: white; color: var(--ink);
    min-width: 220px; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: none; flex-direction: column; overflow: hidden;
    border: 1px solid var(--line);
  }
  .dropdown-menu.show { display: flex; }
  .dropdown-menu a { padding: 16px 20px; font-weight: 600; border-bottom: 1px solid var(--line); transition: all 0.2s; }
  .dropdown-menu a:hover { background: var(--bg-soft); color: var(--green-600); padding-left: 24px; }
  .dropdown-menu a:last-child { border-bottom: none; }

/* Buttons */
.btn-primary {
  background: var(--green-500); color: white;
  padding: 16px 32px; border-radius: 100px;
  font-weight: 700; font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none; cursor: pointer;
  box-shadow: 0 4px 15px rgba(15, 157, 64, 0.2);
}
.btn-primary:hover {
  background: var(--green-600);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 24px rgba(15, 157, 64, 0.35);
}
.btn-secondary {
  background: white; color: var(--ink);
  padding: 16px 32px; border-radius: 100px;
  font-weight: 700; font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid var(--line-strong); cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--ink); background: var(--bg-soft);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 24px rgba(10, 31, 20, 0.08);
}
.btn-outline-white {
  display: inline-block;
  background: transparent; color: white; padding: 16px 32px; border-radius: 32px; font-weight: 600; font-size: 18px;
  border: 2px solid white; transition: all 0.3s; cursor: pointer;
}
.btn-outline-white:hover {
  background: white; color: var(--bg-dark); transform: translateY(-4px);
}

/* Footer */
footer {
  background: var(--bg-dark); color: white; padding: 80px 20px 40px; text-align: center;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-links { margin-top: 40px; display: flex; justify-content: center; gap: 24px; color: var(--green-200); }

/* Containers */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 120px 0; }
.section-dark { background: var(--bg-dark); color: white; }

/* Utilities */
.eyebrow { font-weight: 700; letter-spacing: 2px; font-size: 14px; color: var(--green-500); margin-bottom: 16px; display: block; text-transform: uppercase; }
.eyebrow.white { color: rgba(255,255,255,0.7); }
.glow-text {
  background: linear-gradient(90deg, var(--green-300), var(--green-500));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(31,184,82,0.4));
}

/* Animations */
@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Hero specific */
.hero { display: flex; align-items: center; padding: 40px 20px 60px; gap: 60px; max-width: 1300px; margin: 0 auto; }
.hero-left { flex: 0 0 55%; }
.hero-right { flex: 0 0 45%; position: relative; perspective: 1000px; }

  .top-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; border: 2px solid var(--green-400); border-radius: 40px;
    padding: 8px 16px; font-weight: 700; font-size: 13px; color: var(--ink); margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(10,31,20,0.05);
  }
.dot { width: 10px; height: 10px; background: var(--green-500); border-radius: 50%; animation: pulse 2s infinite; }

.hero h1 { font-size: clamp(56px, 6vw, 96px); font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.hero p { font-size: 20px; color: var(--ink-soft); max-width: 540px; line-height: 1.5; margin-bottom: 40px; }
.hero-buttons { display: flex; gap: 20px; margin-bottom: 60px; }

.stats-row { display: flex; gap: 20px; }
.stat-card {
  background: rgba(255,255,255,0.7); backdrop-filter: blur(40px);
  padding: 12px 20px; border-radius: 16px; font-weight: 600; font-size: 15px;
  box-shadow: 0 4px 20px rgba(10,31,20,0.08); display: flex; align-items: center; gap: 8px;
}

.photo-container {
  position: relative; width: 100%; max-width: 480px; height: 600px; margin: 0 auto;
}
.photo-mask {
  width: 100%; height: 100%; border-radius: 40px; overflow: hidden;
  border: 3px solid var(--green-400); box-shadow: 0 0 80px rgba(31,184,82,0.4);
  position: relative; z-index: 2;
}
.photo-mask img { width: 100%; height: 100%; object-fit: cover; }
.photo-ring {
  position: absolute; top: -20px; left: -20px; right: -20px; bottom: -20px;
  border: 2px dashed var(--green-300); border-radius: 48px; opacity: 0.5;
  animation: spin 20s linear infinite; pointer-events: none;
}

  .credential-card {
    position: absolute; bottom: 40px; right: -20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 14px 10px 10px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08), 0 0 0 4px rgba(255,255,255,0.4);
    display: flex; align-items: center; gap: 12px; z-index: 10;
    animation: float 6s ease-in-out infinite;
    transform: scale(0.85); transform-origin: bottom right;
  }
  .cred-info h4 { font-size: 15px; font-weight: 800; margin-bottom: 2px; color: var(--ink); line-height: 1; }
  .cred-info p { font-size: 12px; font-weight: 600; color: var(--ink-soft); margin: 0; line-height: 1; }
  .yt-pill {
    background: #FF0000; color: white; padding: 6px 10px; border-radius: 20px;
    font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 4px;
    text-decoration: none; transition: transform 0.2s;
    box-shadow: 0 4px 12px rgba(255,0,0,0.2);
  }
  .yt-pill:hover { transform: scale(1.05); }

.particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; }
.particle { position: absolute; border-radius: 50%; }

/* Sections */
.college-ticker {
  background-color: #0A0D18;
  color: #FFFFFF;
  padding: 24px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  white-space: nowrap;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
  transform-style: preserve-3d;
}
.ticker-content {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
}
.ticker-content span {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
}
.ticker-content span.dot {
  color: #555A6B;
  font-size: 24px;
}
@keyframes scrollLeft {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; perspective: 1000px; }
  .feature-card {
    /* 1. Glassmorphism */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 32px 24px; border-radius: 24px; 
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(10,31,20,0.03), inset 0 0 0 1px rgba(255,255,255,0.5);
    /* Transform for JS tilt */
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
    will-change: transform;
  }
  .feature-card:hover {
    border-color: rgba(31,184,82,0.3);
    box-shadow: 0 30px 60px rgba(15,157,64,0.15), inset 0 0 0 1px rgba(255,255,255,0.5);
  }
  .feature-icon {
    width: 60px; height: 60px; border-radius: 16px;
    background: linear-gradient(135deg, var(--green-100), var(--green-300));
    display: flex; align-items: center; justify-content: center; font-size: 32px; margin-bottom: 20px;
  }
  .feature-icon svg { width: 32px; height: 32px; color: var(--green-700); }
  .feature-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 4px; }
  .feature-card h4 { font-size: 15px; color: var(--green-600); margin-bottom: 12px; font-weight: 600; }
  .feature-card p { color: var(--ink-soft); margin-bottom: 24px; font-size: 15px; }

.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 60px; position: relative; perspective: 1000px; }
.process-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 32px; border-radius: 28px; z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 40px rgba(10,31,20,0.03);
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out;
  will-change: transform;
}
.process-card:hover {
  box-shadow: 0 30px 60px rgba(15,157,64,0.15);
}
.process-num { font-size: 96px; font-family: 'Instrument Serif', serif; font-style: italic; color: var(--green-400); line-height: 1; margin-bottom: 16px; }

.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 60px; }
.testi-card {
  background: white; padding: 40px; border-radius: 32px;
  box-shadow: 0 10px 40px rgba(10,31,20,0.05);
}
.testi-quote-mark { font-family: 'Instrument Serif', serif; font-size: 80px; color: var(--green-300); line-height: 0.5; margin-bottom: 20px; display: block; }
.testi-text { font-size: 20px; font-weight: 500; font-style: italic; margin-bottom: 32px; line-height: 1.6; }
.testi-author { display: flex; align-items: center; gap: 16px; border-top: 1px solid var(--line); padding-top: 24px; }
.testi-avatar { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--green-300), var(--green-600)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 20px; }
.testi-info h5 { font-size: 18px; font-weight: 700; }
.testi-info p { color: var(--ink-faded); font-size: 14px; }
.stars { color: var(--green-500); margin-top: 4px; }

.cta-section { background: var(--bg-dark); color: white; text-align: center; padding: 160px 20px; position: relative; overflow: hidden; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(31,184,82,0.15) 0%, transparent 70%); pointer-events: none; }
.cta-section h2 { font-size: clamp(48px, 6vw, 120px); font-weight: 800; margin-bottom: 24px; position: relative; z-index: 1; line-height: 1.1; }
.cta-section p { font-size: 24px; color: rgba(255,255,255,0.8); margin-bottom: 48px; position: relative; z-index: 1; }
.cta-buttons { display: flex; justify-content: center; gap: 24px; position: relative; z-index: 1; }

@media (max-width: 900px) {
  .hero { flex-direction: column; text-align: center; padding: 40px 20px 20px; gap: 32px; min-height: auto; }
  .top-badge { margin-bottom: 16px; padding: 8px 16px; font-size: 13px; }
  .hero h1 { font-size: clamp(40px, 10vw, 48px); margin-bottom: 16px; }
  .hero p { font-size: 16px; margin-bottom: 24px; }
  .hero-buttons { margin-bottom: 24px; justify-content: center; flex-wrap: wrap; gap: 12px; }
  .stats-row { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .stat-card { padding: 8px 12px; font-size: 12px; }
  
  .features-grid { grid-template-columns: 1fr; }
  .process-steps, .testimonials-grid { grid-template-columns: 1fr; flex-direction: column; }
  .process-line { display: none; }
  .nav-links { display: none; }
  
  .photo-container { height: 320px; max-width: 320px; }
  .credential-card { transform: scale(0.85); bottom: -15px; }
  
  .section { padding: 40px 0; }
  .section-header h2 { font-size: clamp(32px, 8vw, 40px); margin-bottom: 12px; }
  .section-header p { font-size: 16px; }
  
  .feature-card { padding: 24px; flex-direction: column; text-align: center; gap: 16px; }
  .feature-card h3 { font-size: 22px; margin-bottom: 4px; }
  .feature-card h4 { font-size: 14px; margin-bottom: 8px; }
  .feature-card p { font-size: 14px; margin-bottom: 20px; }
  
  .offer-card { padding: 24px; }
  .offer-card h3 { font-size: 22px; margin-bottom: 12px; }
  .offer-card p { font-size: 14px; margin-bottom: 20px; }
  .offer-card ul li { font-size: 14px; margin-bottom: 8px; }
  
  .process-card { padding: 24px; }
  .process-card h3 { font-size: 20px; margin-bottom: 12px; }
  .process-card p { font-size: 14px; }
  .process-step-num { width: 40px; height: 40px; font-size: 16px; margin-bottom: 16px; }
  
  .college-ticker { padding: 12px 0; }
  .ticker-content span { font-size: 16px; }
  
  .footer-bottom { flex-direction: column; text-align: center; gap: 16px; }
  body { padding-bottom: 80px; }
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 16px 20px;
  z-index: 1000;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
}
.sticky-content {
  display: flex; justify-content: space-between; align-items: center; max-width: 480px; margin: 0 auto;
}
@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
}

/* 3. Scroll Reveal Classes */
.reveal-hidden {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.9s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* Page specific */
.page-hero { padding: 40px 20px 60px; text-align: center; background: var(--bg-soft); }
.page-hero h1 { font-size: 64px; font-weight: 800; margin-bottom: 24px; }



/* Pricing Summary Widget */
.pricing-widget {
  background: #0b1410;
  border-radius: 20px;
  padding: 24px;
  max-width: 440px;
  margin: 0 auto 60px auto;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.05);
  font-family: 'Inter', sans-serif;
  text-align: left;
}
.widget-badge {
  background: #EF4444;
  color: white;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}
.widget-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  text-decoration: none;
  color: white;
  position: relative;
  transition: all 0.2s;
}
.widget-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(31, 184, 82, 0.4);
}
.widget-card.highlighted {
  border: 1px solid #F59E0B;
  background: rgba(245, 158, 11, 0.05);
}
.widget-card.highlighted:hover {
  background: rgba(245, 158, 11, 0.1);
}
.w-popular {
  position: absolute;
  top: -10px;
  right: 16px;
  background: #F59E0B;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}
.w-card-left h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
  font-family: 'Outfit', sans-serif;
  color: #f1f5f9;
}
.w-card-left p {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}
.w-price {
  text-align: right;
}
.w-strike {
  font-size: 12px;
  color: #ef4444;
  text-decoration: line-through;
  display: block;
  margin-bottom: -2px;
}
.w-current {
  font-size: 24px;
  font-weight: 800;
  color: #F59E0B;
  font-family: 'Outfit', sans-serif;
}
.widget-progress-wrapper {
  margin-top: 24px;
  margin-bottom: 24px;
}
.w-progress-bar {
  background: rgba(255,255,255,0.1);
  height: 6px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}
.w-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #F59E0B, #EF4444);
}
.w-progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
}
.w-seats { color: #F59E0B; }
.w-claimed { color: #e2e8f0; }
.widget-buttons {
  display: flex;
  gap: 12px;
}
.w-btn-primary {
  flex: 1;
  background: #eab308;
  color: #1c1917;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.w-btn-primary:hover {
  background: #facc15;
}
.w-btn-secondary {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.w-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

