:root {
  --tp-navy: #0b1f3a;
  --tp-navy-deep: #071528;
  --tp-teal: #0d9488;
  --tp-teal-light: #2dd4bf;
  --tp-orange: #f97316;
  --tp-orange-dark: #ea580c;
  --tp-yellow: #fbbf24;
  --tp-white: #fff;
  --tp-gray: #64748b;
  --tp-light: #f8fafc;
  --tp-display: "Archivo Black", "Montserrat", sans-serif;
  --tp-font: "Montserrat", system-ui, sans-serif;
  --tp-wrap: min(1360px, calc(100% - 2rem));
  --tp-header-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.tp-body {
  margin: 0;
  font-family: var(--tp-font);
  font-weight: 700;
  color: #1e293b;
  background: var(--tp-white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

.tp-wrap { width: var(--tp-wrap); margin-inline: auto; }

/* topbar */
.tp-topbar {
  background: var(--tp-white);
  border-bottom: 1px solid #e2e8f0;
  font-size: .78rem; font-weight: 800;
}
.tp-topbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; padding: .55rem 0;
}
.tp-topbar__left {
  display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; color: #334155;
}
.tp-topbar__item {
  display: inline-flex; align-items: center; gap: .4rem;
  color: inherit; font-weight: 800;
}
.tp-topbar__item svg { flex-shrink: 0; color: var(--tp-teal); }
.tp-topbar__left a.tp-topbar__item:hover { color: var(--tp-teal); }
.tp-topbar__social {
  display: flex; align-items: center; gap: .45rem;
}
.tp-social {
  width: 36px; height: 36px;
  display: block; flex-shrink: 0;
  border-radius: 10px; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  background: transparent;
}
.tp-social img {
  width: 100%; height: 100%;
  display: block; object-fit: cover;
}
.tp-social:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 6px 16px rgba(15,23,42,.18);
}

/* header */
.tp-header {
  background: linear-gradient(135deg, var(--tp-navy-deep), var(--tp-navy));
  color: #fff; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.tp-header__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(.75rem, 2vw, 1.75rem);
  padding: .55rem 0;
  min-height: var(--tp-header-h);
}
.tp-logo {
  display: flex; align-items: center; flex-shrink: 0;
  line-height: 0; background: none; border: 0;
}
.tp-logo img {
  height: clamp(58px, 7.5vw, 72px); width: auto;
  max-width: min(220px, 26vw);
  object-fit: contain; display: block;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.28));
}

.tp-nav {
  min-width: 0; overflow: hidden;
  display: flex; justify-content: center;
}
.tp-nav__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(.45rem, 1.2vw, 1.1rem);
  flex-wrap: nowrap; width: max-content; max-width: 100%;
}
.tp-nav__list > li { position: relative; flex: 0 0 auto; }
.tp-nav__list a {
  font-size: clamp(.68rem, .95vw, .8rem); font-weight: 900;
  color: #e2e8f0; padding: .4rem 0; display: inline-block;
  white-space: nowrap; transition: color .2s; letter-spacing: .01em;
}
.tp-nav__list a:hover,
.tp-nav__list .current-menu-item > a { color: var(--tp-teal-light); }

.tp-nav__list .sub-menu {
  list-style: none; margin: 0; padding: .5rem 0;
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: #fff; color: #0f172a; border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: .2s ease;
}
.tp-nav__list li:hover > .sub-menu,
.tp-nav__list li:focus-within > .sub-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.tp-nav__list .sub-menu a {
  display: block; padding: .65rem 1rem; color: #0f172a; font-weight: 800;
}
.tp-nav__list .sub-menu a:hover { background: #f1f5f9; color: var(--tp-teal); }

.tp-player-widget {
  display: flex; align-items: center; gap: .55rem;
  background: rgba(255,255,255,.96); color: #0f172a;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px; padding: .35rem .65rem .35rem .35rem;
  width: min(230px, 22vw); min-width: 196px; flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.tp-player-widget__toggle {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--tp-teal), #0891b2);
  color: #fff; display: grid; place-items: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tp-player-widget__toggle:hover { transform: scale(1.04); }
.tp-player-widget__toggle.is-playing {
  box-shadow: 0 0 0 3px rgba(45,212,191,.35);
}
.tp-player-widget__icon {
  display: grid; place-items: center; line-height: 0;
}
.tp-player-widget__icon[hidden] { display: none !important; }
.tp-player-widget__meta {
  flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .2rem;
}
.tp-player-widget__label {
  font-size: .58rem; font-weight: 900; letter-spacing: .08em;
  color: var(--tp-teal); line-height: 1;
}
.tp-player-widget__track {
  height: 5px; background: #cbd5e1; border-radius: 999px; overflow: hidden;
}
.tp-player-widget__track span {
  display: block; height: 100%; width: 35%;
  background: linear-gradient(90deg, var(--tp-teal), var(--tp-orange));
  border-radius: inherit; opacity: 0; transition: opacity .3s ease;
}
.tp-player-widget__track span.is-live {
  opacity: 1;
  animation: tp-live-pulse 1.6s ease-in-out infinite;
}
@keyframes tp-live-pulse {
  0%, 100% { transform: scaleX(.35); transform-origin: left; opacity: .75; }
  50% { transform: scaleX(1); transform-origin: left; opacity: 1; }
}
.tp-player-widget__vol.is-muted { color: #ef4444; }
.tp-player-widget__time {
  font-size: .68rem; font-weight: 900; min-width: 36px; text-align: center;
  font-variant-numeric: tabular-nums;
}
.tp-player-widget__vol {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; color: #64748b;
  transition: color .2s, background .2s;
}
.tp-player-widget__vol:hover { color: var(--tp-teal); background: #f1f5f9; }

.tp-nav-toggle {
  display: none; width: 42px; height: 42px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.tp-nav-toggle span {
  display: block; height: 3px; background: #fff; border-radius: 2px;
}

/* hero */
.tp-hero {
  position: relative; min-height: clamp(360px, 52vh, 520px);
  overflow: hidden; background: #000;
}
.tp-hero__slides { position: relative; height: 100%; min-height: inherit; }
.tp-hero__slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .6s ease;
  background-image: var(--hero-bg); background-size: cover; background-position: center;
}
.tp-hero__slide.is-active { opacity: 1; visibility: visible; }
.tp-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,21,40,.88), rgba(7,21,40,.45));
}
.tp-hero__content {
  position: relative; z-index: 2; min-height: inherit;
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 0 3.5rem;
}
.tp-hero__content h1 {
  font-family: var(--tp-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 400; line-height: .95; letter-spacing: -.02em;
  color: #fff; margin: 0 0 1rem; max-width: 12ch;
}
.tp-hero__content p {
  font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 800;
  color: #e2e8f0; margin: 0 0 1.75rem; max-width: 36ch;
}
.tp-hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff;
  font-size: 1.6rem; line-height: 1;
  backdrop-filter: blur(4px);
}
.tp-hero__arrow:hover { background: rgba(255,255,255,.28); }
.tp-hero__arrow--prev { left: 1rem; }
.tp-hero__arrow--next { right: 1rem; }

.tp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.6rem; border-radius: 999px;
  font-size: .92rem; font-weight: 900; transition: transform .2s, box-shadow .2s;
}
.tp-btn:hover { transform: translateY(-2px); }
.tp-btn--cta {
  background: linear-gradient(135deg, var(--tp-orange), var(--tp-yellow));
  color: #fff; box-shadow: 0 10px 24px rgba(249,115,22,.35);
  align-self: flex-start;
}
.tp-btn--program {
  background: linear-gradient(135deg, var(--tp-orange), var(--tp-orange-dark));
  color: #fff; margin-top: auto;
}
.tp-btn--dark {
  background: var(--tp-navy); color: #fff;
  box-shadow: 0 10px 24px rgba(11,31,58,.25);
}
.tp-btn--light {
  background: #fff; color: #dc2626; font-weight: 900;
}
.tp-btn--map {
  margin-top: .75rem; background: #fff; color: #2563eb;
  border: 1px solid #bfdbfe; font-size: .82rem; padding: .55rem 1rem;
}

/* about */
.tp-about {
  padding: 3.5rem 0; background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.tp-about__grid {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem; align-items: center;
}
.tp-about__media { position: relative; }
.tp-about__media > img:first-child {
  width: 100%; border-radius: 20px;
  box-shadow: 0 20px 50px rgba(15,23,42,.15);
  aspect-ratio: 4/3; object-fit: cover;
}
.tp-about__badge {
  position: absolute; right: -1rem; bottom: -1rem;
  width: min(140px, 35%); border-radius: 14px;
  box-shadow: 0 14px 30px rgba(15,23,42,.2);
  border: 4px solid #fff;
}
.tp-about__eyebrow {
  display: inline-block; margin-bottom: .75rem;
  font-size: .72rem; font-weight: 900; letter-spacing: .08em;
  text-transform: uppercase; color: var(--tp-teal);
}
.tp-about__content h2 {
  font-family: var(--tp-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--tp-navy); margin: 0 0 1rem; line-height: 1.1;
}
.tp-about__content p {
  margin: 0 0 1rem; line-height: 1.7; font-weight: 700; color: #334155;
}
.tp-about__stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .75rem; margin: 1.5rem 0 1.75rem;
}
.tp-about__stat {
  background: #fff; border-radius: 14px; padding: .85rem .65rem;
  text-align: center; box-shadow: 0 8px 20px rgba(15,23,42,.06);
  border: 1px solid #eef2f7;
}
.tp-about__stat strong {
  display: block; font-family: var(--tp-display);
  font-size: 1.15rem; color: var(--tp-navy);
}
.tp-about__stat span {
  font-size: .68rem; font-weight: 800; color: #64748b;
  text-transform: uppercase; letter-spacing: .04em;
}

/* programs */
.tp-programs { padding: 3rem 0 3.5rem; background: #fff; }
.tp-programs__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.tp-program-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 12px 32px rgba(15,23,42,.08);
  display: flex; flex-direction: column; text-align: center;
  padding-bottom: 1.25rem; border: 1px solid #eef2f7;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tp-program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,23,42,.12);
}
.tp-program-card__img {
  aspect-ratio: 4/3; overflow: hidden; margin-bottom: 1rem;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}
.tp-program-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.tp-program-card:hover .tp-program-card__img img { transform: scale(1.05); }
.tp-program-card h2 {
  font-family: var(--tp-display); font-size: 1.35rem;
  margin: 0 1rem .65rem; color: var(--tp-navy);
}
.tp-program-card__desc {
  margin: 0 1rem 1rem; font-size: .85rem; font-weight: 700;
  color: #64748b; line-height: 1.5;
}

/* banner */
.tp-banner {
  position: relative; overflow: hidden;
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 0 100%);
}
.tp-banner__bg {
  position: absolute; inset: 0;
  background: var(--banner-bg) center/cover no-repeat;
  transform: scale(1.03);
}
.tp-banner__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(7,21,40,.92) 0%, rgba(11,31,58,.78) 45%, rgba(249,115,22,.55) 100%);
}
.tp-banner__content {
  position: relative; z-index: 1; color: #fff; max-width: 680px;
}
.tp-banner__eyebrow {
  display: inline-block; margin-bottom: .85rem;
  padding: .35rem .85rem; border-radius: 999px;
  background: rgba(45,212,191,.18); color: var(--tp-teal-light);
  font-size: .72rem; font-weight: 900; letter-spacing: .08em;
  text-transform: uppercase; border: 1px solid rgba(45,212,191,.35);
}
.tp-banner__content h2 {
  font-family: var(--tp-display); font-size: clamp(1.9rem, 4.5vw, 3rem);
  margin: 0 0 .85rem; line-height: 1.05;
}
.tp-banner__content p {
  font-size: clamp(.95rem, 2vw, 1.08rem); font-weight: 700;
  margin: 0 0 1.75rem; color: #e2e8f0; line-height: 1.6;
}
.tp-banner__actions {
  display: flex; flex-wrap: wrap; gap: .75rem;
}
.tp-btn--banner {
  background: linear-gradient(135deg, var(--tp-orange), var(--tp-yellow));
  color: #fff; box-shadow: 0 12px 28px rgba(249,115,22,.35);
}
.tp-btn--banner-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.55);
  padding: calc(.85rem - 2px) calc(1.6rem - 2px);
}
.tp-btn--banner-outline:hover {
  background: rgba(255,255,255,.12); border-color: #fff;
}

/* digital */
.tp-digital { padding: 3rem 0; background: var(--tp-light); text-align: center; }
.tp-digital h2 {
  font-family: var(--tp-display); font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  color: var(--tp-navy); margin: 0 0 1.75rem;
}
.tp-digital__cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.tp-digital-card {
  background: #fff; border-radius: 16px; padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
  transition: transform .2s;
}
.tp-digital-card:hover { transform: translateY(-4px); }
.tp-digital-card__tag {
  display: inline-block; margin-bottom: .65rem;
  padding: .25rem .65rem; border-radius: 999px;
  background: rgba(13,148,136,.12); color: var(--tp-teal);
  font-size: .72rem; font-weight: 900; text-transform: uppercase;
}
.tp-digital-card strong {
  display: block; font-family: var(--tp-display);
  font-size: 1.15rem; color: var(--tp-navy);
}

/* youtube */
.tp-youtube {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff; padding: 3rem 0; text-align: center;
}
.tp-youtube__icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(255,255,255,.15); margin: 0 auto 1rem;
  display: grid; place-items: center; font-size: 1.5rem;
}
.tp-youtube h2 {
  font-family: var(--tp-display); font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 .35rem;
}
.tp-youtube p { font-weight: 900; margin: 0 0 1.25rem; opacity: .95; }

/* contact */
.tp-contact { padding: 3.5rem 0 4rem; background: #fff; }
.tp-contact h2 {
  font-family: var(--tp-display); font-size: clamp(2rem, 4vw, 3rem);
  color: var(--tp-orange); text-align: center; margin: 0 0 .75rem;
}
.tp-contact__lead {
  text-align: center; color: var(--tp-gray); font-weight: 800;
  max-width: 640px; margin: 0 auto 2.5rem;
}
.tp-contact__grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 2rem; align-items: start;
}
.tp-contact__info h3 {
  font-family: var(--tp-display); font-size: 1.35rem;
  color: var(--tp-navy); margin: 0 0 1rem;
}
.tp-contact__info p {
  margin: 0 0 1.1rem; line-height: 1.65; font-weight: 700;
}
.tp-contact__info a { color: var(--tp-teal); }
.tp-contact__map iframe {
  width: 100%; height: 280px; border: 0; border-radius: 12px;
}

/* hosts footer panels */
.tp-hosts {
  display: flex; height: 220px; overflow: hidden;
}
.tp-hosts__panel {
  flex: 1; position: relative; overflow: hidden;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
  margin-left: -2.5%;
}
.tp-hosts__panel:first-child { margin-left: 0; clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%); }
.tp-hosts__panel img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05);
}
.tp-hosts__panel::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--panel-tone) 35%, transparent));
}

.tp-footer {
  position: relative; color: #fff;
  background: linear-gradient(180deg, #06101f 0%, var(--tp-navy-deep) 100%);
}
.tp-footer__slant {
  height: clamp(36px, 5vw, 56px);
  background: linear-gradient(180deg, #06101f, #06101f);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  margin-top: -1px;
}
.tp-footer__body {
  padding: clamp(2rem, 4vw, 3rem) 0 2rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.tp-footer__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}
.tp-footer__col h3 {
  margin: 0 0 1rem;
  font-family: var(--tp-display);
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  font-weight: 400; line-height: 1.25;
}
.tp-footer__col ul {
  list-style: none; margin: 0; padding: 0;
}
.tp-footer__col li {
  position: relative; padding-left: .85rem; margin-bottom: .55rem;
}
.tp-footer__col li::before {
  content: "–"; position: absolute; left: 0; top: 0;
  color: rgba(255,255,255,.55); font-weight: 700;
}
.tp-footer__col a {
  font-size: .78rem; font-weight: 700; line-height: 1.45;
  color: rgba(255,255,255,.82); transition: color .2s;
}
.tp-footer__col a:hover { color: var(--tp-teal-light); }
.tp-footer__tech {
  margin-top: 2.25rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.tp-footer__tech-title {
  margin: 0 0 1rem; font-size: .72rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.tp-footer__tech-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .85rem 1.25rem;
}
.tp-footer__tech-logos span {
  font-size: .72rem; font-weight: 900; letter-spacing: .02em;
  color: rgba(255,255,255,.72); white-space: nowrap;
  padding: .35rem .55rem; border-radius: 6px;
  background: rgba(255,255,255,.04);
}
.tp-footer__bar {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.35rem 0 1.75rem;
  background: rgba(0,0,0,.18);
}
.tp-footer__bar-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center; gap: 1.25rem;
}
.tp-footer__legal {
  margin: 0; max-width: 420px;
  font-size: .68rem; font-weight: 700; line-height: 1.55;
  color: rgba(255,255,255,.62);
}
.tp-footer__legal a { color: rgba(255,255,255,.82); }
.tp-footer__legal a:hover { color: var(--tp-teal-light); }
.tp-footer__brand {
  display: inline-flex; align-items: center; gap: .85rem;
  justify-self: center; color: #fff; text-align: left;
}
.tp-footer__brand img {
  width: 52px; height: 52px; object-fit: contain;
  filter: brightness(0) invert(1);
}
.tp-footer__brand span {
  font-family: var(--tp-display); font-size: 1.35rem;
  line-height: 1.05; letter-spacing: -.01em;
}
.tp-footer__brand:hover { opacity: .88; }
.tp-footer__bar-social {
  display: flex; align-items: center; justify-content: flex-end;
  gap: .85rem; justify-self: end;
}
.tp-footer__bar-social a {
  width: 34px; height: 34px; border-radius: 8px;
  display: grid; place-items: center; color: #fff;
  background: rgba(255,255,255,.06);
  transition: background .2s, transform .2s;
}
.tp-footer__bar-social a:hover {
  background: rgba(45,212,191,.18); color: var(--tp-teal-light);
  transform: translateY(-2px);
}

/* pages */
.tp-page { padding: 3rem 0 4rem; min-height: 50vh; }
.tp-page__title {
  font-family: var(--tp-display); font-size: clamp(2rem, 4vw, 3rem);
  color: var(--tp-navy); margin: 0 0 1.25rem;
}
.tp-page__content {
  font-weight: 700; line-height: 1.75; color: #334155; max-width: 760px;
}
.tp-page__content h2, .tp-page__content h3 {
  font-family: var(--tp-display); color: var(--tp-navy); margin-top: 1.5rem;
}

/* mobile */
@media (max-width: 1180px) {
  .tp-nav__list a { font-size: .68rem; }
  .tp-nav__list { gap: .55rem; }
  .tp-player-widget { min-width: 152px; width: 152px; }
  .tp-footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .tp-header__inner {
    display: flex; justify-content: space-between;
  }
  .tp-player-widget { display: none; }
  .tp-nav-toggle { display: flex; }
  .tp-nav {
    display: flex; flex-direction: column;
    position: fixed; inset: 0 0 0 auto; width: min(320px, 88vw);
    background: var(--tp-navy-deep); padding: 5rem 1.25rem 2rem;
    transform: translateX(100%); transition: transform .3s ease;
    z-index: 120; overflow-y: auto; justify-content: flex-start;
  }
  .tp-nav.is-open { transform: translateX(0); }
  .tp-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .tp-nav__list a { display: block; padding: .85rem 0; font-size: 1rem; }
  .tp-nav__list .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; box-shadow: none; padding-left: 1rem;
  }
  .tp-nav__list .sub-menu a { color: #cbd5e1; padding: .55rem 0; }
  .tp-programs__grid, .tp-digital__cards { grid-template-columns: 1fr; }
  .tp-contact__grid { grid-template-columns: 1fr; }
  .tp-hosts { display: none; }
  .tp-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tp-footer__bar-inner {
    grid-template-columns: 1fr; text-align: center;
  }
  .tp-footer__legal { max-width: none; margin-inline: auto; }
  .tp-footer__brand { justify-self: center; }
  .tp-footer__bar-social { justify-self: center; justify-content: center; }
  .tp-banner__actions { flex-direction: column; align-items: flex-start; }
  .tp-banner__actions .tp-btn { width: 100%; max-width: 280px; }
  .tp-about__grid { grid-template-columns: 1fr; }
  .tp-about__stats { grid-template-columns: repeat(2, 1fr); }
  .tp-about__badge { right: .5rem; bottom: -.5rem; width: 110px; }
  .tp-ad { top: auto; bottom: 5.5rem; transform: none; width: 120px; }
}

@media (max-width: 640px) {
  .tp-ad { display: none; }
}

/* floating ads */
.tp-ad {
  position: fixed; right: 1rem; top: 50%;
  transform: translateY(-50%); z-index: 185;
  width: min(148px, 24vw);
  animation: tp-ad-in .5s ease;
}
.tp-ad.is-hidden { display: none !important; }
@keyframes tp-ad-in {
  from { opacity: 0; transform: translateY(-50%) translateX(20px); }
  to { opacity: 1; transform: translateY(-50%) translateX(0); }
}
.tp-ad__shell {
  position: relative; background: #fff;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 18px 44px rgba(15,23,42,.24);
  border: 1px solid rgba(15,23,42,.08);
}
.tp-ad__close {
  position: absolute; top: .35rem; right: .35rem; z-index: 2;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(15,23,42,.72); color: #fff;
  font-size: 1.1rem; line-height: 1;
  display: grid; place-items: center;
  transition: background .2s;
}
.tp-ad__close:hover { background: #0f172a; }
.tp-ad__badge {
  position: absolute; top: .45rem; left: .45rem; z-index: 2;
  font-size: .58rem; font-weight: 900; letter-spacing: .06em;
  text-transform: uppercase; color: #fff;
  background: rgba(15,23,42,.65); padding: .2rem .45rem;
  border-radius: 999px;
}
.tp-ad__link { display: block; line-height: 0; }
.tp-ad__link img {
  width: 100%; display: block; object-fit: cover;
  min-height: 220px;
}
.tp-ad__dots {
  display: flex; justify-content: center; gap: .35rem;
  padding: .45rem 0 .55rem; background: #fff;
}
.tp-ad__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #cbd5e1; transition: background .2s, transform .2s;
}
.tp-ad__dot.is-active { background: var(--tp-teal); transform: scale(1.2); }

/* floating widgets */
.tp-a11y, .tp-chat {
  position: fixed; z-index: 200;
}
.tp-a11y { left: 1rem; bottom: 1rem; }
.tp-chat { right: 1rem; bottom: 1rem; }
.tp-a11y__toggle, .tp-chat__toggle {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 10px 28px rgba(15,23,42,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tp-a11y__toggle {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}
.tp-chat__toggle {
  background: linear-gradient(135deg, var(--tp-teal), #0891b2);
}
.tp-a11y__toggle:hover, .tp-chat__toggle:hover {
  transform: translateY(-2px) scale(1.04);
}
.tp-a11y__panel, .tp-chat__panel {
  position: absolute; bottom: calc(100% + .65rem); left: 0;
  min-width: 220px; background: #fff; color: #0f172a;
  border-radius: 14px; box-shadow: 0 18px 40px rgba(15,23,42,.2);
  padding: .85rem; border: 1px solid #e2e8f0;
}
.tp-chat__panel { left: auto; right: 0; width: min(300px, calc(100vw - 2rem)); }
.tp-a11y__panel[hidden], .tp-chat__panel[hidden] { display: none !important; }
.tp-a11y__title {
  margin: 0 0 .65rem; font-size: .78rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: .06em; color: var(--tp-navy);
}
.tp-a11y__panel button {
  display: block; width: 100%; text-align: left;
  padding: .55rem .65rem; margin-bottom: .35rem;
  border-radius: 8px; font-weight: 800; font-size: .82rem;
  background: #f8fafc; color: #0f172a;
  transition: background .2s;
}
.tp-a11y__panel button:hover { background: #e2e8f0; }
.tp-chat__head {
  padding-bottom: .65rem; margin-bottom: .65rem;
  border-bottom: 1px solid #e2e8f0;
}
.tp-chat__head strong {
  display: block; font-family: var(--tp-display);
  font-size: 1rem; color: var(--tp-navy);
}
.tp-chat__head span { font-size: .78rem; font-weight: 700; color: #64748b; }
.tp-chat__body p {
  margin: 0 0 .75rem; font-size: .82rem; font-weight: 700; line-height: 1.5;
}
.tp-chat__action {
  display: block; padding: .6rem .75rem; margin-bottom: .4rem;
  border-radius: 10px; background: #f8fafc;
  font-size: .8rem; font-weight: 800; color: var(--tp-navy);
  transition: background .2s, color .2s;
}
.tp-chat__action:hover { background: rgba(13,148,136,.12); color: var(--tp-teal); }

body.tp-a11y-contrast {
  background: #000 !important; color: #fff !important;
}
body.tp-a11y-contrast .tp-topbar,
body.tp-a11y-contrast .tp-program-card,
body.tp-a11y-contrast .tp-digital-card {
  background: #111 !important; color: #fff !important;
}
body.tp-a11y-contrast a { color: #7dd3fc !important; }

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

.tp-news{padding:64px 0;background:#f4f8f8;color:#0b1a2d}.tp-news>.tp-wrap>h2{font-size:clamp(26px,4vw,40px);margin:12px 0}.tp-news-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;margin-top:28px}.tp-news-card{background:#fff;border:1px solid #dce8e7;border-radius:18px;padding:28px;box-shadow:0 8px 24px #0b1a2d08}.tp-news-card h2{font-size:24px;line-height:1.3;margin:18px 0}.tp-news-card p{line-height:1.75}.tp-news-card a{color:#216e69;text-decoration:underline;text-underline-offset:4px}.tp-news-meta{display:flex;flex-wrap:wrap;gap:14px;font-size:13px;color:#51636a}.tp-news-meta span{font-weight:800;color:#216e69;text-transform:uppercase}.tp-navigation-status{position:fixed;bottom:24px;left:50%;transform:translateX(-50%);z-index:99999;background:#0b1a2d;color:#fff;padding:16px 24px;border-radius:12px;box-shadow:0 6px 24px #0003;max-width:90vw}.tp-navigation-status[hidden]{display:none}.tp-navigation-status button{margin-left:10px;padding:8px 12px;border:0;border-radius:6px;cursor:pointer}main.tp-main:focus{outline:none}@media(max-width:700px){.tp-news-grid{grid-template-columns:1fr}.tp-news-card{padding:22px}}