:root {
  --text: #222222;
  --muted: #222222;
  --gold: #a97800;
  --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-lg: 0 20px 45px rgba(20, 20, 20, 0.06);
  --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,
.offer-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);
}

.offer-cta-btn {
  min-height: 56px;
  padding: 0 34px;
  font-size: 16px;
  box-shadow: 0 14px 28px rgba(242, 179, 0, 0.2);
}

.header-btn:hover,
.offer-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 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #9b8d6a;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(233, 225, 210, 0.9);
}

.hero-title {
  margin: 18px auto 0;
  max-width: 900px;
  font-size: clamp(52px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.075em;
  font-weight: 800;
}

.hero-line {
  display: block;
}

.hero-line-dark {
  color: var(--text);
  margin-bottom: 10px;
}

.hero-line-gold {
  color: var(--gold);
}

.hero-text {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: 20px;
  line-height: 1.55;
  color: var(--muted);
}

/* Video */
.video-card {
  width: 92%;
  margin: 34px auto 0;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow-xl);
  background: #000;
  cursor: pointer;
}

.live-video-shell {
  aspect-ratio: 16 / 9;
}

#vimeoPlayer,
#vimeoPlayer iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  pointer-events: none;
}

#vimeoPlayer {
  position: absolute;
  inset: 0;
}

.video-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.18) 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.24));
}

.video-hit-area {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: transparent;
}

.video-time-pill {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(54, 59, 65, 0.82);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  z-index: 8;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
}

.video-time-pill.is-hidden {
  opacity: 0;
  transform: translateY(6px);
}

/* Fundamentals */
.fundamentals {
  padding-top: 48px;
}

.fundamentals-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 42px;
  align-items: start;
}

.fundamentals-left h2 {
  margin: 0 0 20px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.fundamentals-left p {
  margin: 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.fundamentals-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 16px;
}

.fundamentals-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: #37342f;
}

.fundamentals-list li img {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 18px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(232, 223, 209, 0.72);
  border-radius: 24px;
  padding: 24px 22px;
}

.testimonial-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.testimonial-person {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-person.no-avatar {
  margin-top: 20px;
}

.testimonial-person strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.testimonial-person span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #b1913f;
}

/* Offer card */
.offer-section {
  padding-top: 52px;
}

.offer-card {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow-xl);
}

.offer-card-glow {
  position: absolute;
  top: -40px;
  right: -20px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 227, 164, 0.62) 0%, rgba(247, 227, 164, 0.12) 48%, rgba(247, 227, 164, 0) 70%);
  filter: blur(16px);
  pointer-events: none;
}

.offer-main {
  position: relative;
  z-index: 1;
  padding: 44px 40px 34px;
  text-align: center;
}

.offer-main h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.offer-main p {
  max-width: 590px;
  margin: 18px auto 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.offer-bottom {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.offer-price-wrap {
  text-align: left;
}

.offer-mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #8b6a12;
}

.offer-mini-tag img {
  width: 14px;
  height: 14px;
}

.offer-price-line {
  margin-top: 8px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.offer-price {
  font-size: 56px;
  line-height: 1;
  font-weight: 800;
}

.offer-old-price {
  font-size: 20px;
  color: #b8b1a6;
  text-decoration: line-through;
  transform: translateY(-4px);
}

.offer-meta {
  margin-top: 24px;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #b2ac9f;
}

/* Footer */
.site-footer {
  padding: 90px 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: 58px;
  }

  .fundamentals-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .offer-bottom {
    justify-content: center;
  }

  .offer-price-wrap {
    text-align: center;
  }
}

@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: 38px;
    line-height: 1.08;
    letter-spacing: -0.05em;
    max-width: 330px;
  }

  .hero-line-dark {
    margin-bottom: 6px;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 330px;
  }

  .video-card {
    width: 100%;
    margin-top: 28px;
  }

  .video-shell {
    border-radius: 24px;
    aspect-ratio: 16 / 10;
  }

  .custom-video-toggle {
    width: 122px;
    height: 122px;
  }

  .play-icon {
    width: 52px;
    height: 52px;
  }

  .video-time-pill {
    right: 12px;
    bottom: 12px;
    min-height: 30px;
    font-size: 11px;
  }

  .fundamentals {
    padding-top: 34px;
  }

  .fundamentals-left h2 {
    font-size: 28px;
  }

  .fundamentals-left p {
    font-size: 15px;
  }

  .testimonial-card {
    padding: 20px 18px;
  }

  .testimonial-card p {
    font-size: 15px;
  }

  .offer-card {
    border-radius: 26px;
  }

  .offer-main {
    padding: 30px 22px 24px;
  }

  .offer-main h2 {
    font-size: 32px;
  }

  .offer-main p {
    font-size: 15px;
  }

  .offer-bottom {
    gap: 20px;
  }

  .offer-price {
    font-size: 48px;
  }

  .offer-old-price {
    font-size: 18px;
  }

  .offer-price-wrap {
    text-align: center;
  }

  .offer-cta-btn {
    width: 100%;
    min-height: 54px;
    font-size: 15px;
    padding: 0 20px;
  }

  .offer-meta {
    font-size: 10px;
    line-height: 1.7;
  }

  .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);
  }
}
