:root{
  --orange:#f59e0b;
  --orange-2:#fb923c;
  --cream:#fff2d6;
  --ink:#1b140d;
  --ink-2:#2a2016;
  --white:#ffffff;
  --shadow:0 16px 50px rgba(19, 27, 22, .14);
  --shadow-2:0 10px 28px rgba(19, 27, 22, .12);
  --radius:18px;
  --radius-sm:14px;
  --border:1px solid rgba(31,42,36,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(1000px 500px at 10% 0%, rgba(251,146,60,.28), transparent 60%),
    radial-gradient(900px 420px at 90% 10%, rgba(245,158,11,.22), transparent 55%),
    linear-gradient(180deg, var(--cream), #fff 60%);
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{width:min(1120px, 92vw); margin:0 auto}

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background:var(--ink);
  color:var(--white);
  padding:10px 12px;
  border-radius:10px;
  z-index:1000;
}
.skip-link:focus{left:10px}

.topband{
  padding:0;
}

.topband-inner{
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.topband-card{
  display:flex;
  align-items:center;
  gap:6px;
  color:inherit;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.5);
  border:1px solid rgba(31,42,36,.1);
  box-shadow:0 2px 8px rgba(19,27,22,.05);
  cursor:pointer;
}

.topband-icon{
  width:16px;
  height:16px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, var(--orange-2), var(--orange));
  color:rgba(255,255,255,.95);
}

.topband-icon svg{width:12px; height:12px}

.topband-inline{
  font-size:11px;
  line-height:1;
  font-weight:700;
  color:rgba(31,42,36,.78);
  white-space:nowrap;
}
.topband-inline a{color:inherit}
.topband-inline a:hover{text-decoration:underline}

.topband-inline strong{color:var(--ink); font-weight:900}

.topband-card:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(245,158,11,.18), 0 10px 24px rgba(19,27,22,.08);
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:
    linear-gradient(90deg,
      rgba(251,146,60,.74) 0%,
      rgba(255,242,214,.86) 52%,
      rgba(245,158,11,.42) 100%
    );
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(31,42,36,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
  position:relative;
}

.brand{display:flex; align-items:center; gap:12px}
.brand-logo{
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid rgba(31,42,36,.12);
  background:#fff;
  object-fit:cover;
  padding:4px;
}
.brand-text{display:flex; flex-direction:column; line-height:1.05}
.brand-name{font-weight:800; letter-spacing:.12em}
.brand-sub{font-size:12px; color:rgba(31,42,36,.7); font-weight:600}

.nav{display:flex; align-items:center; gap:16px}
.nav a{font-weight:600; font-size:14px; padding:10px 10px; border-radius:12px}
.nav a:not(.btn):hover{background:rgba(245,158,11,.18)}

.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:var(--border);
  background:rgba(255,255,255,.6);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  position:relative;
  z-index:260;
}
.nav-toggle span{display:block; width:18px; height:2px; background:var(--ink); border-radius:2px; transition:.2s ease}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:700;
  font-size:14px;
  cursor:pointer;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--orange); color:var(--ink); box-shadow:var(--shadow-2)}
.btn-primary:hover{filter:saturate(1.05) brightness(1.02)}
.btn-secondary{background:var(--orange-2); color:var(--ink); box-shadow:var(--shadow-2)}
.btn-secondary:hover{filter:saturate(1.03) brightness(1.02)}
.btn-ghost{background:rgba(255,255,255,.55); border-color:rgba(31,42,36,.12)}
.btn-ghost:hover{background:rgba(255,255,255,.8)}

.programs-banner .btn-primary{
  background:linear-gradient(180deg, #ffe08a, #f6b21a);
  color:#2a1c00;
  border-color:rgba(0,0,0,.14);
  box-shadow:0 14px 26px rgba(0,0,0,.18);
}

.programs-banner .btn-primary:hover{filter:saturate(1.02) brightness(1.03)}

.hero{padding:44px 0 18px}
.hero-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:28px; align-items:start}

.hero-media{
  border-radius:var(--radius);
  border:1px solid rgba(31,42,36,.12);
  background:rgba(255,255,255,.55);
  box-shadow:var(--shadow);
  overflow:hidden;
  align-self:stretch;
}

.hero-image{
  width:100%;
  height:100%;
  max-height:520px;
  object-fit:cover;
  display:block;
}

.badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:12px;
  background:rgba(245,158,11,.16);
  border:1px solid rgba(245,158,11,.42);
}

.hero-copy h1{margin:14px 0 10px; font-size:44px; line-height:1.05; letter-spacing:-.02em}
.hero-copy p{margin:0; font-size:16px; line-height:1.6; color:rgba(31,42,36,.82)}

.hero-cta{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}

.hero-metrics{display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:10px; margin-top:22px}
.metric{
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(31,42,36,.10);
  background:rgba(255,255,255,.55);
}
.metric-value{font-size:22px; font-weight:800}
.metric-label{font-size:12px; font-weight:650; color:rgba(31,42,36,.72)}

.hero-card{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(31,42,36,.12);
  box-shadow:var(--shadow);
  border-radius:var(--radius);
  overflow:hidden;
}
.hero-card-head{padding:18px 18px 0}
.hero-card-head h2{margin:0; font-size:18px}
.hero-card-head p{margin:8px 0 0; color:rgba(31,42,36,.72); font-size:13px; line-height:1.5}

.section{padding:42px 0}
.section-alt{
  background:linear-gradient(180deg, rgba(251,146,60,.14), rgba(255,242,214,.40));
  border-top:1px solid rgba(31,42,36,.06);
  border-bottom:1px solid rgba(31,42,36,.06);
}

.pill{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  border:1px solid rgba(0,0,0,.18);
  box-shadow:0 6px 14px rgba(0,0,0,.10);
}

.pill-white{background:rgba(255,255,255,.92); color:#0b2b1c}
.pill-gold{background:linear-gradient(180deg, #ffe08a, #f6b21a); color:#2a1c00; border-color:rgba(0,0,0,.14)}

.programs-wrap{display:grid; gap:16px}

.programs-banner{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  min-height:320px;
  border:1px solid rgba(31,42,36,.12);
  box-shadow:var(--shadow);
  background:rgba(31,42,36,.10);
}

.programs-banner-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
  filter:none;
}


.programs-dots{
  position:absolute;
  left:50%;
  bottom:12px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:2;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.20);
  border:1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(8px);
}

.dot{
  width:36px;
  height:6px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.28);
  cursor:pointer;
}

.dot[aria-selected="true"]{background:rgba(255,255,255,.92)}

.popular{
  border-radius:22px;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(31,42,36,.10);
  box-shadow:0 10px 26px rgba(19,27,22,.08);
  padding:16px;
  margin-top:-34px;
}

.popular-head{display:flex; align-items:center; justify-content:flex-start; margin-bottom:12px}
.popular-chip{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(245,158,11,.18);
  border:1px solid rgba(245,158,11,.34);
  font-weight:900;
}

.popular-grid{display:grid; grid-template-columns:repeat(6, minmax(0,1fr)); gap:10px}

.popular-card{
  border:0;
  text-align:left;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px;
  border-radius:16px;
  background:rgba(255,242,214,.78);
  cursor:pointer;
  border:1px solid rgba(31,42,36,.08);
}

.popular-card:nth-child(2){background:rgba(255, 240, 214, .90)}
.popular-card:nth-child(3){background:rgba(255, 230, 214, .82)}
.popular-card:nth-child(4){background:rgba(255, 242, 214, .74)}
.popular-card:nth-child(5){background:rgba(255, 236, 214, .86)}
.popular-card:nth-child(6){background:rgba(255, 232, 214, .80)}

.popular-card:hover{transform:translateY(-1px); box-shadow:0 10px 20px rgba(19,27,22,.08)}
.popular-ico{font-size:18px}
.popular-text{display:flex; flex-direction:column; gap:2px}
.popular-name{font-weight:900; font-size:13px}
.popular-meta{color:rgba(31,42,36,.72); font-size:12px; font-weight:700}

.tutoring{
  padding:44px 0;
  background:rgba(255,242,214,.72);
}

.tutoring-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:16px;
}

.tutoring-title h2{
  margin:0;
  font-size:34px;
  letter-spacing:-.02em;
}

.tutoring-accent{color:var(--orange-2)}

.tutoring-title p{
  margin:10px 0 0;
  font-weight:800;
  color:rgba(31,42,36,.72);
  position:relative;
  width:fit-content;
}

.tutoring-title p::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:110px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(124,58,237,.85), rgba(124,58,237,.15));
}

.tutoring-illus img{
  width:min(420px, 44vw);
  height:auto;
  display:block;
}

.tutoring-grid{display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:14px}

.tcard{
  border-radius:16px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(31,42,36,.10);
  box-shadow:0 10px 26px rgba(19,27,22,.08);
  padding:14px;
  display:flex;
  flex-direction:column;
  min-height:280px;
}

.tcard-top h3{margin:10px 0 8px; font-size:15px; letter-spacing:-.01em}
.tcard-top p{margin:0; color:rgba(31,42,36,.62); font-size:12px; line-height:1.55}

.ticon{
  width:34px;
  height:34px;
  border-radius:12px;
  background:rgba(251,146,60,.16);
  border:1px solid rgba(251,146,60,.22);
  display:grid;
  place-items:center;
  font-size:16px;
}

.tcard-mid{margin:14px 0 12px; height:1px; background:rgba(31,42,36,.12)}

.tcard-bottom{margin-top:auto; display:flex; flex-direction:column; gap:10px}
.tprice{font-size:12px; font-weight:850; color:#0b6b4d}
.tprice strong{color:var(--ink); font-weight:1000}

.tbtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:12px;
  background:linear-gradient(180deg, var(--orange-2), var(--orange));
  color:rgba(255,255,255,.95);
  font-weight:900;
  font-size:12px;
  border:1px solid rgba(0,0,0,.12);
}

.tbtn:hover{filter:saturate(1.02) brightness(1.03)}

.offerings{
  padding:44px 0;
  background:
    radial-gradient(900px 420px at 18% 0%, rgba(245,158,11,.16), transparent 55%),
    radial-gradient(820px 420px at 90% 0%, rgba(124,58,237,.12), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,242,214,.40));
  border-top:1px solid rgba(31,42,36,.06);
  border-bottom:1px solid rgba(31,42,36,.06);
  position:relative;
}

.offerings::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:6px;
  background:linear-gradient(90deg, rgba(245,158,11,.85), rgba(251,146,60,.85), rgba(124,58,237,.65));
  opacity:.6;
}

.offerings-head h2{
  margin:0 0 18px;
  font-size:34px;
  letter-spacing:-.02em;
  text-align:left;
}

.offerings-head p{max-width:62ch}

.offerings-accent{
  position:relative;
  color:var(--orange-2);
  font-weight:1000;
}

.offerings-accent::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:4px;
  bottom:-6px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(245,158,11,.95), rgba(245,158,11,.25));
}

.offerings-tabs{
  display:flex;
  gap:10px;
  flex-wrap:nowrap;
  overflow:auto;
  padding-bottom:6px;
  margin-bottom:18px;
}

.offerings-tabs{
  padding-top:6px;
}

.offerings-tabs::-webkit-scrollbar{height:6px}
.offerings-tabs::-webkit-scrollbar-thumb{background:rgba(31,42,36,.18); border-radius:999px}

.tab{
  border:1px solid rgba(31,42,36,.14);
  background:rgba(255,255,255,.90);
  padding:10px 14px;
  border-radius:12px;
  font-weight:900;
  font-size:13px;
  color:rgba(31,42,36,.78);
  white-space:nowrap;
  cursor:pointer;
}

.tab:hover{box-shadow:0 14px 26px rgba(19,27,22,.08); transform:translateY(-1px)}

.tab.active, .tab[aria-selected="true"]{
  background:rgba(13, 34, 26, .95);
  color:rgba(255,255,255,.94);
  border-color:rgba(13, 34, 26, .95);
}

.tab.active, .tab[aria-selected="true"]{box-shadow:0 16px 30px rgba(0,0,0,.16)}

.offerings-subhead{
  margin:8px 0 14px;
  font-size:22px;
  letter-spacing:-.01em;
}

.offerings-subhead{
  position:relative;
  width:fit-content;
}

.offerings-subhead::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:110px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(245,158,11,.95), rgba(251,146,60,.45));
}

.notes{
  position:relative;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:10px;
  align-items:center;
}

.notes-viewport{
  border-radius:18px;
  padding:6px;
  background:rgba(255,255,255,.35);
  border:1px solid rgba(31,42,36,.06);
}

.notes-nav{
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(31,42,36,.12);
  background:rgba(255,255,255,.92);
  box-shadow:0 10px 24px rgba(19,27,22,.08);
  font-size:22px;
  font-weight:900;
  cursor:pointer;
}

.notes-nav:disabled{opacity:.45; cursor:not-allowed}

.notes-viewport{
  overflow:auto;
  outline:none;
  scrollbar-width:none;
}

.notes-viewport::-webkit-scrollbar{display:none}

.notes-viewport.dragging{cursor:grabbing}
.notes-viewport.dragging *{user-select:none}

.notes-track{
  display:flex;
  gap:14px;
  padding:4px 2px;
  scroll-behavior:smooth;
  scroll-snap-type:x mandatory;
}

.note-card{
  flex:0 0 240px;
  border-radius:16px;
  background:var(--card);
  border:1px solid rgba(31,42,36,.08);
  padding:16px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:260px;
  scroll-snap-align:start;
}

.note-title{
  font-size:20px;
  line-height:1.05;
  letter-spacing:-.01em;
  color:rgba(31,42,36,.88);
}

.note-title strong{font-weight:1000; color:rgba(31,42,36,.95)}

.note-circle{
  margin-top:16px;
  width:100%;
  height:150px;
  border-radius:18px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(31,42,36,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
  display:grid;
  place-items:center;
  align-self:stretch;
  overflow:hidden;
}

.note-circle img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:none;
  filter:none;
}

.hscroll{
  position:relative;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:10px;
  align-items:center;
}

.hscroll-nav{
  width:40px;
  height:40px;
  border-radius:14px;
  border:1px solid rgba(31,42,36,.12);
  background:rgba(255,255,255,.92);
  box-shadow:0 10px 24px rgba(19,27,22,.08);
  font-size:22px;
  font-weight:900;
  cursor:pointer;
}

.hscroll-nav:disabled{opacity:.45; cursor:not-allowed}

.hscroll-viewport{
  min-width:0;
  overflow-x:auto;
  overflow-y:hidden;
  outline:none;
  scrollbar-width:none;
  scroll-behavior:smooth;
}

.hscroll-viewport::-webkit-scrollbar{display:none}

.hscroll-viewport.dragging{cursor:grabbing}
.hscroll-viewport.dragging *{user-select:none}

.hscroll-track{
  display:flex;
  gap:14px;
  padding:4px 2px;
  width:max-content;
}

@keyframes students-marquee{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

#studentsCarousel .hscroll-viewport{overflow:hidden}
#studentsCarousel .hscroll-track{animation:students-marquee 22s linear infinite; will-change:transform}
#studentsCarousel:hover .hscroll-track{animation-play-state:paused}
#studentsCarousel .hscroll-viewport:focus-within .hscroll-track{animation-play-state:paused}

@media (prefers-reduced-motion: reduce){
  #studentsCarousel .hscroll-track{animation:none}
}

.scard{
  flex:0 0 300px;
  border-radius:22px;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(31,42,36,.08);
  box-shadow:0 18px 40px rgba(19,27,22,.10);
  overflow:hidden;
  scroll-snap-align:start;
  position:relative;
}

.scard-media{
  height:260px;
  background:rgba(31,42,36,.04);
}

.scard-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
}

.scard-panel{
  margin:0 16px 16px;
  margin-top:-38px;
  background:#173845;
  color:rgba(255,255,255,.94);
  border-radius:18px;
  padding:18px 16px 16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:6px;
  box-shadow:0 16px 30px rgba(0,0,0,.18);
}

.scard-pill{
  margin-top:-34px;
  padding:8px 14px;
  border-radius:999px;
  background:#d9e7ee;
  color:#173845;
  font-weight:950;
  font-size:13px;
  border:1px solid rgba(0,0,0,.10);
}

.scard-title{font-weight:1000; font-size:24px; letter-spacing:-.02em; margin-top:4px}
.scard-role{font-weight:650; color:rgba(255,255,255,.86)}
.scard-inst{font-weight:1000; font-size:18px; letter-spacing:-.01em}

.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:18px}
.section-head h2{margin:0; font-size:28px; letter-spacing:-.02em}
.section-head p{margin:0; color:rgba(31,42,36,.74); max-width:54ch; line-height:1.6}

.cards{display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:14px}
.card{
  border-radius:var(--radius);
  background:rgba(255,255,255,.7);
  border:1px solid rgba(31,42,36,.10);
  padding:16px;
  box-shadow:0 10px 26px rgba(19,27,22,.08);
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0 0 12px; color:rgba(31,42,36,.74); line-height:1.55; font-size:13px}

.founder-speak{grid-template-columns:minmax(280px, 420px) minmax(0, 1fr); align-items:start}
.founder-speak-photo{padding:14px}
.founder-speak-img{width:100%; height:auto; border-radius:14px; display:block; aspect-ratio:4/5; object-fit:cover}

.founder-speaks .section-head{justify-content:flex-start; align-items:baseline; flex-wrap:wrap}
.founder-speaks .section-head p{max-width:unset}

.card-accent{
  background:linear-gradient(180deg, rgba(245,158,11,.18), rgba(255,255,255,.72));
  border-color:rgba(245,158,11,.32);
}

.ticks{margin:0; padding-left:18px; color:rgba(31,42,36,.78); font-size:13px; line-height:1.75}

.features{display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:14px}
.feature{
  padding:16px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.62);
  border:1px solid rgba(31,42,36,.10);
}
.feature h3{margin:0 0 8px; font-size:16px}
.feature p{margin:0; color:rgba(31,42,36,.74); line-height:1.55; font-size:13px}

.results-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px}
.result-panel{
  border-radius:var(--radius);
  background:rgba(255,255,255,.72);
  border:1px solid rgba(31,42,36,.10);
  padding:16px;
  box-shadow:0 10px 26px rgba(19,27,22,.08);
}
.result-panel h3{margin:0 0 6px}
.muted{color:rgba(31,42,36,.70)}

.notice-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px; align-items:stretch}
.notice-card{display:flex; flex-direction:column; min-height:320px; position:relative; overflow:hidden}
.notice-card::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:6px;
  background:linear-gradient(90deg, rgba(245,158,11,.95), rgba(251,146,60,.95), rgba(124,58,237,.85));
}

.notice-card{
  background:
    radial-gradient(900px 420px at 18% 0%, rgba(245,158,11,.22), transparent 55%),
    radial-gradient(820px 420px at 90% 0%, rgba(124,58,237,.16), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,242,214,.62));
  border-color:rgba(245,158,11,.22);
  box-shadow:0 18px 44px rgba(19,27,22,.10);
}

.notice-card h3{letter-spacing:-.01em}
.notice-card h3::after{
  content:"";
  display:block;
  margin-top:8px;
  width:88px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(245,158,11,.95), rgba(251,146,60,.55));
}
.notice-controls{display:grid; grid-template-columns:1fr 1fr auto; gap:10px; margin-top:10px}
.notice-controls label{display:flex; flex-direction:column; gap:6px}
.notice-controls span{font-size:12px; font-weight:750; color:rgba(31,42,36,.80)}
.notice-controls select{padding:11px 12px; border-radius:14px}

.notice-scroll{
  margin-top:12px;
  border-radius:16px;
  border:1px solid rgba(245,158,11,.22);
  background:
    linear-gradient(180deg, rgba(255,242,214,.72), rgba(255,255,255,.75));
  overflow:hidden;
  height:200px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}

.notice-track{display:flex; flex-direction:column; gap:10px; padding:12px}

.notice-item{
  border-radius:14px;
  padding:10px 12px;
  background:rgba(255, 237, 213, 0.92);
  border:1px solid rgba(31,42,36,.10);
  font-size:13px;
  line-height:1.5;
  box-shadow:0 10px 22px rgba(19,27,22,.06);
}

.notice-item strong{color:#173845}

.notice-links{margin-top:12px; display:grid; gap:10px}
.notice-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255, 237, 213, 0.92);
  border:1px solid rgba(124,58,237,.16);
  box-shadow:0 12px 26px rgba(19,27,22,.06);
}
.notice-link strong{font-weight:950}
.notice-link a{
  font-weight:950;
  color:rgba(255,255,255,.96);
  background:linear-gradient(180deg, rgba(251,146,60,.98), rgba(245,158,11,.98));
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  box-shadow:0 10px 18px rgba(19,27,22,.10);
  white-space:nowrap;
}
.notice-link a:hover{filter:saturate(1.05) brightness(1.02)}

@keyframes notice-marquee{
  from{transform:translateY(0)}
  to{transform:translateY(-50%)}
}

.notice-scroll[data-animate="true"] .notice-track{
  animation:notice-marquee 18s linear infinite;
  will-change:transform;
}

.notice-scroll:hover .notice-track{animation-play-state:paused}

@media (prefers-reduced-motion: reduce){
  .notice-scroll[data-animate="true"] .notice-track{animation:none}
}

.bars{margin-top:10px; display:flex; flex-direction:column; gap:10px}
.bar-top{display:flex; align-items:center; justify-content:space-between; font-size:13px; font-weight:650}
.bar-track{height:10px; border-radius:999px; background:rgba(31,42,36,.10); overflow:hidden}
.bar-fill{height:100%; width:var(--w); background:linear-gradient(90deg, var(--orange-2), rgba(245,158,11,.60)); border-radius:999px}

.table{margin-top:10px; border-radius:16px; overflow:hidden; border:1px solid rgba(31,42,36,.10)}
.row{display:grid; grid-template-columns:1.2fr .8fr .9fr; gap:10px; padding:10px 12px; background:rgba(255,255,255,.62); font-size:13px}
.row:nth-child(even){background:rgba(255,242,214,.65)}
.row.header{background:rgba(251,146,60,.22); font-weight:800}

.form{display:flex; flex-direction:column; gap:12px; padding:18px}
.form label{display:flex; flex-direction:column; gap:6px}
.form span{font-size:12px; font-weight:750; color:rgba(31,42,36,.80)}
input, select, textarea{
  font:inherit;
  padding:11px 12px;
  border-radius:14px;
  border:1px solid rgba(31,42,36,.14);
  background:rgba(255,255,255,.9);
  outline:none;
}
input:focus, select:focus, textarea:focus{border-color:rgba(245,158,11,.70); box-shadow:0 0 0 4px rgba(245,158,11,.18)}
textarea{resize:vertical}

.form-note{margin:0; min-height:18px; font-size:12px; color:rgba(31,42,36,.78)}

.testimonial{display:grid; grid-template-columns:1fr; gap:12px}
.testimonial-card{
  border-radius:var(--radius);
  background:rgba(255,255,255,.72);
  border:1px solid rgba(31,42,36,.10);
  padding:16px;
  box-shadow:0 10px 26px rgba(19,27,22,.08);
}
.quote{margin:0; font-size:15px; line-height:1.7}
.who{margin-top:12px; display:flex; flex-direction:column; gap:2px}
.name{font-weight:850}
.meta{color:rgba(31,42,36,.70); font-size:13px}
.testimonial-actions{display:flex; gap:10px; flex-wrap:wrap}

.faq{margin-top:18px}
.faq-title{margin:0 0 10px}
.accordion{border-radius:var(--radius); overflow:hidden; border:1px solid rgba(31,42,36,.10)}
.accordion-item{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border:0;
  background:rgba(255,255,255,.7);
  font:inherit;
  font-weight:800;
  cursor:pointer;
  text-align:left;
}
.accordion-item:nth-of-type(odd){background:rgba(255,242,214,.70)}
.accordion-panel{padding:12px 14px; background:rgba(255,255,255,.72); color:rgba(31,42,36,.78); line-height:1.6; font-size:13px}
.chev{width:10px; height:10px; border-right:2px solid rgba(31,42,36,.7); border-bottom:2px solid rgba(31,42,36,.7); transform:rotate(45deg); transition:transform .15s ease}
.accordion-item[aria-expanded="true"] .chev{transform:rotate(225deg)}

.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:14px; align-items:start}
.contact-info, .contact-form{
  border-radius:var(--radius);
  background:rgba(255,255,255,.72);
  border:1px solid rgba(31,42,36,.10);
  padding:16px;
  box-shadow:0 10px 26px rgba(19,27,22,.08);
}

.info-list{margin-top:12px; display:grid; gap:10px}
.info-item{display:grid; grid-template-columns:120px 1fr; gap:10px; padding:10px 12px; border-radius:16px; background:rgba(255,242,214,.62); border:1px solid rgba(31,42,36,.08)}
.info-item > *{min-width:0}
.info-item a{overflow-wrap:anywhere; word-break:break-word}
.info-k{font-weight:850}
.info-v a{color:var(--orange); font-weight:800}

.chips{margin-top:12px; display:flex; gap:10px; flex-wrap:wrap}
.chip{
  display:inline-flex;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(251,146,60,.16);
  border:1px solid rgba(251,146,60,.32);
  font-weight:800;
  font-size:13px;
}

.footer{padding:26px 0 18px; border-top:1px solid rgba(31,42,36,.08); background:rgba(255,242,214,.72)}
.footer-inner{display:flex; align-items:flex-start; justify-content:space-between; gap:16px}
.footer-brand{font-weight:900; letter-spacing:-.01em}
.footer-sub{margin-top:6px; color:rgba(31,42,36,.72); font-size:13px}
.footer-links{display:flex; gap:14px; flex-wrap:wrap}
.footer-links a{padding:8px 10px; border-radius:12px; font-weight:800; font-size:13px}
.footer-links a:hover{background:rgba(245,158,11,.16)}
.footer-bottom{margin-top:12px; display:flex; align-items:center; justify-content:space-between; gap:12px; color:rgba(31,42,36,.78); font-size:13px}

.admission-modal{
  border:0;
  padding:0;
  border-radius:18px;
  width:min(980px, 92vw);
  background:rgba(255,255,255,.92);
  box-shadow:0 24px 70px rgba(0,0,0,.25);
  max-height:min(86vh, 760px);
  overflow:hidden;
}

.admission-modal::backdrop{background:rgba(10,12,14,.62)}

.admission-card{margin:0; padding:0; max-width:none}

.admission-shell{
  padding:18px;
  padding-right:22px;
  border-radius:18px;
  background:
    radial-gradient(900px 480px at 10% 0%, rgba(245,158,11,.20), transparent 60%),
    radial-gradient(740px 380px at 95% 10%, rgba(251,146,60,.16), transparent 55%),
    linear-gradient(180deg, rgba(255,242,214,.65), rgba(255,255,255,.92));
  overflow:auto;
  max-height:min(86vh, 760px);
}

.admission-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.admission-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.admission-logo{
  width:54px;
  height:54px;
  border-radius:16px;
  background:#fff;
  border:1px solid rgba(31,42,36,.12);
  object-fit:cover;
  padding:6px;
}

.admission-top h3{margin:0; font-size:20px; font-weight:1000; letter-spacing:.06em}

.admission-sub{margin:2px 0 0; font-size:12px; font-weight:800; color:rgba(31,42,36,.68)}

.admission-title{
  margin:14px 0 14px;
  text-align:center;
  font-size:26px;
  letter-spacing:.08em;
  font-weight:1000;
}

.admission-section{
  margin-top:12px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(31,42,36,.12);
  background:rgba(255,255,255,.72);
}

.admission-section-head{
  padding:10px 12px;
  background:#173845;
  color:rgba(255,255,255,.96);
  font-weight:950;
  letter-spacing:.04em;
  font-size:13px;
}

.admission-grid{
  display:grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap:8px;
  padding:12px;
  align-items:start;
}

.admission-photo{
  border-radius:14px;
  border:2px dashed rgba(23,56,69,.45);
  background:rgba(245,245,245,.75);
  min-height:132px;
  padding:8px;
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:center;
  justify-content:center;
  text-align:center;
  width:100%;
  max-width:200px;
  box-sizing:border-box;
}

.admission-photo strong{font-size:12px; letter-spacing:.02em}
.admission-photo span{font-size:12px; color:rgba(31,42,36,.72); font-weight:750}

.admission-photo .admission-photo-preview{
  display:none;
  width:100%;
  height:100%;
  max-height:110px;
  border-radius:12px;
  object-fit:cover;
  border:1px solid rgba(31,42,36,.12);
}

.admission-photo.has-preview{
  justify-content:flex-start;
}

.admission-photo.has-preview .admission-photo-preview{
  display:block;
}

.admission-rows{display:grid; gap:7px}

.admission-row{display:grid; grid-template-columns: 132px 1fr; gap:8px; align-items:center}
.admission-row .k{font-weight:900; font-size:12px; color:rgba(31,42,36,.78)}

.admission-row input,
.admission-row select,
.admission-row textarea{
  border-radius:12px;
  padding:8px 10px;
}

.admission-two{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}

.admission-row input,
.admission-row select,
.admission-row textarea{
  min-width:0;
}

.admission-notes{padding:12px}

.admission-notes textarea{
  width:100%;
  display:block;
}

.admission-actions{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  flex-wrap:wrap;
  padding:12px;
  border-top:1px solid rgba(31,42,36,.10);
  background:rgba(255,255,255,.78);
}

.admission-note{padding:0 12px 12px; margin:0; font-size:12px; color:rgba(31,42,36,.74)}

#leadDialog{
  border:0;
  padding:0;
  width:min(560px, 92vw);
  border-radius:22px;
  background:rgba(255,255,255,.96);
  box-shadow:0 26px 80px rgba(0,0,0,.30);
  overflow:hidden;
}

#leadDialog::backdrop{background:rgba(10,12,14,.62)}

.lead-card{
  margin:0;
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
  background:
    radial-gradient(900px 480px at 12% 0%, rgba(245,158,11,.22), transparent 58%),
    radial-gradient(740px 380px at 95% 10%, rgba(124,58,237,.16), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,242,214,.62));
}

.lead-head{display:flex; gap:12px; align-items:flex-start}

.lead-ico{
  width:44px;
  height:44px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg, rgba(251,146,60,.98), rgba(245,158,11,.98));
  color:rgba(255,255,255,.96);
  border:1px solid rgba(0,0,0,.12);
  box-shadow:0 14px 26px rgba(19,27,22,.12);
  font-size:18px;
  flex:0 0 auto;
}

.lead-title{margin:0; font-size:20px; font-weight:1000; letter-spacing:-.02em}
.lead-sub{margin:6px 0 0; color:rgba(31,42,36,.72); font-weight:700; font-size:13px; line-height:1.5}

.lead-badges{display:flex; gap:10px; flex-wrap:wrap}
.lead-badge{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:950;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(31,42,36,.12);
  box-shadow:0 10px 22px rgba(19,27,22,.06);
}

.lead-fields{display:grid; grid-template-columns:1fr 1fr; gap:12px}
.lead-fields label{display:flex; flex-direction:column; gap:6px}
.lead-fields span{font-size:12px; font-weight:800; color:rgba(31,42,36,.80)}

.lead-fields input{
  border-radius:16px;
  padding:12px 12px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(31,42,36,.14);
}

.lead-actions{display:flex; gap:10px; flex-wrap:wrap; align-items:center}

@media (max-width: 520px){
  .lead-fields{grid-template-columns:1fr}
}

@media (max-width: 760px){
  .admission-grid{grid-template-columns:1fr;}
  .admission-row{grid-template-columns: 1fr;}
  .admission-two{grid-template-columns:1fr;}
  .admission-photo{max-width:none;}
}

 .student-shell{
   display:grid;
   grid-template-columns: 260px 1fr;
   gap:14px;
   align-items:start;
 }

 .student-sidebar{
   border-radius:var(--radius);
   background:rgba(255,255,255,.72);
   border:1px solid rgba(31,42,36,.10);
   box-shadow:0 10px 26px rgba(19,27,22,.08);
   padding:16px;
   position:sticky;
   top:92px;
 }

 .student-sidebar-head{display:flex; flex-direction:column; gap:6px; margin-bottom:14px}
 .student-sidebar-title{font-weight:1000; letter-spacing:-.01em}
 .student-sidebar-sub{font-size:12px; font-weight:750; color:rgba(31,42,36,.70)}

 .student-tabs{display:flex; flex-direction:column; gap:10px}
 .student-tab{
   border:1px solid rgba(31,42,36,.14);
   background:rgba(255,255,255,.90);
   padding:12px 12px;
   border-radius:14px;
   font-weight:950;
   font-size:13px;
   color:rgba(31,42,36,.78);
   cursor:pointer;
   text-align:left;
 }
 .student-tab.active, .student-tab[aria-selected="true"]{
   background:rgba(13, 34, 26, .95);
   color:rgba(255,255,255,.94);
   border-color:rgba(13, 34, 26, .95);
 }

 .student-main{
   border-radius:var(--radius);
   background:rgba(255,255,255,.72);
   border:1px solid rgba(31,42,36,.10);
   box-shadow:0 10px 26px rgba(19,27,22,.08);
   padding:16px;
   min-width:0;
 }

 .student-toolbar{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap}
 .student-filters{display:flex; gap:10px; flex-wrap:wrap}
 .student-filters label{display:flex; flex-direction:column; gap:6px}
 .student-filters span{font-size:12px; font-weight:750; color:rgba(31,42,36,.80)}
 .student-actions{display:flex; gap:10px; flex-wrap:wrap}

 .student-status{margin-top:10px; min-height:18px; font-size:12px; color:rgba(31,42,36,.78)}

 .student-list{margin-top:12px; display:grid; grid-template-columns:1fr; gap:10px}
 .student-item{
   display:flex;
   align-items:center;
   justify-content:space-between;
   gap:12px;
   padding:12px 12px;
   border-radius:16px;
   background:rgba(255,242,214,.62);
   border:1px solid rgba(31,42,36,.08);
 }
 .student-item-title{font-weight:950}
 .student-item-meta{margin-top:4px; font-size:12px; font-weight:750; color:rgba(31,42,36,.70)}
 .student-item-left{min-width:0}
 .student-item-title, .student-item-meta{white-space:nowrap; overflow:hidden; text-overflow:ellipsis}
 .student-item-right{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
 .student-item-link{font-weight:900; font-size:13px; color:rgba(13, 34, 26, .95)}
 .student-item-link:hover{text-decoration:underline}

@media (max-width: 960px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-copy h1{font-size:38px}
  .cards{grid-template-columns:repeat(2, minmax(0,1fr))}
  .features{grid-template-columns:repeat(2, minmax(0,1fr))}
  .results-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .hero-metrics{grid-template-columns:repeat(3, minmax(0,1fr))}
  .popular-grid{grid-template-columns:repeat(3, minmax(0,1fr))}
  .programs-banner{min-height:260px}
  .tutoring-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .tutoring-illus img{width:min(360px, 42vw)}
  .notes{grid-template-columns:1fr}
  .notes-nav{display:none}
  .note-card{flex-basis:260px}
  .hscroll{grid-template-columns:1fr}
  .hscroll-nav{display:none}
  .scard{flex-basis:280px}
  .student-shell{grid-template-columns:1fr}
  .student-sidebar{position:static; top:auto}
  .notice-grid{grid-template-columns:1fr}
  .notice-controls{grid-template-columns:1fr 1fr}
}

@media (max-width: 720px){
  .nav-toggle{display:flex}
  .nav{
    position:absolute;
    top:64px;
    left:4vw;
    right:4vw;
    background:rgba(255,255,255,.86);
    border:1px solid rgba(31,42,36,.12);
    border-radius:18px;
    box-shadow:var(--shadow);
    padding:10px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    z-index:200;
  }
  .nav a{padding:12px 12px}
  .nav.open{display:flex}
  .founder-speak{grid-template-columns:1fr}
  .founder-speak-photo{max-width:420px; margin:0 auto}
  .hero-copy h1{font-size:34px}
  .cards{grid-template-columns:1fr}
  .features{grid-template-columns:1fr}
  .hero-metrics{grid-template-columns:1fr;}
  .popular-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .programs-banner-content{padding:16px}
  .programs-title{font-size:24px}
  .programs-dots{bottom:10px}
  .tutoring-head{flex-direction:column; align-items:flex-start}
  .tutoring-illus img{width:min(420px, 92vw)}
  .tutoring-grid{grid-template-columns:1fr}
  .offerings-head h2{font-size:28px}
  .note-card{flex-basis:220px; min-height:240px}
  .note-circle{width:132px; height:132px}
  .note-circle img{width:100px}
  .footer-inner{flex-direction:column}
  .footer-bottom{flex-direction:column; align-items:flex-start}
}

@media (max-width: 520px){
  .header-inner{gap:10px}
  .brand-logo{width:38px; height:38px}
  .brand-name{letter-spacing:.10em}
  .brand-sub{font-size:11px}

  .topband-inner{justify-content:center}
  .topband-card{max-width:100%}
  .topband-inline{white-space:normal; line-height:1.25; text-align:center}

  .hero{padding:34px 0 14px}
  .hero-copy h1{font-size:28px}
  .hero-copy p{font-size:14px}

  .section-head{flex-direction:column; align-items:flex-start}
  .section-head p{max-width:unset}

  .popular{margin-top:-18px}
  .popular-grid{grid-template-columns:1fr}

  .notice-controls{grid-template-columns:1fr}

  .row{grid-template-columns:1fr; gap:6px}

  .info-item{grid-template-columns:1fr}
}

@media (max-width: 720px){
  .admin-filters{grid-template-columns:1fr !important}
}

@media (max-width: 420px){
  .container{width:min(1120px, 94vw)}
  .btn{width:100%}
  .hero-cta{flex-direction:column}
  .testimonial-actions{flex-direction:column}
  .student-toolbar{align-items:stretch}
  .student-actions{width:100%}
}

@media (max-width: 960px){
  .admin-shell{grid-template-columns:1fr !important}
  .admin-aside{position:static !important}
}

.table-scroll{
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}

.admin-shell .admin-api-settings{display:none !important}

@media (max-width: 520px){
  .info-item[style*="grid-template-columns"]{
    grid-template-columns:1fr !important;
  }

  .info-item[style*="grid-template-columns"] > div:last-child{
    justify-content:flex-start !important;
  }
}
