@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("site/assets/fonts/inter-latin.woff2?v=20260314-2") format("woff2");
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("site/assets/fonts/plus-jakarta-sans-latin.woff2?v=20260314-2") format("woff2");
}

:root {
  --primary: #4aa5be;
  --primary-dark: #2d6a7b;
  --accent: #f2a53a;
  --accent-dark: #d9922e;
  --ink: #1a2b32;
  --muted: #4a6670;
  --teal: #22515f;
  --teal-dark: #173843;
  --surface: #f4f7f8;
  --light: #fcfdfe;
  --border: #d6e2e6;
  --radius: 16px;
  --shadow: 0 16px 40px rgba(26, 63, 74, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--light);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  line-height: 1.15;
}

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

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.25rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  color: var(--teal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.22s ease;
}

.btn-solid {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(242, 165, 58, 0.25);
}

.btn-solid:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(34, 81, 95, 0.25);
  color: var(--teal);
  background: #fff;
}

.btn-outline:hover {
  border-color: rgba(34, 81, 95, 0.6);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-youtube {
  background: linear-gradient(135deg, #ff2d3a 0%, #c60010 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(215, 15, 33, 0.32);
}

.btn-youtube:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(215, 15, 33, 0.4);
}

.btn-instagram {
  background: linear-gradient(135deg, #6d28d9 0%, #a855f7 44%, #ec4899 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(140, 55, 220, 0.34);
}

.btn-instagram:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 32px rgba(140, 55, 220, 0.45);
}

.btn-instagram-alt {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.btn-instagram-alt:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.16);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(214, 226, 230, 0.65);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: var(--teal);
}

.menu-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  gap: 4px;
  cursor: pointer;
  background: transparent;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--teal);
}

.nav-links {
  position: absolute;
  top: 74px;
  left: 4%;
  right: 4%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow);
}

.nav-links.open {
  display: flex;
}

.nav-links > a:not(.btn) {
  color: var(--muted);
  font-weight: 500;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.8rem, 6vw, 5.2rem) 0;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #163844 2%, #22515f 42%, #2d6a7b 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 30% 30%, rgba(0, 0, 0, 0.9), transparent 78%);
  opacity: 0.24;
  animation: gridShift 24s linear infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-orb-a {
  width: min(62vw, 580px);
  aspect-ratio: 1 / 1;
  top: -28%;
  left: -12%;
  background: radial-gradient(circle, rgba(74, 165, 190, 0.42) 0%, rgba(74, 165, 190, 0.03) 62%, rgba(74, 165, 190, 0) 76%);
  transform: translate3d(calc(var(--hero-shift-x) * -0.65), calc(var(--hero-shift-y) * -0.65), 0);
  animation: orbFloatA 9s ease-in-out infinite;
}

.hero-orb-b {
  width: min(42vw, 380px);
  aspect-ratio: 1 / 1;
  right: -8%;
  top: 4%;
  background: radial-gradient(circle, rgba(242, 165, 58, 0.28) 0%, rgba(242, 165, 58, 0.03) 64%, rgba(242, 165, 58, 0) 80%);
  transform: translate3d(calc(var(--hero-shift-x) * 0.5), calc(var(--hero-shift-y) * 0.5), 0);
  animation: orbFloatB 11s ease-in-out infinite;
}

.hero-orb-c {
  width: min(38vw, 340px);
  aspect-ratio: 1 / 1;
  right: 22%;
  bottom: -18%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 72%);
  transform: translate3d(calc(var(--hero-shift-x) * 0.35), calc(var(--hero-shift-y) * 0.35), 0);
  animation: orbFloatC 13s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.hero-copy {
  color: #fff;
  max-width: 700px;
}

.hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.hero-copy h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  margin-bottom: 1.15rem;
  letter-spacing: -0.02em;
}

.hero-copy h1 span {
  color: #f7c16d;
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 590px;
}

.hero-actions {
  margin-top: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-caption {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 0.88rem;
  max-width: 560px;
}

.hero-stage {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 0.95rem 2.4rem;
}

.hero-course-card {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.94) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(214, 226, 230, 0.9);
  padding: 1.3rem 1.25rem 1.2rem;
  box-shadow: 0 18px 40px rgba(14, 39, 48, 0.24);
  overflow: hidden;
  isolation: isolate;
}

.hero-course-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(74, 165, 190, 0.24), rgba(242, 165, 58, 0.26), rgba(255, 255, 255, 0.1));
  z-index: -2;
}

.hero-course-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -55px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 165, 58, 0.28) 0%, rgba(242, 165, 58, 0) 70%);
  z-index: -1;
}

.hero-course-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  background: rgba(74, 165, 190, 0.12);
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseDot 2s ease-in-out infinite;
}

.hero-course-card h2 {
  margin-top: 0.8rem;
  font-size: clamp(1.5rem, 2.8vw, 1.95rem);
  color: var(--teal);
}

.hero-course-card p {
  color: var(--muted);
  margin-top: 0.55rem;
}

.hero-course-meta {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.hero-course-meta span {
  background: rgba(34, 81, 95, 0.07);
  color: #2c4f5a;
  font-size: 0.74rem;
  font-weight: 650;
  padding: 0.34rem 0.56rem;
  border-radius: 999px;
}

.hero-course-footer {
  margin-top: 1.05rem;
  display: flex;
  align-items: baseline;
  gap: 0.66rem;
}

.hero-price {
  margin-top: 0.2rem;
  color: #b46e16;
  font-size: 1.72rem;
  font-weight: 800;
}

.hero-course-footer span {
  margin-top: 0;
  color: #5b747d;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-course-card .btn {
  margin-top: 1rem;
}

.hero-float-card {
  --bubble-tilt: 0deg;
  position: absolute;
  z-index: 4;
  width: 160px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid rgba(206, 243, 255, 0.84);
  background:
    radial-gradient(circle at 27% 18%, rgba(255, 255, 255, 0.72) 0%, rgba(216, 247, 255, 0.4) 19%, rgba(92, 169, 190, 0.36) 55%, rgba(25, 81, 97, 0.62) 100%),
    linear-gradient(152deg, rgba(95, 190, 215, 0.34), rgba(15, 57, 68, 0.45));
  backdrop-filter: blur(10px) saturate(132%);
  color: #fff;
  padding: 1rem;
  box-shadow:
    0 16px 32px rgba(9, 33, 41, 0.3),
    inset 0 -14px 22px rgba(9, 29, 37, 0.16),
    inset 0 12px 20px rgba(255, 255, 255, 0.24);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  pointer-events: auto;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
  transition: opacity 0.24s ease;
}

.hero-float-card::before,
.hero-float-card::after {
  content: "";
  position: absolute;
}

.hero-float-card::before {
  inset: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-float-card::after {
  width: 46px;
  height: 20px;
  top: 18px;
  left: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(1px);
}

.hero-float-card small {
  display: inline-block;
  color: rgba(246, 253, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.62rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
}

.hero-float-card p {
  margin-top: 0.35rem;
  font-size: 0.91rem;
  line-height: 1.22;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-float-card.is-popping {
  animation: bubblePop 380ms cubic-bezier(0.2, 0.9, 0.2, 1) forwards !important;
}

.hero-float-card.is-hidden {
  animation: none !important;
  opacity: 0;
  transform: scale(0.1);
  pointer-events: none;
}

.hero-float-top {
  --bubble-tilt: -7deg;
  top: -0.45rem;
  right: -6.8rem;
  width: 154px;
  animation: heroFloatTop 7s ease-in-out infinite;
}

.hero-float-bottom {
  --bubble-tilt: 8deg;
  left: -5.8rem;
  bottom: -0.15rem;
  width: 132px;
  animation: heroFloatBottom 8s ease-in-out infinite;
}

@keyframes orbFloatA {
  0%, 100% { transform: translate3d(calc(var(--hero-shift-x) * -0.65), calc(var(--hero-shift-y) * -0.65), 0) scale(1); }
  50% { transform: translate3d(calc(var(--hero-shift-x) * -0.65 + 10px), calc(var(--hero-shift-y) * -0.65 - 22px), 0) scale(1.08); }
}

@keyframes orbFloatB {
  0%, 100% { transform: translate3d(calc(var(--hero-shift-x) * 0.5), calc(var(--hero-shift-y) * 0.5), 0) scale(1); }
  50% { transform: translate3d(calc(var(--hero-shift-x) * 0.5 - 14px), calc(var(--hero-shift-y) * 0.5 + 14px), 0) scale(1.1); }
}

@keyframes orbFloatC {
  0%, 100% { transform: translate3d(calc(var(--hero-shift-x) * 0.35), calc(var(--hero-shift-y) * 0.35), 0) scale(1); }
  50% { transform: translate3d(calc(var(--hero-shift-x) * 0.35 + 8px), calc(var(--hero-shift-y) * 0.35 - 10px), 0) scale(1.12); }
}

@keyframes heroFloatTop {
  0%, 100% { transform: translateY(0) rotate(var(--bubble-tilt)); }
  50% { transform: translateY(-10px) rotate(calc(var(--bubble-tilt) + 2deg)); }
}

@keyframes heroFloatBottom {
  0%, 100% { transform: translateY(0) rotate(var(--bubble-tilt)); }
  50% { transform: translateY(9px) rotate(calc(var(--bubble-tilt) - 2deg)); }
}

@keyframes bubblePop {
  0% {
    transform: translateY(0) rotate(var(--bubble-tilt)) scale(1);
    opacity: 1;
    filter: saturate(1);
  }
  30% {
    transform: translateY(-2px) rotate(var(--bubble-tilt)) scale(1.08);
    opacity: 1;
  }
  100% {
    transform: translateY(-7px) rotate(var(--bubble-tilt)) scale(0.1);
    opacity: 0;
    filter: saturate(1.4);
  }
}

@keyframes gridShift {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-12px, -6px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

@keyframes pulseWave {
  0% { transform: scale(0.82); opacity: 0.7; }
  100% { transform: scale(1.2); opacity: 0; }
}

@media (max-width: 767px) {
  .hero-stage {
    min-height: auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    justify-items: center;
  }

  .hero-float-card {
    position: relative;
    display: flex;
    width: min(42vw, 128px);
    min-width: 112px;
    z-index: 1;
  }

  .hero-course-card {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .hero-float-top,
  .hero-float-bottom {
    width: min(42vw, 128px);
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
  }

  .hero-float-top {
    justify-self: end;
  }

  .hero-float-bottom {
    justify-self: start;
  }

  .hero-float-card small {
    font-size: 0.52rem;
  }

  .hero-float-card p {
    margin-top: 0.22rem;
    font-size: 0.74rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hero-stage {
    min-height: 390px;
    padding: 0.55rem 1.2rem;
  }

  .hero-float-top {
    width: 116px;
    top: -0.2rem;
    right: -3.4rem;
  }

  .hero-float-bottom {
    width: 104px;
    left: -3rem;
    bottom: 0;
  }

  .hero-float-card small {
    font-size: 0.54rem;
  }

  .hero-float-card p {
    margin-top: 0.26rem;
    font-size: 0.76rem;
  }
}

.video-teaser,
.institution,
.pillars,
.programs,
.team,
.collaborators,
.youtube-showcase,
.instagram-showcase,
.cta-strip {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.video-teaser {
  background: #fff;
}

.teaser-box {
  display: grid;
  gap: 1.4rem;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.teaser-box img {
  border-radius: 14px;
  object-fit: cover;
  max-height: 440px;
  width: 100%;
}

.teaser-box h2,
.institution h2 {
  color: var(--teal);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.teaser-box p,
.institution p {
  color: var(--muted);
}

.institution {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafb 100%);
}

.pillars {
  background: var(--teal);
}

.pillars .section-head h2 {
  color: #fff;
}

.pillars .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.cards {
  display: grid;
  gap: 1rem;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 1.3rem;
  display: grid;
  gap: 0.65rem;
}

.card-icon {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  display: grid;
  place-items: center;
  color: #fff;
}

.card-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  color: #fff;
  margin-bottom: 0.2rem;
}

.card p {
  color: rgba(255, 255, 255, 0.74);
}

.programs {
  background: var(--surface);
}

.program-grid {
  display: grid;
  gap: 1rem;
}

.program-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.3rem;
  display: grid;
  gap: 0.6rem;
}

.program-icon {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(74, 165, 190, 0.36);
  background: linear-gradient(145deg, rgba(74, 165, 190, 0.16), rgba(74, 165, 190, 0.04));
  color: var(--primary-dark);
  display: grid;
  place-items: center;
}

.program-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.program-card h3 {
  color: var(--teal);
  margin-bottom: 0.1rem;
}

.program-card p {
  color: var(--muted);
}

.program-card a,
.program-card span {
  margin-top: 0.9rem;
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 700;
}

.program-card a {
  color: var(--primary-dark);
}

.program-card span {
  color: #7d929a;
}

.team {
  background: #fff;
}

.team-grid {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.team-logo-wrap {
  padding: clamp(0.25rem, 1vw, 0.7rem);
}

.team-logo {
  width: min(430px, 100%);
  margin: 0 auto;
  padding: clamp(0.3rem, 0.9vw, 0.65rem);
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.team h2 {
  color: var(--teal);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}

.team p,
.team li {
  color: var(--muted);
}

.team ul {
  margin-top: 1rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
}

.collaborators {
  background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
}

.collab-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 0.85rem;
}

.collab-item {
  text-align: center;
}

.collab-item img {
  width: min(190px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 8px 16px rgba(23, 56, 67, 0.12));
  transform: translateY(0);
  transition: transform 0.24s ease, filter 0.24s ease;
}

.collab-item:hover img {
  transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 14px 22px rgba(23, 56, 67, 0.2));
}

.collab-item figcaption {
  margin-top: 0.62rem;
  color: #34535e;
  font-weight: 600;
  font-size: 0.84rem;
  line-height: 1.35;
}

.youtube-showcase {
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 68, 85, 0.2), transparent 36%),
    radial-gradient(circle at 5% 85%, rgba(255, 136, 58, 0.1), transparent 34%),
    linear-gradient(140deg, #131f28 2%, #1a2d39 46%, #223847 100%);
  color: #fff;
  overflow: hidden;
}

.youtube-showcase .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.youtube-stage {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  padding: clamp(1.2rem, 3vw, 2rem);
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.youtube-copy h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  line-height: 1.15;
}

.youtube-copy p {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
}

.youtube-pulse {
  display: grid;
  place-items: center;
  width: min(220px, 60vw);
  aspect-ratio: 1 / 1;
  justify-self: center;
  position: relative;
}

.pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.22);
  animation: pulseWave 3s ease-out infinite;
}

.pulse-ring-1 { width: 45%; height: 45%; animation-delay: 0s; }
.pulse-ring-2 { width: 67%; height: 67%; animation-delay: 0.7s; }
.pulse-ring-3 { width: 88%; height: 88%; animation-delay: 1.4s; }

.play-core {
  width: 34%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(140deg, #ff3d4b 0%, #bf0818 100%);
  box-shadow: 0 12px 28px rgba(207, 11, 29, 0.4);
}

.youtube-rail {
  margin-top: 1.25rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
}

.youtube-rail::-webkit-scrollbar {
  height: 8px;
}

.youtube-rail::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.yt-card {
  display: block;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.55rem;
  scroll-snap-align: start;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.yt-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.yt-thumb-wrap {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.yt-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  background: rgba(13, 16, 20, 0.75);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.yt-card h3 {
  margin-top: 0.7rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 650;
}

.instagram-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 16%, rgba(236, 72, 153, 0.42), transparent 34%),
    radial-gradient(circle at 8% 85%, rgba(251, 146, 60, 0.25), transparent 38%),
    linear-gradient(140deg, #42127a 0%, #5b1c9e 42%, #7a2ec9 100%);
  margin: 0;
}

.insta-spark {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.3;
}

.insta-spark-a {
  width: 220px;
  height: 220px;
  top: -80px;
  left: -70px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0) 70%);
}

.insta-spark-b {
  width: 140px;
  height: 140px;
  bottom: 45px;
  right: 8%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.68) 0%, rgba(251, 191, 36, 0) 70%);
}

.insta-spark-c {
  width: 170px;
  height: 170px;
  top: 40%;
  right: 34%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.58) 0%, rgba(236, 72, 153, 0) 70%);
}

.insta-stage {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: clamp(1.2rem, 3vw, 2rem);
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.insta-copy h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: #fff;
}

.insta-copy p {
  margin-top: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
}

.instagram-showcase .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}

.insta-mock {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 36px rgba(43, 11, 87, 0.36);
  padding: 0.8rem;
  display: grid;
  gap: 0.55rem;
  max-width: 360px;
  margin: 0 auto;
}

.insta-mock-head {
  display: flex;
  gap: 0.32rem;
}

.insta-mock-head span {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: #d6d9de;
}

.insta-mock-post {
  border-radius: 0.82rem;
  padding: 0.75rem 0.8rem;
}

.insta-mock-post small {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.34rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.26rem 0.5rem;
}

.insta-mock-post p {
  color: #1f2f37;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
}

.insta-post-reel {
  background: linear-gradient(140deg, #f7ecff 0%, #efdcff 100%);
}

.insta-post-reel small {
  background: #8b5cf6;
  color: #fff;
}

.insta-post-live {
  background: linear-gradient(140deg, #fff0fb 0%, #ffe0f4 100%);
}

.insta-post-live small {
  background: #db2777;
  color: #fff;
}

.insta-post-latam {
  background: linear-gradient(140deg, #fff5ea 0%, #ffe7cb 100%);
}

.insta-post-latam small {
  background: #ea580c;
  color: #fff;
}

.insta-rail {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
  overflow: visible;
  scroll-snap-type: none;
  padding-bottom: 0.35rem;
}

.insta-mini-card {
  display: block;
  border-radius: 1rem;
  padding: 1.1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 24px rgba(42, 11, 83, 0.2);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.insta-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(42, 11, 83, 0.35);
  border-color: rgba(255, 255, 255, 0.55);
}

.insta-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.insta-mini-card h3 {
  margin-top: 0.4rem;
  color: #fff;
  font-size: 1.08rem;
}

.insta-mini-card > p {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
}

.cta-strip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0;
}

.cta-strip-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.cta-strip-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-strip-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(120deg, rgba(16, 39, 48, 0.88) 8%, rgba(22, 52, 62, 0.82) 42%, rgba(31, 67, 79, 0.76) 100%),
    radial-gradient(circle at 82% 18%, rgba(242, 165, 58, 0.24), transparent 42%);
}

.cta-shell {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  border-radius: 1.1rem;
  padding: clamp(1.1rem, 3vw, 2.1rem);
  display: grid;
  gap: 1rem;
  align-items: center;
}

.cta-strip .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.cta-strip h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.cta-subtitle {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
}

.cta-bullets {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cta-bullets span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.36rem 0.62rem;
}

.cta-price-wrap {
  margin-top: 1.2rem;
  display: inline-grid;
  gap: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.16);
  border-radius: 0.95rem;
  padding: 0.7rem 0.9rem;
}

.price-kicker {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.strip-price {
  color: #ffd48d;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
}

.cta-actions {
  justify-content: flex-start;
}

.cta-actions .btn-solid {
  box-shadow: 0 10px 28px rgba(242, 165, 58, 0.32);
}

.site-footer {
  background: #102830;
  color: rgba(255, 255, 255, 0.75);
  padding: 2.7rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.4rem;
}

.site-footer h3 {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
}

.footer-brand {
  margin-bottom: 0.8rem;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 1.7rem;
  padding-top: 1.2rem;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  background: var(--accent);
  color: #fff;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(242, 165, 58, 0.35);
  transform: translateY(120%);
  transition: transform 0.25s ease;
}

.floating-cta.visible {
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.05s; }
.delay-2 { transition-delay: 0.1s; }
.delay-3 { transition-delay: 0.15s; }
.delay-4 { transition-delay: 0.2s; }

@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }

  .nav-links {
    position: static;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    border: 0;
    box-shadow: none;
    background: transparent;
    padding: 0;
    gap: 1rem;
  }

  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 1.6rem;
  }

  .teaser-box {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .collab-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem 1rem;
  }

  .collab-item img {
    width: min(200px, 100%);
  }

  .youtube-stage {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .youtube-rail {
    grid-auto-flow: row;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-columns: initial;
    overflow: visible;
    scroll-snap-type: none;
  }

  .insta-stage {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .insta-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .cta-shell {
    grid-template-columns: 1fr auto;
  }

  .cta-actions {
    justify-content: flex-end;
  }

  .cta-actions .btn {
    min-width: 210px;
  }

  .cta-shell {
    padding: 2.05rem 2rem;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .team-logo-wrap {
    padding: 0.15rem 0.4rem;
  }
}

@media (min-width: 1100px) {
  .insta-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
