:root {
  --text: #111111;
  --muted: #222222;
  --gold: #b28500;
  --gold-bright: #f2b300;
  --gold-2: #f6c21a;
  --gold-soft: #f8edd0;
  --bg: #f3efe6;
  --line: rgba(234, 224, 206, 0.82);
  --shadow-xl: 0 28px 60px rgba(25, 20, 10, 0.08);
  --shadow-md: 0 12px 30px rgba(20, 20, 20, 0.045);
  --ease: 0.35s cubic-bezier(.2, .8, .2, 1);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 226, 145, 0.12) 0%, rgba(255, 226, 145, 0.04) 14%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, #f8f2e4 0%, #f4efe5 24%, #f3efe6 100%);
}

img {
  max-width: 100%;
  display: block;
}

a,
button {
  text-decoration: none;
  font-family: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.page-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
  filter: blur(100px);
}

.page-glow-1 {
  width: 420px;
  height: 420px;
  top: -170px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 219, 109, 0.12);
}

.page-glow-2 {
  width: 280px;
  height: 280px;
  top: 110px;
  right: -120px;
  background: rgba(255, 244, 210, 0.16);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 24px 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  padding: 0;
  background: linear-gradient(
    180deg,
    rgba(248, 242, 228, 0.92),
    rgba(248, 242, 228, 0.55),
    rgba(248, 242, 228, 0)
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.header-inner {
  width: 90%;
  margin: 0 auto;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.brand-left {
  font-size: 16px;
  font-weight: 700;
  color: #9a6900;
}

.brand-center {
  display: flex;
  justify-content: center;
}

.brand-center img {
  width: 78px;
  height: auto;
  opacity: 0.96;
}

.desktop-only {
  display: block;
}

.header-btn,
.small-cta-btn,
.big-cta-btn,
.mobile-fixed-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--gold-2) 0%, var(--gold-bright) 100%);
  color: #171717;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    filter var(--ease),
    opacity var(--ease);
}

.header-btn {
  justify-self: end;
  min-height: 44px;
  padding: 0 22px;
  font-size: 12px;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 26px rgba(242, 179, 0, 0.16);
}

.small-cta-btn {
  min-height: 48px;
  padding: 0 28px;
  font-size: 15px;
  box-shadow: 0 12px 24px rgba(242, 179, 0, 0.16);
}

.big-cta-btn {
  min-height: 56px;
  padding: 0 30px;
  font-size: 16px;
  min-width: 280px;
  box-shadow: 0 12px 24px rgba(242, 179, 0, 0.18);
  letter-spacing: -0.01em;
}

.header-btn:hover,
.small-cta-btn:hover,
.big-cta-btn:hover,
.mobile-fixed-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

/* Hero */
.hero {
  padding-top: 36px;
}

.hero-inner {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #8b6a12;
  background: transparent;
}

.hero-title {
  margin: 16px auto 0;
  max-width: 760px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.99;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.hero-title span {
  color: var(--gold);
}

.hero-text {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 22px;
  line-height: 1.55;
  color: var(--muted);
}

/* Top offer */
.top-offer {
  padding-top: 28px;
}

.top-offer-card {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.76) 65%, rgba(247, 227, 164, 0.65) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.45fr 0.7fr;
  gap: 24px;
  padding: 34px 38px;
}

.top-offer-left h2 {
  margin: 16px 0 8px;
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.top-offer-left p {
  margin: 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.mini-offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #8b6a12;
}

.mini-offer-tag img {
  width: 12px;
  height: 12px;
}

.top-offer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.top-price {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: #7a5a00;
}

/* Video */
.video-section {
  padding-top: 36px;
}

.video-card {
  width: 90%;
  margin: 0 auto;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: var(--shadow-xl);
  background: #000;
  cursor: pointer;
}

.live-video-shell {
  aspect-ratio: 16 / 9;
}

#vimeoPlayer,
#vimeoPlayer iframe {
  width: 100%;
  height: 100%;
  min-height: 720px;
  display: block;
  border: 0;
  pointer-events: none;
}

.video-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.38) 100%);
  z-index: 4;
  pointer-events: none;
  transition: opacity var(--ease);
}

.video-dark-overlay.is-hidden {
  opacity: 0;
}

.custom-video-toggle {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 152px;
  height: 152px;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  z-index: 7;
  transition:
    opacity var(--ease),
    transform var(--ease);
  pointer-events: none;
}

.custom-video-toggle.is-hidden {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
}

.play-icon {
  width: 152px;
  height: 152px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}

.video-hit-area {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: transparent;
}

.video-center-caption {
  position: absolute;
  left: 50%;
  bottom: 114px;
  transform: translateX(-50%);
  z-index: 8;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
  transition: opacity var(--ease), transform var(--ease);
}

.video-center-caption.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
}

/* Main CTA */
.main-cta {
  padding-top: 52px;
}

.main-cta-card {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow-md);
  padding: 42px 38px;
  text-align: center;
}

.main-cta-card h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.main-cta-card p {
  max-width: 640px;
  margin: 14px auto 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.old-price {
  margin-top: 26px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #b1aba1;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: #c8c1b5;
}

.secure-row {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #c0b8ab;
}

.secure-row img {
  width: 12px;
  height: 12px;
}

/* Testimonials */
.testimonials {
  padding-top: 34px;
  padding-bottom: 8px;
}

.testimonials-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.testimonials-head {
  text-align: center;
  margin-bottom: 24px;
}

.testimonials-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.testimonials-head p {
  margin: 12px auto 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow-md);
  padding: 24px 22px;
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e3c764 0%, #c89d14 100%);
  color: #2c2413;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial-meta strong {
  font-size: 15px;
  line-height: 1.2;
}

.testimonial-meta span {
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #a19376;
  text-transform: uppercase;
}

.testimonial-card p {
  margin: 18px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* Divider */
.divider-wrap {
  padding-top: 34px;
  padding-bottom: 10px;
}

.soft-divider {
  width: 72%;
  height: 1px;
  margin: 0 auto;
  background: rgba(219, 210, 194, 0.9);
}

/* Momentum */
.momentum {
  padding-top: 34px;
}

.momentum-card {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(245, 242, 236, 0.8);
  border-radius: 30px;
  border: 1px solid rgba(232, 223, 209, 0.7);
  padding: 44px 40px;
  position: relative;
}

.momentum-icon {
  position: absolute;
  top: 30px;
  right: 30px;
}

.momentum-icon img {
  width: 44px;
  height: 44px;
  opacity: 0.55;
}

.momentum-content {
  max-width: 560px;
}

.momentum-content h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.momentum-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.pro-tip-box {
  margin-top: 26px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 18px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 460px;
}

.pro-tip-icon img {
  width: 14px;
  height: 14px;
  margin-top: 3px;
}

.pro-tip-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pro-tip-text strong {
  font-size: 13px;
}

.pro-tip-text span {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 72px 20px 120px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: 132px;
  height: 132px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1px solid #eadfcb;
  display: grid;
  place-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.12);
}

.footer-logo::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid #f1e8d8;
}

.footer-logo img {
  width: 58px;
  position: relative;
  z-index: 1;
}

.site-footer p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #a09a91;
}

/* Mobile CTA */
.mobile-fixed-cta {
  position: fixed;
  bottom: 12px;
  min-height: 50px;
  font-size: 12px;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 34px rgba(242, 179, 0, 0.25);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
}

.mobile-fixed-cta.is-visible {
  opacity: 1;
  visibility: visible;
}

/* Animations */
.preload-fade {
  opacity: 0;
  transform: translateY(26px);
  animation: preloadFade 0.9s cubic-bezier(.2, .8, .2, 1) forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.38s; }

@keyframes preloadFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.8s cubic-bezier(.2, .8, .2, 1),
    transform 0.8s cubic-bezier(.2, .8, .2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 641px) {
  .mobile-fixed-cta {
    display: none;
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 60px;
  }

  .hero-text {
    font-size: 20px;
  }

  .top-offer-card {
    grid-template-columns: 1fr;
  }

  .top-offer-right {
    align-items: center;
    text-align: center;
  }

  #vimeoPlayer,
  #vimeoPlayer iframe {
    min-height: 520px;
  }

  .video-center-caption {
    bottom: 96px;
    font-size: 11px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .momentum-card {
    padding: 34px 28px;
  }
}

@media (max-width: 640px) {
  .desktop-only {
    display: none;
  }

  .site-header {
    padding: 0;
  }

  .header-inner {
    width: 90%;
    grid-template-columns: 1fr;
    min-height: 66px;
    padding: 0 14px;
  }

  .brand-center {
    justify-self: center;
  }

  .brand-center img {
    width: 68px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -0.05em;
    max-width: 320px;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 330px;
  }

  .top-offer-card {
    padding: 24px 20px;
    border-radius: 24px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .top-offer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .top-offer-left p {
    font-size: 15px;
    max-width: 100%;
  }

  .top-offer-left h2 {
    font-size: 28px;
  }

  .top-offer-right {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .top-price {
    font-size: 44px;
  }

  .small-cta-btn {
    min-height: 46px;
    font-size: 14px;
    padding: 0 22px;
  }

  .video-card {
    width: 90%;
  }

  .video-shell {
    border-radius: 24px;
    aspect-ratio: 16 / 10;
  }

  #vimeoPlayer,
  #vimeoPlayer iframe {
    min-height: unset;
  }

  .custom-video-toggle {
    width: 116px;
    height: 116px;
  }

  .play-icon {
    width: 44px;
    height: 44px;
  }

  .video-center-caption {
    bottom: 70px;
    font-size: 9px;
    width: calc(100% - 40px);
  }

  .main-cta-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .main-cta-card h2 {
    font-size: 32px;
  }

  .main-cta-card p {
    font-size: 15px;
  }

  .old-price {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .big-cta-btn {
    min-width: 100%;
    min-height: 52px;
    font-size: 15px;
    padding: 0 18px;
  }

  .testimonials {
    padding-top: 28px;
  }

  .testimonials-head h2 {
    font-size: 28px;
  }

  .testimonials-head p {
    font-size: 15px;
  }

  .testimonial-card {
    border-radius: 22px;
    padding: 20px 18px;
  }

  .testimonial-card p {
    font-size: 14px;
  }

  .soft-divider {
    width: 88%;
  }

  .momentum-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .momentum-icon {
    top: 20px;
    right: 20px;
  }

  .momentum-icon img {
    width: 42px;
    height: 42px;
  }

  .momentum-content {
    max-width: 100%;
  }

  .momentum-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .momentum-content p {
    font-size: 15px;
  }

  .pro-tip-box {
    padding: 16px;
    border-radius: 18px;
    max-width: 100%;
  }

  .pro-tip-text strong {
    font-size: 14px;
  }

  .pro-tip-text span {
    font-size: 13px;
  }

  .footer-logo {
    width: 104px;
    height: 104px;
  }

  .site-footer {
    padding-bottom: 140px;
  }

  .mobile-fixed-cta {
    width: 80%;
    max-width: 320px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(18px);
  }

  .mobile-fixed-cta.is-visible {
    transform: translateX(-50%) translateY(0);
  }
}
