:root {
  --navy-950: #041728;
  --navy-900: #06233d;
  --navy-800: #0b3152;
  --navy-700: #19476b;
  --gold-500: #c5a059;
  --gold-400: #d1b074;
  --gold-300: #e4c994;
  --sand-50: #f8f4eb;
  --sand-100: #f1e7d6;
  --white: #ffffff;
  --ink: #11263b;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.12);
  --card: linear-gradient(180deg, rgba(10, 36, 59, 0.94), rgba(4, 23, 40, 0.92));
  --card-light: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 238, 224, 0.92));
  --gold-gradient: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  --hero-overlay: linear-gradient(180deg, rgba(4, 23, 40, 0.24), rgba(4, 23, 40, 0.9));
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.26);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.18);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(197, 160, 89, 0.2), transparent 24%),
    radial-gradient(circle at 90% 15%, rgba(197, 160, 89, 0.14), transparent 20%),
    linear-gradient(180deg, var(--navy-950) 0%, #071c30 44%, #051422 100%);
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(4, 23, 40, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner,
.topbar__meta,
.brand,
.hero__actions,
.hero__proof,
.inventory-card__stats,
.event-highlights,
.section__grid,
.value-points,
.activity-grid,
.feature-banner,
.timeline,
.offer-benefits,
.offer-card,
.offer-card__actions,
.footer__inner,
.sticky-cta {
  display: flex;
}

.topbar__inner {
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 20px;
}

.brand {
  align-items: center;
  gap: 12px;
}

.brand__logo {
  width: 120px;
  max-height: 80px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
  transform: scale(1.34);
  transform-origin: left center;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.24));
}

.topbar__meta span {
  color: rgba(255, 255, 255, 0.72);
}

.floating-whatsapp {
  position: fixed;
  left: 28px;
  bottom: 28px;
  z-index: 70;
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #2cdf72 0%, #18b954 100%);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.floating-whatsapp__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-whatsapp__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.topbar__meta {
  align-items: center;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button.is-loading,
.button[aria-busy="true"] {
  pointer-events: none;
  opacity: 0.8;
}

.button--primary {
  color: var(--navy-950);
  background: var(--gold-gradient);
  box-shadow: 0 14px 28px rgba(197, 160, 89, 0.3);
}

.button--primary:hover {
  box-shadow: 0 20px 40px rgba(197, 160, 89, 0.36);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.18);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.button--wide {
  width: 100%;
}

.button--pulse {
  animation: pulse-glow 2.4s ease-in-out infinite;
}

.hero {
  position: relative;
  min-height: max(840px, 100svh);
  overflow: hidden;
}

.hero__media,
.hero__layer,
.hero__grid,
.hero__glow {
  position: absolute;
  inset: -32px 0;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(4, 23, 40, 0.98) 0%,
      rgba(4, 23, 40, 0.9) 10%,
      rgba(4, 23, 40, 0.56) 30%,
      rgba(4, 23, 40, 0.52) 62%,
      rgba(4, 23, 40, 0.9) 84%,
      rgba(4, 23, 40, 0.99) 100%
    );
}

.hero__layer {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  filter: saturate(1.02);
  opacity: 0;
  animation: hero-cycle 24s ease-in-out infinite;
}

.hero__layer--one {
  background-image: image-set(
    url("assets/hero-main-960.webp") 1x,
    url("assets/hero-main-1600.webp") 2x
  );
  background-position: 100% center;
  transform: scale(1);
  animation-name: hero-cycle-tight;
  animation-delay: 0s;
}

.hero__layer--two {
  background-image: image-set(
    url("assets/hero-sport-sunset-960.webp") 1x,
    url("assets/hero-sport-sunset-1600.webp") 2x
  );
  animation-delay: 6s;
  filter: blur(1px) saturate(1.04);
}

.hero__layer--three {
  background-image: image-set(
    url("assets/hero-business-toast-960.webp") 1x,
    url("assets/hero-business-toast-1600.webp") 2x
  );
  animation-delay: 12s;
  filter: blur(1px) saturate(1.04);
}

.hero__layer--four {
  background-image: image-set(
    url("assets/hero-roundtable-420.webp") 1x,
    url("assets/hero-roundtable-684.webp") 2x
  );
  animation-delay: 18s;
  filter: blur(1px) saturate(1.04);
}

.hero__grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 90%);
  opacity: 0.22;
}

.hero__glow {
  filter: blur(80px);
  opacity: 0.45;
}

.hero__glow--left {
  top: 12%;
  left: -12%;
  width: 36vw;
  height: 36vw;
  background: rgba(197, 160, 89, 0.38);
}

.hero__glow--right {
  right: -8%;
  bottom: 18%;
  width: 28vw;
  height: 28vw;
  background: rgba(17, 72, 109, 0.4);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 48px;
  align-items: center;
  min-height: max(840px, 100svh);
  padding: 132px 0 72px;
}

.hero__copy {
  max-width: 690px;
}

.hero-event-name {
  display: inline-flex;
  margin-bottom: 18px;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-300);
  text-shadow: 0 0 24px rgba(197, 160, 89, 0.18);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gold-300);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

h1,
h2,
h3,
summary {
  margin: 0;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.55rem, 5.6vw, 5rem);
  line-height: 0.92;
  text-wrap: balance;
}

h1 span,
.section-heading h2 span {
  display: block;
  color: var(--gold-300);
}

.hero__lead,
.section-heading p,
.activity-card p,
.pain-card p,
.timeline__item p,
.offer-card__microcopy,
.faq-item p,
.footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.hero__lead {
  max-width: 620px;
  margin-top: 22px;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.hero__subheadline {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__proof {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero__proof span,
.offer-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card,
.pain-card,
.image-card,
.activity-card,
.feature-banner,
.journey-card,
.offer-card,
.faq-item,
.mini-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--card);
  box-shadow: var(--shadow-md);
}

.hero-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  animation: float-soft 6s ease-in-out infinite;
}

.hero-video {
  width: min(960px, 100%);
  padding: 16px 16px 20px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(19, 30, 51, 0.94), rgba(16, 25, 43, 0.98));
  box-shadow: var(--shadow-lg);
}

.hero-video__frame {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(4, 23, 40, 0.18), rgba(4, 23, 40, 0.6)),
    image-set(
      url("assets/hero-business-toast-960.webp") 1x,
      url("assets/hero-business-toast-1600.webp") 2x
    ) center/cover;
  aspect-ratio: 16 / 9;
}

.hero-video__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 23, 40, 0.08), rgba(4, 23, 40, 0.58));
  pointer-events: none;
}

.hero-video__fallback {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 24px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--white);
  text-align: center;
}

.video-unmute-overlay.is-hidden {
  display: none !important;
}

.video-unmute-overlay {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(197, 160, 89, 0.5);
  border-radius: 999px;
  background: rgba(9, 15, 27, 0.86);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
  cursor: pointer;
}

.video-unmute-icon {
  font-size: 24px;
  line-height: 1;
}

.video-unmute-copy {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

#youtubePlayer {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

#youtubePlayer iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-video__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.audio-toggle {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(197, 160, 89, 0.14);
  color: #f2f6fd;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.audio-slider-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  color: var(--gold-300);
  font-size: 13px;
  font-weight: 600;
}

.audio-slider-wrap input[type="range"] {
  width: 150px;
  accent-color: var(--gold-400);
}

.intro-hero {
  position: relative;
  padding: 124px 0 64px;
}

.intro-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(197, 160, 89, 0.14), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(11, 49, 82, 0.2), transparent 24%);
  pointer-events: none;
}

.intro-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  justify-items: center;
}

.intro-hero__copy {
  max-width: 980px;
  text-align: center;
  display: grid;
  gap: 18px;
}

.intro-hero__copy h1 {
  max-width: 980px;
  margin: 0 auto;
  color: var(--white);
}

.intro-hero__copy h1 span {
  display: inline;
  color: var(--gold-300);
}

.intro-hero .hero__subheadline {
  margin-top: 0;
}

.hero-card__tag,
.price-box__tag {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.15);
  color: var(--gold-300);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.inventory-card {
  margin: 22px 0 18px;
  display: grid;
  gap: 18px;
}

.inventory-card__stats {
  gap: 12px;
}

.inventory-card__item {
  flex: 1;
  padding: 18px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.inventory-card__item strong {
  display: block;
  margin-bottom: 6px;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.inventory-card__item span {
  color: var(--muted);
  font-size: 0.85rem;
}

.inventory-card__progress {
  display: grid;
  gap: 10px;
}

.inventory-card__progress-bar {
  height: 14px;
  padding: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.inventory-card__progress-bar span {
  display: block;
  height: 100%;
  width: 28%;
  border-radius: inherit;
  background: var(--gold-gradient);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
  transition: width 300ms ease;
}

.inventory-card__progress p,
.hero-card__microcopy {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.event-highlights {
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.event-highlights li {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.event-highlights li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.event-highlights strong,
.value-point strong,
.activity-card__label,
.timeline__time,
.mini-panel strong {
  color: var(--gold-300);
}

.section {
  padding: 104px 0;
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section__grid {
  gap: 42px;
}

.section__grid--problem,
.section__grid--split {
  align-items: start;
}

.section__grid--problem {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.section__grid--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-heading {
  max-width: 640px;
}

.section-heading--center {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  line-height: 1;
  margin-bottom: 18px;
  text-wrap: balance;
}

.pain-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

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

.pain-card,
.activity-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.pain-card::before,
.activity-card::before,
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.18), transparent 45%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.pain-card:hover::before,
.activity-card:hover::before,
.offer-card:hover::before {
  opacity: 1;
}

.pain-card h3,
.activity-card h3,
.timeline__item h3,
.journey-card__body h3,
.offer-card h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.value-points {
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.value-point {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-left: 3px solid rgba(197, 160, 89, 0.45);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 18px 18px 0;
}

.image-card,
.journey-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.image-card img,
.journey-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease, filter 900ms ease;
}

.image-card--spotlight {
  position: relative;
}

.image-card--spotlight::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.34), transparent 70%);
  filter: blur(14px);
  pointer-events: none;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.activity-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  justify-content: end;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.activity-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(4, 23, 40, 0.04), rgba(4, 23, 40, 0.82) 68%);
}

.activity-card:hover {
  transform: translateY(-4px);
}

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

.activity-card--players {
  background-image: image-set(
    url("assets/hero-sport-sunset-960.webp") 1x,
    url("assets/hero-sport-sunset-1600.webp") 2x
  );
}

.activity-card--talk {
  background-image: image-set(
    url("assets/hero-roundtable-420.webp") 1x,
    url("assets/hero-roundtable-684.webp") 2x
  );
}

.activity-card--lounge {
  background-image: image-set(
    url("assets/hero-business-toast-960.webp") 1x,
    url("assets/hero-business-toast-1600.webp") 2x
  );
}

.activity-card--court {
  background-image: image-set(
    url("assets/hero-main-960.webp") 1x,
    url("assets/hero-main-1600.webp") 2x
  );
}

.activity-card__label {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.feature-banner {
  align-items: center;
  gap: 26px;
  margin-top: 24px;
  padding: 18px;
  border-radius: var(--radius-xl);
}

.feature-banner img {
  width: min(360px, 42%);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 20px;
  animation: float-soft 7s ease-in-out infinite;
}

.feature-banner__copy {
  display: grid;
  gap: 10px;
}

.feature-banner__copy strong {
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.feature-banner__copy span {
  color: var(--muted);
  line-height: 1.6;
}

.timeline {
  position: relative;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 30px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.6), rgba(197, 160, 89, 0.04));
}

.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  padding: 0 0 0 6px;
}

.timeline__time {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.25);
  font-weight: 700;
}

.timeline__time::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-400);
  transform: translateY(-50%);
  box-shadow: 0 0 0 10px rgba(197, 160, 89, 0.08);
}

.journey-card__body {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.journey-card__body ul,
.checklist,
.faq-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.journey-card__body li,
.checklist li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.65;
}

.journey-card__body li + li,
.checklist li + li {
  margin-top: 10px;
}

.journey-card__body li::before,
.checklist li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-gradient);
  box-shadow: 0 0 0 6px rgba(197, 160, 89, 0.12);
}

.offer-card {
  position: relative;
  align-items: stretch;
  gap: 28px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: 34px;
}

.offer-card__content,
.offer-card__side {
  flex: 1;
}

.offer-card__old {
  margin: 8px 0 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.05rem;
  text-decoration: line-through;
}

.price-box {
  display: grid;
  gap: 12px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-box strong {
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.3rem, 6vw, 4.4rem);
  line-height: 0.92;
}

.price-box span:last-child {
  color: var(--muted);
}

.offer-benefits {
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.offer-card__actions {
  flex-direction: column;
  align-items: start;
  gap: 14px;
}

.offer-card__side {
  display: grid;
  gap: 14px;
}

.mini-panel {
  padding: 22px;
  border-radius: 22px;
}

.mini-panel span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.mini-panel--accent {
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.16), rgba(197, 160, 89, 0.06));
}

.faq-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  border-radius: 22px;
  padding: 0 22px;
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 22px 40px 22px 0;
  font-size: 1.05rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  color: var(--gold-300);
  font-size: 1.6rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 0 22px;
}

.footer {
  padding: 34px 0 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
  display: grid;
  gap: 12px;
}

.footer__logo {
  width: 120px;
  max-height: 80px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
  transform: scale(1.34);
  transform-origin: left center;
}

.footer__inner {
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 23, 40, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta__copy {
  display: grid;
  gap: 4px;
}

.sticky-cta__copy strong {
  font-size: 0.96rem;
}

.sticky-cta__copy span {
  color: var(--muted);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    filter 700ms ease;
  filter: blur(3px);
}

.reveal--delay {
  transition-delay: 120ms;
}

.reveal--scale {
  transform: translateY(24px) scale(0.96);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.reveal.is-visible img {
  transform: scale(1.01);
}

.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.exit-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.exit-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 12, 21, 0.72);
  backdrop-filter: blur(10px);
}

.exit-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: 32px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(7, 30, 49, 0.96), rgba(4, 23, 40, 0.98)),
    image-set(
      url("assets/hero-business-toast-960.webp") 1x,
      url("assets/hero-business-toast-1600.webp") 2x
    ) center/cover;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(18px) scale(0.97);
  transition: transform 220ms ease;
}

.exit-popup__dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 23, 40, 0.24), rgba(4, 23, 40, 0.96));
}

.exit-popup.is-open .exit-popup__dialog {
  transform: none;
}

.exit-popup__dialog > * {
  position: relative;
  z-index: 1;
}

.exit-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
}

.exit-popup__dialog h2 {
  max-width: 540px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
  margin-bottom: 16px;
}

.exit-popup__dialog p {
  max-width: 560px;
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.7;
}

.exit-popup__actions {
  display: grid;
  gap: 12px;
  max-width: 360px;
}

.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: start center;
  padding: 20px 20px max(20px, env(safe-area-inset-bottom, 0px));
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.lead-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lead-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 12, 21, 0.78);
  backdrop-filter: blur(12px);
}

.lead-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(calc(100dvh - 24px), calc(100svh - 24px));
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(7, 30, 49, 0.96), rgba(4, 23, 40, 0.98)),
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.16), transparent 34%);
  box-shadow: var(--shadow-lg);
  transform: translateY(18px) scale(0.97);
  transition: transform 220ms ease;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}

.lead-popup.is-open .lead-popup__dialog {
  transform: none;
}

.lead-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
}

.lead-popup__dialog h2 {
  max-width: 560px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 0.98;
  margin-bottom: 16px;
}

.lead-popup__dialog p {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.lead-form {
  display: grid;
  gap: 20px;
  flex: 1 1 auto;
  min-height: 0;
}

.lead-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-field {
  display: grid;
  gap: 8px;
}

.lead-field span {
  color: var(--gold-300);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lead-field input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.lead-field input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.lead-field input:focus {
  border-color: rgba(197, 160, 89, 0.56);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.12);
}

.lead-form__microcopy {
  margin: 0;
  font-size: 0.94rem;
}

.lead-popup__actions {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@keyframes pulse-glow {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 14px 28px rgba(197, 160, 89, 0.28);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(197, 160, 89, 0.36);
  }
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes hero-cycle {
  0%,
  20% {
    opacity: 1;
    transform: scale(1.08);
  }
  25%,
  100% {
    opacity: 0;
    transform: scale(1.14);
  }
}

@keyframes hero-cycle-tight {
  0%,
  20% {
    opacity: 1;
    transform: scale(1);
  }
  25%,
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .hero__layer--one {
    background-position: 96% center;
    transform: scale(0.995);
  }

  .hero__content,
  .section__grid--problem,
  .section__grid--split,
  .activity-grid,
  .faq-list,
  .offer-card {
    grid-template-columns: 1fr;
  }

  .activity-grid {
    display: grid;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    min-height: auto;
    padding: 118px 0 74px;
  }

  .intro-hero {
    padding: 110px 0 42px;
  }

  .feature-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-banner img {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .hero__layer--one {
    background-position: 94% center;
    transform: scale(0.99);
  }

  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .topbar__inner,
  .topbar__meta,
  .hero__actions,
  .footer__inner,
  .sticky-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar {
    position: static;
  }

  .topbar__inner {
    justify-content: center;
    padding: 14px 0;
    flex-direction: row;
    align-items: center;
  }

  .topbar__meta {
    display: none;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .brand__logo {
    width: 88px;
    height: 50px;
    max-height: 56px;
    transform: scale(1);
    transform-origin: center;
  }

  .hero__content {
    padding-top: 36px;
  }

  .intro-hero {
    padding: 42px 0 28px;
  }

  .inventory-card__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pain-grid,
  .activity-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    padding-left: 24px;
  }

  .timeline::before {
    left: 11px;
  }

  .timeline__time {
    width: max-content;
  }

  .timeline__time::after {
    left: -19px;
    right: auto;
  }

  .sticky-cta {
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
  }

  .sticky-cta .button {
    width: 100%;
  }

  .exit-popup__dialog {
    padding: 26px 20px;
  }

  .lead-popup__dialog {
    padding: 28px 20px;
  }

  .lead-popup__actions {
    position: sticky;
    bottom: calc(-8px - env(safe-area-inset-bottom, 0px));
    padding: 12px 0 calc(8px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, rgba(4, 23, 40, 0), rgba(4, 23, 40, 0.96) 28%);
  }

  .lead-form__grid,
  .lead-popup__actions {
    grid-template-columns: 1fr;
  }

  .hero-video__controls {
    flex-direction: column;
    align-items: stretch;
  }

  .video-unmute-overlay {
    width: calc(100% - 24px);
    justify-content: center;
    bottom: 12px;
  }

  .audio-slider-wrap {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

  .audio-slider-wrap input[type="range"] {
    width: min(170px, 52vw);
  }
}

@media (max-width: 560px) {
  .floating-whatsapp {
    left: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    width: 66px;
    height: 66px;
  }

  .floating-whatsapp__icon {
    width: 38px;
    height: 38px;
  }

  .hero__layer--one {
    background-position: 92% center;
  }

  .section {
    padding: 82px 0;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 0.96;
  }

  .hero-card,
  .pain-card,
  .activity-card,
  .offer-card,
  .faq-item,
  .journey-card__body {
    padding: 22px;
  }

  .hero__proof span,
  .offer-benefits span {
    width: 100%;
    justify-content: center;
  }

  .sticky-cta__copy {
    text-align: center;
  }

  .hero-video {
    padding: 10px 10px 16px;
  }

  .video-play-trigger {
    width: 74px;
    height: 74px;
    font-size: 16px;
  }

  .video-unmute-copy {
    font-size: 13px;
  }

  .intro-hero {
    padding: 34px 0 22px;
  }

  .intro-hero__content {
    gap: 28px;
  }
}
