@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --navy-950: #031531;
  --navy-900: #052452;
  --navy-800: #073976;
  --blue-600: #0477bd;
  --blue-400: #19b7e8;
  --orange-500: #ff9f19;
  --yellow-400: #ffc844;
  --ink: #09234a;
  --muted: #61708a;
  --line: #d9e2ef;
  --paper: #ffffff;
  --wash: #f4f7fb;
  --shadow: 0 22px 55px rgba(5, 20, 48, 0.18);
  --font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --condensed: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --body: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  background: var(--paper);
}

img,
svg {
  display: block;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--orange-500);
  color: #071b3d;
  font-weight: 800;
  border-radius: 4px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.anchor-target {
  display: block;
  position: relative;
  top: -88px;
  height: 0;
  visibility: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: linear-gradient(180deg, rgba(3, 15, 39, 0.95), rgba(3, 15, 39, 0.48));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.navbar {
  width: min(1220px, 100%);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  padding: 0 26px;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  min-height: 84px;
  padding: 4px 16px;
  margin-top: 1px;
  isolation: isolate;
  transition: transform 180ms ease;
  overflow: visible;
}

.brand:hover {
  transform: scale(1.02);
}

.brand::before {
  content: "";
  position: absolute;
  inset: -3px -34px -10px -28px;
  z-index: -1;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
  box-shadow: 0 12px 28px rgba(3, 16, 38, 0.25);
}

.brand-logo {
  height: 93px;
  width: auto;
  max-width: 290px;
  object-fit: contain;
  transform: scale(1.17);
  transform-origin: center;
}

.nav-menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.6vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  padding: 31px 0 28px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange-500);
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  color: var(--yellow-400);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #071c3f;
  background: linear-gradient(180deg, var(--yellow-400), var(--orange-500));
  box-shadow: 0 9px 22px rgba(255, 159, 25, 0.34);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 13px 30px rgba(255, 159, 25, 0.45);
}

.btn-small {
  min-height: 40px;
  padding-inline: 20px;
  font-size: 11px;
}

.btn-ghost,
.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover,
.btn-outline:hover {
  border-color: var(--orange-500);
  color: var(--yellow-400);
  background: rgba(255, 255, 255, 0.12);
}

.btn-blue {
  color: #fff;
  background: var(--blue-600);
  box-shadow: 0 9px 18px rgba(4, 119, 189, 0.22);
}

.light-outline {
  border-color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.nav-toggle {
  display: none;
  width: 44px;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  padding: clamp(100px, 9vw, 118px) 0 clamp(32px, 4vw, 50px);
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 24, 56, 0.98) 0%, rgba(2, 33, 78, 0.72) 46%, rgba(3, 28, 63, 0.94) 100%),
    url("https://images.unsplash.com/photo-1560090995-01632a28895b?auto=format&fit=crop&w=2200&q=85") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 42%, rgba(25, 183, 232, 0.28), transparent 28%),
    linear-gradient(180deg, transparent 65%, rgba(0, 93, 146, 0.34));
  mix-blend-mode: screen;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.28;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: center;
  gap: clamp(36px, 7vw, 86px);
}

.eyebrow,
.section-label,
.card-label {
  margin: 0;
  color: var(--orange-500);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.about-page-hero h1,
.contact-page-hero h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--condensed);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.about-page-hero .eyebrow,
.contact-page-hero .eyebrow {
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: 0.5px;
}

.hero h1,
.about-page-hero h1,
.contact-page-hero h1 {
  max-width: 800px;
  margin-top: 18px;
  font-size: clamp(34px, 3.8vw, 48px);
  line-height: 1.2;
}

.hero h1 span {
  display: inline;
  color: var(--yellow-400);
}

.hero-subtitle {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.6;
}

.hero-tagline {
  display: flex;
  max-width: none;
  flex-wrap: nowrap;
  gap: 0.35em;
  padding: 0;
  white-space: nowrap;
}

.hero-tagline span {
  display: inline;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}




.meet-card {
  padding: 32px;
  border: 1px solid rgba(84, 183, 255, 0.32);
  border-radius: 4px;
  background: linear-gradient(145deg, rgba(3, 42, 98, 0.74), rgba(2, 19, 52, 0.88));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.meet-card h2 {
  margin: 8px 0 24px;
  color: var(--yellow-400);
  font-family: var(--condensed);
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
}

.meet-detail {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  line-height: 1.45;
}

.meet-detail svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #bceaff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}



.section {
  padding: 72px 0;
}

.white-section {
  position: relative;
  background:
    radial-gradient(circle at 18% 52%, rgba(4, 119, 189, 0.07), transparent 20%),
    radial-gradient(circle at 84% 42%, rgba(255, 159, 25, 0.08), transparent 18%),
    #fff;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  margin-top: 10px;
  color: var(--navy-900);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin: 18px auto 0;
  background: var(--orange-500);
}

.section-heading.light h2 {
  color: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
  margin-top: 46px;
}

.feature {
  text-align: center;
}

.feature h3,
.event-content h3,
.news-card h3 {
  margin: 18px 0 10px;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 950;
  text-transform: uppercase;
}

.feature p {
  margin: 0;
  color: #263954;
  font-size: 14px;
  line-height: 1.7;
}

.line-icon,
.stat-icon {
  display: inline-grid;
  place-items: center;
  color: var(--blue-600);
}

.line-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border: 1px solid #edf2f7;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 119, 255, 0.08);
}

.line-icon::before,
.stat-icon::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.trophy::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 10h24v9h10v5c0 11-7 17-16 18v6h8v6H18v-6h8v-6C17 41 10 35 10 24v-5h10v-9Zm0 15v-1h-4c0 6 3 10 8 12-3-3-4-7-4-11Zm28-1h-4v1c0 4-1 8-4 11 5-2 8-6 8-12Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 10h24v9h10v5c0 11-7 17-16 18v6h8v6H18v-6h8v-6C17 41 10 35 10 24v-5h10v-9Zm0 15v-1h-4c0 6 3 10 8 12-3-3-4-7-4-11Zm28-1h-4v1c0 4-1 8-4 11 5-2 8-6 8-12Z'/%3E%3C/svg%3E");
}

.globe::before,
.regions::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 6a26 26 0 1 0 0 52 26 26 0 0 0 0-52Zm17 16h-8a37 37 0 0 0-3-8 21 21 0 0 1 11 8ZM32 12c2 3 4 6 5 10H27c1-4 3-7 5-10ZM12 36a22 22 0 0 1 0-8h10a39 39 0 0 0 0 8H12Zm3 6h8c1 3 2 6 3 8a21 21 0 0 1-11-8Zm8-20h-8a21 21 0 0 1 11-8 37 37 0 0 0-3 8Zm9 30c-2-3-4-6-5-10h10c-1 4-3 7-5 10Zm7-16H25a32 32 0 0 1 0-8h14a32 32 0 0 1 0 8Zm-1 14c1-2 2-5 3-8h8a21 21 0 0 1-11 8Zm4-14a39 39 0 0 0 0-8h10a22 22 0 0 1 0 8H42Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 6a26 26 0 1 0 0 52 26 26 0 0 0 0-52Zm17 16h-8a37 37 0 0 0-3-8 21 21 0 0 1 11 8ZM32 12c2 3 4 6 5 10H27c1-4 3-7 5-10ZM12 36a22 22 0 0 1 0-8h10a39 39 0 0 0 0 8H12Zm3 6h8c1 3 2 6 3 8a21 21 0 0 1-11-8Zm8-20h-8a21 21 0 0 1 11-8 37 37 0 0 0-3 8Zm9 30c-2-3-4-6-5-10h10c-1 4-3 7-5 10Zm7-16H25a32 32 0 0 1 0-8h14a32 32 0 0 1 0 8Zm-1 14c1-2 2-5 3-8h8a21 21 0 0 1-11 8Zm4-14a39 39 0 0 0 0-8h10a22 22 0 0 1 0 8H42Z'/%3E%3C/svg%3E");
}

.bars::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 44h8v10h-8V44Zm16-16h8v26h-8V28Zm16-14h8v40h-8V14Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 44h8v10h-8V44Zm16-16h8v26h-8V28Zm16-14h8v40h-8V14Z'/%3E%3C/svg%3E");
}

.star::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m32 7 7 16 17 2-13 12 4 17-15-9-15 9 4-17L8 25l17-2 7-16Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m32 7 7 16 17 2-13 12 4 17-15-9-15 9 4-17L8 25l17-2 7-16Z'/%3E%3C/svg%3E");
}

.about-stats-wrap {
  width: 100%;
  margin-top: 56px;
  padding: 10px 0 0;
  background: transparent;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
}

.stat {
  min-width: 0;
  padding: 0 12px;
  text-align: center;
}

.stat-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto;
  color: var(--blue-600);
}

.stat-icon.athletes,
.stat-icon.swim,
.stat-icon.calendar {
  color: var(--blue-600);
}

.stat-icon.regions,
.stat-icon.medal {
  color: var(--orange-500);
}

.stat strong {
  display: block;
  margin-top: 8px;
  color: var(--blue-600);
  font-family: var(--condensed);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.stat:first-child strong {
  color: var(--orange-500);
}

.stat span:last-child {
  display: block;
  margin-top: 6px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.athletes::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 29a10 10 0 1 1 0-20 10 10 0 0 1 0 20Zm18 3a8 8 0 1 1 0-16 8 8 0 0 1 0 16ZM5 55c1-13 8-20 18-20s17 7 18 20H5Zm36-16c9 1 15 7 18 16H47c-1-6-3-11-6-16Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 29a10 10 0 1 1 0-20 10 10 0 0 1 0 20Zm18 3a8 8 0 1 1 0-16 8 8 0 0 1 0 16ZM5 55c1-13 8-20 18-20s17 7 18 20H5Zm36-16c9 1 15 7 18 16H47c-1-6-3-11-6-16Z'/%3E%3C/svg%3E");
}

.swim::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42 12a7 7 0 1 1-14 0 7 7 0 0 1 14 0ZM10 40c5 0 7-4 12-4s7 4 12 4 7-4 12-4 7 4 12 4v7c-5 0-7-4-12-4s-7 4-12 4-7-4-12-4-7 4-12 4v-7Zm7-12 17-8 9 7 10 1-1 7-12-1-7-5-13 6-3-7Zm-7 22c5 0 7 4 12 4s7-4 12-4 7 4 12 4 7-4 12-4v6c-5 0-7 4-12 4s-7-4-12-4-7 4-12 4-7-4-12-4v-6Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42 12a7 7 0 1 1-14 0 7 7 0 0 1 14 0ZM10 40c5 0 7-4 12-4s7 4 12 4 7-4 12-4 7 4 12 4v7c-5 0-7-4-12-4s-7 4-12 4-7-4-12-4-7 4-12 4v-7Zm7-12 17-8 9 7 10 1-1 7-12-1-7-5-13 6-3-7Zm-7 22c5 0 7 4 12 4s7-4 12-4 7 4 12 4 7-4 12-4v6c-5 0-7 4-12 4s-7-4-12-4-7 4-12 4-7-4-12-4v-6Z'/%3E%3C/svg%3E");
}

.medal::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m16 4 10 20h12L48 4h8L43 29a17 17 0 1 1-22 0L8 4h8Zm16 29a11 11 0 1 0 0 22 11 11 0 0 0 0-22Zm0 5 3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1 3-6Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m16 4 10 20h12L48 4h8L43 29a17 17 0 1 1-22 0L8 4h8Zm16 29a11 11 0 1 0 0 22 11 11 0 0 0 0-22Zm0 5 3 6 7 1-5 5 1 7-6-3-6 3 1-7-5-5 7-1 3-6Z'/%3E%3C/svg%3E");
}

.calendar::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 6h6v8h16V6h6v8h8v42H10V14h8V6Zm30 22H16v22h32V28ZM16 20v4h32v-4H16Zm6 14h6v6h-6v-6Zm10 0h6v6h-6v-6Zm10 0h4v6h-4v-6ZM22 44h6v4h-6v-4Zm10 0h6v4h-6v-4Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 6h6v8h16V6h6v8h8v42H10V14h8V6Zm30 22H16v22h32V28ZM16 20v4h32v-4H16Zm6 14h6v6h-6v-6Zm10 0h6v6h-6v-6Zm10 0h4v6h-4v-6ZM22 44h6v4h-6v-4Zm10 0h6v4h-6v-4Z'/%3E%3C/svg%3E");
}

.dark-section {
  color: #fff;
  background:
    radial-gradient(circle at 5% 20%, rgba(25, 183, 232, 0.22), transparent 24%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.event-carousel {
  position: relative;
  margin-top: 72px;
}

.event-carousel .event-grid {
  margin-top: 0;
}

.event-carousel-controls {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  display: none;
  gap: 10px;
}

.event-carousel-button {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.event-carousel-button:hover,
.event-carousel-button:focus-visible {
  color: var(--navy-950);
  background: var(--yellow-400);
  border-color: var(--yellow-400);
}

.event-carousel-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-carousel-dots {
  display: none;
  justify-content: center;
  gap: 9px;
  min-height: 12px;
  margin-top: 22px;
}

.event-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.34);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.event-carousel-dot[aria-current="true"] {
  width: 28px;
  background: var(--yellow-400);
  border-radius: 999px;
}

.event-carousel.is-ready .event-carousel-controls,
.event-carousel.is-ready .event-carousel-dots {
  display: flex;
}

.event-carousel.is-ready .event-carousel-viewport {
  overflow: hidden;
}

.event-carousel.is-ready .event-grid {
  display: flex;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.event-carousel.is-ready .event-card {
  flex: 0 0 calc((100% - 54px) / 4);
}

.event-card,
.news-card {
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.event-card:hover,
.event-card:focus-within,
.news-card:hover,
.news-card:focus-within,
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 66px rgba(5, 20, 48, 0.25);
}

.event-image,
.news-card img {
  aspect-ratio: 1.7 / 1;
}

.event-image {
  position: relative;
}

.event-image img,
.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 14px;
  color: #fff;
  background: var(--orange-500);
  border-radius: 0 0 4px 0;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.event-content {
  min-height: 128px;
  padding: 18px 20px 20px;
  color: var(--muted);
}

.event-content h3 {
  margin-top: 0;
  font-family: var(--condensed);
  font-size: 24px;
}

.event-content p {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.event-meta-label {
  display: inline-block;
  min-width: 42px;
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}



.news-section {
  background: var(--wash);
}

.news-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.news-card img {
  aspect-ratio: 1.9 / 1;
}

.news-brochure-cover {
  display: block;
  overflow: hidden;
  background: var(--navy-950);
}

.brochure-news-card .news-brochure-cover img {
  object-position: center top;
  transition: transform 350ms ease;
}

.brochure-news-card:hover .news-brochure-cover img,
.brochure-news-card:focus-within .news-brochure-cover img {
  transform: scale(1.025);
}

.news-content {
  padding: 16px 18px 18px;
}

.news-content time {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.news-document-type {
  margin: 0;
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.news-content h3 {
  min-height: 52px;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.25;
  text-transform: none;
}

.news-content a {
  color: var(--blue-600);
  font-size: 13px;
  font-weight: 900;
}

.news-brochure-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.news-brochure-actions .news-brochure-download {
  color: var(--muted);
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gallery-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background: #e9edf5;
  border-radius: 6px;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.gallery-card p {
  margin: 0 0 22px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.gallery-icon {
  display: grid;
  width: 78px;
  height: 78px;
  margin-bottom: 24px;
  place-items: center;
  color: #8b99ab;
}

.gallery-icon svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.partners {
  padding: 64px 0;
  background: #fff;
  border-block: 1px solid var(--line);
}

.partners-grid {
  display: block;
}

.partners .section-label {
  text-align: center;
}

.partner-logo-grid {
  display: grid;
  width: 100%;
  max-width: 900px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px auto 0;
  padding: 0;
  list-style: none;
}

.partner-logo-card {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe5ed;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(5, 20, 48, 0.06);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.partner-logo-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e2;
  box-shadow: 0 16px 34px rgba(5, 20, 48, 0.11);
}

.partner-logo-card a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.partner-logo-card a:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 5px;
}

.partner-logo-card img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: 82px;
  object-fit: contain;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 46px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 20, 48, 0.98) 0%, rgba(5, 47, 96, 0.9) 54%, rgba(4, 28, 65, 0.62) 100%),
    url("https://images.unsplash.com/photo-1519315901367-f34ff9154487?auto=format&fit=crop&w=1800&q=80") center 56% / cover;
}

.cta-wave {
  position: absolute;
  left: -4vw;
  bottom: -74px;
  width: 28vw;
  min-width: 260px;
  height: 180px;
  background: linear-gradient(135deg, var(--yellow-400), var(--orange-500));
  transform: rotate(11deg);
  border-radius: 50%;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.final-cta h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.final-cta p {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

/* About / Contact Page Hero — shared visual style with index hero */
.about-page-hero,
.contact-page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 24, 56, 0.98) 0%, rgba(2, 33, 78, 0.72) 46%, rgba(3, 28, 63, 0.94) 100%),
    url("https://images.unsplash.com/photo-1560090995-01632a28895b?auto=format&fit=crop&w=2200&q=85") center / cover;
}

.about-page-hero::before,
.contact-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 42%, rgba(25, 183, 232, 0.28), transparent 28%),
    linear-gradient(180deg, transparent 65%, rgba(0, 93, 146, 0.34));
  mix-blend-mode: screen;
}

/* About-specific layout */
.about-page-hero {
  display: flex;
  align-items: center;
  padding: clamp(100px, 11vw, 150px) 0 clamp(48px, 5.5vw, 76px);
}

.about-page-hero h1 {
  color: #fff;
}

.about-page-hero .hero-subtitle { max-width: clamp(280px, 70vw, 780px); color: rgba(255,255,255,.88); }
.about-page-hero .shell,
.contact-page-hero .shell { position: relative; z-index: 1; }
.about-intro-section { background: #fff; }
.about-intro-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 72px; align-items: start; }
.about-intro-grid h2, .about-vision-grid h2, .about-cta h2 { font-size: clamp(34px, 4vw, 52px); }
.about-prose p, .about-vision-grid p { color: var(--muted); font-size: 15px; line-height: 1.75; }
.about-prose .lead-text { margin-top: 0; color: var(--navy-900); font-size: 20px; line-height: 1.55; font-weight: 650; }
.about-vision-section { color: #fff; background: linear-gradient(135deg, var(--navy-900), #073b73); }
.about-vision-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 72px; align-items: center; }
.about-vision-grid h2 { color: #fff; margin: 6px 0 22px; }
.about-vision-grid p { color: rgba(255,255,255,.8); }
.about-vision-grid .section-label { color: var(--orange-500); }
.vision-mark { display: grid; aspect-ratio: 1; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; color: var(--yellow-400); font-family: var(--condensed); font-size: clamp(70px, 11vw, 132px); font-weight: 900; background: radial-gradient(circle, rgba(4,119,189,.35), transparent 68%); }
.pathway-section { background: var(--wash); }
.pathway-section .section-heading > p:last-child { max-width: 620px; margin: 12px auto 0; color: var(--muted); }
.pathway-infographic { max-width: 1040px; margin: 42px auto 0; padding: 12px; background: #fff; border: 1px solid #dde5ef; border-radius: 12px; box-shadow: 0 12px 32px rgba(5,20,48,.08); }
.pathway-infographic img { display: block; width: 100%; height: auto; border-radius: 7px; }
.pathway-infographic figcaption { padding: 12px 10px 4px; color: var(--muted); font-size: 12px; line-height: 1.5; text-align: center; }
.pathway-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 42px; }
.pathway-card { position: relative; overflow: hidden; padding: 34px; background: #fff; border: 1px solid #dde5ef; border-radius: 10px; box-shadow: 0 8px 24px rgba(5,20,48,.05); }
.pathway-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: linear-gradient(var(--orange-500), var(--yellow-400)); }
.pathway-number { position: absolute; top: 20px; right: 26px; color: #e5eaf1; font-family: var(--condensed); font-size: 54px; font-weight: 900; }
.pathway-code { margin: 0 0 10px; color: var(--orange-500); font-size: 12px; font-weight: 900; letter-spacing: .16em; }
.pathway-card h3 { position: relative; max-width: 75%; margin: 0 0 14px; color: var(--navy-900); font-size: 21px; text-transform: uppercase; }
.pathway-card > p:not(.pathway-code) { color: var(--muted); font-size: 14px; line-height: 1.65; }
.pathway-focus-title { margin: 20px 0 0; color: var(--navy-900); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.pathway-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 0; padding: 0; list-style: none; }
.pathway-card .pathway-focus-title + ul { margin-top: 10px; }
.pathway-card li { padding: 6px 10px; color: var(--blue-600); background: #eef7fc; border-radius: 999px; font-size: 11px; font-weight: 800; }
.pathway-card .pathway-focus-list,
.pathway-card .pathway-meet-list,
.pathway-card .pathway-academic-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 24px; padding-left: 18px; list-style: disc; }
.pathway-card .pathway-focus-list li,
.pathway-card .pathway-meet-list li,
.pathway-card .pathway-academic-list li { padding: 0; color: var(--muted); background: none; border-radius: 0; font-size: 13px; font-weight: 650; line-height: 1.5; }
.pathway-card .pathway-academic-list { grid-template-columns: 1fr; gap: 12px; }
.pathway-card .pathway-academic-list strong { color: var(--navy-900); }
.about-cta { padding: 48px 0; color: #fff; background: linear-gradient(100deg, #046fae, #073b73); }
.about-cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 36px; align-items: center; }
.about-cta h2 { margin: 4px 0 8px; color: #fff; }
.about-cta p:last-child { margin: 0; color: rgba(255,255,255,.82); }

/* Contact-specific layout */
.contact-page-hero {
  display: flex;
  align-items: center;
  padding: clamp(100px, 10vw, 130px) 0 clamp(36px, 4.5vw, 54px);
}

.contact-page-hero h1 {
  margin-top: 12px;
  color: #fff;
}

.contact-page-hero .hero-subtitle {
  max-width: clamp(280px, 70vw, 780px);
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

.contact-page-section {
  background: var(--wash);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 14px rgba(5, 20, 48, 0.04);
}

.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(4, 119, 189, 0.1);
  color: var(--blue-600);
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h3 {
  margin: 0 0 6px;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card p {
  margin: 2px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact-card a {
  color: var(--blue-600);
  font-weight: 700;
}

.contact-form {
  padding: 32px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(5, 20, 48, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  color: var(--navy-900);
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(4, 119, 189, 0.15);
}

.btn-full {
  width: 100%;
  margin-top: 6px;
}

/* In-Page Contact Success Box */
.form-success-box {
  padding: 36px 20px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  animation: fadeInSuccess 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

.form-success-box .success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(25, 183, 232, 0.12);
  color: var(--blue-600);
}

.form-success-box h3 {
  margin: 0 0 10px;
  font-family: var(--condensed);
  font-size: 26px;
  font-weight: 900;
  color: var(--navy-900);
  text-transform: uppercase;
}

.form-success-box p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@keyframes fadeInSuccess {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Merged Site Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 56px 0 24px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 20, 48, 0.98) 0%, rgba(5, 47, 96, 0.92) 54%, rgba(4, 28, 65, 0.78) 100%),
    url("https://images.unsplash.com/photo-1519315901367-f34ff9154487?auto=format&fit=crop&w=1800&q=80") center 56% / cover;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(160px, 0.8fr) minmax(220px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-cta-col h2 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
}

.footer-cta-col p {
  margin: 12px 0 0;
  max-width: 440px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.5;
}

.footer-col h4 {
  margin: 0 0 16px;
  color: var(--yellow-400);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease;
}

.footer-col a:hover {
  color: var(--yellow-400);
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.footer-contact-list svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--orange-500);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom p {
  margin: 0;
}

/* Shanghai 2026 Event Page Styles */
.shanghai-hero {
  position: relative;
  padding: 140px 0 60px;
  background:
    linear-gradient(90deg, rgba(2, 20, 48, 0.96) 0%, rgba(5, 47, 96, 0.88) 54%, rgba(2, 20, 48, 0.8) 100%),
    url("https://images.unsplash.com/photo-1548919973-5cef591cdbc9?auto=format&fit=crop&w=2200&q=80") center 35% / cover;
  color: #fff;
}

.shanghai-hero h1 {
  margin: 12px 0 20px;
  font-family: var(--condensed);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  color: #fff;
}

.shanghai-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 28px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--yellow-400);
}

.meta-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shanghai-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.shanghai-intro-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 36px;
  align-items: start;
}

.event-poster-figure {
  max-width: 554px;
  margin: 34px auto 48px;
  padding: 10px;
  background: #fff;
  border: 1px solid #dce4ee;
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(5, 20, 48, 0.14);
}

.event-poster-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.event-poster-figure figcaption {
  padding: 11px 8px 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.intro-text-box .lead-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--navy-900);
}

.intro-text-box p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.intro-highlight-card {
  padding: 26px;
  background: var(--wash);
  border-radius: 8px;
  border-left: 4px solid var(--blue-600);
  box-shadow: 0 4px 16px rgba(5, 20, 48, 0.04);
}

.intro-highlight-card h3 {
  margin: 0 0 16px;
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy-900);
}

.key-details-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.key-details-list li {
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--navy-900);
  line-height: 1.5;
}

.event-highlights-wrap {
  margin-top: 56px;
}

.subsection-title {
  margin: 0 0 24px;
  font-family: var(--condensed);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy-900);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.highlight-card {
  padding: 22px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(5, 20, 48, 0.03);
  transition: transform 180ms ease, border-color 180ms ease;
}

.highlight-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue-600);
}

.highlight-number {
  display: inline-block;
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 900;
  color: var(--orange-500);
  margin-bottom: 8px;
}

.highlight-card h4 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy-900);
}

.highlight-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.pricing-card {
  position: relative;
  padding: 32px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  box-shadow: 0 8px 24px rgba(5, 20, 48, 0.06);
}

.primary-pricing {
  border: 2px solid var(--blue-600);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--blue-600);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.pricing-badge.alt-badge {
  background: var(--navy-900);
}

.pricing-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  color: var(--navy-900);
}

.price-amount {
  font-family: var(--condensed);
  font-size: 36px;
  font-weight: 900;
  color: var(--orange-500);
  margin-bottom: 12px;
}

.price-amount span {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.pricing-desc {
  margin: 0 0 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.inclusions-box {
  padding: 32px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.inclusions-box h3 {
  margin: 0 0 20px;
  font-family: var(--condensed);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy-900);
}

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
}

.inclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--navy-900);
  line-height: 1.5;
}

.inclusion-item svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #16a34a;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 1px;
}

.itinerary-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.timeline-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  align-items: start;
}

.timeline-card.highlight-day {
  background: rgba(255, 122, 0, 0.1);
  border-color: var(--orange-500);
}

.timeline-day-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: var(--blue-600);
  color: #fff;
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 900;
  border-radius: 4px;
  text-transform: uppercase;
}

.timeline-day-badge.race-badge {
  background: var(--orange-500);
}

.timeline-date {
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--yellow-400);
  margin-bottom: 4px;
}

.timeline-content h4 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
}

.timeline-content ul {
  margin: 0;
  padding: 0 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.6;
}

.timeline-content li {
  margin-bottom: 6px;
}

.travel-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-box {
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(5, 20, 48, 0.04);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.info-header svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-header h3 {
  margin: 0;
  font-family: var(--condensed);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy-900);
}

.visa-highlight {
  padding: 12px 14px;
  background: #f0fdf4;
  border-left: 3px solid #16a34a;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.5;
  color: #15803d;
  margin-bottom: 16px;
}

.info-subtitle {
  margin: 16px 0 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy-900);
}

.info-list {
  margin: 0;
  padding: 0 0 0 18px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.info-list li {
  margin-bottom: 8px;
}

.packing-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.packing-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--navy-900);
  line-height: 1.5;
}

.chk-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(4, 119, 189, 0.12);
  color: var(--blue-600);
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Shanghai Technique Development Training Camp */
.camp-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 72px;
  color: #fff;
  background:
    radial-gradient(circle at 75% 20%, rgba(4, 119, 189, 0.34), transparent 34%),
    linear-gradient(125deg, #020f24 0%, #052f60 58%, #031a38 100%);
}

.camp-hero::after {
  content: "";
  position: absolute;
  right: -8vw;
  bottom: -170px;
  width: 46vw;
  height: 290px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 196, 33, 0.9), rgba(255, 122, 0, 0.8));
  transform: rotate(-8deg);
}

.camp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}

.camp-hero-copy h1 {
  max-width: 720px;
  margin: 12px 0 0;
  color: #fff;
  font-family: var(--condensed);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.camp-hero-lead {
  margin: 20px 0 0;
  color: var(--yellow-400);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 800;
  text-transform: uppercase;
}

.camp-meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.camp-meta-list div {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
}

.camp-meta-list span,
.camp-meta-list strong {
  display: block;
}

.camp-meta-list span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.camp-meta-list strong {
  color: #fff;
  font-size: 14px;
}

.camp-poster {
  margin: 0;
  padding: 9px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
  transform: rotate(1.2deg);
}

.camp-poster img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.camp-overview-grid,
.coach-grid,
.camp-outcomes-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(42px, 7vw, 84px);
  align-items: start;
}

.camp-overview-grid h2,
.coach-grid h2,
.camp-outcomes-grid h2 {
  font-size: clamp(34px, 4.4vw, 54px);
}

.camp-prose p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.camp-prose .lead-text {
  margin-top: 0;
  color: var(--navy-900);
  font-size: 19px;
  font-weight: 650;
  line-height: 1.55;
}

.camp-includes-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.camp-includes-grid article {
  padding: 26px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.camp-includes-grid article > strong {
  display: block;
  margin-bottom: 13px;
  color: var(--yellow-400);
  font-family: var(--condensed);
  font-size: 38px;
  line-height: 1;
}

.camp-includes-grid h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  text-transform: uppercase;
}

.camp-includes-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.55;
}

.coach-section { background: #fff; }
.coach-kicker { margin: 12px 0 0; color: var(--orange-500); font-weight: 800; }

.camp-schedule-section { background: var(--wash); }
.camp-schedule-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 42px; }
.camp-schedule-grid article { padding: 26px; background: #fff; border: 1px solid #dce4ee; border-radius: 9px; box-shadow: 0 7px 20px rgba(5, 20, 48, 0.05); }
.camp-schedule-grid article > span { color: var(--orange-500); font-size: 11px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.camp-schedule-grid h3 { margin: 8px 0 4px; color: var(--navy-900); font-size: 17px; text-transform: uppercase; }
.camp-schedule-grid article > strong { color: var(--blue-600); font-size: 13px; }
.camp-schedule-grid p { margin: 13px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.camp-topics {
  margin-top: 28px;
  padding: 30px;
  background: #fff;
  border-left: 5px solid var(--blue-600);
  border-radius: 8px;
  box-shadow: 0 7px 20px rgba(5, 20, 48, 0.05);
}

.camp-topics h3 { margin: 0 0 18px; color: var(--navy-900); font-size: 18px; text-transform: uppercase; }
.camp-topics ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 28px; margin: 0; padding-left: 20px; }
.camp-topics li { color: var(--muted); font-size: 13px; line-height: 1.5; }

.camp-outcomes-section { color: #fff; background: linear-gradient(120deg, #052f60, #02152f); }
.camp-outcomes-section h2 { color: #fff; }
.camp-outcomes-grid ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px 30px; margin: 0; padding: 0; list-style: none; }
.camp-outcomes-grid li { position: relative; padding-left: 27px; color: rgba(255, 255, 255, 0.82); font-size: 14px; line-height: 1.55; }
.camp-outcomes-grid li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--yellow-400); font-weight: 900; }




@media (max-width: 1080px) {
  .navbar {
    min-height: 76px;
  }

  .brand {
    min-height: 76px;
  }

  .brand {
    min-width: 210px;
    min-height: 76px;
  }

  .brand::before {
    inset: -2px -26px -8px -22px;
  }

  .brand-logo {
    height: 76px;
    max-width: 240px;
    transform: scale(1.10);
  }

  .nav-toggle {
    display: flex;
    order: 3;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(3, 21, 49, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    box-shadow: var(--shadow);
  }

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

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }

  .nav-links a {
    padding: 14px 0;
  }

  .nav-links a::after {
    bottom: 7px;
  }

  .nav-actions {
    justify-content: space-between;
  }

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

  .meet-card {
    max-width: 500px;
  }

  .event-grid,
  .news-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-carousel.is-ready .event-card {
    flex-basis: calc((100% - 18px) / 2);
  }

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

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 0;
  }

  .stat:nth-child(3) {
    border-right: 0;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.35fr) minmax(140px, 0.75fr) minmax(200px, 1fr);
    gap: 24px;
  }

  .camp-hero-grid {
    grid-template-columns: 1fr;
  }

  .camp-poster {
    width: min(440px, 100%);
    margin-inline: auto;
    transform: none;
  }

  .camp-includes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .camp-schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .event-carousel.is-ready .event-card {
    flex-basis: 100%;
  }

  .navbar {
    padding-inline: 14px;
  }

  .brand {
    min-width: 170px;
    min-height: 62px;
    padding: 2px 8px;
  }

  .brand::before {
    inset: 0 -20px -5px -16px;
  }

  .brand-logo {
    height: 64px;
    max-width: 190px;
    transform: scale(1.05);
  }


  .hero-grid {
    gap: 24px;
  }

  .hero h1 {
    margin-top: 12px;
    font-size: clamp(20px, 5.5vw, 28px);
  }

  .hero-subtitle {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-tagline {
    display: grid;
    gap: 8px;
    padding-left: 0;
    white-space: normal;
  }

  .hero-tagline span {
    position: relative;
    padding-left: 18px;
  }

  .hero-tagline span::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
  }

  .hero-buttons {
    gap: 10px;
    margin-top: 22px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons .btn {
    width: auto;
    flex: 1 1 150px;
    min-height: 42px;
    padding-inline: 16px;
  }

  .meet-card {
    padding: 18px;
  }

  .meet-card h2 {
    margin-bottom: 16px;
    font-size: 31px;
  }

  .meet-detail {
    margin-top: 12px;
    gap: 10px;
    font-size: 14px;
  }



  .section {
    padding: 56px 0;
  }

  .feature-grid,
  .event-grid,
  .news-layout,
  .stats-grid,
  .partners-grid,
  .cta-grid,
  .shanghai-intro-grid,
  .pricing-cards-grid,
  .inclusions-grid,
  .travel-info-grid {
    grid-template-columns: 1fr;
  }

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

  .about-intro-grid,
  .about-vision-grid,
  .pathway-grid,
  .about-cta-grid,
  .camp-overview-grid,
  .coach-grid,
  .camp-outcomes-grid {
    grid-template-columns: 1fr;
  }

  .camp-hero {
    padding: 112px 0 56px;
  }

  .camp-includes-grid,
  .camp-schedule-grid,
  .camp-topics ul,
  .camp-outcomes-grid ul {
    grid-template-columns: 1fr;
  }

  .vision-mark { width: min(250px, 70vw); }

  .timeline-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-grid {
    gap: 30px;
  }

  .stat {
    border-right: 0;
  }

  .stat {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 520px) {
  .partner-logo-grid {
    grid-template-columns: 1fr;
  }

  .camp-meta-list {
    grid-template-columns: 1fr;
  }

  .pathway-card .pathway-focus-list,
  .pathway-card .pathway-meet-list,
  .pathway-card .pathway-academic-list {
    grid-template-columns: 1fr;
  }

  .nav-links {
    grid-template-columns: 1fr;
  }

  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }



  .section-heading h2 {
    font-size: 34px;
  }

}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
