@charset "UTF-8";
:root {
  --bg: #0e1220;
  --bg-2: #0c152b;
  --surface: rgba(255, 255, 255, .07);
  --surface-strong: rgba(12, 18, 40, .72);
  --card: rgba(20, 26, 52, .85);
  --border: rgba(140, 170, 255, .18);
  --text: #f5f8ff;
  --muted: #c7d1f2;
  --accent: #78a6ff;
  --accent-2: #66e6d2;
  --green: #35d49f;
  --violet: #a06bff;
  --shadow-1: 0 10px 24px rgba(0, 0, 0, .28);
  --shadow-2: 0 22px 60px rgba(0, 0, 0, .40);
  --radius: 18px;
  --blur: 14px;
  --speed: .25s;
  --fast: .15s;
  --g1: #1c2550;
  --g2: #142762;
  --nav-h: 72px; }

html[data-theme="light"] {
  --bg: #f7f8fd;
  --bg-2: #eef2ff;
  --surface: rgba(255, 255, 255, .65);
  --surface-strong: rgba(255, 255, 255, .92);
  --card: rgba(255, 255, 255, .95);
  --border: rgba(23, 32, 58, .12);
  --text: #0f1428;
  --muted: #3e4a74;
  --shadow-1: 0 8px 20px rgba(23, 32, 58, .10);
  --shadow-2: 0 24px 60px rgba(23, 32, 58, .16);
  --g1: #dfe7ff;
  --g2: #cfe0ff; }

* {
  box-sizing: border-box; }

html,
body {
  height: 100%;
  margin: 0; }

html {
  scroll-behavior: smooth; }

body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans";
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  background: radial-gradient(160vw 120vh at -20vw -20vh, var(--g1) 0%, rgba(0, 0, 0, 0) 60%), radial-gradient(160vw 120vh at 120vw -10vh, var(--g2) 0%, rgba(0, 0, 0, 0) 55%), linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  background-attachment: fixed, fixed, fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  /* NEW: make footer stick to bottom properly */
  display: flex;
  flex-direction: column; }

/* Film grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0nNjQnIGhlaWdodD0nNjQnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PGZpbHRlciBpZD0nbi1uJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC44JyBudW1PY3RhdmVzPScyJy8+PC9maWx0ZXI+PHJlY3Qgd2lkdGg9JzEwMCUnIGhlaWdodD0nMTAwJScgZmlsbD0nd2hpdGUnIGZpbHRlcj0ndXJsKCMnKyc+PC9yZWN0Pjwvc3ZnPg==");
  background-size: 240px 240px; }

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(120, 166, 255, 0.15), rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease; }

body.switching::after {
  opacity: 1; }

/* Cursor spotlight */
#spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  background: radial-gradient(180px 180px at var(--mx, 50%) var(--my, 50%), rgba(120, 166, 255, 0.14), rgba(102, 230, 210, 0.1) 40%, transparent 60%);
  transition: background .08s linear; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  height: var(--nav-h);
  background: var(--surface-strong);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(var(--blur)) saturate(140%);
  flex-shrink: 0;
  /* 🔹 keep the old height, don't let flexbox compress it */ }

.nav-inner {
  width: min(1120px, 92%);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px; }

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.2px; }

.logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(180deg, #6ea3ff, #4b82ff);
  box-shadow: 0 10px 22px rgba(76, 130, 255, 0.22); }

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: 24px; }

.nav-link {
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  color: var(--text);
  font-weight: 600;
  transition: background-color var(--fast), color var(--fast); }

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1); }

.nav-link.active {
  background-color: rgba(120, 166, 255, 0.2);
  color: var(--accent); }

.spacer {
  flex: 1; }

.theme-btn,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 12px;
  padding: 0 18px;
  color: #000;
  background: gold;
  position: relative;
  overflow: hidden;
  z-index: 1; }

.cta.glow::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(130deg, #ffd700, #ff8c00, #ffe066, #fcb900);
  background-size: 300% 300%;
  animation: borderGlow 4s ease infinite;
  z-index: -1; }

@keyframes borderGlow {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
.theme-btn {
  width: 40px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer; }

.cta {
  padding: 0 22px;
  background: linear-gradient(180deg, #35d49f, #18b98a);
  color: #061a11;
  font-weight: 900;
  text-decoration: none;
  border: 0;
  box-shadow: 0 10px 24px rgba(24, 185, 138, 0.22);
  position: relative;
  isolation: isolate;
  will-change: transform; }

.cta::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: 14px;
  background: radial-gradient(220px 120px at var(--bx, 50%) 50%, rgba(53, 212, 159, 0.38), transparent 60%);
  transition: .08s linear; }

/* Section container */
.section-container {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--nav-h));
  overflow: visible;
  /* NEW: let this area stretch and push footer down */
  flex: 1 0 auto; }

/* Base state: hidden */
.page-section {
  position: relative;
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.98); }

/* Active: visible + enter animation */
.page-section.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  animation: sectionIn 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }

/* Leaving */
.page-section.leaving {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  animation: sectionOut 0.35s cubic-bezier(0.55, 0.06, 0.68, 0.19) forwards; }

@keyframes sectionIn {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    filter: blur(6px); }
  60% {
    opacity: 1;
    transform: translateY(0) scale(1.01);
    filter: blur(0px); }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px); } }
@keyframes sectionOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px); }
  100% {
    opacity: 0;
    transform: translateY(-12px) scale(0.985);
    filter: blur(6px); } }
#home-section.active .hero {
  min-height: calc(100vh - var(--nav-h)); }

#home-section.active {
  min-height: 100vh; }

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--nav-h));
  display: grid;
  place-items: center;
  overflow: hidden; }

.hero video,
.hero .poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .76;
  filter: saturate(115%) contrast(105%); }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 28, 0.62), rgba(10, 14, 28, 0.68)); }

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: center; }

.title {
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.03;
  margin: 10px 0 8px;
  font-weight: 900;
  text-wrap: balance;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28); }

.rotator {
  display: inline-block;
  min-width: 8ch;
  position: relative; }

.rotator span {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(10px);
  animation: swap 12s infinite; }

.rotator span:nth-child(1) {
  animation-delay: 0s; }

.rotator span:nth-child(2) {
  animation-delay: 3s; }

.rotator span:nth-child(3) {
  animation-delay: 6s; }

.rotator span:nth-child(4) {
  animation-delay: 9s; }

@keyframes swap {
  0% {
    opacity: 0;
    transform: translateY(10px); }
  4% {
    opacity: 1;
    transform: translateY(0); }
  22% {
    opacity: 1;
    transform: translateY(0); }
  25% {
    opacity: 0;
    transform: translateY(-8px); }
  100% {
    opacity: 0; } }
.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
  color: var(--muted); }

.subtitle {
  font-size: 18px;
  color: whitesmoke;
  max-width: 60ch;
  margin: 0; }

.hero-cta {
  margin-top: 22px;
  display: inline-flex; }

.motivation {
  margin-top: 14px;
  font-weight: 800;
  letter-spacing: .2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 18px rgba(120, 166, 255, 0.18)); }

.mdot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  opacity: .75;
  animation: ping 1.6s infinite; }

@keyframes ping {
  0% {
    transform: scale(0.6);
    opacity: 0.9; }
  60% {
    transform: scale(1.1);
    opacity: 0.4; }
  100% {
    transform: scale(0.6);
    opacity: 0.9; } }
.hero-card {
  padding: 18px;
  aspect-ratio: 16/12;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow-2);
  transform-style: preserve-3d; }

.hero-card h3 {
  margin: 0 0 6px; }

.hero-card p {
  margin: 0;
  color: var(--muted); }

.hero-card .chips {
  display: flex;
  gap: 8px;
  margin-left: 8.6%;
  flex-wrap: wrap;
  margin-top: 10px; }

.hero-card p,
h3 {
  color: whitesmoke; }

.hero-card-photo {
  position: relative;
  overflow: hidden;
  background-image: url("../students/sat_group_small_room_photo.jpg");
  opacity: .9;
  background-size: cover;
  background-position: center; }

.hero-card-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(6, 10, 24, 0.85), rgba(10, 20, 40, 0.5), rgba(18, 40, 80, 0.3));
  pointer-events: none; }

.hero-card-photo > * {
  position: relative;
  z-index: 1; }

.chip {
  padding: 6px 10px;
  color: whitesmoke;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  font-size: 13px; }

.section {
  position: relative;
  z-index: 2;
  padding: 60px 0; }

.inner {
  width: min(1120px, 92%);
  margin: 0 auto; }

#plan-cheap,
#plan-average,
#plan-premium {
  color: var(--muted); }

.h2 {
  margin: 0 0 8px 0;
  font-size: 28px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2); }

.lead {
  margin: 0;
  color: var(--muted); }

@media (max-width: 900px) {
  .hero-card-photo {
    position: relative;
    overflow: hidden;
    background: transparent; }

  .hero-card-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../students/sat_group_small_room_photo.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0; }

  .hero-card-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: linear-gradient(145deg, rgba(6, 10, 24, 0.75), rgba(10, 20, 40, 0.45), rgba(18, 40, 80, 0.25));
    z-index: 1; }

  .hero-card-photo > * {
    position: relative;
    z-index: 2; } }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px; }

.tile {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-1);
  transition: transform var(--fast); }

.tile:hover {
  transform: translateY(-3px); }

.grid-3 .tile h3 {
  margin: 0 0 6px;
  color: var(--muted); }

.tile p {
  margin: 0;
  color: var(--muted); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px; }

.kv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px; }

.kv div {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06); }

.kv b {
  display: block; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px; }

.gallery figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06); }

.gallery video,
.gallery img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover; }

.band {
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap; }

.band p {
  margin: 0; }

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px; }

.plan {
  position: relative;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow-1);
  transition: transform var(--fast), box-shadow var(--fast); }

.plan:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2); }

.plan h3 {
  margin: 0 0 4px 0; }

.plan .tagline {
  margin: 0;
  color: var(--muted); }

.plan .price {
  margin: 10px 0 8px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 900;
  letter-spacing: .2px; }

.plan .price .big {
  font-size: 28px; }

.plan .features {
  margin: 10px 0 12px 0;
  display: grid;
  gap: 8px; }

.plan .features li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06); }

.plan .features li::before {
  content: "✓";
  font-weight: 900;
  color: var(--accent-2); }

.plan .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, #78a6ff, #4b82ff);
  color: #08152c; }

.plan.premium .cta {
  background: linear-gradient(180deg, #35d49f, #18b98a);
  color: #061a11; }

.ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 900; }

.disclaimer {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  text-align: center; }

/* Mentors */
.mentors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px; }

.mentor {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow-1); }

.mentor .avatar {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--muted); }

.mentor .avatar img,
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.mentor h3 {
  margin: 0 0 4px 0; }

.mentor .role {
  margin: 0;
  color: var(--muted);
  font-weight: 800; }

.mentor .bio {
  margin: 8px 0 10px 0;
  color: var(--muted); }

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; }

.stat {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  font-size: 13px; }

.ribbon-top {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 900; }

/* STUDENTS SECTION */
.students-block {
  margin-top: 16px; }

.students-block .h2 {
  margin-bottom: 8px; }

.students-block .lead {
  margin-bottom: 10px; }

.student-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px; }

.student-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow-1);
  align-items: center;
  transition: transform var(--fast), box-shadow var(--fast); }

.student-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2); }

.student-card .avatar {
  width: 110px;
  height: 110px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--muted); }

.student-card .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.student-card .name {
  margin: 0 0 4px 0;
  font-size: 17px;
  color: var(--muted); }

.student-card .score {
  margin: 0;
  font-weight: 800; }

.student-card .test-type {
  margin: 2px 0 6px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600; }

.student-card .desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6; }

.reviews-cta {
  margin-top: 16px;
  display: flex;
  justify-content: center; }

.reviews-cta .cta {
  background: linear-gradient(180deg, #78a6ff, #4b82ff);
  color: #08152c; }

footer {
  position: relative;
  z-index: 4;
  margin-top: auto;
  width: 100%; }

.foot {
  width: min(1120px, 92%);
  margin: 34px auto 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px; }

.foot small {
  color: var(--muted); }

/* Reveal */
.reveal {
  transform: translateY(10px);
  opacity: 0; }

.reveal.in {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.45s ease, opacity 0.45s ease; }

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  margin-right: 10px; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  background: var(--surface-strong);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(var(--blur)) saturate(140%);
  padding: 20px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  z-index: 9; }

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px; }

.mobile-nav-link {
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: background-color var(--fast), color var(--fast); }

a {
  color: var(--accent); }

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background-color: rgba(120, 166, 255, 0.2);
  color: var(--accent); }

/* Responsive */
@media (max-width: 1100px) {
  .hero-card-photo {
    position: relative;
    overflow: hidden;
    background: transparent; }

  .hero-card-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../students/sat_group_small_room_photo.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0; }

  .hero-card-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: linear-gradient(145deg, rgba(6, 10, 24, 0.75), rgba(10, 20, 40, 0.45), rgba(18, 40, 80, 0.25));
    z-index: 1; }

  .hero-card-photo > * {
    position: relative;
    z-index: 2; }

  .hero-inner {
    grid-template-columns: 1fr; }

  .grid-3 {
    grid-template-columns: 1fr; }

  .grid-2 {
    grid-template-columns: 1fr; }

  .gallery {
    grid-template-columns: 1fr 1fr; }

  /* Hide desktop nav links on mobile */
  .nav-links {
    display: none; }

  /* Show hamburger on mobile */
  .mobile-menu-btn {
    display: block; }

  .mentors {
    grid-template-columns: 1fr; }

  .mentor {
    grid-template-columns: 84px 1fr; }

  .mentor .avatar {
    width: 84px;
    height: 84px;
    border-radius: 12px; }

  .pricing {
    grid-template-columns: 1fr; }

  .foot {
    grid-template-columns: 1fr;
    gap: 20px; }

  .student-grid {
    grid-template-columns: 1fr 1fr; }

  .mentors {
    grid-template-columns: 1fr; }

  .mentor {
    grid-template-columns: 84px 1fr; }

  .mentor .avatar {
    width: 84px;
    height: 84px;
    border-radius: 12px; }

  .pricing {
    grid-template-columns: 1fr; }

  .foot {
    grid-template-columns: 1fr;
    gap: 20px; }

  .student-grid {
    grid-template-columns: 1fr 1fr; } }
.grid-2 .tile.reveal.in h3 {
  color: var(--muted); }

@media (max-width: 640px) {
  .gallery {
    grid-template-columns: 1fr; }

  .student-grid {
    grid-template-columns: 1fr; }

  .student-card {
    grid-template-columns: 84px 1fr; }

  .student-card .avatar {
    width: 84px;
    height: 84px;
    border-radius: 12px; } }
@media (max-width: 900px) {
  html,
  body {
    height: auto; }

  .hero {
    min-height: auto; } }

/*# sourceMappingURL=main.css.map */
