*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  --ink: #083234;
  --ink-mid: #083234;
  --lime: #CFFF04;
  --lime-soft: #E8FF9E;
  --offwhite: #F5F5F0;
  --white: #FFFFFF;
  --black: #083234;
  --gray: #6B6B6B;
  --gray-light: #E8E8E8;
  --transition: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

::selection {
  background: var(--lime);
  color: var(--ink)
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  line-height: 1.6
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition)
}

.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
  max-width: 280px;
}

.nav-logo img {
  display: block;
  height: 68px;
  width: auto;
  max-width: 100%;
}

@media (max-width: 900px) {
  .nav-logo img {
    height: 60px;
  }
}

@media (max-width: 600px) {
  .nav-logo img {
    height: 52px;
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none
}

.nav-links a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.02em;
  transition: color 0.2s
}

.nav-links a:hover {
  color: var(--ink-mid)
}

.nav-cta {
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  white-space: nowrap
}

.nav-cta:hover {
  background: var(--ink-mid);
  transform: translateY(-1px)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--black);
  display: block;
  transition: var(--transition)
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 5% 80px;
  gap: 4rem;
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--ink) 0%, #1A1A1A 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.9
}

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

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
}

.hero-eyebrow::before {
  display: none;
}

.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem
}

.hero-headline .accent {
  color: var(--lime)
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.7
}

.hero-badges {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5)
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--lime);
  flex-shrink: 0
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.btn-primary {
  background: var(--lime);
  color: var(--ink);
  padding: 0.875rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  display: inline-block
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px)
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 0.875rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem
}

.btn-outline:hover {
  border-color: var(--lime);
  color: var(--lime)
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end
}

.hero-pill {
  background: var(--white);
  border-radius: 100px;
  padding: 0.6rem 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3)
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  background: #FF4D4D;
  border-radius: 50%;
  animation: pulse 1.5s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.4
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
  max-width: 420px
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  backdrop-filter: blur(8px)
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.75rem, 3vw, 3.5rem);
  color: var(--lime);
  line-height: 1
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em
}

.spots-badge {
  background: var(--ink);
  border: 2px dashed var(--lime);
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  align-self: flex-end;
  text-align: center
}

.spots-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1
}

.spots-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.1em;
  text-transform: uppercase
}

/* MARQUEE */
.marquee-section {
  background: var(--ink);
  padding: 1rem 0;
  overflow: hidden
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 25s linear infinite
}

.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 1.5rem
}

.marquee-item .dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

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

/* WHAT YOU'LL GET */
.outcomes {
  padding: 100px 5%;
  background: var(--offwhite)
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 1rem
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 1rem
}

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 500px;
  margin-bottom: 4rem
}

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

.outcome-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default
}

.outcome-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ink);
  transform: scaleX(0);
  transition: var(--transition)
}

.outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08)
}

.outcome-card:hover::after {
  transform: scaleX(1)
}

.outcome-icon {
  width: 56px;
  height: 56px;
  background: var(--ink);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem
}

.outcome-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.8
}

.outcome-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--black)
}

.outcome-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6
}

/* ABOUT PROGRAM */
.about {
  padding: 100px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  background: var(--black);
  position: relative;
  overflow: hidden
}

.about-img {
  position: relative
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--ink);
  border-radius: 16px;
  overflow: hidden;
  position: relative
}

.about-img-overlay {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  background: var(--offwhite);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4)
}

.about-img-overlay-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--ink);
  line-height: 1
}

.about-img-overlay-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em
}

.about-content {
  color: var(--white)
}

.about-content .section-label {
  color: var(--lime)
}

.about-content .section-title {
  color: var(--white)
}

.about-content .section-sub {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8)
}

.check-icon {
  width: 22px;
  height: 22px;
  background: var(--ink-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.check-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--lime);
  stroke-width: 2.5;
  fill: none
}

/* RESULTS */
.results {
  padding: 100px 5%;
  background: var(--offwhite)
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem
}

.results-track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 4px
}

.results-track::-webkit-scrollbar { display: none }

.result-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  flex: 0 0 calc(33.333% - 1.34rem);
  min-width: 280px;
  scroll-snap-align: start
}

.result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1)
}

.carousel-arrow {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06)
}

.carousel-arrow:hover {
  background: var(--ink);
  color: var(--white);
  transform: scale(1.08)
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition)
}

.carousel-dot.active {
  background: var(--ink);
  width: 24px;
  border-radius: 4px
}

.result-img {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #0D0D0D, #222222);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.ba-split {
  display: flex;
  width: 100%;
  height: 100%
}

.ba-half {
  position: relative;
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center
}

.ba-half:first-child { border-right: 1px solid rgba(255,255,255,0.15) }

.ba-half img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top
}

.ba-half.ba-placeholder {
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a)
}

.ba-label {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,0.5);
  padding: 0.3rem 0.6rem;
  margin-bottom: 0.6rem;
  border-radius: 20px
}

.result-badge {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  line-height: 1;
  white-space: nowrap;
  z-index: 2
}

.result-badge span {
  font-size: 0.9rem;
  font-weight: 400
}

.result-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--white)
}

.result-body {
  padding: 1.5rem
}

.result-quote {
  font-size: 0.9rem;
  color: var(--gray);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem
}

.result-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black)
}

.result-stars {
  color: var(--lime);
  font-size: 0.8rem;
  margin-bottom: 0.5rem
}

/* PRICING */
.pricing {
  padding: 100px 5%;
  background: var(--white);
  text-align: center
}

.pricing .section-label {
  display: inline-block
}

.pricing .section-title {
  margin-bottom: 0.5rem
}

.pricing .section-sub {
  margin: 0 auto 4rem
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto
}

.price-card {
  border: 1.5px solid var(--gray-light);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: left;
  position: relative;
  background: var(--white);
  transition: var(--transition)
}

.price-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(207, 255, 4, 0.18)
}

.price-card-highlight {
  border: 2px solid var(--ink);
  box-shadow: 0 0 0 1px var(--ink), 0 0 32px rgba(8, 50, 52, 0.45), 0 20px 50px rgba(8, 50, 52, 0.2);
  padding: 2.75rem 2.25rem
}
 
.price-card-highlight:hover {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink), 0 0 20px rgba(8, 50, 52, 0.55), 0 24px 60px rgba(8, 50, 52, 0.25)
}

.price-tagline {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 0.5rem
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  transform: none;
  display: block;
  background: var(--offwhite);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.75rem 1rem;
  border-radius: 14px 14px 0 0;
  white-space: normal;
  overflow: visible;
  line-height: 1.2;
}

.featured-badge-lime {
  background: var(--lime);
  color: var(--ink);
  border-radius: 12px 12px 0 0
}

.price-tier {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mid);
  margin-bottom: 0.5rem
}

.price-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.25rem
}

.price-period {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 2rem
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--black)
}

.price-features li svg {
  width: 16px;
  height: 16px;
  stroke: var(--ink-mid);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0
}

.btn-enroll {
  width: 100%;
  padding: 0.875rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition)
}

.btn-enroll-light {
  background: var(--offwhite);
  color: var(--ink)
}

.btn-enroll-light:hover {
  background: var(--ink);
  color: var(--white)
}

.btn-enroll-dark {
  background: var(--lime);
  color: var(--ink)
}

.btn-enroll-dark:hover {
  background: var(--white);
  color: var(--ink)
}

/* FORM / APPLY */
.apply {
  padding: 100px 5%;
  background: var(--black)
}

.apply-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center
}

.apply .section-label {
  color: var(--lime)
}

.apply .section-title {
  color: var(--white)
}

.apply .section-sub {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto 3rem
}

.apply-form {
  text-align: left
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem
}

.form-group {
  margin-bottom: 1rem
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  display: block
}

.form-input,
select.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none
}

select.form-input option {
  color: var(--ink);
  background: var(--white)
}

.form-input:focus {
  border-color: var(--lime)
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.25)
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem
}

.form-check input {
  margin-top: 3px;
  accent-color: var(--lime);
  flex-shrink: 0
}

.form-check label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5
}

.form-check a {
  color: var(--lime);
  text-decoration: none
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--lime);
  color: var(--ink);
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition)
}

.submit-btn:hover {
  background: var(--white);
  transform: translateY(-2px)
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  background: rgba(207, 255, 4, 0.08);
  border: 1px solid rgba(207, 255, 4, 0.35);
  border-radius: 12px;
  color: var(--white)
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem
}

.form-success p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem
}

.integrations-note {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap
}

.int-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08)
}

/* TRUST BAR */
.trust-bar {
  background: var(--ink);
  padding: 3rem 5%
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center
}

.trust-item .trust-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem
}

.trust-item h4 {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.25rem
}

.trust-item p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6)
}

/* FOOTER */
footer {
  background: var(--black);
  padding: 60px 5% 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06)
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
  max-width: 260px;
}

.footer-logo img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 100%;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .footer-logo img {
    height: 48px;
  }
}

.footer-logo span {
  color: var(--lime)
}

.footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 280px
}

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s
}

.footer-col ul li a:hover {
  color: var(--lime)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3)
}

.footer-links {
  display: flex;
  gap: 1.5rem
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none
}

/* ANIMATIONS */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition)
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0)
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s
}

[data-reveal-delay="2"] {
  transition-delay: 0.2s
}

[data-reveal-delay="3"] {
  transition-delay: 0.3s
}

[data-reveal-delay="4"] {
  transition-delay: 0.4s
}

/* MODAL */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem
}

.modal-overlay.open {
  display: flex
}

.modal {
  background: var(--white);
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  overflow: hidden;
  animation: slideUp 0.4s var(--transition)
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0
  }

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

.modal-head {
  background: var(--ink);
  padding: 2rem;
  color: var(--white)
}

.modal-head h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem
}

.modal-head p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7)
}

.modal-body {
  padding: 2rem
}

.modal-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 2rem
}

.modal-price .amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--ink)
}

.modal-price .period {
  font-size: 0.9rem;
  color: var(--gray)
}

.rzp-btn {
  width: 100%;
  padding: 1rem;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 1rem
}

.rzp-btn:hover {
  background: var(--ink-mid)
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center
}

.modal-head {
  position: relative
}

.secured-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem
}

/* RESPONSIVE */
@media(min-width:1200px) {
  .hero {
    gap: 6rem;
    padding: 140px 6% 100px
  }

  .hero-stats {
    max-width: 480px;
    gap: 1.75rem
  }

  .stat-card {
    padding: 2rem 1.75rem
  }

  .stat-label {
    font-size: 0.8rem
  }
}

@media(min-width:900px) {
  .apply-wrap {
    max-width: 600px
  }

  .step-card {
    padding: 32px 36px
  }

  .apply-header h2 {
    font-size: clamp(34px, 3.4vw, 44px)
  }
}

@media(min-width:1200px) {
  .apply-wrap {
    max-width: 680px
  }

  .step-card {
    padding: 40px 48px
  }

  .field-row {
    gap: 20px
  }

  .step-title {
    font-size: 24px
  }
}

@media(max-width:900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 5% 60px
  }

  .hero::before {
    display: none
  }

  .hero {
    background: linear-gradient(160deg, var(--black) 60%, var(--ink) 100%)
  }

  .hero-visual {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem
  }

  .outcomes-grid {
    grid-template-columns: 1fr 1fr
  }

  .about {
    grid-template-columns: 1fr;
    padding: 80px 5%
  }

  .about-img-overlay {
    display: none
  }

  .result-card {
    flex: 0 0 calc(50% - 1rem)
  }

  .pricing-grid {
    grid-template-columns: 1fr
  }

  .form-row {
    grid-template-columns: 1fr
  }

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

  .trust-inner {
    grid-template-columns: 1fr
  }

  .hero-stats {
    max-width: 100%
  }
}

@media(max-width:600px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .outcomes-grid {
    grid-template-columns: 1fr
  }

  .result-card {
    flex: 0 0 82%;
    min-width: 0
  }

  .carousel-wrapper {
    gap: 0.5rem
  }

  .carousel-arrow {
    width: 36px;
    height: 36px
  }

  .results-track {
    gap: 1rem
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: left
  }

  .footer-desc {
    max-width: 100%
  }

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

  .hero-badges {
    flex-wrap: wrap
  }

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

/* Gym icon SVGs inline */
.img-placeholder {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 50%, #1A1A1A 100%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 0.1em
}
/* ===========================================
   Premium Floating CTA
=========================================== */

.floating-cta-wrapper{
    position:fixed;
    left:50%;
    bottom:28px;
    transform:translateX(-50%);
    z-index:9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.floating-cta-wrapper.visible {
    opacity: 1;
    pointer-events: auto;
}

.floating-cta-wrapper.visible.at-apply {
    opacity: 0;
    pointer-events: none;
}

.floating-cta{

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

    min-width:360px;
    height:62px;

    padding:0 36px;

    border-radius:999px;

    background:#CFFF04;

    color:#092B2B;

    font-size:18px;

    font-weight:800;

    text-decoration:none;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(207,255,4,.22);

    transition:
    box-shadow .3s ease,
    transform .3s ease;

    animation:
    floatCTA 3.2s ease-in-out infinite,
    glowCTA 2.4s ease-in-out infinite;
}

.floating-cta:hover{

    transform:scale(1.03);

    box-shadow:
    0 15px 40px rgba(207,255,4,.35);

}

.floating-text{

    position:relative;

    z-index:2;

    letter-spacing:.5px;

}

.shine{

    position:absolute;

    top:0;

    left:-120%;

    width:40%;

    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.8),
        transparent
    );

    transform:skewX(-20deg);

    animation:shineCTA 2.6s linear infinite;

}

@keyframes shineCTA{

0%{

left:-120%;

}

100%{

left:140%;

}

}

@keyframes glowCTA{

0%{

box-shadow:
0 10px 25px rgba(207,255,4,.18);

}

50%{

box-shadow:
0 14px 40px rgba(207,255,4,.34);

}

100%{

box-shadow:
0 10px 25px rgba(207,255,4,.18);

}

}

@keyframes floatCTA{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-5px);

}

100%{

transform:translateY(0);

}

}
@media (max-width:768px){

.floating-cta{

min-width:300px;

height:56px;

font-size:16px;

padding:0 24px;

}

}
/* ===========================================
   MULTISTEP APPLY FORM — matches existing BPF design tokens
   Add this block to your style.css (append at the end)
=========================================== */

.apply-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.6rem;
}

.apply-progress-label .current {
  color: var(--lime);
}

.apply-progress-track {
  display: flex;
  gap: 6px;
  margin-bottom: 2rem;
}

.apply-progress-seg {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.apply-progress-seg.done {
  background: var(--lime);
}

.apply-progress-seg.active {
  background: linear-gradient(90deg, var(--lime) 50%, rgba(255, 255, 255, 0.1) 50%);
}

.step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

.step-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.step-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.75rem;
}

.step-panel {
  display: none;
  animation: stepFadeIn 0.3s ease;
}

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

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

/* Pill choice buttons — replaces dropdowns for Gender / Food / Workout */
.pill-group {
  display: flex;
  gap: 0.6rem;
}

.pill-option {
  flex: 1;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0.85rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
}

.pill-option:hover {
  border-color: rgba(255, 255, 255, 0.3);
}

.pill-option.selected {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

select.visually-hidden-select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Plan preview banner inside step 3 */
.apply-plan-banner {
  background: rgba(207, 255, 4, 0.06);
  border: 1px solid rgba(207, 255, 4, 0.4);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  margin: 0.25rem 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.apply-plan-banner .pb-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--white);
}

.apply-plan-banner .pb-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--lime);
}

.step-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.step-nav .btn-back {
  flex: 0 0 90px;
  padding: 0.875rem;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
}

.step-nav .btn-back:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.step-nav .btn-continue {
  flex: 1;
  padding: 0.875rem;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  border: none;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
}

.step-nav .btn-continue:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.apply-mobile-hint {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 1rem;
}

@media (max-width: 600px) {
  .step-card {
    padding: 1.5rem 1.1rem;
  }
}
/* ============ APPLY SECTION — mobile-first multistep ============ */
.apply-section {
  background: var(--ink);
  color: #fff;
  padding: 64px 20px 80px;
}

.apply-wrap {
  max-width: 480px;
  margin: 0 auto;
}

.apply-header { text-align: center; margin-bottom: 24px; }

.apply-header .eyebrow {
  color: var(--lime);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.apply-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 7vw, 34px);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.apply-header p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

/* Success box */
.form-success-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--lime);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 20px;
}
.form-success-box h3 { margin-bottom: 8px; font-size: 18px; }
.form-success-box p { color: rgba(255, 255, 255, 0.6); font-size: 13px; line-height: 1.6; }

/* Progress */
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.progress-label .current { color: var(--lime); }

.progress-track {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
}
.progress-seg {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
.progress-seg.done { background: var(--lime); }
.progress-seg.active { background: linear-gradient(90deg, var(--lime) 50%, rgba(255, 255, 255, 0.12) 50%); }

/* Card */
.step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 20px;
}

.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.step-sub { color: rgba(255, 255, 255, 0.5); font-size: 13px; margin-bottom: 20px; }

.step-panel { display: none; animation: fadeIn 0.3s ease; }
.step-panel.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.field { margin-bottom: 14px; }
.field:last-child { margin-bottom: 0; }

.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}
.field label .optional { text-transform: none; color: rgba(255, 255, 255, 0.35); font-weight: 400; }

.field input,
.field select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 14px;
  color: #fff;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23888' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field input::placeholder { color: rgba(255, 255, 255, 0.3); }
.field input:focus, .field select:focus { outline: none; border-color: var(--lime); }

/* Kill browser autofill's light background — keep it matching the site's teal */
.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0px 1000px var(--ink) inset;
  box-shadow: 0 0 0px 1000px var(--ink) inset;
  transition: background-color 9999s ease-in-out 0s;
  caret-color: #fff;
}

/* Hide the real <select> visually but keep it in the DOM + form-valid */
select.hidden-select {
  position: absolute;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.pill-group { display: flex; gap: 8px; }
.pill-group-vertical { flex-direction: column; }
.pill-group-vertical .pill-option { text-align: left; }
.pill-option {
  flex: 1;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 13px 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  user-select: none;
  transition: all 0.15s ease;
}
.pill-option:hover { border-color: rgba(255, 255, 255, 0.3); }
.pill-option.selected {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.plan-banner {
  background: rgba(207, 255, 4, 0.06);
  border: 1.5px solid var(--lime);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 4px 0 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pb-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; text-transform: uppercase; }
.pb-price { font-size: 18px; font-weight: 800; color: var(--lime); }

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
}
.consent-row input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--lime); flex-shrink: 0; }
.consent-row label { font-size: 12px; color: rgba(255, 255, 255, 0.55); line-height: 1.5; }
.consent-row a { color: var(--lime); }

.step-nav { display: flex; gap: 10px; margin-top: 22px; }
.apply-section .btn {
  flex: 1;
  padding: 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: transform 0.1s ease, opacity 0.15s ease;
}
.apply-section .btn:active { transform: scale(0.97); }
.btn-back { background: transparent; border: 1.5px solid rgba(255, 255, 255, 0.18); color: rgba(255, 255, 255, 0.65); flex: 0 0 90px; }
.btn-next { background: var(--lime); color: var(--ink); }
.btn-next:disabled { opacity: 0.4; cursor: not-allowed; }

.mobile-hint { text-align: center; font-size: 11px; color: rgba(255, 255, 255, 0.35); margin-top: 14px; }

@media (max-width: 380px) {
  .field-row { grid-template-columns: 1fr; }
  .step-card { padding: 20px 16px; }
}
.floating-cta-wrapper {
  transition: opacity 0.3s ease;
}/* ==========================================================
   LAUNCH POPUP
========================================================== */

.launch-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: popupFadeIn 0.4s ease;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.launch-popup {
    position: relative;
    width: 100%;
    max-width: 360px;
    overflow: hidden;

    background: var(--ink);
    border: 1.5px solid rgba(207, 255, 4, 0.25);
    border-radius: 20px;

    animation: popupSlideUp 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Close Button */

.launch-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.1);
    color: rgba(0, 0, 0, 0.6);

    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    z-index: 10;
}

.launch-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Top Banner */

.launch-popup-top {
    padding: 0.85rem 1.5rem 0.6rem;
    background: var(--lime);
    text-align: center;
}

.popup-eyebrow {
    margin-bottom: 0.25rem;

    color: var(--ink);
    opacity: 0.7;

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.popup-offer {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: var(--ink);
}

/* Body */

.launch-popup-body {
    padding: 1.5rem 1.75rem 1.75rem;
    text-align: center;
}

/* Trophy */

.popup-trophy-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-trophy-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(207, 255, 4, 0.35) 0%, rgba(207, 255, 4, 0.10) 45%, rgba(207, 255, 4, 0) 72%);
}

.popup-trophy-wrap svg {
    position: relative;
    z-index: 2;
}

.popup-spark {
    transform-origin: center;
    animation: sparkTwinkle 2.4s ease-in-out infinite;
}

.popup-spark.s2 { animation-delay: 0.5s; }
.popup-spark.s3 { animation-delay: 1s; }
.popup-spark.s4 { animation-delay: 1.5s; }

@keyframes sparkTwinkle {
    0%, 100% { opacity: 0.35; transform: scale(0.75); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* Headline */

.popup-headline {
    margin-bottom: 0.4rem;

    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(1.6rem, 5.5vw, 2.1rem);
    line-height: 1.08;
    letter-spacing: 0.02em;

    color: var(--white);
}

.popup-headline span {
    color: var(--lime);
}

/* Description */

.popup-sub {
    max-width: 280px;
    margin: 0 auto 1.25rem;

    font-size: 0.82rem;
    line-height: 1.5;

    color: rgba(255, 255, 255, 0.55);
}

/* Prize Badges */

.popup-prizes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;

    margin-bottom: 1.25rem;
}

.popup-prize-badge {
    padding: 0.4rem 0.85rem;

    background: rgba(207, 255, 4, 0.08);
    border: 1px solid rgba(207, 255, 4, 0.3);
    border-radius: 30px;

    color: var(--lime);

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

/* Join Button */

.popup-join-btn {
    position: relative;
    overflow: hidden;

    display: block;
    width: 100%;
    padding: 1rem;

    background: var(--lime);
    color: var(--ink);

    border: none;
    border-radius: 10px;

    font-family: "Inter", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    cursor: pointer;

    box-shadow: 0 8px 24px rgba(207, 255, 4, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.popup-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(207, 255, 4, 0.38);
}

/* Skip Button */

.popup-skip {
    width: 100%;
    margin-top: 1rem;

    background: none;
    border: none;

    color: rgba(255, 255, 255, 0.3);

    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    text-decoration: underline;

    cursor: pointer;
}

.popup-skip:hover {
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile */

@media (max-width: 480px) {
    .launch-popup {
        border-radius: 16px;
    }

    .launch-popup-body {
        padding: 1.5rem 1.25rem 1.75rem;
    }
}