/*
Theme Name: LP Landing
Description: Rich casino affiliate landing-page theme with configurable offers and polished interactive conversion experiences.
Version: 2.1.0
Author: Stefan
Text Domain: lp-landing
*/

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

:root {
  --bg-deep: #1a0533;
  --bg-mid: #2d0a54;
  --accent: #b820ff;
  --accent-2: #ff2fd6;
  --cta: #2bef8b;
  --cta-text: #06210f;
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.72);
  --gold: #ffd447;
  --card: rgba(255, 255, 255, 0.06);
  --radius: 14px;
  --maxw: 720px;
}

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: radial-gradient(120% 90% at 50% 0%, var(--bg-mid) 0%, var(--bg-deep) 55%, #12021f 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-2); }

.lp-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.lp-header { padding: 18px 0 10px; text-align: center; }
.lp-logo-title { margin: 0; }
.lp-logo-title a {
  display: inline-block;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  /* Champagne-gold metal with a shine sweeping across the letters */
  background:
    linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, 0.95) 46%, rgba(255, 244, 200, 0.6) 50%, transparent 62%) no-repeat,
    linear-gradient(180deg, #fff8dc 0%, #ffeaa6 20%, #f8ce54 40%, #d29a12 55%, #ffe07e 74%, #a97708 92%, #f2c94c 100%);
  background-size: 260% 100%, 100% 100%;
  background-position: -160% 0, 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 2px 0 rgba(96, 62, 4, 0.65))
    drop-shadow(0 4px 2px rgba(0, 0, 0, 0.45))
    drop-shadow(0 10px 26px rgba(240, 180, 41, 0.38));
  animation: lp-logo-shine 5s ease-in-out infinite;
}
@keyframes lp-logo-shine {
  0%, 55% { background-position: -160% 0, 0 0; }
  85%, 100% { background-position: 240% 0, 0 0; }
}
.lp-logo-title--small a { font-size: 22px; letter-spacing: 2px; }
@media (prefers-reduced-motion: reduce) {
  .lp-logo-title a { animation: none; }
}

/* ---------- Buttons ---------- */
.wp-block-button__link {
  background: linear-gradient(180deg, #4ef79f 0%, var(--cta) 100%);
  color: var(--cta-text);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  padding: 16px 42px;
  box-shadow: 0 6px 24px rgba(43, 239, 139, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wp-block-button__link:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(43, 239, 139, 0.6); }
.wp-block-buttons { margin: 26px 0; }

.lp-btn {
  display: inline-block;
  background: linear-gradient(180deg, #4ef79f 0%, var(--cta) 100%);
  color: var(--cta-text);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  border: 0;
  border-radius: 999px;
  padding: 16px 42px;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(43, 239, 139, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.lp-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(43, 239, 139, 0.6); }
.lp-btn--block { display: block; width: 100%; }

/* ---------- Shared hero ---------- */
.lp-hero { text-align: center; padding: 26px 0 10px; }
.lp-hero__kicker {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.lp-hero__offer {
  font-size: clamp(34px, 7vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  margin: 8px 0;
  background: linear-gradient(180deg, #fff 30%, #f7c8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(184, 32, 255, 0.35);
}
.lp-hero__sub {
  font-size: clamp(18px, 3.5vw, 24px);
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Panel / card ---------- */
.lp-panel {
  background: linear-gradient(180deg, rgba(184, 32, 255, 0.18), rgba(45, 10, 84, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 28px 22px;
  margin: 22px 0;
}

/* ---------- Email capture ---------- */
.lp-form { margin-top: 18px; }
.lp-form input[type="email"] {
  width: 100%;
  padding: 16px 18px;
  font-size: 17px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  outline: none;
  margin-bottom: 14px;
}
.lp-form input[type="email"]:focus { border-color: var(--accent-2); }
.lp-form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.lp-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
  margin: 0 0 16px;
  text-align: left;
  cursor: pointer;
}
.lp-consent-check input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--cta);
  cursor: pointer;
}
.lp-consent-check a { color: var(--text); text-decoration: underline; }
.lp-skip {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 8px;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.lp-skip:hover { color: var(--gold); }
.lp-form__error { color: #ff7a7a; font-size: 14px; margin-bottom: 10px; }
.lp-form__error[hidden] { display: none; }

/* ---------- Toplist ---------- */
.lp-toplist { display: none; }
.lp-toplist.is-visible { display: block; animation: lp-fade 0.5s ease; }
.lp-toplist__title { text-align: center; font-size: 24px; font-weight: 800; margin-bottom: 16px; }
.lp-toplist__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 14px;
}
.lp-toplist__rank {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
}
.lp-toplist__body { flex: 1 1 auto; min-width: 0; }
.lp-toplist__brand { font-size: 19px; font-weight: 800; }
.lp-toplist__offer { font-size: 15px; color: var(--gold); font-weight: 700; }
.lp-toplist__cta { flex: 0 0 auto; }
.lp-toplist__cta .lp-btn { font-size: 14px; padding: 12px 22px; }
@media (max-width: 560px) {
  .lp-toplist__item { flex-wrap: wrap; }
  .lp-toplist__cta { flex-basis: 100%; }
  .lp-toplist__cta .lp-btn { display: block; }
}

/* ---------- Wheel ---------- */
.lp-wheel-stage { text-align: center; padding-bottom: 30px; }
.lp-wheel-box { position: relative; width: min(340px, 86vw); margin: 24px auto 26px; }
.lp-wheel-pointer {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 26px solid var(--gold);
  filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.5));
  z-index: 3;
}
.lp-wheel {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 10px solid #7a1fa8;
  box-shadow: 0 0 0 6px #4a1070, 0 0 60px rgba(184, 32, 255, 0.55), inset 0 0 30px rgba(0, 0, 0, 0.35);
  transition: transform 4.6s cubic-bezier(0.12, 0.62, 0.04, 1);
  will-change: transform;
}
.lp-wheel__label {
  position: absolute;
  inset: 0;
  padding-top: 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
  white-space: nowrap;
  pointer-events: none;
}
.lp-wheel-hub {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 74px; height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #d76bff, var(--accent) 70%);
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 0 18px rgba(184, 32, 255, 0.8);
}

.lp-hero__offer--wheel { font-size: clamp(28px, 6vw, 44px); }
.lp-hero__offer--congrats { font-size: clamp(30px, 6vw, 46px); }

/* Congrats panel */
.lp-congrats { display: none; }
.lp-congrats.is-visible { display: block; animation: lp-fade 0.5s ease; }
.lp-congrats__title {
  font-size: clamp(28px, 6vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--accent-2);
  text-shadow: 0 0 30px rgba(255, 47, 214, 0.5);
}
.lp-congrats__sub { font-size: 15px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px; }
.lp-congrats__intro { text-align: center; }
.lp-congrats__intro .lp-congrats__sub { margin-bottom: 0; }
.lp-hidden { display: none !important; }

/* ---------- Article template ---------- */
.lp-article { padding-top: 8px; }
.lp-article h1 {
  font-size: clamp(28px, 5.5vw, 40px);
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
}
.lp-article .lp-byline {
  text-align: center;
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.lp-article p { margin: 0 0 16px; font-size: 17px; }
.lp-article h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 30px 0 12px;
  color: var(--gold);
}
.lp-article ol, .lp-article ul { margin: 0 0 16px 22px; font-size: 17px; }
.lp-article li { margin-bottom: 8px; }
.lp-check-list { list-style: none; margin-left: 0 !important; }
.lp-check-list li { padding-left: 30px; position: relative; }
.lp-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cta);
  font-weight: 900;
}
.lp-quote {
  background: var(--card);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 18px;
  margin: 0 0 16px;
  font-style: italic;
}
.lp-quote cite { display: block; margin-top: 8px; font-style: normal; font-weight: 700; color: var(--text-dim); font-size: 14px; }
.lp-cta-row { text-align: center; margin: 26px 0; }
.lp-offer-box { text-align: center; }
.lp-offer-box__headline { font-size: clamp(22px, 4.5vw, 30px); font-weight: 900; color: var(--gold); margin-bottom: 6px; }
.lp-offer-box__note { font-size: 13px; color: var(--text-dim); margin-top: 14px; }

/* Decorative hero coin strip */
.lp-hero-art {
  height: 120px;
  border-radius: var(--radius);
  margin: 6px 0 24px;
  background:
    radial-gradient(60px 60px at 15% 50%, rgba(43, 239, 139, 0.55), transparent 70%),
    radial-gradient(50px 50px at 85% 40%, rgba(255, 212, 71, 0.5), transparent 70%),
    radial-gradient(70px 70px at 55% 70%, rgba(255, 47, 214, 0.45), transparent 70%),
    linear-gradient(120deg, #3a0d68, #200640);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------- T&C block ---------- */
.lp-terms { padding: 26px 0 6px; }
.lp-terms h2 { text-align: center; font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.lp-terms ol { max-width: 420px; margin: 0 auto; font-size: 14px; color: var(--text-dim); padding-left: 20px; }
.lp-terms li { margin-bottom: 4px; }

/* ---------- Footer ---------- */
.lp-footer {
  margin-top: 40px;
  padding: 30px 0 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}
.lp-footer .lp-logo { font-size: 22px; }
.lp-footer__links { margin: 14px 0; }
.lp-footer__links a + a { margin-left: 18px; }
.lp-footer__links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
}
.lp-footer__links a:hover { color: var(--text); }
.lp-footer__disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 640px;
  margin: 0 auto 12px;
}
.lp-footer__copy { font-size: 12px; color: rgba(255, 255, 255, 0.45); }

/* ---------- Sticky compliance bar ---------- */
.lp-compliance p { margin: 0; }
.lp-compliance {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(0, 0, 0, 0.88);
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  text-align: center;
  padding: 6px 14px;
  z-index: 50;
}

@keyframes lp-fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Dev page list ---------- */
.lp-page-list { padding-top: 30px; }
.lp-page-list h1 { font-size: 24px; margin-bottom: 14px; }
.lp-page-list .wp-block-post-title { font-size: 17px; font-weight: 600; margin: 0 0 8px; }
.lp-page-list .wp-block-post-title a { color: var(--text); text-decoration: none; }
.lp-page-list .wp-block-post-title a:hover { color: var(--accent-2); }

/* ---------- Editor preview for custom blocks ---------- */
.lp-block-preview {
  border: 2px dashed var(--accent);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(184, 32, 255, 0.08);
}
.lp-block-preview p { margin: 6px 0 0; font-size: 14px; }

/* ---------- Brand logo ---------- */
.lp-brand-logo {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 18px;
  margin: 6px auto 24px;
  max-width: 260px;
}
.lp-brand-logo img { margin: 0 auto; max-height: 140px; width: auto; }
.lp-brand-logo--congrats { max-width: 180px; padding: 12px; margin: 0 auto 16px; }
.lp-brand-logo--congrats img { max-height: 90px; }

.lp-toplist__logo {
  flex: 0 0 auto;
  width: 86px;
  height: 64px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lp-toplist__logo img { max-height: 52px; max-width: 74px; width: auto; }
@media (max-width: 560px) {
  .lp-toplist__logo { width: 64px; height: 48px; }
  .lp-toplist__logo img { max-height: 40px; max-width: 54px; }
}

/* ---------- Hero image (article) ---------- */
.lp-hero-image { margin: 6px auto 24px; }
.lp-hero-image img {
  border-radius: var(--radius);
  margin: 0 auto;
  max-height: 340px;
  width: auto;
}
.lp-brand-logo--offer { max-width: 200px; padding: 12px; margin: 0 auto 18px; }
.lp-brand-logo--offer img { max-height: 100px; }

/* ---------- Decorative coins (email + wheel heroes) ---------- */
.lp-hero,
.lp-wheel-stage { position: relative; }
.lp-hero::before,
.lp-hero::after,
.lp-wheel-stage::before,
.lp-wheel-stage::after {
  content: "";
  position: absolute;
  width: 74px;
  height: 74px;
  background: url('assets/images/coin.svg') no-repeat center / contain;
  opacity: 0.85;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
  pointer-events: none;
  z-index: -1;
}
.lp-hero::before { left: -90px; top: 22px; transform: rotate(-18deg); }
.lp-hero::after { right: -86px; top: 90px; width: 52px; height: 52px; transform: rotate(22deg); }
.lp-wheel-stage::before { left: -78px; top: 210px; transform: rotate(-14deg); }
.lp-wheel-stage::after { right: -74px; top: 320px; width: 56px; height: 56px; transform: rotate(18deg); }
@media (max-width: 900px) {
  .lp-hero::before, .lp-hero::after,
  .lp-wheel-stage::before, .lp-wheel-stage::after { display: none; }
}

/* ---------- Front-page operator toplist ---------- */
.lp-wrap--wide { max-width: 1100px; }

.lp-tl { margin: 10px 0 40px; }
.lp-tl__empty { text-align: center; color: var(--text-dim); }

.lp-tl__card {
  position: relative;
  display: grid;
  grid-template-columns: 140px minmax(0, 1.25fr) minmax(0, 1.05fr) 110px 160px;
  gap: 20px;
  align-items: center;
  padding: 26px 26px 26px 34px;
  margin: 0 0 18px;
}
.lp-tl__rank {
  position: absolute;
  top: 18px;
  left: -12px;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  padding: 4px 12px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.lp-tl__logo {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lp-tl__logo img { max-height: 82px; width: auto; margin: 0; }
.lp-tl__logo-fallback { font-weight: 800; font-size: 18px; padding: 8px; }
.lp-tl__brand { font-size: 26px; font-weight: 900; line-height: 1.15; }
.lp-tl__stars { color: var(--gold); font-size: 20px; letter-spacing: 3px; margin: 2px 0 6px; }
.lp-tl__features { font-size: 15px; color: var(--text-dim); }
.lp-tl__features ul { list-style: none; margin: 0; padding: 0; }
.lp-tl__features li { padding-left: 20px; position: relative; margin: 3px 0; }
.lp-tl__features li::before { content: "✓"; position: absolute; left: 0; color: var(--cta); font-weight: 900; }
.lp-tl__deal-title { font-size: 17px; font-weight: 800; line-height: 1.35; }
/* Deal meta arrives with its own h1–h6/p markup — keep it at card scale. */
.lp-tl__deal-title h1,
.lp-tl__deal-title h2,
.lp-tl__deal-title h3,
.lp-tl__deal-title h4,
.lp-tl__deal-title h5,
.lp-tl__deal-title h6,
.lp-tl__deal-title p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0 0 4px;
}
.lp-tl__deal-title > *:last-child { margin-bottom: 0; }
.lp-tl__ratings { margin-top: 8px; font-size: 14px; color: var(--text-dim); }
.lp-tl__ratings span { color: var(--accent-2); font-weight: 800; }
.lp-tl__score-ring {
  width: 104px;
  height: 104px;
  margin: 0 auto;
  border-radius: 50%;
  border: 3px solid var(--accent);
  background: radial-gradient(circle at 50% 30%, rgba(184, 32, 255, 0.35), rgba(45, 10, 84, 0.9));
  box-shadow: 0 0 24px rgba(184, 32, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.lp-tl__score-label { font-size: 12px; color: var(--text-dim); }
.lp-tl__score-num { font-size: 34px; font-weight: 900; line-height: 1; }
.lp-tl__cta { text-align: center; }
.lp-tl__cta .lp-btn { display: block; font-size: 15px; padding: 15px 18px; white-space: nowrap; }

@media (max-width: 980px) {
  .lp-tl__card { grid-template-columns: 130px minmax(0, 1fr) 150px; }
  .lp-tl__deal { grid-column: 1 / 3; }
  .lp-tl__score { display: none; }
  .lp-tl__cta { grid-column: 3; grid-row: 1 / 3; }
}
@media (max-width: 640px) {
  .lp-tl__card { grid-template-columns: 1fr; text-align: center; padding: 26px 18px; }
  .lp-tl__stars { justify-content: center; }
  .lp-tl__logo { max-width: 220px; margin: 0 auto; }
  .lp-tl__deal { grid-column: auto; }
  .lp-tl__cta { grid-column: auto; grid-row: auto; }
  .lp-tl__features li { text-align: left; }
  .lp-tl__features ul { display: inline-block; }
}

/* Card Notes plugin: note rendered as the card's own footer row —
   divider on top, dim small print, spans the full card width. */
.lp-tl__card-note {
  grid-column: 1 / -1;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-dim);
  text-align: left;
}
.lp-tl__card-note p { margin: 0; font-size: inherit; color: inherit; }
.lp-tl__offer-card .lp-tl__card-note { margin-top: 16px; }

/* LP variant (cardStyle "offer"): cards mirror the offer-box brand card —
   centered logo tile, gold bonus headline, CTA. */
.lp-tl__offer-card {
  position: relative;
  padding: 28px 22px;
  margin: 0 0 18px;
}
.lp-tl__offer-brand { font-size: 22px; font-weight: 900; line-height: 1.15; margin-bottom: 4px; }
.lp-tl__note { font-size: 14px; color: var(--text-dim); margin: 0 0 4px; }
.lp-tl__offer-card .lp-cta-row { margin-top: 16px; }
.lp-tl__offer-card .lp-btn { display: inline-block; min-width: 260px; }
.lp-tl__offer-card .lp-tl__logo-fallback { font-size: 22px; display: inline-block; }
@media (max-width: 640px) {
  .lp-tl__offer-card .lp-btn { display: block; min-width: 0; }
}

/* ============================================================
   3D FX layer — depth, gloss, motion (overrides base styles)
   ============================================================ */

/* Layered background glows */
body {
  background:
    radial-gradient(55% 38% at 12% 8%, rgba(184, 32, 255, 0.28), transparent 62%),
    radial-gradient(45% 32% at 88% 4%, rgba(255, 47, 214, 0.20), transparent 62%),
    radial-gradient(40% 30% at 50% 100%, rgba(32, 184, 255, 0.10), transparent 65%),
    radial-gradient(120% 90% at 50% 0%, var(--bg-mid) 0%, var(--bg-deep) 55%, #12021f 100%);
  background-attachment: fixed;
}

@keyframes lp-float {
  from { transform: translateY(0) rotate(var(--rot, 0deg)); }
  to   { transform: translateY(-14px) rotate(var(--rot, 0deg)); }
}
@keyframes lp-shine {
  0%   { left: -70%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}

/* 3D beveled CTAs with a shine sweep */
.lp-btn,
.wp-block-button__link {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #63ffb0 0%, #2bef8b 45%, #1ed076 100%);
  box-shadow:
    0 6px 0 #129b57,
    0 16px 30px rgba(43, 239, 139, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.55);
}
.lp-btn:hover,
.wp-block-button__link:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 0 #129b57,
    0 20px 38px rgba(43, 239, 139, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.55);
}
.lp-btn:active,
.wp-block-button__link:active {
  transform: translateY(3px);
  box-shadow:
    0 2px 0 #129b57,
    0 8px 16px rgba(43, 239, 139, 0.35),
    inset 0 2px 0 rgba(255, 255, 255, 0.4);
}
.lp-btn::after,
.wp-block-button__link::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -70%;
  width: 38%;
  height: 220%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  animation: lp-shine 3.4s ease-in-out infinite;
  pointer-events: none;
}

/* Extruded hero headline */
.lp-hero__offer {
  filter:
    drop-shadow(0 4px 0 rgba(90, 10, 130, 0.85))
    drop-shadow(0 14px 26px rgba(184, 32, 255, 0.45));
  text-shadow: none;
}

/* Panels: glass with a top highlight */
.lp-panel {
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

/* Toplist cards: gradient-border glass, hover lift */
.lp-tl__card {
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(72, 18, 118, 0.94), rgba(38, 8, 68, 0.96)) padding-box,
    linear-gradient(160deg, rgba(255, 255, 255, 0.4), rgba(184, 32, 255, 0.55) 30%, rgba(30, 16, 56, 0.3) 68%, rgba(255, 47, 214, 0.5)) border-box;
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lp-tl__card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(184, 32, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.lp-tl__card--first {
  background:
    linear-gradient(180deg, rgba(72, 18, 118, 0.94), rgba(38, 8, 68, 0.96)) padding-box,
    linear-gradient(160deg, #ffe38a, #f0b429 30%, #8a5c05 62%, #ffd447) border-box;
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.5),
    0 0 44px rgba(240, 180, 41, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.lp-tl__ribbon {
  position: absolute;
  top: -13px;
  right: 26px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(180deg, #ffe38a, #f0b429);
  color: #3b2d10;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(240, 180, 41, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  z-index: 2;
}

/* Rank badge: gem bevel */
.lp-tl__rank {
  background: radial-gradient(circle at 30% 25%, #d76bff, var(--accent) 60%, #7a12b0);
  border-radius: 10px;
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.5),
    inset 0 2px 3px rgba(255, 255, 255, 0.5),
    inset 0 -3px 4px rgba(0, 0, 0, 0.35);
}

/* Logo tile gloss */
.lp-tl__logo { position: relative; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 22px rgba(0, 0, 0, 0.4); }
.lp-tl__logo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.28), transparent 45%);
  pointer-events: none;
}

/* SVG stars */
.lp-tl__stars { display: flex; gap: 3px; margin: 4px 0 8px; }
.lp-star { fill: rgba(255, 255, 255, 0.16); }
.lp-star.is-on { fill: var(--gold); filter: drop-shadow(0 2px 4px rgba(240, 140, 0, 0.65)); }

/* Score ring: conic progress + inner dome */
.lp-tl__score-ring {
  position: relative;
  border: 0;
  background: conic-gradient(from -90deg, #2bef8b calc(var(--lp-score, 0) * 1%), rgba(255, 255, 255, 0.1) 0);
  box-shadow: 0 0 30px rgba(43, 239, 139, 0.3), 0 14px 30px rgba(0, 0, 0, 0.45);
}
.lp-tl__score-ring::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 28%, #3a1266, #1c0736 78%);
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.6), inset 0 -2px 4px rgba(255, 255, 255, 0.08);
}
.lp-tl__score-label,
.lp-tl__score-num { position: relative; z-index: 1; }
.lp-tl__score-num { text-shadow: 0 2px 8px rgba(43, 239, 139, 0.5); }

/* Floating coins */
.lp-hero::before { --rot: -18deg; animation: lp-float 5s ease-in-out infinite alternate; }
.lp-hero::after { --rot: 22deg; animation: lp-float 6.5s ease-in-out infinite alternate; }
.lp-wheel-stage::before { --rot: -14deg; animation: lp-float 5.6s ease-in-out infinite alternate; }
.lp-wheel-stage::after { --rot: 18deg; animation: lp-float 4.8s ease-in-out infinite alternate; }
.lp-hero::before, .lp-hero::after,
.lp-wheel-stage::before, .lp-wheel-stage::after { transform: rotate(var(--rot)); }

/* Wheel gloss dome */
.lp-wheel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.28), transparent 42%);
  pointer-events: none;
}

/* Toplist section title spacing on wide layout */
.lp-wrap--wide .lp-hero { padding-bottom: 26px; }

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .lp-btn::after,
  .wp-block-button__link::after,
  .lp-hero::before, .lp-hero::after,
  .lp-wheel-stage::before, .lp-wheel-stage::after { animation: none; }
  .lp-tl__card, .lp-tl__card:hover { transform: none; }
}

/* ============================================================
   Gimmick LPs — scratch / boxes / slots / quiz
   ============================================================ */
.lp-scratch-stage, .lp-boxes-stage, .lp-slots-stage, .lp-quiz-stage {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}
.lp-game-hint { color: var(--text-dim); font-size: 14px; margin-top: 16px; }

/* --- Scratch card --- */
.lp-scratch-card {
  position: relative;
  width: min(420px, 90vw);
  height: 240px;
  margin: 26px auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 212, 71, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(160deg, #3a1266, #22093f 70%);
}
.lp-scratch-card__prize {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
}
.lp-scratch-card__label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.lp-scratch-card__offer {
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 2px 10px rgba(240, 140, 0, 0.6);
}
.lp-scratch-card__foil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: crosshair;
  touch-action: none;
  transition: opacity 0.7s ease;
}
.lp-scratch-card__foil.is-cleared { opacity: 0; pointer-events: none; }

/* --- Mystery boxes --- */
.lp-boxes {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.lp-box {
  position: relative;
  width: 150px;
  height: 150px;
  border: 0;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.lp-box__body {
  position: absolute;
  left: 8px; right: 8px; bottom: 0;
  height: 104px;
  border-radius: 12px;
  background: linear-gradient(180deg, #d43be0, var(--accent) 55%, #7a12b0);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.35), inset 0 -6px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}
.lp-box__lid {
  position: absolute;
  left: 0; right: 0; top: 28px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffe38a, #f0b429 70%, #c98a12);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45), inset 0 2px 0 rgba(255, 255, 255, 0.55);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
  z-index: 2;
}
.lp-box__lid::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -16px;
  transform: translateX(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ff8ae8, var(--accent-2) 70%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
.lp-box__prize {
  position: absolute;
  left: 0; right: 0;
  bottom: 34px;
  opacity: 0;
  font-weight: 900;
  font-size: 15px;
  color: var(--gold);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  transition: opacity 0.4s ease 0.25s, transform 0.4s ease 0.25s;
  transform: translateY(10px);
  z-index: 3;
  padding: 0 6px;
}
.lp-box:hover:not(:disabled) .lp-box__body { transform: translateY(-6px); }
.lp-box.is-open .lp-box__lid { transform: translateY(-56px) rotate(-14deg); opacity: 0; }
.lp-box.is-open .lp-box__prize { opacity: 1; transform: translateY(0); }
.lp-box.is-winner .lp-box__body {
  background: linear-gradient(180deg, #63ffb0, var(--cta) 55%, #129b57);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(43, 239, 139, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.45);
}
.lp-box.is-lost { filter: grayscale(0.8) brightness(0.6); }

/* --- Slot machine --- */
.lp-slots {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 30px auto 26px;
  padding: 22px;
  width: fit-content;
  border-radius: 20px;
  border: 3px solid #7a1fa8;
  background: linear-gradient(180deg, rgba(72, 18, 118, 0.95), rgba(30, 6, 56, 0.98));
  box-shadow: 0 0 0 6px #4a1070, 0 24px 50px rgba(0, 0, 0, 0.55), 0 0 50px rgba(184, 32, 255, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.15);
}
.lp-reel {
  width: 96px;
  height: 270px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(180deg, #efe9f7 0%, #fff 20%, #fff 80%, #e4dcf1 100%);
  box-shadow: inset 0 12px 18px rgba(0, 0, 0, 0.25), inset 0 -12px 18px rgba(0, 0, 0, 0.25);
}
.lp-reel__strip { display: flex; flex-direction: column; }
.lp-reel__strip span {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  line-height: 1;
}
.lp-slots__winline {
  position: absolute;
  left: 12px; right: 12px;
  top: 50%;
  height: 90px;
  transform: translateY(-50%);
  border-top: 2px dashed rgba(255, 212, 71, 0.55);
  border-bottom: 2px dashed rgba(255, 212, 71, 0.55);
  pointer-events: none;
  z-index: 2;
}
.lp-slots.is-win .lp-slots__winline {
  background: rgba(255, 212, 71, 0.18);
  box-shadow: 0 0 30px rgba(255, 212, 71, 0.5);
  animation: lp-winline 0.5s ease-in-out 3;
}
@keyframes lp-winline {
  50% { background: rgba(255, 212, 71, 0.4); }
}
@media (max-width: 460px) {
  .lp-reel { width: 78px; height: 240px; }
  .lp-reel__strip span { height: 80px; font-size: 42px; }
  .lp-slots__winline { height: 80px; }
}

/* --- Quiz --- */
.lp-quiz { max-width: 560px; margin: 26px auto 0; text-align: center; padding: 30px 26px; }
.lp-quiz__progress {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  margin-bottom: 26px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}
.lp-quiz__bar {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cta), #63ffb0);
  box-shadow: 0 0 14px rgba(43, 239, 139, 0.7);
  transition: width 0.4s ease;
}
.lp-quiz__step, .lp-quiz__sorry { display: none; }
.lp-quiz__step.is-active, .lp-quiz__sorry.is-active { display: block; animation: lp-fade 0.4s ease; }
.lp-quiz__num {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 10px;
}
.lp-quiz__q { font-size: clamp(20px, 4vw, 26px); font-weight: 900; margin-bottom: 22px; }
.lp-quiz__answers { display: flex; flex-direction: column; gap: 12px; }
.lp-quiz__answer {
  position: relative;
  overflow: hidden;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  background: linear-gradient(180deg, rgba(184, 32, 255, 0.35), rgba(122, 18, 176, 0.45));
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(74, 16, 112, 0.9), 0 10px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.lp-quiz__answer:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(212, 59, 224, 0.5), rgba(122, 18, 176, 0.6));
  box-shadow: 0 8px 0 rgba(74, 16, 112, 0.9), 0 14px 26px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.lp-quiz__answer:active { transform: translateY(3px); box-shadow: 0 2px 0 rgba(74, 16, 112, 0.9), 0 6px 12px rgba(0, 0, 0, 0.35); }

/* ---------- CTA query construct (stepfox link wrapping a styled div) ---------- */
.lp-cta-query { margin: 26px 0; }
.lp-cta-query .wp-block-post-template {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
.lp-cta-query .wp-block-post { margin: 0; }
.lp-cta-query .metafield_block { text-decoration: none; display: inline-block; }
.lp-cta-query .lp-btn { margin: 0; }

/* ============================================================
   Animated background — drifting aurora glows + twinkling dust
   (transform/opacity only, sits between body bg and content)
   ============================================================ */
body { isolation: isolate; }

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -25%;
  z-index: -1;
  pointer-events: none;
}

/* Aurora: large soft color glows slowly breathing across the page */
body::before {
  background:
    radial-gradient(34% 28% at 18% 22%, rgba(184, 32, 255, 0.30), transparent 70%),
    radial-gradient(30% 26% at 82% 12%, rgba(255, 47, 214, 0.22), transparent 70%),
    radial-gradient(26% 24% at 70% 78%, rgba(32, 140, 255, 0.14), transparent 70%),
    radial-gradient(22% 20% at 24% 84%, rgba(240, 180, 41, 0.10), transparent 70%);
  animation: lp-aurora 46s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes lp-aurora {
  0%   { transform: translate3d(-3%, -2%, 0) rotate(-2deg) scale(1); }
  50%  { transform: translate3d(3%, 3%, 0) rotate(2deg) scale(1.12); }
  100% { transform: translate3d(-2%, 4%, 0) rotate(-1deg) scale(1.05); }
}

/* Dust: tiny sparkles drifting up, gently twinkling */
body::after {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.55) 1px, transparent 1.6px),
    radial-gradient(circle, rgba(247, 200, 255, 0.42) 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255, 255, 255, 0.28) 1.4px, transparent 2.4px);
  background-size: 210px 210px, 340px 340px, 540px 540px;
  background-position: 20px 40px, 130px 200px, 60px 90px;
  animation:
    lp-dust-drift 90s ease-in-out infinite alternate,
    lp-dust-twinkle 7s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
@keyframes lp-dust-drift {
  from { transform: translate3d(0, 4%, 0); }
  to   { transform: translate3d(-3%, -4%, 0); }
}
@keyframes lp-dust-twinkle {
  from { opacity: 0.35; }
  to   { opacity: 0.9; }
}

@media (prefers-reduced-motion: reduce) {
  body::before, body::after { animation: none; }
}
@media (max-width: 640px) {
  body::before { opacity: 0.7; }
}

/* ============================================================
   Floating coins — fixed decor layer, alive on mobile too
   ============================================================ */
.lp-floaters {
  position: fixed;
  inset: 0;
  z-index: -1; /* above the aurora/dust layers, below all content */
  pointer-events: none;
}
.lp-floaters__coin {
  position: absolute;
  background: url('assets/images/coin.svg') no-repeat center / contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 14px rgba(240, 180, 41, 0.35));
  will-change: transform;
  animation: lp-coin-bob 8s ease-in-out infinite alternate;
}
/* Spread along the side rails, out of the content column.
   Slots 1 and 4 (dice, lucky 7) retired — the game tiles carry that weight. */
.lp-floaters__coin:nth-child(1),
.lp-floaters__coin:nth-child(4) { display: none; }
.lp-floaters__coin:nth-child(2) { left: 4%;   top: 18%;   width: 52px; height: 52px; animation-duration: 9s;  animation-delay: -3s; animation-name: lp-coin-sway; }
.lp-floaters__coin:nth-child(3) { background-image: url('assets/images/gem.svg'); left: 8%;  top: 58%; width: 34px; height: 34px; animation-duration: 11s; animation-delay: -5s; opacity: 0.6; filter: blur(1.5px) drop-shadow(0 6px 12px rgba(0,0,0,0.4)); }
.lp-floaters__coin:nth-child(5) { background-image: url('assets/images/card.svg'); left: 3%;  bottom: 9%; width: 50px; height: 50px; animation-duration: 10s; animation-delay: -6s; animation-name: lp-coin-sway; }
.lp-floaters__coin:nth-child(6) { right: 6%;  top: 22%;   width: 44px; height: 44px; animation-duration: 12s; animation-delay: -4s; opacity: 0.65; }
.lp-floaters__coin:nth-child(7) { background-image: url('assets/images/cherry.svg'); left: 16%; top: 6%;  width: 32px; height: 32px; animation-duration: 9s;  animation-delay: -7s; opacity: 0.75; }
.lp-floaters__coin:nth-child(8) { background-image: url('assets/images/gem.svg'); right: 17%; top: 5%; width: 28px; height: 28px; animation-duration: 13s; animation-delay: -2.5s; opacity: 0.65; animation-name: lp-coin-sway; filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45)) drop-shadow(0 0 14px rgba(255, 47, 214, 0.4)); }

@keyframes lp-coin-bob {
  0%   { transform: translate3d(0, 0, 0) rotate(-10deg); }
  100% { transform: translate3d(0, -26px, 0) rotate(12deg); }
}
@keyframes lp-coin-sway {
  0%   { transform: translate3d(0, 0, 0) rotate(8deg) scale(1); }
  50%  { transform: translate3d(-14px, -18px, 0) rotate(-6deg) scale(1.08); }
  100% { transform: translate3d(10px, -30px, 0) rotate(10deg) scale(0.96); }
}

/* Mobile: keep the magic, tuck coins tighter to the edges and thin them out */
@media (max-width: 640px) {
  .lp-floaters__coin { opacity: 0.75; }
  .lp-floaters__coin:nth-child(1) { width: 44px; height: 44px; left: 2%; }
  .lp-floaters__coin:nth-child(2) { width: 34px; height: 34px; right: 3%; }
  .lp-floaters__coin:nth-child(4) { width: 52px; height: 52px; right: 2%; }
  .lp-floaters__coin:nth-child(5) { width: 38px; height: 38px; }
  .lp-floaters__coin:nth-child(7),
  .lp-floaters__coin:nth-child(8) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-floaters__coin { animation: none; }
}

/* ---------- Floating slot-game tiles (assets/images/games/) ---------- */
/* The game tiles ship with their own rounded frame, so no border here —
   just depth and a soft glow under the art. */
.lp-floaters__game {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter:
    drop-shadow(0 14px 26px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 22px rgba(140, 120, 255, 0.4));
  will-change: transform;
  animation: lp-game-drift 9s ease-in-out infinite alternate;
}
.lp-floaters__game:nth-child(9)  { left: 3%;   top: 30%;    width: 124px; height: 124px; animation-delay: -2s; }
.lp-floaters__game:nth-child(10) { right: 2%;  top: 38%;    width: 136px; height: 136px; animation-duration: 11s; animation-delay: -5s; animation-name: lp-game-tilt; }
.lp-floaters__game:nth-child(11) { left: 6%;   bottom: 18%; width: 108px; height: 108px; animation-duration: 10s; animation-delay: -7s; animation-name: lp-game-tilt; }
.lp-floaters__game:nth-child(12) { right: 7%;  bottom: 4%;  width: 116px; height: 116px; animation-duration: 12s; animation-delay: -3s; }

@keyframes lp-game-drift {
  0%   { transform: translate3d(0, 0, 0) rotate(-5deg) scale(1); }
  100% { transform: translate3d(-10px, -28px, 0) rotate(6deg) scale(1.06); }
}
@keyframes lp-game-tilt {
  0%   { transform: translate3d(0, 0, 0) rotate(7deg); }
  50%  { transform: translate3d(12px, -16px, 0) rotate(-4deg) scale(1.05); }
  100% { transform: translate3d(-6px, -30px, 0) rotate(5deg); }
}

/* With game tiles present, thin out the drawn pieces that share their spots */
.lp-floaters--has-games .lp-floaters__coin:nth-child(3),
.lp-floaters--has-games .lp-floaters__coin:nth-child(5) { display: none; }

/* Mobile: the content panel spans the screen, so tiles peek in from the
   edges (partly cropped) instead of sitting on top of the form. */
@media (max-width: 640px) {
  .lp-floaters__game { border-width: 1.5px; }
  .lp-floaters__game:nth-child(9)  { width: 72px; height: 72px; left: -26px;  top: 8%; }
  .lp-floaters__game:nth-child(10) { width: 76px; height: 76px; right: -28px; top: 24%; }
  .lp-floaters__game:nth-child(11) { width: 66px; height: 66px; left: -24px;  bottom: 3%; }
  .lp-floaters__game:nth-child(12) { width: 70px; height: 70px; right: -26px; bottom: 15%; }
  .lp-floaters--has-games .lp-floaters__coin:nth-child(2),
  .lp-floaters--has-games .lp-floaters__coin:nth-child(6) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-floaters__game { animation: none; }
}

/* ---------- Gold stars — glints of warm gold against the purple ---------- */
.lp-floaters__star {
  position: absolute;
  background: url('assets/images/star.svg') no-repeat center / contain;
  filter: drop-shadow(0 0 10px rgba(255, 212, 71, 0.75)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
  will-change: transform, opacity;
  animation: lp-star-twinkle 4.5s ease-in-out infinite alternate;
}
.lp-floaters__star--1 { left: 22%;  top: 12%;    width: 26px; height: 26px; animation-delay: -0.5s; }
.lp-floaters__star--2 { right: 24%; top: 18%;    width: 18px; height: 18px; animation-delay: -2.4s; animation-duration: 3.6s; }
.lp-floaters__star--3 { left: 12%;  top: 44%;    width: 20px; height: 20px; animation-delay: -1.6s; animation-duration: 5.2s; }
.lp-floaters__star--4 { right: 13%; top: 56%;    width: 28px; height: 28px; animation-delay: -3.2s; }
.lp-floaters__star--5 { left: 26%;  bottom: 10%; width: 16px; height: 16px; animation-delay: -1.1s; animation-duration: 3.2s; }
.lp-floaters__star--6 { right: 28%; bottom: 16%; width: 22px; height: 22px; animation-delay: -2.8s; animation-duration: 5.8s; }

/* Sparkle glints — the little four-point flashes between the stars */
.lp-floaters__star--2,
.lp-floaters__star--5 { background-image: url('assets/images/sparkle.svg'); }

@keyframes lp-star-twinkle {
  0%   { transform: scale(0.75) rotate(-12deg); opacity: 0.35; }
  55%  { transform: scale(1.12) rotate(6deg);   opacity: 1; }
  100% { transform: scale(0.9)  rotate(14deg);  opacity: 0.6; }
}

@media (max-width: 640px) {
  /* Keep the sparkle, drop the two that would sit over the copy */
  .lp-floaters__star--1 { left: 6%;  top: 9%;  width: 20px; height: 20px; }
  .lp-floaters__star--2 { right: 8%; top: 15%; width: 15px; height: 15px; }
  .lp-floaters__star--3 { display: none; }
  .lp-floaters__star--4 { display: none; }
  .lp-floaters__star--5 { left: 9%;  bottom: 12%; width: 14px; height: 14px; }
  .lp-floaters__star--6 { right: 10%; bottom: 20%; width: 18px; height: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-floaters__star { animation: none; opacity: 0.85; }
}

/* ============================================================
   Three.js casino experiences — roulette, cards, and gold vault
   ============================================================ */
.lp-wrap--three {
  max-width: 1240px;
  padding-left: 24px;
  padding-right: 24px;
}

.lp-three {
  --three-accent: #ff2fd6;
  --three-accent-rgb: 255, 47, 214;
  --three-secondary: #2bef8b;
  margin: 14px auto 30px;
}
.lp-three-page .lp-floaters__game { display: none; }
.lp-three-page .lp-floaters__coin { opacity: 0.32; filter: blur(0.2px) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.42)); }
.lp-three-page .lp-floaters__star { opacity: 0.58; }
.lp-three--cards {
  --three-accent: #a86cff;
  --three-accent-rgb: 168, 108, 255;
  --three-secondary: #ff4f91;
}
.lp-three--vault {
  --three-accent: #ffd447;
  --three-accent-rgb: 255, 212, 71;
  --three-secondary: #ff9d2f;
}

.lp-three__shell {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(14, 1, 28, 0.98) 0%, rgba(25, 3, 45, 0.96) 43%, rgba(21, 2, 37, 0.68) 67%, rgba(12, 1, 24, 0.72) 100%),
    radial-gradient(circle at 76% 44%, rgba(var(--three-accent-rgb), 0.24), transparent 44%),
    #12021f;
  box-shadow:
    0 42px 90px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(var(--three-accent-rgb), 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.lp-three__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 2, 30, 0.98) 0%, rgba(16, 2, 30, 0.9) 34%, transparent 66%),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(255, 255, 255, 0.018) 80px);
}
.lp-three__shell::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 7;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
}

.lp-three__beam {
  position: absolute;
  z-index: 1;
  top: -28%;
  right: 4%;
  width: 48%;
  height: 150%;
  opacity: 0.42;
  transform: rotate(14deg);
  background: linear-gradient(90deg, transparent, rgba(var(--three-accent-rgb), 0.18), transparent);
  filter: blur(20px);
  animation: lp-three-beam 8s ease-in-out infinite alternate;
}

.lp-three__scene {
  position: absolute;
  inset: 0 0 0 38%;
  z-index: 1;
  min-width: 0;
}
.lp-three__canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.96);
  filter: saturate(1.08) contrast(1.02);
  transition: opacity 0.65s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}
.is-three-ready .lp-three__canvas { opacity: 1; transform: scale(1); }
.lp-three.is-playing .lp-three__canvas { filter: saturate(1.26) contrast(1.08); }

.lp-three__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--three-accent);
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 950;
  letter-spacing: -2px;
  text-align: center;
  text-shadow: 0 0 40px rgba(var(--three-accent-rgb), 0.65);
}
.lp-three__fallback::before,
.lp-three__fallback::after {
  content: "";
  position: absolute;
  width: min(34vw, 380px);
  aspect-ratio: 1;
  border: 1px solid rgba(var(--three-accent-rgb), 0.32);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(var(--three-accent-rgb), 0.18), inset 0 0 50px rgba(var(--three-accent-rgb), 0.08);
  animation: lp-three-ring 5s linear infinite;
}
.lp-three__fallback::after { width: min(26vw, 290px); animation-direction: reverse; animation-duration: 7s; }
.is-three-ready .lp-three__fallback { opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.is-webgl-fallback .lp-three__fallback { opacity: 1; visibility: visible; }

.lp-three__hud {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 52%;
  min-height: 700px;
  padding: 72px 28px 68px 64px;
}
.lp-three__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--three-secondary);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}
.lp-three__eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px color-mix(in srgb, currentColor 16%, transparent), 0 0 18px currentColor;
  animation: lp-three-pulse 1.6s ease-in-out infinite;
}
.lp-three__title {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 5.7vw, 78px);
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: -3.8px;
  text-wrap: balance;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.48);
}
.lp-three__title::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin: 24px 0 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--three-accent), var(--three-secondary));
  box-shadow: 0 0 22px rgba(var(--three-accent-rgb), 0.55);
}
.lp-three__subtitle {
  max-width: 560px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 17px;
  line-height: 1.62;
}

.lp-three__offer-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 540px);
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 14px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}
.lp-three__logo,
.lp-three__monogram {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 72px;
  height: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
}
.lp-three__logo img { max-width: 62px; max-height: 44px; width: auto; margin: auto; }
.lp-three__monogram {
  color: #170326;
  font-size: 27px;
  font-weight: 950;
  background: linear-gradient(145deg, #fff0a9, var(--three-accent));
}
.lp-three__offer-copy { min-width: 0; }
.lp-three__offer-copy span {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.lp-three__offer-copy strong {
  display: block;
  overflow: hidden;
  color: var(--gold);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.15;
  text-overflow: ellipsis;
}

.lp-three__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
}
.lp-three__proof span { display: inline-flex; gap: 6px; align-items: center; }
.lp-three__proof b { color: var(--three-secondary); font-size: 14px; }

.lp-three__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 230px;
  margin: 0;
  background: linear-gradient(115deg, var(--three-secondary), #77ffbd 55%, var(--three-secondary));
  background-size: 220% 100%;
  color: #081a0e;
  box-shadow: 0 8px 0 #12864d, 0 18px 38px rgba(43, 239, 139, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  animation: lp-three-cta 3.8s ease-in-out infinite;
}
.lp-three--vault .lp-three__trigger {
  background: linear-gradient(115deg, #f2a91e, #ffe899 55%, #f2a91e);
  color: #291700;
  box-shadow: 0 8px 0 #9b5d08, 0 18px 38px rgba(255, 193, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}
.lp-three__trigger svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}
.lp-three__trigger:hover svg { transform: translateX(4px); }
.lp-three__trigger:focus-visible { outline: 3px solid #fff; outline-offset: 4px; }
.lp-three__trigger:disabled { cursor: wait; filter: saturate(0.72); }
.lp-three.is-complete .lp-three__trigger { cursor: default; opacity: 0.72; }
.lp-three__micro { margin: 16px 0 0; color: rgba(255, 255, 255, 0.4); font-size: 10.5px; line-height: 1.4; }

.lp-three__rail {
  position: absolute;
  z-index: 5;
  right: 36px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.lp-three__rail i { width: 4px; height: 4px; border-radius: 50%; background: var(--three-accent); box-shadow: 0 0 9px var(--three-accent); }

.lp-three__reveal {
  max-width: 920px;
  margin: 0 auto;
  scroll-margin-top: 28px;
}
.lp-three__reveal .lp-congrats { padding-top: 34px; }
.lp-three__reveal .lp-panel {
  border-color: rgba(var(--three-accent-rgb), 0.34);
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.38), 0 0 46px rgba(var(--three-accent-rgb), 0.12);
}

.lp-three.is-playing .lp-three__beam { opacity: 0.88; animation-duration: 1.3s; }
.lp-three.is-complete .lp-three__shell { border-color: rgba(var(--three-accent-rgb), 0.52); }
.lp-three.is-complete .lp-three__shell::after { box-shadow: inset 0 0 45px rgba(var(--three-accent-rgb), 0.12); }

/* The editor gets a rich static scene card; live WebGL remains front-end only. */
.lp-three-editor {
  --editor-accent: #ff2fd6;
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.2fr);
  gap: 30px;
  align-items: center;
  min-height: 360px;
  overflow: hidden;
  padding: 38px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: radial-gradient(circle at 20% 50%, color-mix(in srgb, var(--editor-accent) 30%, transparent), transparent 40%), linear-gradient(125deg, #12021f, #2d0a54);
}
.lp-three-editor--cards { --editor-accent: #a86cff; }
.lp-three-editor--vault { --editor-accent: #ffd447; }
.lp-three-editor__orb {
  display: grid;
  place-items: center;
  width: 210px;
  aspect-ratio: 1;
  margin: auto;
  color: var(--editor-accent);
  font: 950 62px/1 Georgia, serif;
  border: 14px double color-mix(in srgb, var(--editor-accent) 72%, #fff);
  border-radius: 50%;
  box-shadow: 0 0 70px color-mix(in srgb, var(--editor-accent) 35%, transparent), inset 0 0 48px color-mix(in srgb, var(--editor-accent) 24%, transparent);
  transform: perspective(500px) rotateX(58deg) rotateZ(-12deg);
}
.lp-three-editor__copy span { color: var(--editor-accent); font-size: 12px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; }
.lp-three-editor__copy h2 { margin: 9px 0 13px; color: #fff; font-size: clamp(34px, 5vw, 58px); line-height: 0.98; letter-spacing: -2px; }
.lp-three-editor__copy p { margin: 0 0 18px; color: rgba(255, 255, 255, 0.7); }
.lp-three-editor__copy strong,
.lp-three-editor__copy small { display: block; }
.lp-three-editor__copy strong { color: #ffd447; }
.lp-three-editor__copy small { margin-top: 6px; color: rgba(255, 255, 255, 0.48); }

@keyframes lp-three-ring { to { transform: rotate(360deg); } }
@keyframes lp-three-pulse { 50% { opacity: 0.46; transform: scale(0.72); } }
@keyframes lp-three-beam { from { transform: translateX(-6%) rotate(14deg); } to { transform: translateX(8%) rotate(9deg); } }
@keyframes lp-three-cta {
  0%, 70%, 100% { background-position: 100% 0; }
  84% { background-position: 0 0; }
}

@media (max-width: 980px) {
  .lp-wrap--three { max-width: 860px; }
  .lp-three__shell { min-height: 830px; }
  .lp-three__shell::before {
    background: linear-gradient(180deg, transparent 0%, rgba(16, 2, 30, 0.12) 40%, rgba(16, 2, 30, 0.98) 59%, rgba(16, 2, 30, 1) 100%);
  }
  .lp-three__scene { inset: 0 0 39% 0; }
  .lp-three__hud {
    justify-content: flex-end;
    width: 100%;
    min-height: 830px;
    padding: 390px 48px 72px;
  }
  .lp-three__title { max-width: 680px; font-size: clamp(44px, 8vw, 68px); }
  .lp-three__subtitle { max-width: 640px; }
  .lp-three__rail { right: 28px; bottom: 23px; }
}

@media (max-width: 640px) {
  .lp-wrap--three { padding-left: 12px; padding-right: 12px; }
  .lp-three { margin-top: 4px; }
  .lp-three__shell { min-height: 820px; border-radius: 22px; }
  .lp-three__shell::after { inset: 8px; border-radius: 15px; }
  .lp-three__scene { inset: 0 0 47% 0; }
  .lp-three__hud { min-height: 820px; padding: 345px 24px 68px; }
  .lp-three__eyebrow { margin-bottom: 13px; font-size: 10px; letter-spacing: 1.8px; }
  .lp-three__title { font-size: clamp(39px, 12.8vw, 56px); line-height: 0.96; letter-spacing: -2.4px; }
  .lp-three__title::after { margin: 18px 0 14px; }
  .lp-three__subtitle { margin-bottom: 17px; font-size: 14px; line-height: 1.48; }
  .lp-three__offer-card { padding: 10px; }
  .lp-three__logo,
  .lp-three__monogram { width: 59px; height: 48px; }
  .lp-three__logo img { max-width: 51px; max-height: 38px; }
  .lp-three__offer-copy span { font-size: 9px; }
  .lp-three__offer-copy strong { font-size: 17px; }
  .lp-three__proof { gap: 7px 12px; margin: 14px 0 17px; font-size: 10px; }
  .lp-three__trigger { width: 100%; min-width: 0; padding: 15px 20px; font-size: 15px; }
  .lp-three__micro { font-size: 9px; }
  .lp-three__rail { left: 24px; right: auto; bottom: 20px; gap: 7px; font-size: 7.5px; letter-spacing: 1px; }
  .lp-three-editor { grid-template-columns: 1fr; padding: 28px; }
  .lp-three-editor__orb { width: 150px; font-size: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-three__beam,
  .lp-three__fallback::before,
  .lp-three__fallback::after,
  .lp-three__eyebrow i,
  .lp-three__trigger { animation: none; }
  .lp-three__canvas { transition: opacity 0.2s ease; transform: none; }
}

/* ---------- Three.js long-form landing-page system ---------- */
.lp-three__ticker {
  position: relative;
  overflow: hidden;
  margin: 28px -24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 1, 17, 0.56);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lp-three__ticker > div {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  animation: lp-three-ticker 26s linear infinite;
}
.lp-three__ticker i { color: var(--three-accent); font-style: normal; text-shadow: 0 0 12px var(--three-accent); }

.lp-three__editorial { padding: 116px 0 54px; }
.lp-three__section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 26px 68px;
  align-items: end;
  margin-bottom: 52px;
}
.lp-three__section-head > span,
.lp-three__journey-copy > span,
.lp-three__final-copy > span,
.lp-three__bento-label {
  color: var(--three-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.lp-three__section-head h2,
.lp-three__journey h2,
.lp-three__final-card h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 5.1vw, 68px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -3px;
  text-wrap: balance;
}
.lp-three__section-head > span { align-self: start; padding-top: 9px; }
.lp-three__section-head p {
  grid-column: 2;
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 17px;
  line-height: 1.72;
}

.lp-three__bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}
.lp-three__bento-feature,
.lp-three__bento-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(18, 2, 31, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 55px rgba(0, 0, 0, 0.18);
}
.lp-three__bento-feature::before,
.lp-three__bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 100% 0%, rgba(var(--three-accent-rgb), 0.17), transparent 42%);
}
.lp-three__bento-feature {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
  border-radius: 28px;
}
.lp-three__bento-feature > div:not(.lp-three__bento-orbit),
.lp-three__metrics { position: relative; z-index: 2; }
.lp-three__bento-feature h3 {
  max-width: 540px;
  margin: 15px 0 18px;
  color: #fff;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -2px;
  text-wrap: balance;
}
.lp-three__bento-feature p {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.7;
}
.lp-three__bento-orbit {
  position: absolute;
  right: -74px;
  bottom: 70px;
  width: 300px;
  aspect-ratio: 1;
  border: 1px solid rgba(var(--three-accent-rgb), 0.36);
  border-radius: 50%;
  box-shadow: 0 0 85px rgba(var(--three-accent-rgb), 0.15), inset 0 0 70px rgba(var(--three-accent-rgb), 0.08);
  transform: rotateX(63deg) rotateZ(-14deg);
  animation: lp-three-orbit 12s linear infinite;
}
.lp-three__bento-orbit::before,
.lp-three__bento-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
}
.lp-three__bento-orbit::before { inset: 38px; }
.lp-three__bento-orbit::after { inset: 88px; background: radial-gradient(circle at 35% 30%, #fff8cf, var(--three-accent) 28%, #210334 72%); box-shadow: 0 0 34px rgba(var(--three-accent-rgb), 0.52); }
.lp-three__bento-orbit span {
  position: absolute;
  z-index: 2;
  width: 22px;
  height: 22px;
  border: 4px solid #ffeaa3;
  border-radius: 50%;
  background: var(--three-accent);
  box-shadow: 0 0 22px var(--three-accent);
}
.lp-three__bento-orbit span:nth-child(1) { top: 12px; left: 50%; }
.lp-three__bento-orbit span:nth-child(2) { right: 24px; bottom: 56px; width: 15px; height: 15px; }
.lp-three__bento-orbit span:nth-child(3) { left: 31px; bottom: 46px; width: 11px; height: 11px; }

.lp-three__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(100%, 510px);
  margin: 38px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}
.lp-three__metrics div { padding-top: 20px; }
.lp-three__metrics dt { color: #fff; font-size: 24px; font-weight: 950; line-height: 1; }
.lp-three__metrics dd { margin: 7px 0 0; color: rgba(255, 255, 255, 0.42); font-size: 9px; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase; }

.lp-three__bento-card {
  grid-column: span 5;
  min-height: 162px;
  display: grid;
  grid-template-columns: 68px 1fr;
  grid-template-rows: auto 1fr;
  gap: 5px 20px;
  padding: 28px;
  border-radius: 22px;
  transition: top 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  top: 0;
}
.lp-three__bento-card:hover {
  top: -4px;
  border-color: rgba(var(--three-accent-rgb), 0.42);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28), 0 0 36px rgba(var(--three-accent-rgb), 0.08);
}
.lp-three__bento-index {
  grid-row: 1 / 3;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: var(--three-accent);
  font: 900 20px/1 Georgia, serif;
  border: 1px solid rgba(var(--three-accent-rgb), 0.38);
  border-radius: 18px;
  background: rgba(var(--three-accent-rgb), 0.08);
  box-shadow: inset 0 0 20px rgba(var(--three-accent-rgb), 0.08);
}
.lp-three__bento-card h3 { position: relative; z-index: 2; margin: 1px 0 0; color: #fff; font-size: 20px; font-weight: 900; line-height: 1.2; }
.lp-three__bento-card p { position: relative; z-index: 2; margin: 3px 0 0; color: rgba(255, 255, 255, 0.5); font-size: 13px; line-height: 1.55; }

.lp-three__journey {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: 70px;
  align-items: center;
  margin: 68px 0 100px;
  padding: 66px 62px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0% 50%, rgba(var(--three-accent-rgb), 0.16), transparent 37%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.lp-three__journey h2 { margin-top: 14px; font-size: clamp(36px, 4.4vw, 58px); }
.lp-three__journey-copy p { max-width: 480px; margin: 20px 0 0; color: rgba(255, 255, 255, 0.52); font-size: 15px; line-height: 1.65; }
.lp-three__steps { list-style: none; margin: 0; padding: 0; }
.lp-three__steps li {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 22px;
  padding: 21px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.lp-three__steps li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.lp-three__steps b {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--three-accent);
  font-size: 12px;
  letter-spacing: 1px;
  border: 1px solid rgba(var(--three-accent-rgb), 0.38);
  border-radius: 50%;
  background: rgba(var(--three-accent-rgb), 0.07);
}
.lp-three__steps span { color: rgba(255, 255, 255, 0.84); font-size: 18px; font-weight: 800; }

.lp-three__final-card {
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(320px, 1fr) minmax(220px, 0.38fr);
  gap: 34px;
  align-items: center;
  overflow: hidden;
  margin-bottom: 38px;
  padding: 48px 52px;
  border: 1px solid rgba(var(--three-accent-rgb), 0.34);
  border-radius: 30px;
  background:
    linear-gradient(100deg, rgba(var(--three-accent-rgb), 0.16), rgba(23, 3, 39, 0.9) 48%, rgba(8, 1, 17, 0.96)),
    #12021f;
  box-shadow: 0 32px 76px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.lp-three__final-card::after {
  content: "";
  position: absolute;
  top: -100%;
  right: 18%;
  width: 2px;
  height: 300%;
  transform: rotate(26deg);
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.35), transparent);
  box-shadow: 0 0 50px 14px rgba(var(--three-accent-rgb), 0.12);
}
.lp-three__final-mark {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 118px;
  aspect-ratio: 1;
  color: var(--three-accent);
  font: 950 44px/1 Georgia, serif;
  border: 1px solid rgba(var(--three-accent-rgb), 0.54);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, rgba(255,255,255,.18), rgba(var(--three-accent-rgb), 0.13) 34%, rgba(8,1,17,.82) 72%);
  box-shadow: 0 0 46px rgba(var(--three-accent-rgb), 0.21), inset 0 0 32px rgba(var(--three-accent-rgb), 0.13);
}
.lp-three__final-copy { position: relative; z-index: 2; }
.lp-three__final-card h2 { margin: 12px 0 13px; font-size: clamp(30px, 3.2vw, 45px); }
.lp-three__final-copy p { max-width: 660px; margin: 0; color: rgba(255, 255, 255, 0.53); font-size: 13px; line-height: 1.6; }
.lp-three__final-action { position: relative; z-index: 3; text-align: center; }
.lp-three__final-action .lp-cta-query { margin: 0; }
.lp-three__final-action .lp-btn { min-width: 210px; padding: 15px 28px; white-space: nowrap; }
.lp-three__final-action small { display: block; margin-top: 12px; color: rgba(255, 255, 255, 0.36); font-size: 9px; }

@keyframes lp-three-ticker { to { transform: translateX(-50%); } }
@keyframes lp-three-orbit { to { transform: rotateX(63deg) rotateZ(346deg); } }

@media (max-width: 980px) {
  .lp-three__editorial { padding-top: 90px; }
  .lp-three__section-head { grid-template-columns: 1fr; gap: 20px; }
  .lp-three__section-head p { grid-column: 1; }
  .lp-three__bento-feature { grid-column: 1 / -1; min-height: 460px; }
  .lp-three__bento-card { grid-column: span 4; display: block; }
  .lp-three__bento-index { margin-bottom: 20px; }
  .lp-three__journey { grid-template-columns: 1fr; gap: 40px; }
  .lp-three__final-card { grid-template-columns: 96px 1fr; }
  .lp-three__final-mark { width: 90px; }
  .lp-three__final-action { grid-column: 2; text-align: left; }
  .lp-three__final-action .lp-cta-query .wp-block-post-template { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .lp-three__ticker { margin: 22px -12px 0; }
  .lp-three__ticker > div { gap: 20px; padding: 12px 0; font-size: 8px; }
  .lp-three__editorial { padding: 72px 0 34px; }
  .lp-three__section-head { margin-bottom: 32px; }
  .lp-three__section-head h2,
  .lp-three__journey h2 { font-size: 39px; letter-spacing: -2px; }
  .lp-three__section-head p { font-size: 14px; line-height: 1.62; }
  .lp-three__bento { display: block; }
  .lp-three__bento-feature,
  .lp-three__bento-card { min-height: 0; margin-bottom: 12px; padding: 27px 24px; border-radius: 20px; }
  .lp-three__bento-feature { min-height: 440px; }
  .lp-three__bento-feature h3 { font-size: 34px; }
  .lp-three__bento-orbit { right: -92px; bottom: 76px; width: 260px; }
  .lp-three__metrics { grid-template-columns: repeat(3, 1fr); margin-top: 180px; }
  .lp-three__metrics dt { font-size: 20px; }
  .lp-three__metrics dd { font-size: 7px; letter-spacing: 0.7px; }
  .lp-three__bento-card { display: grid; grid-template-columns: 58px 1fr; padding: 22px; }
  .lp-three__bento-index { width: 52px; height: 52px; margin: 0; border-radius: 15px; font-size: 17px; }
  .lp-three__bento-card h3 { font-size: 18px; }
  .lp-three__bento-card p { font-size: 12px; }
  .lp-three__journey { gap: 28px; margin: 52px 0 64px; padding: 34px 24px; border-radius: 22px; }
  .lp-three__journey-copy p { font-size: 13px; }
  .lp-three__steps li { grid-template-columns: 49px 1fr; gap: 15px; padding: 16px 0; }
  .lp-three__steps b { width: 44px; height: 44px; }
  .lp-three__steps span { font-size: 14px; }
  .lp-three__final-card { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; border-radius: 22px; text-align: left; }
  .lp-three__final-mark { width: 76px; font-size: 29px; }
  .lp-three__final-action { grid-column: 1; width: 100%; }
  .lp-three__final-action .lp-cta-query .wp-block-post-template { justify-content: stretch; }
  .lp-three__final-action .metafield_block,
  .lp-three__final-action .lp-btn { display: block; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .lp-three__ticker > div,
  .lp-three__bento-orbit { animation: none; }
}

/* ---------- Focused casino mini-game ---------- */
.lp-wrap--three {
  max-width: 940px;
  padding-right: 20px;
  padding-left: 20px;
}

.lp-three {
  margin: clamp(12px, 2.5vh, 28px) auto 34px;
}

.lp-three__shell {
  height: clamp(650px, calc(100svh - 132px), 760px);
  min-height: 650px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 47, 214, 0.2), transparent 34%),
    radial-gradient(circle at 22% 78%, rgba(43, 239, 139, 0.12), transparent 26%),
    linear-gradient(145deg, #19032b 0%, #0c0117 48%, #160124 100%);
  box-shadow:
    0 44px 110px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(var(--three-accent-rgb), 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.lp-three__shell::before {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(10, 1, 19, 0.9) 0%, rgba(10, 1, 19, 0.28) 25%, transparent 44%, transparent 63%, rgba(10, 1, 19, 0.9) 88%, #0a0113 100%),
    radial-gradient(circle at 50% 50%, transparent 36%, rgba(8, 0, 15, 0.44) 100%),
    repeating-linear-gradient(90deg, transparent 0 89px, rgba(255, 255, 255, 0.014) 90px);
}

.lp-three__shell::after {
  inset: 11px;
  z-index: 12;
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 25px;
}

.lp-three__beam {
  top: 5%;
  right: -10%;
  width: 120%;
  height: 75%;
  opacity: 0.24;
  transform: rotate(-12deg);
  background: linear-gradient(90deg, transparent 18%, rgba(var(--three-accent-rgb), 0.22), transparent 74%);
  filter: blur(34px);
}

.lp-three__scene {
  inset: 0;
  z-index: 1;
}

.lp-three__canvas {
  transform: scale(0.92);
  filter: saturate(1.18) contrast(1.05) drop-shadow(0 22px 28px rgba(0, 0, 0, 0.42));
}

.is-three-ready .lp-three__canvas {
  transform: scale(1);
}

.lp-three.is-playing .lp-three__canvas {
  filter: saturate(1.48) contrast(1.1) drop-shadow(0 24px 35px rgba(0, 0, 0, 0.5));
}

.lp-three.is-complete .lp-three__canvas {
  opacity: 0.34;
  transform: scale(1.06);
  filter: saturate(0.75) contrast(1.05) blur(3px);
}

.lp-three__hud {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: auto;
  min-height: 0;
  padding: 42px 54px 32px;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.lp-three__intro,
.lp-three__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  transition: opacity 0.34s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.34s ease;
}

.lp-three__intro {
  max-width: 760px;
  margin: 0 auto;
}

.lp-three__controls {
  max-width: 660px;
  margin: 0 auto;
  pointer-events: auto;
}

.lp-three__eyebrow {
  margin-bottom: 11px;
  padding: 7px 13px;
  color: #fff3bf;
  font-size: 10px;
  letter-spacing: 2.4px;
  border: 1px solid rgba(255, 212, 71, 0.32);
  border-radius: 999px;
  background: rgba(13, 1, 23, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 24px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.lp-three__eyebrow i {
  width: 6px;
  height: 6px;
  color: var(--three-secondary);
}

.lp-three__title {
  max-width: 760px;
  font-size: clamp(40px, 6.2vw, 67px);
  line-height: 0.94;
  letter-spacing: -3.4px;
  text-transform: uppercase;
  text-shadow: 0 9px 35px rgba(0, 0, 0, 0.72), 0 0 42px rgba(var(--three-accent-rgb), 0.16);
}

.lp-three__title::after {
  display: none;
}

.lp-three__subtitle {
  max-width: 590px;
  margin: 13px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.lp-three__trigger {
  position: relative;
  width: auto;
  min-width: 258px;
  min-height: 62px;
  margin: 0;
  padding: 17px 30px;
  overflow: hidden;
  color: #07180e;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: linear-gradient(110deg, #21da79, #a9ffd3 49%, #35f398 72%, #21da79);
  background-size: 220% 100%;
  box-shadow: 0 7px 0 #0c8a4a, 0 17px 42px rgba(43, 239, 139, 0.38), inset 0 1px 0 #fff;
  animation: lp-three-cta 3.8s ease-in-out infinite, lp-three-button-breathe 2.5s ease-in-out infinite;
}

.lp-three__trigger::before {
  content: "";
  position: absolute;
  inset: -20% auto -20% -35%;
  width: 25%;
  transform: skewX(-24deg);
  background: rgba(255, 255, 255, 0.55);
  filter: blur(6px);
  transition: left 0.55s ease;
}

.lp-three__trigger:hover::before {
  left: 112%;
}

.lp-three__trigger svg {
  width: 23px;
  height: 23px;
  transition: transform 0.3s ease;
}

.lp-three.is-playing .lp-three__trigger {
  opacity: 1;
  cursor: wait;
  filter: saturate(0.85);
  animation: none;
}

.lp-three.is-playing .lp-three__trigger svg {
  transform: rotate(720deg);
  transition-duration: 2.6s;
}

.lp-three__proof {
  justify-content: center;
  gap: 7px 18px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}

.lp-three__proof b {
  color: var(--three-secondary);
}

.lp-three__micro {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  letter-spacing: 0.25px;
}

.lp-three__pointer {
  position: absolute;
  z-index: 6;
  top: 20.5%;
  left: 50%;
  width: 32px;
  height: 45px;
  transform: translateX(-50%);
  transform-origin: 50% 0;
  filter: drop-shadow(0 0 13px rgba(255, 212, 71, 0.75));
  transition: opacity 0.3s ease, transform 0.45s ease;
}

.lp-three__pointer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 22px;
  height: 22px;
  transform: translateX(-50%);
  border: 4px solid #fff1ae;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #ffd447 32%, #9f5a00 76%);
  box-shadow: inset 0 0 8px rgba(77, 30, 0, 0.6);
}

.lp-three__pointer span {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-top: 25px solid #ffd447;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
}

.lp-three.is-playing .lp-three__pointer {
  animation: lp-three-pointer 0.14s ease-in-out infinite alternate;
}

.lp-three.is-complete .lp-three__pointer,
.lp-three.is-complete .lp-three__intro,
.lp-three.is-complete .lp-three__controls {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lp-three.is-complete .lp-three__intro {
  transform: translateY(-18px);
}

.lp-three.is-complete .lp-three__controls {
  transform: translateY(18px);
}

.lp-three__result {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(510px, calc(100% - 54px));
  padding: 34px 38px 30px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--three-accent-rgb), 0.2), transparent 40%),
    rgba(14, 1, 25, 0.88);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.58), 0 0 70px rgba(var(--three-accent-rgb), 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px) saturate(1.25);
  transform: translate(-50%, -44%) scale(0.82);
  transition: opacity 0.45s ease 0.12s, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.12s, visibility 0.45s ease 0.12s;
}

.lp-three__result:focus {
  outline: none;
}

.lp-three.is-complete .lp-three__result {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.lp-three__result-kicker {
  color: var(--three-secondary);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

.lp-three__result-logo,
.lp-three__result-monogram {
  display: grid;
  place-items: center;
  width: 164px;
  height: 88px;
  margin: 18px auto 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.lp-three__result-logo img {
  width: auto;
  max-width: 142px;
  max-height: 68px;
  margin: auto;
}

.lp-three__result-monogram {
  color: #20042f;
  font-size: 46px;
  font-weight: 950;
  background: linear-gradient(145deg, #fff4bd, var(--three-accent));
}

.lp-three__result h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: -2.4px;
  text-wrap: balance;
}

.lp-three__result-offer {
  max-width: 420px;
  margin: 12px 0 0;
  color: #ffe899;
  font-size: clamp(19px, 2.6vw, 25px);
  font-weight: 900;
  line-height: 1.16;
}

.lp-three__result-action,
.lp-three__result-action .lp-cta-query {
  width: 100%;
  margin: 20px 0 0;
}

.lp-three__result-action .wp-block-post-template {
  justify-content: center;
}

.lp-three__result-action .metafield_block {
  width: min(100%, 320px);
}

.lp-three__result-action .lp-btn,
.lp-three__result-action .wp-block-button__link {
  display: block;
  width: 100%;
  padding: 16px 24px;
  color: #19051f;
  font-weight: 950;
  border-radius: 999px;
  background: linear-gradient(110deg, #ffd447, #fff1a2 52%, #ffd447);
  box-shadow: 0 7px 0 #9e6800, 0 18px 36px rgba(255, 212, 71, 0.25);
}

.lp-three__result small {
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  letter-spacing: 0.2px;
}

.lp-three__confetti {
  position: absolute;
  inset: 0;
  z-index: 11;
  overflow: hidden;
  pointer-events: none;
}

.lp-three__confetti i {
  position: absolute;
  top: 43%;
  left: 50%;
  width: 8px;
  height: 15px;
  opacity: 0;
  border-radius: 2px;
  background: var(--confetti-color);
  box-shadow: 0 0 10px color-mix(in srgb, var(--confetti-color) 55%, transparent);
  animation: lp-three-confetti 2.1s cubic-bezier(0.2, 0.72, 0.2, 1) var(--confetti-delay) both;
}

.lp-three__confetti i:nth-child(3n) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.lp-three__confetti i:nth-child(4n) {
  width: 5px;
  height: 19px;
}

.lp-three.is-playing .lp-three__beam {
  opacity: 0.82;
  animation-duration: 0.9s;
}

.lp-three.is-complete .lp-three__shell {
  border-color: rgba(var(--three-accent-rgb), 0.55);
}

.lp-three.is-complete .lp-three__shell::after {
  animation: lp-three-result-flash 1.15s ease-out both;
}

@keyframes lp-three-button-breathe {
  50% { transform: translateY(-2px); box-shadow: 0 9px 0 #0c8a4a, 0 23px 52px rgba(43, 239, 139, 0.46), inset 0 1px 0 #fff; }
}

@keyframes lp-three-pointer {
  from { transform: translateX(-50%) rotate(-7deg); }
  to { transform: translateX(-50%) rotate(7deg); }
}

@keyframes lp-three-confetti {
  0% { opacity: 0; transform: translate(-50%, 0) scale(0.45) rotate(0); }
  12% { opacity: 1; }
  100% { opacity: 0; transform: translate(calc(-50% + var(--confetti-x)), 390px) scale(1) rotate(var(--confetti-r)); }
}

@keyframes lp-three-result-flash {
  0% { box-shadow: inset 0 0 0 rgba(var(--three-accent-rgb), 0); }
  22% { box-shadow: inset 0 0 100px rgba(var(--three-accent-rgb), 0.38), 0 0 48px rgba(var(--three-accent-rgb), 0.34); }
  100% { box-shadow: inset 0 0 38px rgba(var(--three-accent-rgb), 0.08); }
}

@media (max-width: 640px) {
  .lp-wrap--three {
    max-width: none;
    padding-right: 10px;
    padding-left: 10px;
  }

  .lp-three {
    margin-top: 7px;
    margin-bottom: 22px;
  }

  .lp-three__shell {
    height: 690px;
    min-height: 690px;
    border-radius: 24px;
  }

  .lp-three__shell::after {
    inset: 7px;
    border-radius: 18px;
  }

  .lp-three__hud {
    min-height: 0;
    padding: 28px 20px 24px;
  }

  .lp-three__eyebrow {
    margin-bottom: 9px;
    padding: 6px 10px;
    font-size: 8px;
    letter-spacing: 1.8px;
  }

  .lp-three__title {
    max-width: 360px;
    font-size: clamp(35px, 10.8vw, 47px);
    line-height: 0.95;
    letter-spacing: -2.2px;
  }

  .lp-three__subtitle {
    max-width: 340px;
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.42;
  }

  .lp-three__pointer {
    top: 22%;
    transform: translateX(-50%) scale(0.82);
  }

  .lp-three__trigger {
    width: min(100%, 310px);
    min-width: 0;
    min-height: 58px;
    padding: 15px 22px;
    font-size: 13px;
  }

  .lp-three__proof {
    gap: 6px 11px;
    margin-top: 15px;
    font-size: 8px;
    letter-spacing: 0.25px;
  }

  .lp-three__micro {
    margin-top: 7px;
    font-size: 8px;
  }

  .lp-three__result {
    width: calc(100% - 32px);
    padding: 28px 20px 25px;
    border-radius: 22px;
  }

  .lp-three__result-logo,
  .lp-three__result-monogram {
    width: 142px;
    height: 76px;
    margin: 15px auto 14px;
    border-radius: 15px;
  }

  .lp-three__result-logo img {
    max-width: 122px;
    max-height: 58px;
  }

  .lp-three__result h2 {
    font-size: 38px;
    letter-spacing: -1.8px;
  }

  .lp-three__result-offer {
    font-size: 19px;
  }

  .lp-three__result-action,
  .lp-three__result-action .lp-cta-query {
    margin-top: 17px;
  }
}

@media (max-height: 720px) and (min-width: 641px) {
  .lp-three__shell {
    height: 600px;
    min-height: 600px;
  }

  .lp-three__hud {
    padding-top: 28px;
    padding-bottom: 22px;
  }

  .lp-three__title {
    font-size: 48px;
  }

  .lp-three__subtitle {
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-three__intro,
  .lp-three__controls,
  .lp-three__result,
  .lp-three__pointer,
  .lp-three__canvas {
    transition-duration: 0.01ms;
  }

  .lp-three__confetti {
    display: none;
  }

  .lp-three__trigger {
    animation: none;
  }
}
