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

:root {
  --bg: #f0f0ee;
  --bg-2: #e8e8e6;
  --bg-blue: linear-gradient(135deg, #e8e8f4 0%, #d8d8f8 30%, #c8c8f0 60%, #b8b8e8 100%);
  --black: #0a0a0a;
  --dark: #111111;
  --gray: #555555;
  --gray-light: #888888;
  --blue: #1a1aff;
  --blue-dark: #1212cc;
  --white: #ffffff;
  --border: #d0d0d0;
  --border-dark: #222222;
  --radius-sm: 4px;
  --radius: 12px;
  --radius-lg: 24px;
  --transition: all 0.25s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(240,240,238,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 4%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex; align-items: center;
}
.nav-logo-text {
  font-family: 'Space Mono', monospace;
  font-size: 1.05rem; font-weight: 700;
  color: var(--black); letter-spacing: -1px;
  display: flex; flex-direction: column; line-height: 1;
}
.nav-logo-text .top { font-size: 1rem; }
.nav-logo-text .bottom {
  font-size: 0.6rem; letter-spacing: 4px;
  border-top: 1.5px solid var(--black); margin-top: 3px; padding-top: 3px;
  text-align: center;
}

.nav-links {
  display: flex; gap: 2.5rem; align-items: center;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--dark); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-links a.active { font-weight: 600; }

.nav-enroll {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 700;
  color: var(--black); letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition);
}
.nav-enroll:hover { color: var(--blue); }
.nav-enroll .arrow {
  width: 36px; height: 36px; background: var(--blue);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem; transition: var(--transition);
}
.nav-enroll:hover .arrow { background: var(--blue-dark); transform: translateX(3px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--black); transition: var(--transition); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #f0f0ee 0%, #f0f0ee 55%, #d8d4f8 80%, #c0b8f0 100%);
  padding-top: 72px;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
}

.hero-content {
  padding: 4rem 6% 3rem;
  display: grid; grid-template-columns: 1fr auto;
  gap: 2rem; align-items: flex-end;
  position: relative; z-index: 2;
}

.hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 800; line-height: 1.05;
  color: var(--black); letter-spacing: -3px;
  max-width: 800px;
}

.hero-bottom {
  display: grid; grid-template-columns: 1fr 1fr auto;
  gap: 2rem; align-items: center;
  padding: 2rem 6% 3.5rem;
  position: relative; z-index: 2;
}
.hero-desc { font-size: 0.95rem; color: var(--gray); line-height: 1.7; max-width: 320px; }

.hero-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--black); color: var(--white);
  padding: 14px 28px; border-radius: 50px;
  font-size: 0.95rem; font-weight: 600;
  transition: var(--transition); white-space: nowrap;
}
.hero-btn .arrow {
  width: 28px; height: 28px; background: var(--blue);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: var(--transition);
}
.hero-btn:hover { background: var(--dark); transform: translateY(-2px); }
.hero-btn:hover .arrow { transform: translateX(3px); }

.hero-illus {
  position: absolute; right: 3%; bottom: 0;
  width: clamp(280px, 30vw, 420px);
  z-index: 1;
}
.hero-illus img { width: 100%; object-fit: contain; }

/* ── ABOUT SECTION ── */
.about-section {
  padding: 6rem 6%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  background: var(--bg);
}
.about-img {
  border-radius: 12px; overflow: hidden;
  aspect-ratio: 4/3; background: #ddd;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-label { font-size: 0.8rem; font-weight: 600; color: var(--gray); margin-bottom: 1rem; }
.about-title {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -2px;
  margin-bottom: 1.5rem;
}
.about-text p { font-size: 1rem; color: var(--gray); line-height: 1.8; margin-bottom: 1rem; }
.btn-black {
  display: inline-block; background: var(--black); color: var(--white);
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 700; margin-top: 1.5rem;
  transition: var(--transition);
}
.btn-black:hover { background: #333; transform: translateY(-2px); }

/* ── WORKSHOPS ── */
.workshops-section {
  padding: 6rem 6%;
  background: linear-gradient(160deg, #f0f0ee 0%, #e8e4f8 50%, #d0ccf4 100%);
}
.section-label-sm {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem; color: var(--gray); margin-bottom: 0.75rem; letter-spacing: 0.5px;
}
.section-h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800; letter-spacing: -3px; line-height: 1;
  margin-bottom: 0.5rem;
}
.section-sub {
  font-size: 0.95rem; color: var(--gray); max-width: 400px; line-height: 1.7;
}
.workshops-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-bottom: 4rem;
}
.workshops-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.workshop-card {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.workshop-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.workshop-card-title {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem; font-weight: 700;
  color: var(--black); margin-bottom: 0.75rem; line-height: 1.4;
}
.workshop-card p {
  font-size: 0.88rem; color: var(--gray); line-height: 1.7; flex: 1;
}
.workshop-card-illus {
  height: 140px; display: flex; align-items: center; justify-content: center;
  margin: 1rem 0;
}
.workshop-card-illus img { max-height: 130px; object-fit: contain; }
.workshop-level {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 500; color: var(--gray);
  margin-top: 1rem;
}
.workshop-level::before {
  content: ''; width: 10px; height: 10px;
  background: var(--blue); border-radius: 50%; flex-shrink: 0;
}

.explore-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--bg); color: var(--black);
  padding: 16px 32px; border-radius: 50px;
  border: 2px solid var(--black);
  font-size: 0.95rem; font-weight: 700;
  margin-top: 3rem; transition: var(--transition);
}
.explore-btn .arrow { color: var(--blue); font-size: 1.3rem; }
.explore-btn:hover { background: var(--black); color: var(--white); }

/* ── COURSES LIST ── */
.courses-section { padding: 6rem 6%; background: var(--bg); }
.courses-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-bottom: 4rem; align-items: end;
}
.courses-list { display: flex; flex-direction: column; }
.course-row {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 2rem; align-items: flex-start;
  padding: 2rem 0; border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.course-row:hover { padding-left: 12px; }
.course-num {
  font-family: 'Space Mono', monospace;
  width: 60px; height: 60px; border-radius: 50%;
  border: 2px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700; color: var(--black);
  flex-shrink: 0;
}
.course-info h3 {
  font-family: 'Space Mono', monospace;
  font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 0.4rem;
}
.course-info p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ── GO FIGURES ── */
.figures-section {
  padding: 7rem 6%;
  background: linear-gradient(160deg, #e8e8f8 0%, #d4d0f4 40%, #c8c0f0 70%, #bcb4ec 100%);
  text-align: center; position: relative;
}
.figures-title {
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 900; letter-spacing: -4px; line-height: 1;
  color: var(--black); margin-bottom: 4rem;
}
.figures-bubbles {
  display: flex; justify-content: center; align-items: center;
  gap: 2rem; flex-wrap: wrap; position: relative;
}
.figure-bubble {
  background: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-radius: 50px; padding: 16px 36px;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.figure-num {
  font-size: 1.8rem; font-weight: 900; color: var(--black); letter-spacing: -1px;
}
.figure-lbl {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem; color: var(--gray);
}
.figures-deco {
  position: absolute; pointer-events: none;
  font-size: 1.5rem; color: var(--black); opacity: 0.3;
}

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 6rem 6%; background: var(--bg); }
.testimonials-header { margin-bottom: 3rem; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.testi-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); transform: translateY(-3px); }
.testi-quote {
  font-size: 0.95rem; color: var(--dark); line-height: 1.8;
  margin-bottom: 1.5rem; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #6644cc);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; color: white; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.9rem; }
.testi-role { font-size: 0.8rem; color: var(--gray-light); }

/* ── AWARDS ── */
.awards-section {
  padding: 6rem 6%;
  background: linear-gradient(160deg, #f0f0ee 0%, #e8e4f8 60%, #d8d0f0 100%);
}
.awards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.award-card {
  background: rgba(255,255,255,0.7); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.9); border-radius: var(--radius);
  padding: 2rem; display: flex; gap: 1.5rem; align-items: flex-start;
  transition: var(--transition);
}
.award-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.award-icon-box {
  width: 56px; height: 56px; border-radius: 10px;
  background: transparent; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.award-card h3 { font-size: 1rem; font-weight: 800; color: var(--black); margin-bottom: 0.5rem; }
.award-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }
.award-card a {
  display: inline-block; margin-top: 0.75rem; font-size: 0.82rem;
  font-weight: 700; color: var(--blue); text-decoration: underline;
}

/* ── WHY FEATURES ── */
.features-section { padding: 6rem 6%; background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem; transition: var(--transition);
}
.feature-card:hover { border-color: var(--black); transform: translateY(-3px); }
.feature-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.83rem; color: var(--gray); }

/* ── STUDENTS TICKER ── */
.students-section { padding: 5rem 0; background: var(--bg); overflow: hidden; }
.students-header { padding: 0 6%; margin-bottom: 2.5rem; }
.ticker-wrap { overflow: hidden; }
.ticker-track {
  display: flex; gap: 1rem;
  animation: ticker 35s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.student-chip {
  flex-shrink: 0; background: var(--white);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 0.75rem 1.2rem; display: flex; align-items: center; gap: 0.75rem;
}
.chip-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--black); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; flex-shrink: 0;
}
.chip-name { font-size: 0.82rem; font-weight: 700; }
.chip-cert { font-family: 'Space Mono', monospace; font-size: 0.68rem; color: var(--gray); }
.chip-score { font-size: 0.75rem; color: var(--blue); font-weight: 700; }

/* ── MARATHON / CTA ── */
.marathon-section {
  padding: 6rem 6%;
  background: linear-gradient(160deg, #e8e8f4 0%, #d4d0f4 100%);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.marathon-h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800; letter-spacing: -2px; margin-bottom: 0.5rem;
}
.marathon-sub { font-size: 0.95rem; color: var(--gray); line-height: 1.7; }
.marathon-right { display: flex; align-items: center; justify-content: flex-end; }

/* ── NEWSLETTER ── */
.newsletter-section {
  padding: 5rem 6%; background: var(--bg);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap; border-top: 1px solid var(--border);
}
.newsletter-section h3 { font-size: 1.2rem; font-weight: 800; }
.newsletter-form { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.newsletter-form input {
  padding: 12px 18px; border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-sm); background: var(--white);
  font-size: 0.9rem; font-family: inherit; outline: none;
  min-width: 260px; transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--blue); }
.newsletter-form button {
  padding: 12px 24px; background: var(--black); color: var(--white);
  border: none; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 700; cursor: pointer; transition: var(--transition);
}
.newsletter-form button:hover { background: var(--blue); }

/* ── FOOTER ── */
footer {
  background: var(--black); color: var(--white);
  padding: 5rem 6% 2.5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; }
.footer-logo {
  margin-bottom: 1rem;
  display: inline-block;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.8; }
.footer-contact { margin-top: 1.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem; color: rgba(255,255,255,0.3); text-align: center;
}

/* ── INNER PAGE HERO ── */
.page-hero {
  min-height: 45vh;
  background: linear-gradient(160deg, #f0f0ee 0%, #e8e4f8 60%, #d4d0f4 100%);
  padding: calc(72px + 4rem) 6% 4rem;
}
.page-hero-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem; color: var(--gray); margin-bottom: 1rem;
}
.page-hero-h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800; letter-spacing: -3px; line-height: 1.05; color: var(--black);
}
.page-hero-sub { font-size: 1rem; color: var(--gray); margin-top: 1rem; max-width: 600px; line-height: 1.7; }

/* ── MOBILE ── */
@media(max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-bottom { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-illus { display: none; }
  .about-section { grid-template-columns: 1fr; }
  .workshops-header { grid-template-columns: 1fr; }
  .workshops-grid { grid-template-columns: 1fr; }
  .courses-header { grid-template-columns: 1fr; }
  .course-row { grid-template-columns: 60px 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .marathon-section { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 1.5rem;
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--bg); padding: 2rem 6%; border-bottom: 1px solid var(--border);
    z-index: 999;
  }
}
