:root {
  --bg: #080a0c;
  --panel: #101317;
  --panel-strong: #171b20;
  --text: #f4f1ea;
  --muted: #a8adb4;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #d4af37;
  --accent-2: #8fd6c6;
  --paper: #f3efe7;
  --ink: #171717;
  --ink-muted: #62666d;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

main section {
  scroll-margin-top: 86px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: var(--text);
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(8, 10, 12, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: var(--radius);
  overflow: hidden;
  background: #070809;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 14px;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
}

.nav-toggle {
  position: relative;
  z-index: 40;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span + span {
  margin-top: -14px;
}

body.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 68px 16px auto 16px;
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 19, 23, 0.96);
  box-shadow: var(--shadow);
}

body.nav-open .site-nav {
  display: flex;
}

.site-nav a {
  padding: 13px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 112px 0 32px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.9) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 10, 12, 0.94), rgba(8, 10, 12, 0.68) 48%, rgba(8, 10, 12, 0.28)),
    linear-gradient(0deg, #080a0c 0%, rgba(8, 10, 12, 0.48) 34%, rgba(8, 10, 12, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.brand-intro h2,
.booking h2 {
  margin: 14px 0 0;
  max-width: 780px;
  font-size: clamp(42px, 12vw, 84px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(244, 241, 234, 0.78);
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions,
.booking-actions {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #15100a;
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.button-ghost.dark {
  border-color: rgba(8, 10, 12, 0.2);
  color: var(--ink);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 8px;
  margin-top: 28px;
  max-width: 100%;
}

.hero-proof span {
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(244, 241, 234, 0.82);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-intro,
.section,
.booking {
  padding: 72px 0;
}

.brand-intro,
.section-muted,
.booking {
  background: var(--paper);
  color: var(--ink);
}

.intro-grid,
.faq-layout {
  display: grid;
  gap: 28px;
}

.brand-intro h2,
.section h2,
.booking h2 {
  font-size: clamp(30px, 8vw, 54px);
  line-height: 1.03;
}

.intro-copy p,
.section-head p,
.feature-card p,
.product-card p,
.destination-grid p,
.timeline p,
.faq-list p,
.booking p,
.site-footer p {
  color: var(--ink-muted);
  line-height: 1.75;
}

.intro-copy .compliance-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  background: rgba(8, 10, 12, 0.04);
  color: #4b4f56;
  font-size: 14px;
}

.partners-section {
  padding: 72px 0;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 12%, rgba(212, 175, 55, 0.12), transparent 30%),
    #080a0c;
}

.partner-tabs {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.partner-tab {
  display: grid;
  min-height: 104px;
  gap: 12px;
  place-items: center;
  padding: 22px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f8f5ed, #d9d3c6);
  color: #111417;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48), 0 20px 50px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.partner-tab:hover,
.partner-tab.is-active {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.65);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.34), 0 24px 62px rgba(0, 0, 0, 0.3);
}

.partner-tab img {
  max-width: min(260px, 78%);
  max-height: 58px;
  object-fit: contain;
}

.partner-tab span {
  color: rgba(17, 20, 23, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.partner-panels {
  margin-top: 14px;
}

.partner-panel {
  display: none;
  gap: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.partner-panel.is-active {
  display: grid;
}

.partner-identity {
  display: grid;
  min-height: 250px;
  align-content: space-between;
  gap: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(211, 205, 194, 0.88)),
    #ece7dc;
  color: #111417;
}

.partner-identity img {
  width: min(360px, 88%);
  max-height: 110px;
  object-fit: contain;
}

.partner-identity .partner-main-image {
  width: 100%;
  max-height: none;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.partner-identity-vector .partner-main-image {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #090a0b;
}

.partner-identity h3 {
  margin: 18px 0 0;
  max-width: 420px;
  font-size: clamp(22px, 5vw, 34px);
  line-height: 1.08;
}

.partner-title-earmor {
  display: grid;
  gap: 6px;
  max-width: 520px;
  font-size: clamp(24px, 5vw, 36px);
}

.partner-title-earmor span {
  display: block;
  color: var(--accent);
  font-size: clamp(34px, 8vw, 58px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.partner-identity .tag {
  background: rgba(17, 20, 23, 0.92);
}

.partner-content p {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.75;
}

.partner-case-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.partner-case {
  min-height: 106px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.partner-case strong,
.partner-case span {
  display: block;
}

.partner-case strong {
  color: var(--text);
  font-size: 16px;
}

.partner-case span {
  margin-top: 10px;
  color: rgba(244, 241, 234, 0.82);
  line-height: 1.55;
}

.partner-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.partner-gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 126px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #efebe2;
  cursor: zoom-in;
  transition: transform 160ms ease, border-color 160ms ease;
}

.partner-gallery figure:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.58);
}

.partner-gallery img {
  width: 100%;
  height: 100%;
  min-height: 126px;
  object-fit: cover;
}

.partner-gallery figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(8, 10, 12, 0.72);
  color: var(--text);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(3, 4, 5, 0.86);
  backdrop-filter: blur(16px);
}

.image-lightbox.is-open {
  display: flex;
}

.image-lightbox figure {
  width: min(1120px, 100%);
  margin: 0;
}

.image-lightbox img {
  width: 100%;
  max-height: 82svh;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  object-fit: contain;
  background: #070809;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.58);
}

.image-lightbox figcaption {
  margin-top: 10px;
  color: rgba(244, 241, 234, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  line-height: 1;
}

.lightbox-close {
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  font-size: 28px;
}

.lightbox-nav {
  top: 50%;
  width: 48px;
  height: 58px;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 42px;
  font-weight: 300;
}

.lightbox-nav[hidden] {
  display: none;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.honors-section {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 12%, rgba(212, 175, 55, 0.16), transparent 28%),
    radial-gradient(circle at 84% 6%, rgba(244, 241, 234, 0.08), transparent 26%),
    linear-gradient(180deg, #070809 0%, #101317 54%, #070809 100%);
}

.honors-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(244, 241, 234, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, 0.07) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at 50% 32%, #000 0 38%, transparent 76%);
}

.honors-stage {
  position: relative;
  z-index: 1;
  padding: clamp(16px, 2.5vw, 26px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(244, 241, 234, 0.06), transparent 30%),
    rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 36px 110px rgba(0, 0, 0, 0.32);
}

.honors-section .honors-head {
  display: grid;
  gap: 12px;
  max-width: none;
  margin-bottom: 18px;
}

.honors-section .honors-head h2 {
  max-width: 620px;
}

.honors-section .honors-head p {
  max-width: 720px;
  line-height: 1.72;
}

.honors-layout {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  align-items: stretch;
}

.honors-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  display: grid;
  gap: 0;
  min-height: 0;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.14), transparent 42%),
    #0b0d10;
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.36);
}

.honors-visual::before,
.honors-visual::after {
  content: "";
  position: absolute;
  display: none;
  pointer-events: none;
}

.honors-visual::before {
  inset: 74px 14px 14px;
  z-index: 1;
  border: 1px solid rgba(244, 241, 234, 0.1);
}

.honors-visual::after {
  inset: 62px 0 0;
  z-index: 1;
  border-radius: 0 0 10px 10px;
  background:
    linear-gradient(180deg, transparent 72%, rgba(0, 0, 0, 0.26)),
    linear-gradient(112deg, rgba(212, 175, 55, 0.22), transparent 26%, transparent 72%, rgba(255, 255, 255, 0.08));
}

.honors-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  filter: saturate(0.94) contrast(1.06);
  transform: none;
  border-radius: 0;
}

.honors-visual figcaption {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 2px solid rgba(212, 175, 55, 0.72);
  border-radius: 0;
  background: rgba(8, 10, 12, 0.82);
}

.honors-visual figcaption strong {
  color: var(--text);
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.08;
}

.honors-visual figcaption span {
  color: rgba(212, 175, 55, 0.9);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.honors-content {
  display: grid;
  gap: 12px;
  align-content: start;
}

.honors-content-head {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-left: 2px solid rgba(212, 175, 55, 0.72);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.034);
}

.honors-content-head span {
  color: rgba(212, 175, 55, 0.9);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.honors-content-head p {
  margin: 0;
  color: rgba(244, 241, 234, 0.78);
  line-height: 1.45;
  font-size: 14px;
}

.honors-stat-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.honor-stat {
  position: relative;
  overflow: hidden;
  min-height: 108px;
  padding: 15px;
  border: 1px solid rgba(244, 241, 234, 0.1);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #0b0d10;
}

.honor-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(212, 175, 55, 0.28);
  background: radial-gradient(circle at 100% 0%, rgba(212, 175, 55, 0.16), transparent 38%);
  pointer-events: none;
}

.honor-stat strong,
.honor-stat span,
.honor-stat small {
  position: relative;
  z-index: 1;
  display: block;
}

.honor-stat small {
  margin-bottom: 13px;
  color: rgba(244, 241, 234, 0.42);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.honor-stat strong {
  color: var(--accent);
  font-size: clamp(25px, 4.6vw, 38px);
  line-height: 1;
}

.honor-stat span {
  margin-top: 9px;
  color: rgba(244, 241, 234, 0.82);
  line-height: 1.55;
  font-weight: 700;
}

.honors-copy {
  padding: clamp(16px, 2.2vw, 22px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent 16%),
    rgba(255, 255, 255, 0.042);
}

.honors-copy-wide {
  margin-top: 14px;
}

.honors-copy p {
  margin: 0;
  color: rgba(244, 241, 234, 0.78);
  line-height: 1.72;
}

.honors-copy p + p {
  margin-top: 12px;
}

.honors-footer {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  padding: clamp(16px, 2.2vw, 22px);
  border: 1px solid rgba(244, 241, 234, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.honors-label {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.honors-tags,
.honors-brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.honors-tags span,
.honors-brand-list span {
  padding: 9px 11px;
  border: 1px solid rgba(244, 241, 234, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(244, 241, 234, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.honors-brand-list span {
  border-color: rgba(212, 175, 55, 0.3);
}

.global-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(143, 214, 198, 0.12), transparent 30%),
    radial-gradient(circle at 12% 68%, rgba(212, 175, 55, 0.12), transparent 28%),
    #080a0c;
}

.global-head {
  max-width: 850px;
}

.global-map-shell {
  margin-top: 26px;
}

.map-scroll-hint {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.map-scroll-hint span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(244, 241, 234, 0.74);
  font-size: 12px;
  font-weight: 800;
}

.global-map-viewport {
  width: min(760px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 50%;
  background: #060708;
  box-shadow:
    inset 0 0 70px rgba(255, 255, 255, 0.08),
    inset 0 0 120px rgba(0, 0, 0, 0.62),
    0 36px 100px rgba(0, 0, 0, 0.46);
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
  user-select: none;
  touch-action: pan-y;
}

.global-map-viewport.is-dragging {
  cursor: grabbing;
}

.global-map-viewport:focus {
  outline: 2px solid rgba(212, 175, 55, 0.7);
  outline-offset: 4px;
}

.global-map-viewport::-webkit-scrollbar {
  display: none;
}

.global-map-canvas {
  position: relative;
  width: 100%;
  min-width: 0;
  height: 100%;
  background:
    url("assets/global/blue-marble-world.jpg") var(--globe-bg-x, 50%) center / auto 100% repeat-x,
    #020304;
  border-radius: 50%;
  overflow: hidden;
}

.world-map-image,
.map-vignette,
.map-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.world-map-image {
  opacity: 0;
  pointer-events: none;
}

.map-vignette {
  pointer-events: none;
  background:
    radial-gradient(circle at 33% 22%, rgba(255, 255, 255, 0.22), transparent 17%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0) 38%, rgba(8, 10, 12, 0.38) 68%, rgba(8, 10, 12, 0.94) 100%),
    linear-gradient(112deg, rgba(255, 255, 255, 0.1), transparent 22%, transparent 58%, rgba(0, 0, 0, 0.62));
  box-shadow:
    inset -70px -34px 130px rgba(0, 0, 0, 0.62),
    inset 46px 20px 80px rgba(255, 255, 255, 0.08);
}

.map-grid {
  pointer-events: none;
  opacity: 0.24;
  background-image:
    radial-gradient(circle at center, transparent 0 70%, rgba(255, 255, 255, 0.18) 70.4%, transparent 71%),
    repeating-radial-gradient(circle at center, transparent 0 16%, rgba(255, 255, 255, 0.13) 16.2%, transparent 16.8%),
    repeating-linear-gradient(90deg, transparent 0 12%, rgba(255, 255, 255, 0.1) 12.2%, transparent 12.8%);
  background-size: 100% 100%;
  mix-blend-mode: screen;
}

.map-marker {
  position: absolute;
  left: var(--marker-x, 50%);
  top: var(--marker-y, 50%);
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 6px;
  opacity: var(--marker-opacity, 1);
  transform:
    translate(-50%, -50%)
    scale(var(--marker-scale, 1));
  transition: opacity 180ms ease, transform 180ms ease;
  will-change: transform, opacity;
}

.map-marker::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 50%;
  width: clamp(44px, 6vw, 72px);
  height: clamp(44px, 6vw, 72px);
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.16);
  transform: translate(-50%, -50%);
  animation: mapPulse 2.6s ease-in-out infinite;
}

.map-marker img {
  position: relative;
  width: clamp(30px, 4vw, 48px);
  height: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(212, 175, 55, 0.65);
  border-radius: 8px;
  background: #050607;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.map-marker span {
  position: relative;
  min-width: 52px;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(8, 10, 12, 0.84);
  color: var(--text);
  font-size: clamp(10px, 1.5vw, 12px);
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.map-marker.is-front span,
.map-marker:hover span,
.map-marker:focus-within span {
  opacity: 1;
  transform: translateY(0);
}

.global-country-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.global-country-grid article {
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.global-country-grid strong,
.global-country-grid span {
  display: block;
}

.global-country-grid strong {
  color: var(--text);
  font-size: 17px;
}

.global-country-grid span {
  margin-top: 8px;
  color: rgba(244, 241, 234, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes mapPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.84);
  }

  50% {
    opacity: 0.12;
    transform: translate(-50%, -50%) scale(1.35);
  }
}

.section {
  background: #f8f6f0;
  color: var(--ink);
}

.section-dark {
  background: var(--bg);
  color: var(--text);
}

.section-dark .section-head p,
.section-dark .timeline p {
  color: var(--muted);
}

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

.business-head {
  max-width: 900px;
}

.business-head h2 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
}

.business-head p {
  max-width: 920px;
  margin: 20px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.card-grid,
.destination-grid,
.why-grid {
  display: grid;
  gap: 12px;
}

.feature-card,
.product-card,
.destination-grid article,
.why-grid article {
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 50px rgba(20, 20, 20, 0.06);
}

.feature-card {
  padding: 22px;
}

.business-grid .feature-card {
  display: grid;
  align-content: start;
  min-height: 320px;
  gap: 0;
  padding: clamp(26px, 3vw, 34px);
}

.feature-card .icon,
.tag,
.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  min-width: 28px;
  border-radius: 6px;
  background: #111417;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.business-grid .feature-card .icon {
  height: 38px;
  min-width: 42px;
  padding: 0 12px;
  font-size: 16px;
}

.feature-card h3,
.product-card h3,
.destination-grid h3,
.why-grid h3,
.timeline h3 {
  margin: 18px 0 8px;
  font-size: 20px;
}

.business-grid .feature-card h3 {
  margin: 24px 0 12px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.08;
}

.solution-for {
  display: block;
  margin-bottom: 16px;
  color: #8b6214;
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.business-grid .feature-card p {
  margin: 0;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.72;
}

.community-section {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(212, 175, 55, 0.14), transparent 26%),
    radial-gradient(circle at 86% 28%, rgba(145, 112, 38, 0.15), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(45deg, rgba(212, 175, 55, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #050607 0%, #11100d 48%, #070809 100%);
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
  color: var(--text);
}

.community-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 12%, rgba(212, 175, 55, 0.06) 12.2%, transparent 12.4% 50%, rgba(212, 175, 55, 0.055) 50.2%, transparent 50.4% 88%, rgba(212, 175, 55, 0.05) 88.2%, transparent 88.4%),
    radial-gradient(circle at 50% 18%, transparent 0 22%, rgba(212, 175, 55, 0.06) 22.2%, transparent 22.6%);
  opacity: 0.72;
  pointer-events: none;
}

.community-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 7, 0.1), rgba(5, 6, 7, 0.84));
  pointer-events: none;
}

.community-section .page-shell {
  position: relative;
  z-index: 1;
}

.community-realm-nav {
  display: grid;
  gap: 8px;
  margin: 0 0 28px;
  padding: 8px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 999px;
  background: rgba(5, 6, 7, 0.64);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.community-realm-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(244, 241, 234, 0.78);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.community-realm-nav a:hover {
  transform: translateY(-1px);
  background: rgba(212, 175, 55, 0.14);
  color: var(--text);
}

.community-realm-nav span {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.community-hero {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
  min-height: clamp(680px, 86svh, 940px);
}

.community-copy {
  max-width: 760px;
  align-self: center;
  padding: clamp(18px, 4vw, 34px) 0;
}

.community-copy h2 {
  margin: 12px 0 22px;
  color: var(--text);
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.44);
}

.community-copy p,
.community-showcase-copy p,
.community-block-head p,
.community-cta p {
  color: rgba(244, 241, 234, 0.78);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.78;
}

.community-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.community-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 4px;
  color: rgba(244, 241, 234, 0.88);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.12), transparent 70%),
    rgba(255, 255, 255, 0.055);
  font-size: 13px;
  font-weight: 800;
}

.community-showcase {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(12px, 2vw, 18px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.1), transparent 34%),
    rgba(7, 8, 9, 0.86);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.48);
}

.community-showcase::before,
.community-showcase::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  border-color: rgba(212, 175, 55, 0.54);
  pointer-events: none;
}

.community-showcase::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.community-showcase::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.community-main-photo,
.community-showcase-thumbs figure,
.community-wall img {
  margin: 0;
}

.community-main-photo,
.community-showcase-thumbs figure,
.community-wall figure {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 4px;
  background: #0d1013;
}

.community-main-photo img,
.community-showcase-thumbs img,
.community-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-main-photo {
  min-height: clamp(360px, 50vw, 620px);
}

.community-main-photo::after,
.community-wall figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.82));
  pointer-events: none;
}

.community-main-photo figcaption,
.community-wall figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 7px;
  padding: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.18);
  background: linear-gradient(180deg, transparent, rgba(5, 6, 7, 0.46));
}

.community-main-photo strong,
.community-wall strong {
  color: var(--text);
  font-size: 16px;
}

.community-main-photo span,
.community-wall span {
  color: rgba(244, 241, 234, 0.74);
  font-size: 13px;
  line-height: 1.55;
}

.community-showcase-copy {
  padding: 10px 4px 4px;
}

.community-showcase-copy span {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.community-showcase-copy h3 {
  margin: 8px 0 10px;
  color: var(--text);
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.08;
}

.community-showcase-copy p {
  margin: 0;
  font-size: clamp(15px, 1.5vw, 17px);
}

.community-showcase-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.community-showcase-thumbs figure {
  min-height: 116px;
}

.community-showcase-thumbs figcaption {
  position: absolute;
  inset: auto 8px 8px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.community-block h3,
.community-cta h3 {
  margin: 8px 0 16px;
  color: var(--text);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

.footprint-grid,
.category-grid {
  display: grid;
  gap: 12px;
}

.footprint-grid article,
.category-grid article {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.06), transparent 70%),
    rgba(255, 255, 255, 0.052);
}

.footprint-photo,
.category-photo {
  overflow: hidden;
  margin: 0 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) - 2px);
  background: #0d1013;
}

.footprint-photo {
  aspect-ratio: 16 / 10;
}

.category-photo {
  aspect-ratio: 16 / 9;
}

.footprint-photo img,
.category-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.footprint-grid strong,
.category-grid h4 {
  display: block;
  margin: 0 0 8px;
  color: var(--text);
  font-size: 19px;
}

.footprint-grid p,
.category-grid p {
  margin: 0;
  color: rgba(244, 241, 234, 0.72);
  line-height: 1.68;
}

.community-block {
  margin-top: 64px;
}

.community-split {
  display: grid;
  gap: 20px;
  align-items: start;
}

.community-block-head {
  max-width: 920px;
  margin-bottom: 22px;
  padding-left: 18px;
  border-left: 2px solid rgba(212, 175, 55, 0.62);
}

.community-block-subtitle {
  margin-top: -6px;
  color: rgba(212, 175, 55, 0.82) !important;
  font-size: clamp(15px, 1.7vw, 18px) !important;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.athlete-editorial-head {
  display: grid;
  gap: 18px;
  max-width: none;
}

.athlete-editorial-head h3 {
  max-width: 620px;
}

.athlete-editorial-head p {
  max-width: 760px;
}

.athlete-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
}

.athlete-meta-strip span {
  border: 1px solid rgba(212, 175, 55, 0.24);
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(244, 241, 234, 0.68);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footprint-grid article > span,
.category-grid article > span {
  display: block;
  margin-top: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footprint-grid p {
  margin: 12px 0 0;
}

.category-grid article > span {
  margin: 0 0 14px;
  font-size: 13px;
}

.category-grid h4 {
  margin-bottom: 10px;
}

.community-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
}

.community-detail-grid {
  display: grid;
  gap: 14px;
}

.community-detail-grid figure {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  margin: 0;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 4px;
  background: #0d1013;
  cursor: zoom-in;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.community-detail-grid figure:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.58);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38);
}

.community-detail-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.03);
}

.community-detail-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.9));
  pointer-events: none;
}

.community-detail-grid figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding: 15px;
  border-top: 1px solid rgba(212, 175, 55, 0.16);
}

.community-detail-grid strong,
.community-detail-grid em,
.community-detail-grid span {
  display: block;
}

.community-detail-grid strong {
  color: var(--text);
  font-size: 17px;
}

.community-detail-grid em {
  color: rgba(212, 175, 55, 0.9);
  font-size: clamp(14px, 1.4vw, 16px);
  font-style: normal;
  font-weight: 900;
  line-height: 1.34;
}

.community-detail-grid span {
  color: rgba(244, 241, 234, 0.76);
  font-size: 12px;
  line-height: 1.5;
}

.athlete-wall {
  position: relative;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-padding-inline: clamp(10px, 2vw, 18px);
  scroll-snap-type: none;
  -webkit-overflow-scrolling: touch;
  padding: clamp(10px, 2vw, 18px);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 175, 55, 0.14), transparent 28%),
    radial-gradient(circle at 90% 22%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 34px 90px rgba(0, 0, 0, 0.28);
}

.athlete-wall::-webkit-scrollbar {
  height: 10px;
}

.athlete-wall::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
}

.athlete-wall::-webkit-scrollbar-thumb {
  border: 2px solid rgba(8, 10, 12, 0.92);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.9), rgba(244, 241, 234, 0.36));
}

.athlete-wall.is-paused {
  scroll-snap-type: x mandatory;
}

.athlete-wall::before {
  content: "FIELD ALBUM";
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  color: rgba(212, 175, 55, 0.28);
  font-size: clamp(20px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  pointer-events: none;
}

.athlete-card {
  position: relative;
  flex: 0 0 clamp(260px, 27vw, 360px);
  overflow: hidden;
  min-height: clamp(360px, 44vw, 470px);
  margin: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #0d1013;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  cursor: zoom-in;
  isolation: isolate;
  scroll-snap-align: start;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.athlete-card:hover,
.athlete-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.62);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.44);
  outline: none;
}

.athlete-card.is-stack {
  overflow: hidden;
  box-shadow:
    10px -10px 0 rgba(244, 241, 234, 0.055),
    20px -20px 0 rgba(212, 175, 55, 0.09),
    0 18px 48px rgba(0, 0, 0, 0.26);
}

.athlete-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
  transform: scale(1.01);
  transition: transform 500ms ease, filter 220ms ease;
}

.athlete-card:hover img,
.athlete-card:focus-visible img {
  filter: saturate(1) contrast(1.08);
  transform: scale(1.045);
}

.athlete-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, transparent 38%, rgba(0, 0, 0, 0.9) 100%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.18), transparent 40%);
  pointer-events: none;
}

.athlete-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(244, 241, 234, 0.1);
  pointer-events: none;
}

.athlete-card figcaption {
  position: absolute;
  inset: auto 12px 12px;
  z-index: 2;
  padding: 12px 13px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-left: 2px solid rgba(212, 175, 55, 0.7);
  background: linear-gradient(135deg, rgba(5, 6, 7, 0.76), rgba(5, 6, 7, 0.34));
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.athlete-card-count {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 999px;
  background: rgba(8, 10, 12, 0.82);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.community-wall figure {
  min-height: 240px;
  cursor: zoom-in;
  transition: transform 160ms ease, border-color 160ms ease;
}

.community-wall figure:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.58);
}

.community-wall .wide {
  grid-column: span 2;
}

.community-wall .tall {
  min-height: 420px;
}

.community-cta {
  position: relative;
  display: grid;
  gap: 22px;
  align-items: center;
  margin-top: 64px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 4px;
  border-color: rgba(212, 175, 55, 0.28);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.14), transparent 48%),
    rgba(255, 255, 255, 0.06);
}

.community-cta::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  pointer-events: none;
}

.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.community-actions .button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.product-list {
  display: grid;
  gap: 12px;
}

.course-system-section {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 175, 55, 0.16), transparent 30%),
    radial-gradient(circle at 82% 22%, rgba(120, 141, 128, 0.18), transparent 28%),
    linear-gradient(135deg, #080a0b 0%, #111416 46%, #070809 100%);
}

.course-system-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(212, 175, 55, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
  pointer-events: none;
}

.course-system-section::after {
  content: "";
  position: absolute;
  width: min(58vw, 720px);
  aspect-ratio: 1;
  right: -18vw;
  top: 12%;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 48%, rgba(212, 175, 55, 0.07) 49%, transparent 50%),
    conic-gradient(from 120deg, transparent, rgba(212, 175, 55, 0.16), transparent 38%);
  opacity: 0.68;
  pointer-events: none;
}

.course-system-section .page-shell {
  position: relative;
  z-index: 1;
}

.course-system-head {
  display: grid;
  gap: clamp(22px, 4vw, 44px);
  max-width: none;
  margin-bottom: clamp(28px, 5vw, 54px);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    rgba(11, 13, 14, 0.78);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
}

.course-system-head h2 {
  max-width: 980px;
  color: var(--text);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
}

.course-system-head p {
  max-width: 800px;
  color: rgba(244, 241, 234, 0.72);
}

.course-system-status {
  display: grid;
  gap: 10px;
}

.course-system-status span {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(244, 241, 234, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-system-status strong {
  color: var(--accent);
  font-size: 21px;
  letter-spacing: 0.02em;
}

.course-system-grid {
  position: relative;
  gap: 14px;
}

.creator-proof-section {
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: 128px 0 96px;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.72) 0%, rgba(5, 6, 8, 0.42) 42%, rgba(5, 6, 8, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.08), rgba(5, 6, 8, 0.66)),
    url("assets/courses/creator-proof-bg.jpg") center / cover no-repeat;
}

.creator-proof-section .page-shell {
  position: relative;
  z-index: 1;
  width: 100%;
}

.creator-proof-section .section-head {
  max-width: 980px;
  margin-bottom: 0;
  padding: clamp(24px, 4vw, 40px);
  border-left: 4px solid var(--accent);
  background: linear-gradient(90deg, rgba(5, 6, 8, 0.56), rgba(5, 6, 8, 0.22));
  backdrop-filter: blur(8px);
}

.creator-proof-section h2 {
  color: var(--text);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.08;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.52);
}

.creator-proof-section .section-kicker {
  color: var(--accent);
}

.product-card {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.course-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  align-content: space-between;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.026)),
    rgba(14, 17, 18, 0.88);
  color: var(--text);
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.24);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(212, 175, 55, 0.42), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 46%);
  opacity: 0.44;
  pointer-events: none;
}

.course-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-right: 1px solid rgba(212, 175, 55, 0.34);
  border-bottom: 1px solid rgba(212, 175, 55, 0.34);
  opacity: 0.72;
  pointer-events: none;
}

.course-card {
  cursor: pointer;
}

.course-card:hover,
.course-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.54);
  background:
    radial-gradient(circle at 18% 8%, rgba(212, 175, 55, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(13, 16, 17, 0.94);
  box-shadow: 0 28px 96px rgba(0, 0, 0, 0.42);
}

.course-card > * {
  position: relative;
  z-index: 1;
}

.course-card .course-number,
.course-detail .course-number {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.course-card .course-number {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
}

.course-card h3 {
  margin: 0 0 12px;
  color: inherit;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
}

.course-card div > p:last-child {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: rgba(244, 241, 234, 0.7);
  line-height: 1.76;
}

.course-card .course-en {
  margin-bottom: 8px;
}

.course-en {
  margin: 0 0 14px;
  color: rgba(212, 175, 55, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.course-card.featured {
  border-color: rgba(212, 175, 55, 0.36);
  background:
    radial-gradient(circle at 18% 10%, rgba(212, 175, 55, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(212, 175, 55, 0.105), rgba(255, 255, 255, 0.034)),
    #101317;
}

.course-card button,
.product-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #15100a;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.course-card button {
  width: fit-content;
  min-width: 118px;
  padding: 0 18px;
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.16);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.course-card button:hover,
.course-card button:focus-visible {
  transform: translateY(-2px);
  background: #f1d16b;
}

#courses .product-card.featured {
  color: var(--text);
}

#courses .product-card.featured p {
  color: rgba(244, 241, 234, 0.68);
}

.course-compliance {
  margin: 18px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(244, 241, 234, 0.62);
  font-size: 13px;
  line-height: 1.72;
}

.course-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 34px);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.course-modal.is-open {
  display: flex;
}

.course-modal-panel {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 175, 55, 0.12), transparent 32%),
    #101317;
  color: var(--text);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.56);
}

.course-modal-close {
  position: sticky;
  top: 14px;
  left: calc(100% - 58px);
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 14px 14px -56px auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 10, 12, 0.84);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.course-detail {
  display: none;
  padding: clamp(24px, 4vw, 44px);
}

.course-detail.is-active {
  display: block;
}

.course-detail h3 {
  margin: 8px 0 8px;
  max-width: 760px;
  color: var(--text);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.04;
}

.course-detail .course-en {
  color: rgba(212, 175, 55, 0.76);
}

.course-lead {
  max-width: 720px;
  margin: 18px 0 26px;
  color: rgba(244, 241, 234, 0.78);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.course-detail-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.course-detail-grid section {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.course-detail-grid h4 {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.course-detail-grid p,
.course-detail-grid li {
  color: rgba(244, 241, 234, 0.76);
  line-height: 1.72;
}

.course-detail-grid ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

.course-detail .button {
  width: fit-content;
}

}

.destination-section {
  background:
    linear-gradient(180deg, rgba(248, 246, 240, 0.94), rgba(248, 246, 240, 0.98)),
    url("assets/hero-tactical-expedition.png") center / cover fixed;
}

.destination-grid article {
  min-height: 190px;
  padding: 22px;
}

.destination-grid span {
  color: #2f766b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.why-grid article {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 241, 234, 0.68)),
    rgba(255, 255, 255, 0.72);
}

.why-grid span {
  color: #8b6214;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.why-grid h3 {
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.16;
}

.why-grid p {
  margin: 0;
  color: rgba(24, 24, 24, 0.66);
  font-size: 15px;
  line-height: 1.72;
}

.process-section {
  padding: 72px 0;
}

.path-grid {
  display: grid;
  max-width: 980px;
  gap: 12px;
  margin: 0 auto;
}

.path-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  width: 100%;
  min-height: 86px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 50%, rgba(212, 175, 55, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #101317;
  color: inherit;
  font: inherit;
  text-align: left;
  overflow: hidden;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.path-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 2px solid rgba(212, 175, 55, 0.68);
  pointer-events: none;
}

.path-card:hover {
  transform: translateX(8px);
  border-color: rgba(212, 175, 55, 0.44);
  background:
    radial-gradient(circle at 0% 50%, rgba(212, 175, 55, 0.24), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    #101317;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

@media (min-width: 860px) {
  .path-card:nth-child(odd) {
    width: 88%;
  }

  .path-card:nth-child(even) {
    width: 88%;
    justify-self: end;
  }

  .path-card:nth-child(3),
  .path-card:nth-child(4) {
    width: 96%;
  }
}

.path-card span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.path-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.16;
}

.path-card em {
  color: rgba(212, 175, 55, 0.82);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.path-card strong {
  color: rgba(212, 175, 55, 0.9);
  font-size: 13px;
  line-height: 1.5;
}

.path-card p,
.path-card small {
  margin: 0;
  color: rgba(244, 241, 234, 0.72);
  line-height: 1.68;
}

.path-card .path-fit {
  color: rgba(244, 241, 234, 0.58);
  font-size: 13px;
}

.path-card small {
  font-size: 12px;
}

.path-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.path-tags span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.08);
  color: rgba(244, 241, 234, 0.76);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.path-card button {
  display: inline-flex;
  width: fit-content;
  min-width: 126px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #15100a;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.path-modal {
  position: fixed;
  inset: 0;
  z-index: 78;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 34px);
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(12px);
}

.path-modal.is-open {
  display: flex;
}

.path-modal-panel {
  position: relative;
  overflow: auto;
  width: min(820px, 100%);
  max-height: min(86svh, 760px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 0%, rgba(212, 175, 55, 0.15), transparent 34%),
    linear-gradient(180deg, #111417, #080a0c);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.62);
}

.path-modal-close {
  position: sticky;
  top: 14px;
  left: calc(100% - 58px);
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 14px 14px -56px auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 10, 12, 0.84);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.path-detail {
  display: none;
  padding: clamp(28px, 5vw, 50px);
}

.path-detail.is-active {
  display: grid;
  gap: 16px;
}

.path-detail > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.path-detail h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.02;
}

.path-detail strong {
  color: rgba(212, 175, 55, 0.9);
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.5;
}

.path-detail p,
.path-detail small {
  margin: 0;
  color: rgba(244, 241, 234, 0.74);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.76;
}

.path-detail button {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #15100a;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.path-compliance {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(244, 241, 234, 0.62);
  font-size: 12px;
  line-height: 1.7;
}

.join-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(212, 175, 55, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(244, 241, 234, 0.06), transparent 42%),
    linear-gradient(180deg, #080a0c 0%, #111417 54%, #080a0c 100%);
  color: var(--text);
}

.join-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.68), transparent 74%);
  pointer-events: none;
}

.join-section .page-shell {
  position: relative;
  z-index: 1;
}

.join-hero {
  display: grid;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.join-hero h2 {
  margin: 10px 0 14px;
  max-width: 820px;
  color: var(--text);
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
}

.join-subtitle {
  margin: 0;
  color: var(--accent);
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.join-lead {
  display: grid;
  gap: 16px;
  align-self: end;
  color: rgba(244, 241, 234, 0.78);
}

.join-lead p,
.join-copy p,
.join-panel p,
.join-note,
.join-final-cta p {
  margin: 0;
  color: rgba(244, 241, 234, 0.76);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.78;
}

.join-lead strong,
.join-copy strong,
.join-brand-principle strong {
  color: var(--text);
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.55;
}

.join-entry-grid,
.join-panel-grid,
.creator-tier-grid {
  display: grid;
  gap: 12px;
}

.join-entry-grid {
  margin-top: 24px;
}

.join-entry-card,
.join-program,
.join-panel,
.creator-tier-grid article,
.join-brand-principle,
.join-final-cta {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(10, 12, 14, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.join-entry-card {
  width: 100%;
  display: grid;
  gap: 10px;
  min-height: 210px;
  align-content: end;
  padding: 20px;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.join-entry-card:hover,
.join-entry-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.58);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(10, 12, 14, 0.82);
}

.join-entry-card.is-active {
  box-shadow:
    inset 0 0 0 1px rgba(212, 175, 55, 0.18),
    0 24px 70px rgba(0, 0, 0, 0.28);
}

.join-entry-card span,
.join-program-head > span,
.creator-tier-grid article > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.52);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.join-entry-card h3,
.join-program h3,
.join-program h4,
.join-final-cta h3 {
  margin: 0;
  color: var(--text);
}

.join-entry-card h3 {
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.05;
}

.join-entry-card p {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 900;
}

.join-entry-card small {
  color: rgba(244, 241, 234, 0.62);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.join-program {
  display: none;
  margin-top: 0;
  padding: clamp(22px, 4vw, 36px);
}

.join-program.is-active {
  display: block;
  animation: joinPanelIn 220ms ease both;
}

@keyframes joinPanelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.join-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(3, 4, 5, 0.82);
  backdrop-filter: blur(16px);
}

.join-modal.is-open {
  display: flex;
}

.join-modal-panel {
  position: relative;
  overflow: auto;
  width: min(1120px, 100%);
  max-height: min(86svh, 920px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 10% 0%, rgba(212, 175, 55, 0.12), transparent 34%),
    linear-gradient(180deg, #101317, #080a0c);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.64);
}

.join-modal-panel .join-program {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.join-modal-close {
  position: sticky;
  top: 14px;
  left: calc(100% - 58px);
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 14px 14px -56px auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.join-program-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.join-program h3 {
  font-size: clamp(28px, 4.8vw, 52px);
  line-height: 1.04;
}

.join-program-head p {
  margin: 8px 0 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.join-program-body {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.join-copy {
  display: grid;
  gap: 14px;
}

.join-copy h4 {
  font-size: clamp(22px, 3.4vw, 34px);
  line-height: 1.12;
}

.join-data-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.join-data-grid div {
  min-height: 116px;
  padding: 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius);
  background: rgba(212, 175, 55, 0.08);
}

.join-data-grid strong,
.join-data-grid span {
  display: block;
}

.join-data-grid strong {
  color: var(--accent);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1;
}

.join-data-grid span {
  margin-top: 12px;
  color: rgba(244, 241, 234, 0.72);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.join-panel-grid {
  margin-top: 18px;
}

.join-panel {
  padding: 18px;
  box-shadow: none;
}

.join-panel h4,
.creator-tier-grid h4 {
  margin: 0 0 14px;
  font-size: 19px;
  line-height: 1.25;
}

.join-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(244, 241, 234, 0.74);
  line-height: 1.62;
}

.join-panel li {
  position: relative;
  padding-left: 18px;
}

.join-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.join-tags,
.join-tag-column {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.join-tags span,
.join-tag-column span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(244, 241, 234, 0.82);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.join-tag-column {
  align-content: start;
}

.creator-tier-grid {
  margin-top: 18px;
}

.creator-tier-grid article {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 230px;
  padding: 18px;
  box-shadow: none;
}

.creator-tier-grid p {
  margin: 0;
  color: rgba(244, 241, 234, 0.72);
  line-height: 1.68;
}

.join-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.055);
}

.join-brand-principle {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 20px;
  border-color: rgba(212, 175, 55, 0.32);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.13), transparent 62%),
    rgba(10, 12, 14, 0.86);
}

.join-brand-principle p {
  margin: 0;
  color: rgba(244, 241, 234, 0.72);
  line-height: 1.68;
}

.join-button {
  margin-top: 20px;
}

.join-final-cta {
  display: grid;
  gap: 22px;
  margin-top: 28px;
  padding: clamp(22px, 4vw, 36px);
  border-color: rgba(212, 175, 55, 0.3);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.06);
}

.join-final-cta h3 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.08;
}

.join-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.join-final-actions .button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.timeline {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 44px rgba(20, 20, 20, 0.05);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  line-height: 1.35;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 16px;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.8;
}

.faq-list p + p {
  padding-top: 0;
}

.faq-list ul {
  display: grid;
  gap: 8px;
  margin: 0 22px 18px;
  padding: 14px 18px 14px 34px;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 6px;
  background: rgba(17, 20, 23, 0.035);
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.65;
}

.faq-list strong {
  color: var(--ink);
}

.booking-panel {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 18%, rgba(212, 175, 55, 0.14), transparent 28%),
    linear-gradient(135deg, #fff, #f3efe6);
  box-shadow: 0 18px 70px rgba(20, 20, 20, 0.1);
}

.booking-copy {
  min-width: 0;
}

.booking-copy p {
  max-width: 720px;
}

.booking-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.booking-tags span {
  padding: 8px 11px;
  border: 1px solid rgba(17, 20, 23, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: rgba(17, 20, 23, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.booking-qr-card {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 16px;
  border: 1px solid rgba(17, 20, 23, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 70px rgba(20, 20, 20, 0.12);
}

.booking-qr-card img {
  width: min(260px, 100%);
  aspect-ratio: 1;
  border: 1px solid rgba(17, 20, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.booking-qr-card div {
  display: grid;
  gap: 6px;
  text-align: center;
}

.booking-qr-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.booking-qr-card span {
  color: rgba(17, 20, 23, 0.68);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.site-footer {
  padding: 30px 0;
  background: #080a0c;
  color: var(--text);
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.site-footer p,
.site-footer span {
  color: var(--muted);
  font-size: 13px;
}

@media (min-width: 720px) {
  .page-shell {
    width: min(1120px, calc(100% - 64px));
  }

  .site-header {
    padding: 18px 32px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    gap: 4px;
    padding: 5px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
  }

  .site-nav a {
    padding: 9px 11px;
    font-size: 13px;
  }

  .community-realm-nav {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero {
    min-height: 94svh;
    padding-bottom: 54px;
  }

  .hero-media img {
    object-position: center center;
  }

  .hero-actions,
  .booking-actions {
    display: flex;
    align-items: center;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-proof {
    grid-template-columns: repeat(4, max-content);
  }

  .intro-grid,
  .faq-layout,
  .booking-panel,
  .footer-grid {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

  .partner-tabs,
  .business-grid,
  .destination-grid,
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-panel {
    grid-template-columns: 0.9fr 1.1fr;
    padding: 24px;
  }

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

  .partner-gallery {
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
  }

  .honors-content-head {
    grid-template-columns: 0.62fr 1.38fr;
    align-items: center;
  }

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

  .honors-footer {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .honors-copy-wide {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    align-items: start;
  }

  .honors-copy-wide p + p {
    margin-top: 0;
  }

  .global-country-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .community-hero {
    grid-template-columns: 0.82fr 1.18fr;
  }

  .community-split {
    grid-template-columns: 0.34fr 0.66fr;
  }

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

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

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

  .community-detail-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .athlete-editorial-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .athlete-meta-strip {
    justify-content: end;
    max-width: 380px;
  }

  .athlete-wall {
    gap: 14px;
    padding: 18px;
  }

  .athlete-card {
    flex-basis: clamp(300px, 28vw, 390px);
    min-height: 0;
    height: clamp(400px, 40vw, 520px);
  }

  .athlete-card:nth-child(1) {
    flex-basis: clamp(340px, 32vw, 440px);
  }

  .athlete-card:nth-child(2),
  .athlete-card:nth-child(10) {
    flex-basis: clamp(340px, 32vw, 440px);
  }

  .athlete-card:nth-child(4),
  .athlete-card:nth-child(9),
  .athlete-card:nth-child(15) {
    flex-basis: clamp(300px, 28vw, 390px);
  }

  .athlete-card:nth-child(5),
  .athlete-card:nth-child(14) {
    flex-basis: clamp(340px, 32vw, 440px);
  }

  .athlete-card:nth-child(8),
  .athlete-card:nth-child(12) {
    flex-basis: clamp(300px, 28vw, 390px);
  }

  .athlete-card:hover,
  .athlete-card:focus-visible {
    transform: translateY(-6px);
  }

  .community-wall .wide {
    grid-column: span 2;
  }

  .community-wall .tall {
    grid-row: span 2;
  }

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

  .join-hero {
    grid-template-columns: 1fr 0.86fr;
    align-items: end;
  }

  .join-entry-grid,
  .join-panel-grid,
  .creator-tier-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .join-program-body {
    grid-template-columns: 1.04fr 0.96fr;
    align-items: start;
  }

  .creator-tier-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .join-final-cta {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .join-final-actions {
    justify-content: flex-end;
    max-width: 390px;
  }

  .product-card {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .course-system-head {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    align-items: end;
  }

  .course-system-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .course-card {
    grid-column: span 6;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .course-card:nth-child(1) {
    grid-column: span 5;
  }

  .course-card:nth-child(2) {
    grid-column: span 7;
  }

  .course-card:nth-child(3) {
    grid-column: span 7;
  }

  .course-card:nth-child(4) {
    grid-column: span 5;
  }

  .course-card:nth-child(5),
  .course-card:nth-child(6) {
    grid-column: span 6;
  }

  .product-card a {
    min-width: 130px;
    padding: 0 18px;
  }

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

  .timeline {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .booking-actions {
    justify-content: flex-end;
    margin-top: 0;
  }

  .booking-panel {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 300px);
  }

  .booking-copy .booking-actions {
    justify-content: flex-start;
    margin-top: 24px;
  }
}

@media (min-width: 1040px) {
  .brand-intro,
  .section,
  .honors-section,
  .global-section,
  .booking,
  .process-section {
    padding: 96px 0;
  }

  .hero p {
    font-size: 18px;
  }
}
