@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Inter:wght@400;500;600;700;800;900&display=swap');

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Inter",sans-serif;
  background:#06155a;
  color:#fff;
  overflow-x:hidden;
}

/* ---------------- SHARED NAVIGATION ---------------- */

.program-nav,
.sciss-nav{
  position:absolute;

  top:18px;
  left:6%;
  right:6%;

  z-index:50;

  padding:8px 20px;

  display:flex;
  justify-content:space-between;
  align-items:center;

  background:rgba(3,14,67,.14);

  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);

  border:1px solid rgba(255,255,255,.05);

  border-radius:18px;
}
.glass-strip{
  background:rgba(3,14,67,.16);

  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);

  border:1px solid rgba(255,255,255,.05);

  border-radius:18px;
}

.program-brand,
.sciss-brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  text-decoration:none;
  flex-shrink:0;
}

.site-logo{
  width:64px;
  height:64px;
  object-fit:contain;
  display:block;
  flex-shrink:0;
}

.footer-site-logo{
  width:72px;
  height:auto;
  object-fit:contain;
  display:block;
  margin-bottom:18px;
}

.program-brand strong,
.sciss-brand strong{
  display:block;
  font-size:26px;
  line-height:.95;
}

.program-brand span,
.sciss-brand span{
  display:block;
  color:#ffcc4d;
  font-size:17px;
  font-weight:800;
  line-height:1;
}

.program-nav-links,
.sciss-links{
  display:flex;
  gap:32px;
  align-items:center;
}

.program-nav-links a,
.sciss-links a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  opacity:.9;
  transition:.25s ease;
  white-space:nowrap;
}

.program-nav-links a:hover,
.sciss-links a:hover{
  opacity:1;
  color:#ffcc4d;
}

/* Old placeholder logo classes kept only so older pages do not break */
.program-logo,
.sciss-logo,
.footer-logo{
  width:64px;
  height:64px;
  border-radius:50%;
  border:3px solid #fff;
  display:grid;
  place-items:center;
  font-weight:900;
  letter-spacing:2px;
  color:#fff;
}

/* ---------------- HOMEPAGE HERO VIDEO ---------------- */

.sciss-home{
  font-family:"Inter","Poppins",Arial,sans-serif;
  color:#fff;
  background:#06155a;
  overflow:hidden;
}

.sciss-hero{
  min-height:80vh;
  position:relative;
  padding:95px 6% 45px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#06155a;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  z-index:0;
}

.sciss-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(3,14,67,.72) 0%,
    rgba(3,14,67,.46) 52%,
    rgba(3,14,67,.18) 100%
  );
  z-index:1;
}

.sciss-hero::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-120px;
  width:280px;
  height:280px;
  background:#ff7900;
  transform:rotate(35deg);
  opacity:.9;
  z-index:1;
}

.sciss-hero-content{
  position:relative;
  z-index:3;
  max-width:920px;
}

.sciss-kicker{
  color:#ffcc4d;
  font-weight:700;
  font-size:15px;
  letter-spacing:.4px;
  margin-bottom:22px;
  line-height:1.4;
}

.sciss-hero h1{
  font-family:"Rajdhani",sans-serif;
  font-size:clamp(58px,7vw,104px);
  font-weight:700;
  line-height:.9;
  letter-spacing:-1px;
  text-transform:uppercase;
  margin:0;
  text-shadow:0 8px 18px rgba(0,0,0,.45);
  max-width:1200px;
}

.sciss-hero h1 span{
  color:#f97316;
}

.sciss-subtitle{
  max-width:760px;
  font-size:17px;
  font-weight:500;
  margin-top:26px;
  line-height:1.5;
}

.sciss-floating-cta{
  position:relative;
  z-index:3;
  display:flex;
  gap:16px;
  margin-top:22px;
}

.sciss-floating-cta a{
  text-decoration:none;
  padding:14px 26px;
  font-family:"Rajdhani",sans-serif;
  font-size:20px;
  font-weight:700;
  letter-spacing:.5px;
  text-transform:uppercase;
  transition:.3s ease;
  text-align:center;
  min-width:190px;
  border-radius:999px;
}

.sciss-apply{
  color:#fff;
  background:rgba(249,115,22,.94);
}

.sciss-explore{
  border:2px solid rgba(255,255,255,.75);
  color:#fff;
  background:rgba(255,255,255,.08);
}

.sciss-floating-cta a:hover{
  transform:translateY(-3px);
}

.sciss-apply:hover{
  background:#ff8427;
}

.sciss-explore:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.9);
}

/* ---------------- HOMEPAGE PROGRAM CARDS ---------------- */

.sciss-section{
  padding:80px 6% 95px;
  background:#eef6ff;
  color:#06155a;
}

.program-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.program-card{
  min-height:430px;
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  position:relative;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  box-shadow:0 18px 35px rgba(0,0,0,.22);
  border-radius:22px;
  transition:.35s ease;
}

.program-card:hover{
  transform:translateY(-10px);
  box-shadow:0 26px 50px rgba(0,0,0,.28);
}

.program-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(4,17,78,.18) 0%,
    rgba(4,17,78,.55) 48%,
    rgba(4,17,78,.96) 100%
  );
}

.program-card > *{
  position:relative;
  z-index:1;
}

.program-card span{
  display:inline-block;
  margin-bottom:8px;
  color:#ff7900;
  font-weight:900;
  text-transform:uppercase;
  font-size:14px;
  letter-spacing:1px;
}

.program-card h3{
  font-family:"Rajdhani",sans-serif;
  font-weight:700;
  color:#fff;
  font-size:34px;
  line-height:.96;
  text-transform:uppercase;
  margin:10px 0 16px;
}

.program-card p{
  color:#fff;
  font-size:17px;
  line-height:1.55;
  font-weight:600;
}

.program-card a{
  color:#fff;
  background:rgba(249,115,22,.92);
  padding:13px 22px;
  text-decoration:none;
  font-weight:800;
  width:fit-content;
  border-radius:999px;
  backdrop-filter:blur(6px);
  transition:.3s ease;
}

.program-card a:hover{
  background:#ff8427;
  transform:translateY(-2px);
}

.ai{
  background-image:
  linear-gradient(rgba(3,14,67,.4), rgba(3,14,67,.4)),
  url("images/ai.avif");
}

.finance{
  background-image:
  linear-gradient(rgba(3,14,67,.4), rgba(3,14,67,.4)),
  url("images/finance.avif");
}

.startup{
  background-image:
  linear-gradient(rgba(3,14,67,.4), rgba(3,14,67,.4)),
  url("images/startup.avif");
}

.speaking{
  background-image:
  linear-gradient(rgba(3,14,67,.4), rgba(3,14,67,.4)),
  url("images/speaking.avif");
}

.fencing{
  background-image:
  linear-gradient(rgba(3,14,67,.4), rgba(3,14,67,.4)),
  url("images/fencing.webp");
}

.arts{
  background-image:
  linear-gradient(rgba(3,14,67,.4), rgba(3,14,67,.4)),
  url("images/arts.avif");
}/* ---------------- HOMEPAGE WHY / EXPERIENCE / CTA ---------------- */

.why-sciss{
  position:relative;
  padding:45px 6% 65px;
  background:
    radial-gradient(circle at top left,rgba(249,115,22,.08),transparent 28%),
    radial-gradient(circle at bottom right,rgba(31,99,216,.12),transparent 30%),
    linear-gradient(180deg,#eef7ff 0%,#d9ebfb 100%);
  color:#06155a;
  overflow:hidden;
}

.why-sciss .section-heading{
  position:relative;
  z-index:2;
  margin-bottom:24px;
}

.why-sciss .section-heading h2{
  font-size:clamp(34px,4vw,54px);
}

.superteen-framework{
  width:100%;
  max-width:900px;
  display:block;
  margin:0 auto;
  position:relative;
  z-index:2;
  border-radius:18px;
}

.experience-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:54px;
  padding:90px 6%;
  background:#06155a;
}

.experience-text h2{
  font-family:"Rajdhani",sans-serif;
  font-weight:700;
  font-size:clamp(42px,6vw,72px);
  line-height:1;
  text-transform:uppercase;
  margin:0 0 24px;
}

.experience-text p:last-child{
  font-size:20px;
  line-height:1.65;
  font-weight:600;
}

.experience-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.experience-list div{
  background:rgba(255,255,255,.08);
  border-left:6px solid #ff7900;
  padding:24px;
  font-size:20px;
  font-weight:900;
}

.final-cta{
  text-align:center;
  padding:100px 6%;
  background:
    linear-gradient(rgba(255,121,0,.92),rgba(255,121,0,.92)),
    url("images/footercta.avif");
  background-size:cover;
  background-position:center;
  color:#06155a;
}

.final-cta h2{
  font-family:"Rajdhani",sans-serif;
  font-weight:700;
  font-size:clamp(48px,7vw,90px);
  text-transform:uppercase;
  margin:0;
}

.final-cta p{
  font-size:24px;
  font-weight:900;
  margin-bottom:32px;
}

.btn-primary,
.btn-secondary{
  display:inline-block;
  padding:16px 30px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.6px;
}

.btn-primary{
  background:#06155a;
  color:#fff;
}

.btn-secondary{
  border:2px solid #fff;
  color:#fff;
}

/* ---------------- PROGRAM / INNER PAGE HERO ---------------- */

.program-page{
  background:#06155a;
}

.program-hero{
  min-height:72vh;
  position:relative;
  display:flex;
  align-items:center;
  padding:110px 6% 65px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
}

.program-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(3,14,67,.96) 0%,
    rgba(3,14,67,.82) 52%,
    rgba(3,14,67,.35) 100%
  );
}

.program-hero::after{
  content:"";
  position:absolute;
  width:340px;
  height:340px;
  right:-120px;
  bottom:-120px;
  background:#f97316;
  transform:rotate(35deg);
  opacity:.9;
}

.program-hero-content{
  position:relative;
  z-index:3;

  max-width:820px;

  min-height:auto;

  display:flex;
  flex-direction:column;
  justify-content:center;
}

.program-kicker,
.section-mini{
  color:#ffcc4d;
  font-size:15px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.program-hero h1{
  margin:0;
  font-family:"Rajdhani",sans-serif;
  font-size:clamp(58px,7vw,104px);
  line-height:.92;
  text-transform:uppercase;
  color:#fff;
  max-width:900px;
}

.program-subtitle{
  margin-top:28px;
  max-width:760px;
  font-size:22px;
  line-height:1.6;
  font-weight:600;
}

.program-cta,
.hero-button,
.program-final-cta a{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  width:auto;

  padding:18px 42px;

  margin-top:24px;

  border-radius:999px;

  background:#ff7a12;

  color:#fff;

  font-family:"Rajdhani",sans-serif;

  font-size:20px;

  font-weight:700;

  text-transform:uppercase;

  text-decoration:none;

  transition:.3s ease;
}

.program-hero-content .program-cta{
  align-self:flex-start;
  width:auto;
  max-width:max-content;
}

.program-cta:hover,
.hero-button:hover,
.program-final-cta a:hover{
  transform:translateY(-2px);
}
.ai-hero{
  background-image:
  linear-gradient(rgba(3,14,67,.4), rgba(3,14,67,.4)),
  url("images/ai.avif");
}

.finance-hero{
  background-image:
  linear-gradient(rgba(3,14,67,.4), rgba(3,14,67,.4)),
  url("images/finance.avif");
}

.startup-hero{
  background-image:
  linear-gradient(rgba(3,14,67,.4), rgba(3,14,67,.4)),
  url("images/startup.avif");
}

.speaking-hero{
  background-image:
  linear-gradient(rgba(3,14,67,.4), rgba(3,14,67,.4)),
  url("images/speaking.avif");
}

.fencing-hero{
  background-image:
  linear-gradient(rgba(3,14,67,.4), rgba(3,14,67,.4)),
  url("images/fencing.webp");
}

.arts-hero{
  background-image:
  linear-gradient(rgba(3,14,67,.4), rgba(3,14,67,.4)),
  url("images/arts.avif");
}
/* ---------------- SHARED SECTIONS ---------------- */

.program-overview,
.program-outcomes{
  padding:90px 6%;
  background:#eef7ff;
  color:#06155a;
}

.program-container{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:start;
}

.overview-left h2,
.outcomes-text h2,
.section-heading h2,
.program-final-cta h2{
  margin:0;
  font-family:"Rajdhani",sans-serif;
  font-size:clamp(42px,6vw,72px);
  line-height:.95;
  text-transform:uppercase;
}

.overview-right p,
.outcomes-text p{
  font-size:19px;
  line-height:1.8;
  font-weight:500;
}

.quick-facts{
  background:#030e43;
  padding:26px 6%;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.fact{
  border-left:4px solid #f97316;
  padding-left:18px;
}

.fact strong{
  display:block;
  color:#ffcc4d;
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:6px;
}

.fact span{
  color:#fff;
  font-weight:700;
}

.program-highlights,
.program-gains{
  padding:90px 6%;
  background:#06155a;
}

.section-heading{
  text-align:center;
  margin-bottom:44px;
}

.section-heading p{
  color:#f97316;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:1px;
}

.highlight-grid{
  max-width:1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.highlight-card{
  background:rgba(255,255,255,.08);
  border-left:6px solid #f97316;
  padding:32px;
  min-height:130px;
  display:flex;
  align-items:center;
  font-family:"Rajdhani",sans-serif;
  font-size:28px;
  line-height:1.05;
  font-weight:700;
  box-shadow:0 18px 35px rgba(0,0,0,.18);
}

.trust-strip{
  background:#eef7ff;
  padding:90px 6%;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.trust-card{
  background:#fff;
  padding:38px;
  border-radius:24px;
  box-shadow:0 18px 35px rgba(0,0,0,.08);
  border-top:6px solid #f97316;
}

.trust-card h3{
  margin:0 0 18px;
  font-family:"Rajdhani",sans-serif;
  font-size:32px;
  line-height:.95;
  text-transform:uppercase;
  color:#06155a;
}

.trust-card p{
  margin:0;
  color:#334155;
  line-height:1.8;
}

.program-note{
  max-width:850px;
  margin:36px auto 0;
  color:rgba(255,255,255,.82);
  text-align:center;
  font-size:18px;
  line-height:1.7;
}

.white-card-section{
  background:#f4f8ff;
  color:#06155a;
  padding:90px 6%;
}

.white-card-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.white-info-card{
  background:#fff;
  border-radius:24px;
  padding:34px;
  box-shadow:0 18px 38px rgba(6,21,90,.08);
  border-top:6px solid #f97316;
}

.white-info-card h3{
  font-family:"Rajdhani",sans-serif;
  font-size:32px;
  line-height:.95;
  text-transform:uppercase;
  margin:0 0 16px;
  color:#06155a;
}

.white-info-card p{
  color:#334155;
  line-height:1.75;
  margin:0;
}

.white-info-card span{
  display:inline-block;
  margin-bottom:14px;
  color:#f97316;
  font-weight:900;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:1px;
}

.program-final-cta{
  text-align:center;
  padding:100px 6%;
  background:
    linear-gradient(rgba(249,115,22,.92),rgba(249,115,22,.92)),
    url("images/footercta.avif");
  background-size:cover;
  background-position:center;
  color:#06155a;
}

.program-final-cta p{
  font-size:22px;
  font-weight:800;
  margin-top:24px;
}

/* ---------------- FOOTER ---------------- */

.sciss-footer{
  background:#020b33;
  padding:70px 6% 28px;
}

.footer-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:42px;
}

.footer-brand h3{
  margin:22px 0 16px;
  font-family:"Rajdhani",sans-serif;
  font-size:34px;
  line-height:.95;
  text-transform:uppercase;
}

.footer-brand p,
.footer-col p{
  color:rgba(255,255,255,.72);
  line-height:1.7;
  font-size:15px;
}

.footer-col h4{
  margin:0 0 22px;
  color:#ffcc4d;
  font-size:16px;
  text-transform:uppercase;
  letter-spacing:1px;
}

.footer-col a{
  display:block;
  margin-bottom:11px;
  color:rgba(255,255,255,.78);
  text-decoration:none;
  transition:.25s ease;
  font-size:15px;
}

.footer-col a:hover{
  color:#ffcc4d;
  transform:translateX(4px);
}

.footer-bottom{
  max-width:1200px;
  margin:42px auto 0;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.58);
  font-size:14px;
  text-align:center;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width:1024px){

  .program-nav,
  .sciss-nav{
    left:4%;
    right:4%;
    padding:6px 14px;
  }

  .program-nav-links,
  .sciss-links{
    gap:10px;

    flex-wrap:wrap;

    justify-content:flex-end;

    max-width:62%;
  }

  .program-nav-links a,
  .sciss-links a{
    font-size:13px;
  }

  .site-logo{
    width:52px;
    height:52px;
  }

  .program-brand strong,
  .sciss-brand strong{
    font-size:18px;
  }

  .program-brand span,
  .sciss-brand span{
    font-size:12px;
  }

}

@media (max-width:1000px){
  .program-grid,
  .highlight-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .program-container,
  .experience-section{
    grid-template-columns:1fr;
    gap:36px;
  }

  .trust-strip,
  .white-card-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}


@media (max-width:700px){

  .program-nav,
  .sciss-nav{
    top:14px;
    left:4%;
    right:4%;
    padding:6px 10px;
    border-radius:18px;
  }

  .site-logo{
    width:42px;
    height:42px;
  }

  .program-brand,
  .sciss-brand{
    gap:5px;
  }

  .program-brand strong,
  .sciss-brand strong{
    font-size:12px;
    line-height:1;
  }

  .program-brand span,
  .sciss-brand span{
    font-size:9px;
  }

  .program-nav-links,
  .sciss-links{
    gap:5px;
    flex-wrap:wrap;
    justify-content:flex-end;
    max-width:54%;
  }

  .program-nav-links a,
  .sciss-links a{
    font-size:10px;
    white-space:nowrap;
  }

  .sciss-hero{
    min-height:auto;
    padding:150px 6% 80px;
  }

  .program-hero{
    min-height:auto;
    padding:145px 6% 80px;
  }
  .program-hero-content{
  min-height:auto;
  }

  .program-hero::after{
    width:140px;
    height:140px;
    right:-55px;
    bottom:-45px;
    opacity:.22;
  }

  .sciss-subtitle,
  .program-subtitle{
    font-size:18px;
  }

  .sciss-floating-cta{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

  .sciss-floating-cta a{
    width:220px;
    text-align:center;
  }

  .program-grid,
  .highlight-grid,
  .quick-facts{
    grid-template-columns:1fr;
  }

  .superteen-framework{
    max-width:100%;
    border-radius:12px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }
}
.staff-section{
  padding:90px 6%;
  background:#06155a;
}

.staff-light{
  background:#eef7ff;
  color:#06155a;
}

.staff-light .section-heading h2{
  color:#06155a;
}

.staff-grid{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.staff-card{
  position:relative;

  background:#fff;
  color:#06155a;

  border-radius:24px;
  overflow:hidden;

  border:1px solid rgba(15,23,42,.08);

  box-shadow:
    0 10px 30px rgba(0,0,0,.10);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.staff-card:hover{
  transform:translateY(-8px);

  border-color:rgba(249,115,22,.35);

  box-shadow:
    0 24px 54px rgba(0,0,0,.16),
    0 0 0 1px rgba(249,115,22,.12);
}

.staff-card img{
  width:100%;
  height:310px;
  object-fit:cover;
  display:block;
}

.staff-card span{
  display:inline-block;
  margin:24px 24px 8px;
  color:#f97316;
  font-size:13px;
  font-weight:900;
  letter-spacing:1px;
  text-transform:uppercase;
}

.staff-card h3{
  margin:0 24px 10px;
  font-family:"Rajdhani",sans-serif;
  font-size:32px;
  line-height:.95;
  text-transform:uppercase;
}

.staff-card p{
  margin:0 24px 28px;
  color:#334155;
  font-size:16px;
  line-height:1.55;
}

@media(max-width:1000px){
  .staff-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:650px){
  .staff-grid{
    grid-template-columns:1fr;
  }

  .staff-card img{
    height:360px;
  }
}

.white-info-card a,
.white-info-card a:visited{
  color:#06155a;
  text-decoration:none;
  font-weight:700;
  transition:color .25s ease;
}

.white-info-card a:hover{
  color:#f97316;
}
