@font-face {
  font-family: 'Sentient';
  src: url('../fonts/Sentient-Variable.woff2') format('woff2'),
    url('../fonts/Sentient-Variable.woff') format('woff');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Sentient';
  src: url('../fonts/Sentient-VariableItalic.woff2') format('woff2'),
    url('../fonts/Sentient-VariableItalic.woff') format('woff');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ── LIQUID GLASS SYSTEM ── */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(40px);
  background: #00000017;
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.15) 20%,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0.15) 80%,
      rgba(255, 255, 255, 0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.liquid-glass-strong {
  background: rgba(255, 255, 255, 0.06);
  background-blend-mode: luminosity;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  border: none;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.liquid-glass-strong::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.2) 20%,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0.2) 80%,
      rgba(255, 255, 255, 0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ── NO normal ON TITLES ── */
.nav-logo-pill span,
.hero-headline .word,
.stat-number,
.partner-name,
.why-headline,
.pull-quote,
.section-headline-dark,
.section-headline-mid,
.section-headline-light,
.philosophy-headline,
.cta-headline,
.summit-card h3,
.eco-card h3,
.s-pillar h4,
.location-name,
.dest-video-overlay-name,
.dest-tab,
.footer-wordmark {
  font-style: normal;
}

/* ── PAGE SHELL ── */
html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: var(--color-on-dark);
  overflow-x: hidden;
  min-height: 100vh;
  font-family: var(--font-ui);
}

/* Solid black background */
.page-bg {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 0;
  pointer-events: none;
}

/* All content sits above bg */
body>*:not(.page-bg):not(nav) {
  position: relative;
  z-index: 1;
}

/* ── NAV ── */
nav {
  position: relative;
  z-index: 1000;
  padding: 16px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo pill */
.nav-logo-pill {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
}

.footer-brand .nav-logo-pill {
  color: rgb(255 255 255 / 60%);
}

.nav-logo-pill span {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 22px;
  color: #fff;
  line-height: 1;
}

/* Center nav pill */
.nav-center {
  display: flex;
  align-items: center;
  border-radius: 9999px;
  padding: 6px 6px 6px 6px;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-nav);
  text-decoration: none;
  white-space: nowrap;
  border-radius: 9999px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

/* Right pill */
.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 9999px;
}

.nav-signin {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-para-on-dark);
  text-decoration: none;
  padding: 0 10px;
  transition: color 0.2s;
}

.nav-signin:hover {
  color: #fff;
}

.nav-cta {
  background: #000;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #1a1a1a;
  color: #fff;
}

.nav-cta svg {
  flex-shrink: 0;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px 0;
  gap: 0;
  position: relative;
  overflow: hidden;
}

#hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Top gradient masks video behind fixed nav */
#hero-video-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(to bottom, #000 0%, #000 35%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

#hero-video {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: top center;
}

/* Bottom fade blends hero into next section */
#hero-video-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent, #000);
  z-index: 1;
  pointer-events: none;
}

#hero>*:not(#hero-video-wrap) {
  position: relative;
  z-index: 1;
}

/* Badge pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 9999px;
  padding: 6px 16px 6px 6px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-badge-chip {
  background: #fff;
  color: #000;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 9999px;
  letter-spacing: 0.2px;
}

.hero-badge-text {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-nav);
  letter-spacing: 0;
}

/* BlurText headline */
.hero-headline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 0.18em;
  max-width: 860px;
  margin: 0 auto 28px;
  line-height: 1.11;
}

.hero-headline .word {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: clamp(32px, 6vw, 74px);
  font-weight: 400;
  letter-spacing: -2px;
  color: #fff;
  display: inline-block;
  margin-right: 0.28em;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
}

.hero-sub {
  font-family: var(--font-ui);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-para-on-dark);
  max-width: 500px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.85s forwards;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.05s forwards;
}

/* Stat cards */
.hero-stats {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

.stat-card {
  width: 210px;
  border-radius: 20px;
  padding: 22px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s, backdrop-filter 0.2s;
  cursor: default;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  text-decoration: none;
  cursor: pointer;
}

.stat-icon {
  width: 32px;
  height: 32px;
  opacity: 0.85;
}

.stat-number {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 38px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 300;
  color: var(--text-para-on-dark);
  line-height: 1.4;
}

/* Partners */
.hero-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1.35s forwards;
}

.partners-label {
  border-radius: 9999px;
  padding: 6px 16px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-para-on-dark);
}

.partners-names {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.partner-name {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--text-para-on-dark);
  letter-spacing: -0.5px;
  text-decoration: none;
  transition: color 0.2s;
}

.partner-name:hover {
  color: #fff;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ── hero eyebrow / tag kept for compat but hidden ── */
.hero-eyebrow,
.hero-tag {
  display: none;
}

.btn-primary {
  background: #fff;
  color: #000;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #e8e8e8;
  color: #000;
}

.btn-outline {
  background: transparent;
  color: var(--text-para-on-dark);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Dark bg btn variant */
.btn-green {
  background: var(--color-deep-green);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s;
}

.btn-green:hover {
  background: #004d42;
  color: #fff;
}

/* Light bg btn variants */
.btn-dark {
  background: #000;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  transition: background 0.2s;
}

.btn-dark:hover {
  background: #1a1a1a;
  color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-ink);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-hairline);
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-dark:hover {
  border-color: var(--color-ink);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ── SCROLL HINT ── */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 72px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  animation: bob 2.5s ease-in-out infinite;
}

.scroll-hint::after {
  content: '';
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

/* ── TRUST STRIP ── */
.trust-strip {
  padding: 28px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.trust-inner {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: scroll-x 28s linear infinite;
  width: max-content;
}

.trust-item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-para-on-dark);
  white-space: nowrap;
}

@keyframes scroll-x {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── SECTIONS COMMON ── */
section {
  position: relative;
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: 20px;
  display: block;
}

.section-label.light {
  color: var(--color-coral);
}

.section-label.muted {
  color: var(--color-muted);
}

/* ── WHY NOW ── dark section ── */
#why,
#sp-intro {
  padding: 120px 0;
  color: #fff;
}

.why-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 420px;
  column-gap: 80px;
  row-gap: 20px;
  align-items: start;
}

.why-video-col {
  position: sticky;
  top: 100px;
}

.why-video-col video {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .why-inner {
    grid-template-columns: 1fr;
  }

  .why-video-col {
    position: static;
  }
}

/* Shared base for all Sentient section headlines */
.section-headline-dark,
.section-headline-mid,
.section-headline-light,
.why-headline,
.philosophy-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

/* Consolidated accent gradient — all headline & pull-quote variants */
.section-headline-dark .accent,
.section-headline-mid .accent,
.section-headline-light .accent,
.why-headline .accent,
.philosophy-headline .accent,
.cta-headline .accent,
.pull-quote .accent,
.hero-headline .word.accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-headline {
  color: #fff;
  margin-bottom: 40px;
}

.manifesto-text {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-para-on-dark);
  margin-bottom: 20px;
}

.manifesto-text strong {
  color: var(--text-near-white);
  font-weight: 500;
}

.manifesto-text em {
  color: var(--color-coral-soft);
  font-style: normal;
}

.pull-quote {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -1px;
  padding: 44px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: 44px 0;
}

/* ── SUMMITS ── dark section ── */
#summits {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-headline-dark {
  color: #fff;
  margin-bottom: 16px;
}

/* Shared base for all section sub-headings */
.section-sub-dark,
.section-sub-mid,
.section-sub-light {
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 300;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.65;
}

.section-sub-dark {
  color: var(--text-para-on-dark);
}

/* ── BENTO SUMMIT CARDS ── */
.summits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.summit-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  cursor: default;
  position: relative;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 8px 40px rgba(0, 0, 0, 0.4);
}

/* Glass border via pseudo */
.summit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.2px;
  background: linear-gradient(160deg,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0.1) 30%,
      rgba(255, 255, 255, 0) 55%,
      rgba(255, 255, 255, 0.1) 80%,
      var(--glass-hi) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.summit-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 16px 60px rgba(0, 0, 0, 0.5);
}

/* Visual panel inside card also gets glass tint */
.summit-visual {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Price footer */
.summit-price-row {
  padding: 20px 32px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.15);
}

.summit-price-info {
  display: flex;
  align-items: baseline;
  gap: 10px;
  justify-content: center;
}

.btn-book-now {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 11px 0;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.summit-price-row p {
  color: var(--text-para-on-dark);
  font-size: 14px;
}

.summit-price-row p span {
  color: var(--color-coral);
}

.btn-book-now:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Text header area */
.summit-card-header {
  padding: 36px 32px 28px;
  text-align: center;
}

.summit-number {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-para-on-dark);
  margin-bottom: 14px;
}

.summit-card h3 {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.summit-tagline {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-para-on-dark);
  max-width: 240px;
  margin: 0 auto;
}

.summit-visual svg {
  width: 100%;
  height: 100%;
}

.summit-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.4px;
}

.summit-price-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-coral-soft);
}

/* ── LOCATIONS ── transitioning section ── */
#locations {
  padding: 120px 0;
}

.section-headline-mid {
  color: var(--text-near-white);
  margin-bottom: 16px;
}

.section-sub-mid {
  color: var(--text-para-on-dark);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.location-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  transition: border-color 0.25s;
}

.location-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.location-month {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-coral-soft);
  margin-bottom: 14px;
}

.location-name {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -1px;
  color: var(--text-near-white);
  margin-bottom: 6px;
}

.location-theme {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-para-on-dark);
  margin-bottom: 20px;
  font-style: normal;
}

.location-desc {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-para-on-dark);
  line-height: 1.65;
  margin-bottom: 28px;
}

.location-dates {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.location-date-item {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3px;
  color: var(--text-para-on-dark);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xs);
  text-align: left;
}

/* ── PHILOSOPHY BAND ── deep green full-width ── */
#philosophy,
#sp-philosophy {
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .32)), radial-gradient(circle at 70% 20%, #ffad9b, transparent 28%), linear-gradient(135deg, #f4ddc8, #2f746b 55%, #14171c);
  padding: 100px 0;
  position: relative;
}

#philosophy::before,
#sp-philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.philosophy-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
  position: relative;
}

.philosophy-headline {
  color: #fff;
  margin-bottom: 24px;
}

.philosophy-card {
  width: min(620px, 100%);
  border-radius: 8px;
  background: #17171c;
  color: #fff;
  padding: 28px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);
  margin: 0 auto;
}

.manifesto-lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.manifesto-line {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 300;
  color: var(--text-para-on-dark);
  line-height: 1.7;
  padding: 18px 24px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
}

.manifesto-line:hover {
  border-color: var(--color-coral);
  color: var(--text-near-white);
  background: rgba(255, 255, 255, 0.04);
}

.manifesto-line strong {
  color: var(--text-near-white);
  font-weight: 500;
}

/* ── ECOSYSTEM ── light section ── */
#ecosystem,
#sp-ecosystem {
  padding: 120px 0;
  background: var(--color-canvas);
}

.section-headline-light {
  color: var(--color-ink);
  margin-bottom: 16px;
}

.section-sub-light {
  color: var(--color-muted);
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.eco-card {
  background: var(--color-soft-stone);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: border-color 0.25s;
  text-align: center;
}

.eco-card:hover {
  border-color: var(--color-hairline);
}

.eco-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.eco-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-ink);
}

.eco-card h3 {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 24px;
  font-weight: 400;
  color: var(--color-ink);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.eco-role {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--color-coral);
  margin-bottom: 16px;
  font-style: normal;
}

.eco-card p {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-para-on-dark);
  line-height: 1.65;
}

.eco-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-muted);
  font-style: normal;
}

.eco-connector .line {
  height: 1px;
  width: 60px;
  background: var(--color-hairline);
}

/* ── SPONSORSHIP ── light ── */
#sponsorship,
#sp-contact {
  padding: 120px 0;
  background: var(--color-soft-stone);
}

.sponsorship-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

.sponsorship-text {
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 300;
  color: var(--text-para-on-dark);
  line-height: 1.75;
  margin-bottom: 20px;
}

.sponsorship-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 44px 0;
}

.s-pillar {
  background: var(--color-canvas);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  transition: border-color 0.25s;
}

.s-pillar:hover {
  border-color: var(--color-hairline);
}

.s-pillar h4 {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-ink);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.s-pillar p {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 300;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ── BONUSES STRIP ── */
.bonuses-strip {
  background: var(--color-canvas);
  padding: 56px 40px 0;
}

.bonuses-white-wrap {
  max-width: 1060px;
  margin: 0 auto;
  background: #070b11;
  border-radius: 16px 16px 0 0;
  padding: 32px 40px;
}

.bonuses-inner {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 0;
  justify-content: center;
}

.bonus-item {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid var(--color-card-border);
}

.bonus-item:last-child {
  border-right: none;
}

.bonus-item h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: 10px;
}

.bonus-item p {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-para-on-dark);
  line-height: 1.6;
}

/* ── MOTION BAND WRAPPER ── */
.motion-band {
  position: relative;
}

.motion-band-bg {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  margin-bottom: -100vh;
  z-index: 0;
}

.motion-band-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* .motion-band-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.62);
      z-index: 1;
    } */
.motion-band-content {
  position: relative;
  z-index: 2;
}

/* Dark overrides for sections inside motion band */
.motion-band-content #ecosystem,
.motion-band-content #sp-ecosystem {
  background: transparent;
}

.motion-band-content #sponsorship,
.motion-band-content #sp-contact {
  background: transparent;
}

.motion-band-content .bonuses-strip {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.08);
}

.motion-band-content .bonus-item {
  border-color: #3a3a3a;
}

.motion-band-content .bonus-item h4 {
  color: var(--color-coral);
}

.motion-band-content .bonus-item p {
  color: var(--text-para-on-dark);
}

.motion-band-content .bonuses-white-wrap {
  box-shadow: 0 0px 0px 8px rgb(180 173 173 / 30%);
}

.motion-band-content .section-headline-light {
  color: #212121;
}

.motion-band-content .section-sub-light {
  color: #212121;
}

.motion-band-content .section-label.muted {
  color: #212121;
}

.motion-band-content .eco-card {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0px 0px 4px rgb(180 173 173 / 30%);
}

/* .motion-band-content .eco-card:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.2);
    } */
.motion-band-content .eco-card h3 {
  color: #212121;
}

.motion-band-content .eco-card p {
  color: #212121;
}

.motion-band-content .eco-icon {
  background: rgb(105 105 105 / 8%);
  border-color: rgb(0 0 0 / 12%);
}

.motion-band-content .eco-icon svg {
  stroke: #212121;
}

.motion-band-content .eco-connector {
  color: #212121;
}

.motion-band-content .eco-connector .line {
  background: #212121;
}

.motion-band-content .sponsorship-text {
  color: #212121;
}

.motion-band-content .s-pillar {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0px 0px 4px rgb(180 173 173 / 30%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.motion-band-content .s-pillar:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.motion-band-content .s-pillar h4 {
  color: var(--color-ink);
}

.motion-band-content .s-pillar p {
  color: var(--color-ink);
}

.motion-band-content .btn-outline-dark {
  color: var(--text-para-on-dark);
  border-color: rgba(255, 255, 255, 0.2);
}

.motion-band-content .btn-outline-dark:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

/* CTA + footer motion band */
.motion-band-cta-footer #cta,
.motion-band-cta-footer #sp-cta {
  background: transparent;
}

.motion-band-cta-footer footer {
  background: transparent;
  border-top-color: rgba(255, 255, 255, 0.08);
}

.motion-band-cta-footer .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.06);
}

/* ── CTA BAND ── */
#cta,
#sp-cta {
  background: #000;
  padding: 120px 40px;
  text-align: center;
}

.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 400;
  letter-spacing: -2px;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 20px;
}

.cta-sub {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 300;
  color: var(--text-para-on-dark);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.6;
  font-style: normal;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: #000;
  /* border-top: 1px solid rgba(255, 255, 255, 0.06); */
  padding: 40px;
}

.footer-glass {
  max-width: 1060px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 48px 40px 32px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 280px;
}

.footer-wordmark {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.footer-tagline-text {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  line-height: 1.6;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-para-on-dark);
  margin-bottom: 16px;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col-links a:hover {
  color: rgb(255 255 255 / 53%);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #fff;
  letter-spacing: 0.3px;
  text-decoration: none;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-d1 {
  transition-delay: 0.1s;
}

.reveal-d2 {
  transition-delay: 0.2s;
}

.reveal-d3 {
  transition-delay: 0.3s;
}

.reveal-d4 {
  transition-delay: 0.4s;
}

/* ── DESTINATION DETAILS (TABBED) ── */
#destination-details,
#sp-paths {
  padding: 120px 0;
}

#destination-details .container {
  max-width: 1400px;
}

.dest-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.dest-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 36px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-para-on-dark);
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 20px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  outline: none;
}

.dest-tab:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-near-white);
}

.dest-tab.active {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.dest-tab-date {
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 11px;
  font-weight: 300;
  color: var(--text-para-on-dark);
  letter-spacing: 0.3px;
}

.dest-tab.active .dest-tab-date {
  color: var(--color-coral-soft);
}

.dest-panel {
  display: none;
}

.dest-panel.active {
  display: block;
}

.dest-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.dest-video-col {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 8px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  min-height: 460px;
}

.dest-video-col video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: block;
}

/* Glass border on video col */
.dest-video-col::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.2px;
  background: linear-gradient(160deg,
      var(--glass-hi) 0%,
      rgba(255, 255, 255, 0.08) 30%,
      rgba(255, 255, 255, 0) 55%,
      rgba(255, 255, 255, 0.08) 80%,
      rgba(255, 255, 255, 0.25) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

/* Location label overlay on video */
.dest-video-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 3;
}

.dest-video-overlay-name {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 32px;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
}

.dest-video-overlay-date {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 300;
  color: var(--text-para-on-dark);
  letter-spacing: 0.3px;
  margin-top: 4px;
}

.tier-approach .btn-book-now {
  text-transform: none;
  margin-top: 20px;
  font-family: var(--font-ui) !important;
  letter-spacing: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {

  .summits-grid,
  .locations-grid,
  .eco-grid,
  .sponsorship-pillars,
  .dest-grid {
    grid-template-columns: 1fr;
  }

  .dest-video-col {
    min-height: 260px;
  }

  .nav-left .nav-link {
    display: none;
  }

  .bonuses-inner {
    flex-direction: column;
    align-items: center;
  }

  .bonus-item {
    border-right: none;
    border-bottom: 1px solid var(--color-card-border);
    padding: 24px 0;
  }

  .bonus-item:last-child {
    border-bottom: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .hero-headline .word {
    font-size: 32px;
  }

  .hero-ctas,
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .nav-right .nav-signin {
    padding-left: 0;
    font-size: 13px;
  }

  .nav-cta {
    font-size: 13px;
    padding: 9px;
  }

  nav {
    padding: 16px 16px 0;
  }

  .container {
    padding: 0 16px;
  }

  .why-inner {
    padding: 0 16px;
    flex-direction: column-reverse;
    display: flex;
    flex-wrap: wrap;
  }

  .philosophy-inner {
    padding: 0 16px;
  }

  .sponsorship-inner {
    padding: 0 16px;
  }

  #cta,
  #sp-cta {
    padding: 120px 16px;
  }

  footer {
    padding: 56px 16px 40px;
  }

  .trust-strip {
    padding: 28px 16px;
  }

  .bonuses-strip {
    padding: 56px 16px 0;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column-reverse;
  }

  .footer-glass {
    border-radius: 24px;
    padding: 25px 20px;
  }

  #hero {
    padding: 40px 16px 0;
  }

  #why,
  #sp-intro {
    padding: 60px 0 0;
    color: #fff;
  }

  .pull-quote {
    padding: 25px 0;
    margin: 25px 0;
  }
}

/* ── HAMBURGER + MOBILE NAV MENU ── */
.nav-hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  flex-shrink: 0;
}

.hamburger-bar {
  width: 18px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 2px;
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.nav-hamburger.is-open .hamburger-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.is-open .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-hamburger.is-open .hamburger-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 16px;
  padding: 8px;
  min-width: 220px;
  flex-direction: column;
  gap: 2px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 12px 48px rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.nav-mobile-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(160deg,
      var(--glass-hi) 0%,
      rgba(255, 255, 255, 0.08) 40%,
      rgba(255, 255, 255, 0) 60%,
      rgba(255, 255, 255, 0.15) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

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

.nav-mobile-link {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-nav);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 9999px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-mobile-link.active,
.nav-mobile-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@media (max-width: 768px) {
  .nav-center {
    display: none !important;
  }

  .nav-hamburger {
    display: flex;
  }
}

/* ── SPONSORSHIP PAGE ── */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.tier-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 8px 40px rgba(0, 0, 0, 0.4);
}

.tier-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.2px;
  background: linear-gradient(160deg,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0.1) 30%,
      rgba(255, 255, 255, 0) 55%,
      rgba(255, 255, 255, 0.1) 80%,
      var(--glass-hi) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.tier-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 16px 60px rgba(0, 0, 0, 0.5);
}

.tier-card-header-area {
  padding: 36px 32px 24px;
  text-align: center;
}

.tier-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-para-on-dark);
  margin-bottom: 14px;
}

.tier-card h3 {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.tier-desc {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-para-on-dark);
  max-width: 240px;
  margin: 0 auto;
}

.tier-includes {
  flex: 1;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

.tier-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-para-on-dark);
  line-height: 1.5;
}

.tier-item .marker {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-coral, #ff7759);
  flex-shrink: 0;
  margin-top: 6px;
}

.tier-approach {
  padding: 18px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.15);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-coral-soft, #ff9980);
}

.sp-pillars-wrap .sponsorship-pillars {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
  .tiers-grid {
    grid-template-columns: 1fr;
  }

  .sp-pillars-wrap .sponsorship-pillars {
    grid-template-columns: 1fr;
  }
}