/* ————————————————————————————————————————————————————————————————
   Thera Points — standalone landing page
   White content + dark close. Mirrors getthera.com's black/white rhythm.
   ———————————————————————————————————————————————————————————————— */

:root {
  /* Light surfaces */
  --bg:         #ffffff;
  --surface:    #ffffff;

  /* Dark (close section, card ambient) */
  --dark:       #0a0a0b;
  --dark-2:     #111114;
  --dark-3:     #1a1a1f;

  /* Ink */
  --text:       #0a0a0a;
  --text-dim:   #55585f;
  --text-mute:  #8a8e95;

  /* Dark-mode ink */
  --text-on-dark:      #f7f7f8;
  --text-dim-on-dark:  #b8bac0;
  --text-mute-on-dark: #80838b;

  /* Lines */
  --border:     #ececec;
  --border-2:   #d7d7d7;
  --border-dark:#232327;

  /* Card atmosphere */
  --warm-glow:  rgba(212, 183, 122, 0.45);
  --cool-glow:  rgba(205, 218, 232, 0.30);

  /* Motion */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Layout */
  --maxw: 1200px;
  --pad:  clamp(22px, 4.5vw, 52px);

  --h-display: clamp(2.4rem, 5.3vw, 4.3rem);
  --h-section: clamp(1.95rem, 3.6vw, 2.9rem);
  --h-quote:   clamp(2rem, 4vw, 3.5rem);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 18px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
img, svg, video { display: block; max-width: 100%; }
button, input { font: inherit; color: inherit; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  font-optical-sizing: auto;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity  0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}


/* Eyebrow — small muted label */
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.eyebrow-on-dark { color: var(--text-dim-on-dark); }


/* ——— Buttons: black primary, bordered secondary, matched sizing ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.btn-primary {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
}
.btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.btn-secondary {
  color: var(--text);
  background: var(--bg);
  border-color: var(--border-2);
}
.btn-secondary:hover {
  border-color: var(--text);
  background: #fafafa;
}

/* Primary on dark section (beta) */
.btn-primary-on-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  color: #1a1208;
  background: linear-gradient(180deg, #ecd08a 0%, #d4b262 52%, #b08942 100%);
  border: 1px solid rgba(255, 220, 150, 0.55);
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 210, 0.55),
    0 10px 26px rgba(212, 170, 88, 0.28),
    0 2px 6px rgba(0, 0, 0, 0.22);
  transition:
    background 0.2s ease,
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}
.btn-primary-on-dark:hover {
  background: linear-gradient(180deg, #f3dc9c 0%, #dcbc70 52%, #bf954b 100%);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 210, 0.65),
    0 14px 34px rgba(212, 170, 88, 0.38),
    0 2px 6px rgba(0, 0, 0, 0.22);
}

.play-glyph {
  display: inline-block;
  width: 8px; height: 10px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(0.5px);
}


/* ================================================================
   BRAND MARK (top-left)
   ================================================================ */
.brand {
  position: absolute;
  top: clamp(24px, 3vh, 40px);
  left: clamp(24px, 4vw, 56px);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand img {
  display: block;
  height: 22px;
  width: auto;
  transition: opacity 0.2s ease;
}
.brand:hover img { opacity: 0.75; }


/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  padding: clamp(140px, 16vh, 200px) var(--pad) clamp(130px, 18vh, 220px);
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 600px at 80% 40%, rgba(248, 245, 238, 1) 0%, transparent 70%),
    #ffffff;
}

.hero-inner {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.display {
  font-family: inherit;
  font-weight: 600;
  font-size: var(--h-display);
  line-height: 1.03;
  letter-spacing: -0.028em;
  margin: 0 0 26px;
  color: var(--text);
}
.display .line {
  display: block;
  white-space: nowrap;
}
.display-accent {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.55em;
  letter-spacing: -0.015em;
  line-height: 0.9;
  display: inline-block;
  transform: translateY(0.08em);
  margin-left: 0.03em;
  background: linear-gradient(
    180deg,
    #d9b162 0%,
    #b8884a 48%,
    #7e5a28 100%
  );
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.06em;
}
.display-accent-sm {
  font-size: 1.2em;
  margin-right: 0.08em;
  margin-left: 0;
}
.display-accent-md {
  font-size: 1.3em;
  line-height: 1;
  transform: translateY(-0.02em);
  margin: 0 0.04em;
  padding-bottom: 0.12em;
}

.lede {
  max-width: 520px;
  font-size: clamp(15.5px, 1.15vw, 17.5px);
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0 0 14px;
}
.lede-small {
  color: var(--text-mute);
  font-size: clamp(14px, 1vw, 15.5px);
  margin-bottom: 36px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}


/* ——— Card stage ——— */
.card-stage {
  position: relative;
  perspective: 1700px;
  perspective-origin: 50% 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  min-height: 460px;
}

/* Atmospheric layers behind the card — richer, more refined glow. */
.card-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.card-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}

/* Outermost wash — wide, soft warm ambience bleeding into the page */
.card-halo-outer {
  width: 960px;
  height: 720px;
  max-width: 140%;
  max-height: 130%;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 183, 122, 0.28) 0%,
    rgba(212, 183, 122, 0.14) 22%,
    rgba(212, 183, 122, 0.04) 48%,
    transparent 72%
  );
  filter: blur(28px);
  animation: haloBreathe 10s var(--ease-in-out) infinite;
}

/* Mid warm halo — hugs the card, brighter core */
.card-halo-warm {
  width: 620px;
  height: 520px;
  max-width: 110%;
  max-height: 110%;
  background: radial-gradient(
    ellipse at center,
    rgba(245, 227, 179, 0.55) 0%,
    rgba(212, 183, 122, 0.30) 22%,
    rgba(212, 183, 122, 0.08) 48%,
    transparent 72%
  );
  filter: blur(18px);
  mix-blend-mode: plus-lighter;
  animation: haloBreatheFast 7s var(--ease-in-out) infinite;
}

/* Specular — cooler highlight from upper-left, suggests a directional light */
.card-halo-specular {
  width: 360px;
  height: 360px;
  max-width: 70%;
  max-height: 75%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 246, 225, 0.55) 0%,
    rgba(255, 246, 225, 0.18) 24%,
    transparent 58%
  );
  filter: blur(26px);
  mix-blend-mode: screen;
  transform: translate(-78%, -80%);
  animation: specDrift 12s var(--ease-in-out) infinite;
}

@keyframes haloBreathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1);     opacity: 0.9;  }
  50%      { transform: translate(-50%, -50%) scale(1.06);  opacity: 1;    }
}
@keyframes haloBreatheFast {
  0%, 100% { transform: translate(-50%, -50%) scale(0.98); opacity: 0.85; }
  50%      { transform: translate(-50%, -50%) scale(1.04); opacity: 1;    }
}
@keyframes specDrift {
  0%, 100% { transform: translate(-78%, -80%); opacity: 0.85; }
  50%      { transform: translate(-70%, -84%); opacity: 1;    }
}

/* Floor — warm light pooling beneath; grounds the card */
.card-floor {
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  width: 94%;
  height: 170px;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 183, 122, 0.38) 0%,
    rgba(212, 183, 122, 0.18) 30%,
    rgba(212, 183, 122, 0.05) 55%,
    transparent 78%
  );
  filter: blur(26px);
  opacity: 0.9;
  pointer-events: none;
}

.card-float {
  position: relative;
  width: min(620px, 100%);
  aspect-ratio: 1.585 / 1;
  animation: cardFloat 11s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  transform-style: preserve-3d;
  will-change: transform;
}
@keyframes cardFloat {
  0%   { transform: translate3d(0, 0, 0)          rotate(0deg); }
  25%  { transform: translate3d(-4px, -10px, 0)   rotate(-0.5deg); }
  50%  { transform: translate3d(2px, -18px, 0)    rotate(0.4deg); }
  75%  { transform: translate3d(5px, -8px, 0)     rotate(0.25deg); }
  100% { transform: translate3d(0, 0, 0)          rotate(0deg); }
}

.card-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform:
    rotateX(calc(var(--my, 0) * -8deg))
    rotateY(calc(var(--mx, 0) * 13deg))
    rotateZ(calc(-3deg + var(--mx, 0) * 1.5deg));
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.brand img,
.card-img,
.divider img,
.lifestyle img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
}

.card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 30px 42px rgba(20, 14, 0, 0.22))
    drop-shadow(0 8px 16px rgba(20, 14, 0, 0.18))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
  user-select: none;
  -webkit-user-drag: none;
}

/* Shimmer — card-shaped mask, gradient sweeps inside */
.card-shimmer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: url("visualassets/TheraPoints-card.webp");
          mask-image: url("visualassets/TheraPoints-card.webp");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.card-shimmer-inner {
  position: absolute;
  inset: -15% -40%;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 236, 196, 0.00) 44%,
    rgba(255, 236, 196, 0.40) 50%,
    rgba(255, 236, 196, 0.00) 56%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: shimmer 8s var(--ease-in-out) infinite;
}
@keyframes shimmer {
  0%, 60% { transform: translateX(-120%); }
  92%, 100% { transform: translateX(120%); }
}

.card-shadow {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -6%;
  height: 50px;
  background: radial-gradient(ellipse at center, rgba(20, 14, 0, 0.28), transparent 70%);
  filter: blur(10px);
  z-index: -1;
}


/* ================================================================
   HOW IT WORKS — intro blurb + 3-step explainer
   ================================================================ */
.howitworks {
  padding: clamp(40px, 7vh, 80px) var(--pad) clamp(90px, 14vh, 150px);
  background: var(--bg);
}
.howitworks-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.howitworks-lead {
  max-width: 22ch;
  margin: 0 auto 24px;
  text-align: center;
  font-family: inherit;
  font-size: clamp(1.85rem, 3.3vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.028em;
  font-weight: 600;
  color: var(--text);
}
.howitworks-blurb {
  max-width: 68ch;
  margin: 0 auto clamp(72px, 11vh, 110px);
  text-align: center;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.6;
  color: var(--text-dim);
  font-weight: 400;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.howitworks-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 64px);
}
.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step-num {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.3rem, 3.6vw, 3.2rem);
  line-height: 1;
  background: linear-gradient(
    180deg,
    #d9b162 0%,
    #b8884a 48%,
    #7e5a28 100%
  );
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding: 0.06em 0;
  margin-bottom: 4px;
  display: inline-block;
}
.step h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0;
}
.step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
  max-width: 32ch;
}

/* ================================================================
   DARK BAND — single continuous dark surface hosting both
   promise + rewards. One shared atmosphere, no internal seam.
   ================================================================ */
.dark-band {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  isolation: isolate;
}
.dark-band-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 30% at 50% 14%, rgba(212, 183, 122, 0.10) 0%, transparent 70%),
    radial-gradient(ellipse 70% 40% at 50% 70%, rgba(212, 183, 122, 0.07) 0%, transparent 72%),
    linear-gradient(180deg, #07070a 0%, var(--dark) 30%, var(--dark) 70%, #07070a 100%);
}

/* ——— Split promise (image on right, quote overlay on left) ——— */
.split-promise {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--dark);
  min-height: min(780px, 86vh);
  display: flex;
  align-items: stretch;
}
.split-promise-bg {
  position: absolute;
  inset: 0;
  background-image: url("visualassets/thera-points-bg.webp");
  background-size: cover;
  background-position: center right;
  z-index: 0;
}
.split-promise-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(10, 10, 11, 0.94) 0%,
      rgba(10, 10, 11, 0.82) 26%,
      rgba(10, 10, 11, 0.45) 48%,
      rgba(10, 10, 11, 0.08) 68%,
      rgba(10, 10, 11, 0) 82%
    );
  z-index: 1;
}
.split-promise-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: clamp(110px, 16vh, 180px) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
}
.split-promise-copy {
  max-width: 720px;
}
.split-promise .quote {
  text-align: left;
  margin: 0;
  white-space: nowrap;
}
.split-promise .divider-simple {
  padding: clamp(24px, 4vh, 48px) 0 0;
  justify-content: flex-start;
}
.split-promise .divider-simple img {
  margin: 0;
  max-width: min(320px, 80%);
}
@media (max-width: 900px) {
  .split-promise { min-height: auto; }
  .split-promise-bg { background-position: center; }
  .split-promise-scrim {
    background:
      linear-gradient(
        180deg,
        rgba(10, 10, 11, 0.25) 0%,
        rgba(10, 10, 11, 0.55) 35%,
        rgba(10, 10, 11, 0.88) 75%,
        rgba(10, 10, 11, 0.96) 100%
      );
  }
  .split-promise-inner {
    grid-template-columns: 1fr;
    padding-top: clamp(260px, 44vh, 420px);
    padding-bottom: clamp(80px, 12vh, 120px);
  }
  .split-promise-copy { max-width: none; margin: 0 auto; }
  .split-promise .quote { text-align: center; white-space: normal; }
  .split-promise .divider-simple { justify-content: center; }
  .split-promise .divider-simple img { margin: 0 auto; }
}

.quote {
  max-width: 960px;
  text-align: center;
  font-size: var(--h-quote);
  line-height: 1.08;
  letter-spacing: -0.028em;
  font-weight: 600;
  color: var(--text-on-dark);
  margin: 0;
}
.quote-accent {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.3em;
  letter-spacing: -0.015em;
  line-height: 0.95;
  display: inline-block;
  margin-top: 0.12em;
  background: linear-gradient(
    180deg,
    #faeecc 0%,
    #e8d3a1 45%,
    #c9a968 100%
  );
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.08em;
  text-shadow: 0 0 40px rgba(212, 183, 122, 0.15);
}


/* ——— Rewards (inside dark-band, no own background) ——— */
.rewards {
  padding: clamp(90px, 14vh, 140px) var(--pad) clamp(90px, 14vh, 150px);
  background: var(--bg);
}
.rewards .section-head,
.rewards .rewards-grid,
.rewards .coming-soon {
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  text-align: center;
  max-width: 740px;
  margin: 0 auto clamp(48px, 7vh, 72px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.section-title {
  font-size: var(--h-section);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}
.section-title-on-dark { color: var(--text-on-dark); }
.section-sub {
  font-size: clamp(15px, 1.05vw, 16.5px);
  color: var(--text-dim);
  margin: 0;
  max-width: 540px;
}
.section-sub-on-dark { color: var(--text-dim-on-dark); }

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

.reward {
  position: relative;
  padding: 28px 24px 30px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid rgba(10, 10, 12, 0.08);
  transition:
    transform 0.4s var(--ease-out),
    border-color 0.2s ease,
    box-shadow 0.35s var(--ease-out),
    background 0.3s ease;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.reward:hover {
  transform: translateY(-3px);
  border-color: rgba(10, 10, 12, 0.14);
  box-shadow: 0 14px 32px rgba(10, 10, 12, 0.08);
}

.reward-icon {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}
.reward-icon svg { width: 24px; height: 24px; }

.reward h3 {
  font-size: 17.5px;
  letter-spacing: -0.012em;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}
.reward p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}

.reward-featured {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 183, 122, 0.18) 0%, transparent 70%),
    linear-gradient(180deg, rgba(250, 238, 204, 0.55) 0%, #ffffff 100%);
  border-color: rgba(184, 136, 74, 0.32);
}
.reward-featured:hover {
  border-color: rgba(184, 136, 74, 0.5);
  box-shadow: 0 14px 36px rgba(184, 136, 74, 0.14);
}
.reward-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--dark);
}

.coming-soon {
  text-align: center;
  margin: 40px 0 0;
  color: var(--text-mute);
  font-size: 15px;
}


/* ================================================================
   DIVIDERS — brand-appropriate horizontal page breaks
   ================================================================ */
.divider {
  width: 100%;
  background: var(--bg);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}
.divider img {
  display: block;
  width: 100%;
  max-width: min(920px, 72%);
  height: auto;
  opacity: 0.85;
}
.divider-ornate {
  padding: clamp(36px, 6vh, 80px) var(--pad);
}
.divider-simple {
  padding: clamp(24px, 4vh, 56px) var(--pad);
}
.divider-simple img {
  max-width: min(760px, 60%);
  opacity: 0.7;
}
.divider-on-dark {
  background: transparent;
  padding: clamp(28px, 5vh, 60px) var(--pad) 0;
}
.divider-on-dark img {
  opacity: 0.85;
}
@media (max-width: 700px) {
  .divider img { max-width: 82%; }
  .divider-simple img { max-width: 72%; }
}


/* ================================================================
   LIFESTYLE — full-bleed vacation image between rewards and film
   ================================================================ */
.lifestyle {
  width: 100%;
  background: var(--bg);
  overflow: hidden;
  line-height: 0;
}
.lifestyle img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 92vh;
  object-fit: cover;
  object-position: center;
}


/* ================================================================
   FILM
   ================================================================ */
.film-section {
  padding: clamp(70px, 10vh, 120px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--bg);
}

.video-wrap {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark);
  box-shadow:
    0 30px 70px rgba(10, 10, 12, 0.14),
    0 6px 18px rgba(10, 10, 12, 0.06);
}
.film { width: 100%; height: 100%; object-fit: cover; }

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(212, 183, 122, 0.16), transparent 70%),
    linear-gradient(180deg, #15181d, #0a0c10);
  overflow: hidden;
}
.video-placeholder-glow {
  position: absolute;
  width: 55%;
  height: 55%;
  left: 22%;
  top: 18%;
  background: radial-gradient(circle at center, rgba(212, 183, 122, 0.22), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.video-play {
  position: relative;
  width: 76px; height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  cursor: not-allowed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
}
.video-play-glyph {
  width: 12px; height: 16px;
  background: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateX(2px);
}
.video-placeholder-meta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.video-placeholder-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.video-placeholder-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.video-caption {
  position: absolute;
  left: 16px; bottom: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 4px;
  backdrop-filter: blur(8px);
  pointer-events: none;
}


/* ================================================================
   BETA — dark close, mirroring getthera.com's dark final band.
   No footer follows. This IS the page-ender.
   ================================================================ */
.beta {
  position: relative;
  padding: clamp(110px, 16vh, 180px) var(--pad) clamp(120px, 18vh, 200px);
  overflow: hidden;
  isolation: isolate;
  background: #000000;
}
.beta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #000000;
}

.beta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.beta-inner .eyebrow { margin-bottom: 2px; }
.beta-inner .section-title { max-width: 22ch; }
.beta-title { max-width: 24ch !important; }

.beta-form {
  width: 100%;
  max-width: 540px;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.beta-field {
  display: flex;
  gap: 8px;
}
.beta-field input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  outline: 0;
  padding: 0 16px;
  height: 48px;
  font-size: 15px;
  color: var(--text-on-dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.beta-field input::placeholder { color: var(--text-mute-on-dark); }
.beta-field input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}

.beta-success {
  font-size: 14px;
  color: #f5e3b3;
  margin: 0;
  opacity: 0;
  transform: translateY(3px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.beta-form.is-submitted .beta-success {
  opacity: 1; transform: none;
}
.beta-form.is-submitted .beta-field { opacity: 0.55; pointer-events: none; }

.beta-note {
  font-size: 13px;
  margin: 0;
  background: linear-gradient(92deg, #e6c587 0%, #d4b06a 50%, #c9a35a 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .card-stage {
    order: -1;
    padding: 0;
    min-height: 0;
  }
  .card-float { width: min(440px, 100%); }
  .hero { padding-top: 110px; padding-bottom: 60px; }
  .display .line { white-space: normal; }

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

@media (max-width: 900px) {
  .howitworks-steps { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  .rewards-grid { grid-template-columns: 1fr; }
  .beta-field { flex-direction: column; }
  .beta-field .btn-primary-on-dark { width: 100%; }
  .quote br { display: none; }
  .cta-row .btn { flex: 1; }
}


/* ================================================================
   MOBILE POLISH — preserve the premium feel at small widths
   ================================================================ */
@media (max-width: 700px) {
  /* HERO: pull content closer to the fold and tighten overall rhythm */
  .hero {
    padding-top: 84px;
    padding-bottom: 36px;
    min-height: auto;
  }
  .hero-inner { gap: 18px; }
  .card-float { width: min(320px, 82%); }
  .display {
    font-size: clamp(2.4rem, 10vw, 3.2rem);
    letter-spacing: -0.028em;
  }
  .lede { font-size: 15.5px; line-height: 1.55; }
  .cta-row { gap: 10px; margin-top: 18px; }
  .cta-row .btn { height: 48px; }

  /* Brand mark: shrink + tighten spacing so it doesn't crowd the card */
  .brand { top: 18px; left: 20px; }
  .brand img { height: 18px; }

  /* Ornate divider: was eating ~140px of whitespace — tighten */
  .divider-ornate { padding: clamp(18px, 3vh, 36px) var(--pad); }
  .divider-ornate img { max-width: 70%; opacity: 0.75; }

  /* How it works: pull title up, tighten blurb spacing */
  .howitworks {
    padding-top: clamp(20px, 3vh, 36px);
    padding-bottom: clamp(64px, 10vh, 110px);
  }
  .howitworks-lead { font-size: clamp(1.9rem, 8vw, 2.4rem); margin-bottom: 18px; }
  .howitworks-blurb {
    margin-bottom: clamp(48px, 7vh, 72px);
    font-size: 16px;
  }
  .howitworks-steps { gap: 28px; }
  .step-num { font-size: 2.4rem; }
  .step h3 { font-size: 18px; }
  .step p { font-size: 14.5px; line-height: 1.55; }

  /* Split promise: keep overlay + quote but reduce wasted space */
  .split-promise-inner {
    padding-top: clamp(220px, 36vh, 340px);
    padding-bottom: clamp(60px, 9vh, 100px);
  }
  .split-promise .quote { font-size: clamp(1.85rem, 7.5vw, 2.2rem); line-height: 1.12; }
  .split-promise .quote-accent { font-size: 1.25em; }

  /* Rewards */
  .rewards {
    padding-top: clamp(64px, 10vh, 100px);
    padding-bottom: clamp(64px, 10vh, 100px);
  }
  .section-head { margin-bottom: clamp(32px, 5vh, 48px); }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.3rem); }
  .reward { min-height: 0; padding: 22px 20px 24px; }
  .rewards-grid { gap: 12px; }

  /* Film */
  .film-section { padding: clamp(48px, 8vh, 80px) var(--pad); }

  /* Beta: tighten bottom gap before footer */
  .beta {
    padding-top: clamp(72px, 12vh, 120px);
    padding-bottom: clamp(48px, 7vh, 72px);
  }
  .beta-title { font-size: clamp(1.9rem, 7vw, 2.4rem) !important; }

  /* Webflow footer cleanup — higher specificity to beat Webflow's own rules */
  footer.footer .footer-thera,
  footer.footer .footer-brand,
  footer.footer .footer-top_form,
  [data-wf--component---footer--variant] .footer-thera,
  [data-wf--component---footer--variant] .footer-brand {
    display: none !important;
  }
  /* Tighten Webflow footer spacing on mobile */
  footer.footer .padding-global { padding-top: 8px; padding-bottom: 16px; }
  footer.footer .footer-top_component { padding-top: 32px !important; padding-bottom: 32px !important; }
  footer.footer .footer-disclaimer-bottom { gap: 18px; }
}

/* Extra squeeze for very small phones (iPhone SE etc.) */
@media (max-width: 380px) {
  .display { font-size: 2.2rem; }
  .cta-row .btn { font-size: 14.5px; }
  .split-promise .quote { font-size: 1.7rem; }
  .section-title { font-size: 1.7rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .card-wrap { transform: none; }
}


