/* Mission Giving™ — Brand styles */

:root {
  --gold: #C28309;
  --gold-light: #E0A93A;
  --gold-dark: #96660A;
  --navy: #181F43;
  --navy-dark: #0F1430;
  --navy-mid: #232C5C;
  --navy-accent: #2E3A78;
  --cream: #F8F6F0;
  --white: #FFFFFF;
  --font-display: "Marcellus", Georgia, serif;
  --font-body: "Poppins", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
}

/* Geometric gold pattern for navy sections */
.pattern-gold {
  background-color: var(--navy-dark);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(194, 131, 9, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(194, 131, 9, 0.06) 0%, transparent 45%),
    linear-gradient(135deg, transparent 48%, rgba(194, 131, 9, 0.04) 49%, rgba(194, 131, 9, 0.04) 51%, transparent 52%);
  background-size: 100% 100%, 100% 100%, 40px 40px;
}

.diagonal-divider {
  position: relative;
}

.diagonal-divider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 48px;
  background: linear-gradient(to bottom right, transparent 49%, var(--cream) 50%);
  pointer-events: none;
  z-index: 2;
}

.diagonal-divider.dark-next::after {
  background: linear-gradient(to bottom right, transparent 49%, var(--navy-dark) 50%);
}

.diagonal-divider.navy-next::after {
  background: linear-gradient(to bottom right, transparent 49%, var(--navy) 50%);
}

/* Gold gradient CTA */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--navy-dark);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(194, 131, 9, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(194, 131, 9, 0.5);
  color: var(--navy-dark);
}

.btn-gold:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: var(--gold);
  background: transparent;
  border: 1.5px solid var(--gold);
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn-outline-gold:hover {
  background: rgba(194, 131, 9, 0.12);
  color: var(--gold-light);
}

/* Section eyebrow */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.5;
  color: var(--navy);
  position: relative;
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold);
}

.pull-quote.light {
  color: var(--cream);
}

/* Pyramid of Success */
.pyramid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-width: 420px;
  margin: 0 auto;
}

.pyramid-layer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(15, 20, 48, 0.25);
  clip-path: polygon(4% 0, 96% 0, 100% 100%, 0 100%);
}

.pyramid-layer:nth-child(1) { width: 42%; background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--navy-dark); }
.pyramid-layer:nth-child(2) { width: 58%; background: linear-gradient(135deg, var(--navy-accent), var(--navy-mid)); }
.pyramid-layer:nth-child(3) { width: 74%; background: linear-gradient(135deg, var(--navy-mid), var(--navy)); }
.pyramid-layer:nth-child(4) { width: 90%; background: linear-gradient(135deg, var(--navy), var(--navy-dark)); }

/* Saptanga pillars */
.pillar-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.125rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(194, 131, 9, 0.35);
  border-radius: 14px;
  color: var(--cream);
  font-weight: 500;
  font-size: 0.9rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.pillar-chip:hover {
  border-color: var(--gold);
  background: rgba(194, 131, 9, 0.1);
}

.pillar-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
  font-size: 0.75rem;
  font-weight: 700;
}

/* Pricing tiers — metallic accents */
.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(15, 20, 48, 0.08);
  overflow: hidden;
}

.tier-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: var(--tier-border);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.tier-diamond { --tier-border: linear-gradient(145deg, #E8F4FF, #7BA3C9, #1a2744, #E8F4FF); }
.tier-platinum { --tier-border: linear-gradient(145deg, #F5F5F5, #A8A8A8, #6B6B6B, #E0E0E0); }
.tier-golden { --tier-border: linear-gradient(145deg, #F5D78E, #C28309, #96660A, #E0A93A); }
.tier-silver { --tier-border: linear-gradient(145deg, #E8E8E8, #9E9E9E, #757575, #CFCFCF); }

.tier-card.featured {
  transform: scale(1.02);
  box-shadow: 0 16px 48px rgba(194, 131, 9, 0.2);
}

.tier-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-dark);
}

.feature-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(24, 31, 67, 0.08);
  font-size: 0.85rem;
}

.feature-row:last-of-type {
  border-bottom: none;
}

.feature-label {
  color: rgba(24, 31, 67, 0.7);
  flex: 1;
}

.feature-value {
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  max-width: 45%;
}

.feature-value.yes { color: #1a7a3c; }
.feature-value.no { color: #9a3a3a; }

/* Razorpay — protect injected button from Tailwind preflight */
.razorpay-btn-wrapper {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding-top: 1.25rem;
}

.razorpay-btn-wrapper form,
.razorpay-btn-wrapper form * {
  all: revert;
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  background: rgba(15, 20, 48, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(194, 131, 9, 0.35);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}

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

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  z-index: 55;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}

@media (min-width: 768px) {
  .whatsapp-fab {
    bottom: 1.75rem;
  }
}

/* Mobile nav drawer */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 65;
  background: rgba(15, 20, 48, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-drawer {
  transform: translateX(100%);
  transition: transform 0.3s ease;
  visibility: hidden;
  pointer-events: none;
}

.nav-drawer.open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

/* Header scroll state */
/* Light logo (cream + gold) for navy backgrounds — no opaque plate */
.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-on-dark {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 12px rgba(224, 169, 58, 0.18));
}

/* Three Keys of Success cards */
.key-cards {
  align-items: stretch;
}

.key-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 1.75rem 1.5rem 1.5rem;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(24, 31, 67, 0.1);
  box-shadow: 0 10px 30px rgba(15, 20, 48, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.key-card:hover {
  transform: translateY(-4px);
  border-color: rgba(194, 131, 9, 0.45);
  box-shadow: 0 16px 40px rgba(15, 20, 48, 0.14);
}

.key-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
}

.key-card--featured {
  background: linear-gradient(165deg, #181F43 0%, #232C5C 100%);
  border-color: rgba(194, 131, 9, 0.5);
  box-shadow: 0 14px 36px rgba(15, 20, 48, 0.28);
}

.key-card--featured .key-card__title {
  color: var(--cream);
}

.key-card--featured .key-card__text {
  color: rgba(248, 246, 240, 0.8);
}

.key-card--featured .key-card__num {
  color: var(--gold-light);
}

.key-card--featured .key-card__icon {
  background: rgba(194, 131, 9, 0.18);
  color: var(--gold-light);
  border-color: rgba(194, 131, 9, 0.35);
}

.key-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.key-card__num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.key-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(194, 131, 9, 0.16), rgba(24, 31, 67, 0.06));
  border: 1px solid rgba(194, 131, 9, 0.28);
  color: var(--navy);
}

.key-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0;
}

.key-card__text {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(24, 31, 67, 0.72);
}

/* Payment success page */
.success-card {
  padding: 2rem 1.5rem 2.25rem;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(24, 31, 67, 0.95) 0%, rgba(15, 20, 48, 0.98) 100%);
  border: 1px solid rgba(194, 131, 9, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

@media (min-width: 640px) {
  .success-card {
    padding: 2.75rem 2.5rem 3rem;
  }
}

.success-check {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  color: #0F1430;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 28px rgba(194, 131, 9, 0.45);
}

.success-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.success-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(194, 131, 9, 0.28);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 500;
}

.whatsapp-join {
  padding: 1.5rem 1.25rem;
  border-radius: 16px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.35);
}

.whatsapp-join__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
  padding: 0.95rem 1.75rem;
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-join__btn:hover {
  transform: translateY(-2px);
  background: #1ebe57;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* Event Agenda — vertical timeline */
.agenda-section {
  background: linear-gradient(180deg, #181F43 0%, #0F1430 40%, #232C5C 100%);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold);
}

.agenda-section__rail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: linear-gradient(180deg, rgba(194, 131, 9, 0.18), transparent);
  pointer-events: none;
}

.agenda-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--navy-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 4px 14px rgba(194, 131, 9, 0.35);
}

.agenda-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, transparent 48%, rgba(194, 131, 9, 0.04) 49%, rgba(194, 131, 9, 0.04) 51%, transparent 52%);
  background-size: 36px 36px;
  pointer-events: none;
}

.agenda-progress {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.agenda-progress__track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.agenda-progress__fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 12px rgba(224, 169, 58, 0.5);
  transition: width 0.15s linear;
}

.agenda-progress__label {
  margin-top: 0.65rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(248, 246, 240, 0.65);
}

.agenda-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.agenda-timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 12px;
  bottom: 12px;
  width: 3px;
  background: linear-gradient(180deg, #2E3A78, #C28309, #2E3A78);
  border-radius: 999px;
  opacity: 0.85;
}

@media (min-width: 640px) {
  .agenda-timeline::before {
    left: 27px;
  }
}

.agenda-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.85rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .agenda-item {
    grid-template-columns: 56px 1fr;
    gap: 1.25rem;
    padding-bottom: 1.75rem;
  }
}

.agenda-item:last-child {
  padding-bottom: 0;
}

.agenda-item__marker {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-top: 0.85rem;
}

.agenda-item__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.15rem;
  background: linear-gradient(145deg, var(--gold-light), var(--gold));
  border: 3px solid #181F43;
  box-shadow: 0 4px 16px rgba(194, 131, 9, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 640px) {
  .agenda-item__icon {
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
  }
}

.agenda-item.is-active .agenda-item__icon,
.agenda-item.is-passed .agenda-item__icon {
  transform: scale(1.06);
  box-shadow: 0 6px 22px rgba(224, 169, 58, 0.55);
}

.agenda-card {
  border-radius: 16px;
  padding: 1.15rem 1.2rem 1.25rem;
  text-align: left;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (min-width: 640px) {
  .agenda-card {
    padding: 1.35rem 1.5rem 1.45rem;
  }
}

.agenda-item.is-active .agenda-card {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.agenda-card--white {
  background: #ffffff;
  border-color: rgba(194, 131, 9, 0.2);
  color: var(--navy);
}

.agenda-card--blue {
  background: #E8EEF8;
  border-color: rgba(46, 58, 120, 0.2);
  color: var(--navy);
}

.agenda-card--takehome {
  background: linear-gradient(145deg, #F8F6F0, #fff);
  border: 1px solid rgba(194, 131, 9, 0.45);
}

.agenda-card__time {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.agenda-card__session {
  margin: 0.4rem 0 0;
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(24, 31, 67, 0.08);
  color: var(--navy);
}

.agenda-card__title {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--navy);
}

@media (min-width: 640px) {
  .agenda-card__title {
    font-size: 1.3rem;
  }
}

.agenda-card__list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.agenda-card__list li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.35rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(24, 31, 67, 0.78);
}

.agenda-card__list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
}

.agenda-card__list--check li::before {
  content: "✅";
  font-size: 0.75rem;
}

.agenda-card__body {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(24, 31, 67, 0.78);
}

.agenda-card__quote {
  margin: 0.9rem 0 0;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(24, 31, 67, 0.1);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--navy-mid);
}

.site-header {
  background: rgba(15, 20, 48, 0.55);
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  background: rgba(15, 20, 48, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

/* Hero soft mask for portrait */
.hero-portrait {
  mask-image: linear-gradient(to left, black 55%, transparent 100%),
              linear-gradient(to top, transparent 0%, black 18%);
  -webkit-mask-image: linear-gradient(to left, black 55%, transparent 100%),
                      linear-gradient(to top, transparent 0%, black 18%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

@media (max-width: 767px) {
  .hero-portrait {
    mask-image: linear-gradient(to top, transparent 0%, black 25%);
    -webkit-mask-image: linear-gradient(to top, transparent 0%, black 25%);
  }

  body {
    padding-bottom: 4.5rem;
  }
}

/* Checklist */
.check-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(24, 31, 67, 0.08);
}

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

.check-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(194, 131, 9, 0.15), rgba(194, 131, 9, 0.05));
  color: var(--gold);
}

/* Process chips */
.process-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--navy);
  color: var(--cream);
  border: 1px solid rgba(194, 131, 9, 0.4);
}

.process-arrow {
  color: var(--gold);
  font-weight: 700;
  padding: 0 0.35rem;
}

/* Teams section — soft slate-blue, distinct from cream Organize Yourself */
.teams-section {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(194, 131, 9, 0.1), transparent 45%),
    linear-gradient(165deg, #D8E0F0 0%, #E8EEF8 45%, #F0F3FA 100%);
  border-top: 1px solid rgba(24, 31, 67, 0.08);
}

.teams-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-mid), var(--gold), var(--navy-mid));
}

.teams-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 40px;
  background: linear-gradient(to bottom right, transparent 49%, #181F43 50%);
  pointer-events: none;
  z-index: 2;
}

.teams-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--cream);
  background: var(--navy);
  border: 1px solid rgba(194, 131, 9, 0.45);
}

.teams-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.65rem;
}

.teams-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 6.5rem;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(24, 31, 67, 0.1);
  box-shadow: 0 8px 22px rgba(15, 20, 48, 0.08);
}

.teams-step__num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.teams-step__label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
}

.teams-step__arrow {
  align-self: center;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0 0.15rem;
}

.teams-panel {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1.35rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 31, 67, 0.1);
  box-shadow: 0 10px 28px rgba(15, 20, 48, 0.06);
  backdrop-filter: blur(6px);
}

@media (min-width: 640px) {
  .teams-panel {
    padding: 1.75rem 2rem;
  }
}

/* GSAP initial hide — applied via JS; fallback if JS off stays visible */
.gsap-reveal {
  will-change: transform, opacity;
}

/* Urgency banner */
.urgency-banner {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy), var(--navy-mid));
  border: 1px solid rgba(194, 131, 9, 0.45);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  text-align: center;
}

/* Icon meta chips */
.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(194, 131, 9, 0.3);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
}

.version-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(194, 131, 9, 0.15);
  border: 1px solid rgba(194, 131, 9, 0.5);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
