:root {
  --page-bg: #f6efe6;
  --page-bg-deep: #ead9c7;
  --surface: rgba(255, 249, 241, 0.72);
  --surface-strong: rgba(255, 252, 248, 0.9);
  --surface-border: rgba(110, 74, 41, 0.18);
  --frame-bg: #1d1613;
  --frame-accent: #c08f62;
  --text: #221611;
  --muted: #6d5342;
  --headline: #3a2217;
  --glow: rgba(194, 136, 84, 0.3);
  --shadow-soft: 0 28px 70px rgba(71, 37, 13, 0.12);
  --shadow-strong: 0 34px 90px rgba(47, 23, 8, 0.18);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  overflow-x: hidden;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(208, 149, 88, 0.22), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(236, 212, 180, 0.6), transparent 18%),
    radial-gradient(circle at bottom right, rgba(139, 78, 31, 0.12), transparent 22%),
    linear-gradient(180deg, #fbf7f2 0%, var(--page-bg) 44%, var(--page-bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 88%);
}

.ritual-page {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 72px;
  overflow: visible;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  pointer-events: none;
}

.ambient-one {
  top: 34px;
  left: -32px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 154, 103, 0.46), transparent 72%);
}

.ambient-two {
  right: -54px;
  bottom: 74px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(138, 80, 35, 0.24), transparent 72%);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  margin: 0 auto 26px;
  padding: 18px 0 8px;
}

.hero h1 {
  margin: 0;
  max-width: none;
  font-family: Georgia, serif;
  font-size: clamp(2.95rem, 5vw, 4.95rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.02em;
  color: var(--headline);
  background: linear-gradient(180deg, #8f4b24 0%, #bf7d53 48%, #5f3525 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
  text-shadow: 0 8px 24px rgba(138, 79, 33, 0.1);
}

.subtext {
  margin: 0;
  max-width: 32ch;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: var(--muted);
  text-wrap: balance;
}

.video-stage {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  justify-items: center;
}

.video-card {
  position: relative;
  width: min(1040px, 100%);
  padding: 18px;
  border-radius: calc(var(--radius-xl) + 6px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 248, 239, 0.54)),
    var(--surface);
  border: 1px solid rgba(138, 92, 58, 0.18);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
}

.video-card-border {
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius-xl) - 2px);
  border: 1px solid rgba(185, 134, 88, 0.26);
  pointer-events: none;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(19, 13, 10, 0.36), rgba(19, 13, 10, 0.08)),
    var(--frame-bg);
  box-shadow:
    inset 0 0 0 1px rgba(255, 237, 218, 0.08),
    inset 0 -32px 60px rgba(0, 0, 0, 0.16),
    0 22px 60px rgba(34, 18, 10, 0.28);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-backdrop {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 214, 171, 0.94), rgba(255, 214, 171, 0.12) 20%, transparent 36%),
    linear-gradient(180deg, #d8b28e 0%, #9e6240 46%, #4f3023 76%, #1e1715 100%);
}

.video-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 96%, rgba(255, 192, 135, 0.28), transparent 24%),
    linear-gradient(180deg, transparent 52%, rgba(28, 18, 14, 0.12) 68%, rgba(18, 11, 10, 0.42) 100%);
}

.video-backdrop::after {
  content: "";
  position: absolute;
  inset: auto 8% 10%;
  height: 32%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 235, 214, 0.16), transparent 52%),
    linear-gradient(180deg, rgba(255, 211, 168, 0.22), transparent 76%);
  filter: blur(20px);
}

.video-backdrop-sun,
.video-backdrop-glow,
.play-pill,
.backdrop-sheen,
.control-strip {
  position: absolute;
}

.video-backdrop-sun {
  top: 17%;
  width: min(15vw, 144px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #fff6ea 0%, #ffd9b4 42%, rgba(255, 217, 180, 0.08) 72%);
  box-shadow: 0 0 60px rgba(255, 214, 178, 0.36);
}

.video-backdrop-glow {
  inset: 10% 14% auto;
  height: 54%;
  background: radial-gradient(circle at center, rgba(255, 225, 190, 0.14), transparent 56%);
  filter: blur(14px);
}

.play-pill {
  display: grid;
  place-items: center;
  width: clamp(84px, 10vw, 110px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.94), rgba(247, 229, 210, 0.72)),
    rgba(255, 250, 245, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 18px 40px rgba(49, 23, 8, 0.24),
    inset 0 -10px 20px rgba(196, 147, 102, 0.18);
}

.play-icon {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid rgba(76, 44, 28, 0.92);
}

.backdrop-sheen {
  inset: 0;
  background:
    linear-gradient(124deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.02) 28%, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 26%);
}

.control-strip {
  left: clamp(18px, 3vw, 30px);
  right: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 26px);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(14, 10, 8, 0.4), rgba(14, 10, 8, 0.68));
  border: 1px solid rgba(255, 235, 218, 0.12);
  backdrop-filter: blur(12px);
}

.control-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff0e1;
  box-shadow: 0 0 14px rgba(255, 232, 206, 0.9);
}

.progress-track {
  flex: 1;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.22);
}

.progress-fill {
  display: block;
  width: 36%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f7d6b1 0%, #f3b886 100%);
}

.control-time {
  color: rgba(255, 240, 228, 0.86);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.ornament {
  width: 160px;
  color: rgba(120, 75, 42, 0.56);
}

.ornament svg {
  width: 100%;
  height: auto;
}

.ornament path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.offer-reveal[hidden] {
  display: none;
}

.offer-reveal {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin: -56px calc(50% - 50vw) 0;
  padding: clamp(58px, 8vw, 88px) 0 clamp(76px, 10vw, 112px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 199, 103, 0.16), transparent 26%),
    radial-gradient(circle at 84% 10%, rgba(255, 151, 52, 0.1), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(207, 128, 37, 0.12), transparent 30%),
    linear-gradient(180deg, #080706 0%, #0c0a09 38%, #060505 100%);
  box-shadow:
    0 46px 130px rgba(3, 3, 5, 0.58),
    inset 0 1px 0 rgba(255, 245, 222, 0.04);
}

.offer-reveal::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 216, 149, 0.4), transparent);
}

.offer-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 130px 130px;
  opacity: 0.22;
  mask-image: radial-gradient(circle at center, black 56%, transparent 94%);
}

.offer-shell {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.offer-rule {
  position: relative;
  height: 1px;
  margin-bottom: 38px;
  background: linear-gradient(90deg, transparent, rgba(246, 204, 125, 0.46), transparent);
}

.offer-rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  height: 110px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 191, 88, 0.18), transparent 72%);
  filter: blur(10px);
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: 30px;
  align-items: start;
}

.offer-reveal.is-visible .offer-shell {
  animation: offer-rise 650ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.offer-story {
  position: relative;
  min-width: 0;
}

.offer-kicker,
.offer-mini-label,
.offer-rail-kicker {
  margin: 0 0 14px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 205, 129, 0.88);
}

.offer-story h2 {
  position: relative;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: #fff2d5;
  text-shadow:
    0 0 22px rgba(247, 197, 116, 0.08),
    0 16px 42px rgba(0, 0, 0, 0.36);
}

.offer-lead {
  position: relative;
  margin: 20px 0 0;
  max-width: 40rem;
  font-size: clamp(1.14rem, 1.9vw, 1.38rem);
  line-height: 1.72;
  color: rgba(255, 244, 221, 0.88);
}

.offer-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.offer-proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(246, 209, 134, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.018);
  color: rgba(255, 234, 198, 0.84);
  font-size: 0.86rem;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 24px rgba(0, 0, 0, 0.16);
}

.offer-copy-stack {
  margin-top: 30px;
  display: grid;
  gap: 20px;
  max-width: 44rem;
}

.offer-copy-stack p,
.offer-detail-card p,
.offer-guarantee p,
.offer-urgency p {
  margin: 0;
  color: rgba(248, 235, 214, 0.74);
  font-size: 1rem;
  line-height: 1.86;
}

.offer-rail {
  min-width: 0;
}

.offer-proof-list {
  position: sticky;
  top: 26px;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: clamp(24px, 4vw, 32px);
  list-style: none;
  counter-reset: offer-proof;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 199, 103, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(17, 14, 11, 0.97), rgba(8, 8, 8, 0.98));
  border: 1px solid rgba(246, 209, 134, 0.14);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.offer-proof-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 237, 212, 0.78);
  font-size: 0.97rem;
  line-height: 1.68;
}

.offer-proof-item::before {
  counter-increment: offer-proof;
  content: counter(offer-proof, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffe8a9 0%, #d39a2b 100%);
  color: #20150b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow:
    0 0 18px rgba(255, 192, 78, 0.34),
    0 12px 24px rgba(0, 0, 0, 0.22);
}

.offer-program {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: start;
  margin-top: 32px;
}

.offer-guarantee-hero,
.offer-program-panel,
.offer-buy-card,
.offer-detail-card,
.offer-guarantee {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(246, 209, 134, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(18, 15, 12, 0.97), rgba(8, 8, 8, 0.98));
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.offer-guarantee-hero::before,
.offer-program-panel::before,
.offer-buy-card::before,
.offer-detail-card::before,
.offer-guarantee::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(252, 214, 140, 0.5), transparent);
}

.offer-guarantee-hero {
  margin-top: 34px;
  padding: clamp(30px, 4vw, 44px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(246, 197, 112, 0.08), transparent 24%),
    radial-gradient(circle at 14% 24%, rgba(255, 183, 77, 0.035), transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(255, 183, 77, 0.03), transparent 24%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.985), rgba(3, 3, 5, 0.995));
  box-shadow:
    0 30px 72px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.offer-guarantee-seal {
  width: min(220px, 48vw);
  margin: 0 auto 18px;
}

.offer-guarantee-seal svg {
  width: 100%;
  height: auto;
}

.offer-guarantee-seal-rays line {
  stroke: #c9a86c;
  stroke-linecap: round;
  stroke-width: 3;
}

.offer-guarantee-seal-ring {
  fill: none;
  stroke: #c9a86c;
  stroke-width: 1.5;
}

.offer-guarantee-seal-ring-inner {
  fill: none;
  stroke: rgba(201, 168, 108, 0.25);
  stroke-width: 1;
}

.offer-guarantee-seal-heart {
  fill: #c9174d;
  stroke: #ff6b8a;
  stroke-width: 1.5;
}

.offer-guarantee-seal-save,
.offer-guarantee-seal-marriage,
.offer-guarantee-seal-guarantee {
  fill: #fff4e8;
  font-family: Georgia, serif;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.offer-guarantee-seal-save {
  font-size: 22px;
}

.offer-guarantee-seal-your {
  fill: rgba(255, 244, 232, 0.5);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.offer-guarantee-seal-marriage {
  fill: #c9a86c;
  font-size: 17px;
}

.offer-guarantee-seal-bar {
  fill: #1a3a8f;
}

.offer-guarantee-seal-bar-edge {
  fill: #122870;
}

.offer-guarantee-seal-guarantee {
  fill: #ffd700;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
}

.offer-guarantee-seal-star {
  fill: #ffd700;
  font-size: 9px;
}

.offer-guarantee-hero h3 {
  margin: 0;
  color: #fff4e8;
  font-family: Georgia, serif;
  font-size: clamp(2.05rem, 4vw, 3rem);
  line-height: 1.14;
  text-wrap: balance;
}

.offer-guarantee-intro {
  margin: 20px auto 0;
  max-width: 34rem;
  color: rgba(255, 244, 232, 0.6);
  font-size: 1rem;
  line-height: 1.72;
}

.offer-guarantee-panel {
  margin: 28px auto 0;
  max-width: 780px;
  padding: clamp(22px, 4vw, 30px);
  border-radius: 24px;
  border: 1px solid rgba(201, 168, 108, 0.2);
  background:
    radial-gradient(circle at top right, rgba(201, 168, 108, 0.04), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    rgba(8, 8, 10, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 36px rgba(0, 0, 0, 0.24);
  text-align: left;
}

.offer-guarantee-panel p {
  margin: 0;
  color: rgba(255, 244, 232, 0.75);
  font-size: 1rem;
  line-height: 1.8;
}

.offer-guarantee-panel p + p {
  margin-top: 16px;
}

.offer-guarantee-panel strong {
  color: #fff4e8;
}

.offer-guarantee-hero-close {
  margin: 24px 0 0;
  color: #c9a86c;
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
}

.offer-guarantee-confidence {
  margin: 10px 0 0;
  color: rgba(255, 244, 232, 0.35);
  font-size: 0.92rem;
  line-height: 1.7;
}

.offer-program-panel {
  padding: clamp(26px, 4vw, 38px);
  background:
    radial-gradient(circle at top right, rgba(255, 187, 72, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(18, 15, 12, 0.97), rgba(8, 8, 8, 0.98));
}

.offer-panel-heading {
  display: grid;
  gap: 8px;
}

.offer-panel-heading h3,
.offer-detail-card h3,
.offer-guarantee h3,
.offer-buy-card h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.95rem, 2.7vw, 2.65rem);
  line-height: 1.02;
  color: #fff2d5;
}

.offer-includes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.offer-include-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-height: 100%;
  padding: 18px 18px 18px 20px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 238, 218, 0.84);
  font-size: 0.95rem;
  line-height: 1.58;
}

.offer-include-item::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffe8a9 0%, #d39a2b 100%);
  box-shadow:
    0 0 16px rgba(255, 196, 86, 0.32),
    0 0 28px rgba(255, 177, 49, 0.18);
}

.offer-buy-card {
  position: sticky;
  top: 26px;
  padding: clamp(28px, 4vw, 36px);
  background:
    radial-gradient(circle at top center, rgba(255, 195, 90, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(22, 18, 14, 0.98), rgba(8, 8, 8, 0.99));
}

.offer-rail-subtext {
  margin: 12px 0 0;
  color: rgba(248, 235, 214, 0.66);
  font-size: 0.98rem;
  line-height: 1.72;
}

.offer-price {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 14px 18px;
  margin-top: 24px;
}

.offer-price-strike {
  color: rgba(255, 241, 216, 0.34);
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: line-through;
}

.offer-price-now {
  font-family: Georgia, serif;
  font-size: clamp(3.8rem, 6vw, 5.5rem);
  line-height: 0.86;
  color: #ffe8b4;
  text-shadow:
    0 0 20px rgba(255, 205, 102, 0.18),
    0 0 40px rgba(255, 160, 38, 0.12);
}

.offer-price-note {
  margin: 10px 0 0;
  color: rgba(248, 235, 214, 0.62);
  font-size: 0.93rem;
  line-height: 1.72;
}

.offer-actions {
  position: relative;
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.offer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.93rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition:
    transform 200ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.offer-button:hover,
.offer-button:focus-visible {
  transform: translateY(-2px) scale(1.01);
}

.offer-button-primary {
  color: #1b1208;
  background: linear-gradient(180deg, #fff1b9 0%, #efbf56 46%, #c17e19 100%);
  border-color: rgba(255, 244, 194, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 0 24px rgba(255, 192, 70, 0.52),
    0 0 56px rgba(255, 166, 28, 0.2),
    0 20px 42px rgba(8, 8, 16, 0.46);
}

.offer-button-primary:hover,
.offer-button-primary:focus-visible {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 0 28px rgba(255, 200, 88, 0.62),
    0 0 70px rgba(255, 173, 34, 0.28),
    0 24px 46px rgba(8, 8, 16, 0.5);
}

.offer-button-secondary {
  color: #f6ddb0;
  background: linear-gradient(180deg, rgba(27, 22, 17, 0.96), rgba(12, 11, 10, 0.96));
  border-color: rgba(240, 189, 85, 0.48);
  box-shadow:
    inset 0 0 0 1px rgba(255, 239, 177, 0.06),
    0 0 18px rgba(240, 189, 85, 0.14),
    0 18px 34px rgba(8, 8, 16, 0.36);
}

.offer-neon-note {
  margin: 18px 0 0;
  color: rgba(255, 234, 194, 0.6);
  font-size: 0.82rem;
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.offer-urgency {
  margin-top: 22px;
  padding: 18px 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(246, 209, 134, 0.12);
  background: rgba(255, 255, 255, 0.028);
}

.offer-lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  margin-top: 30px;
}

.offer-detail-card,
.offer-guarantee {
  padding: clamp(22px, 4vw, 32px);
}

.offer-guarantee {
  background:
    radial-gradient(circle at top right, rgba(247, 197, 116, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(18, 15, 12, 0.97), rgba(8, 8, 8, 0.98));
}

.offer-guarantee-close {
  margin-top: 18px;
  font-family: Georgia, serif;
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  line-height: 1.1;
  color: #ffe8b4;
}

.offer-bonuses {
  margin-top: 42px;
}

.offer-bonuses-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.offer-bonus-kicker {
  margin: 0 0 14px;
  color: #c9a86c;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.offer-bonuses-heading h3 {
  margin: 0 0 16px;
  color: #fff4e8;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.2;
}

.offer-bonuses-heading h3 span {
  color: #c9a86c;
}

.offer-bonuses-copy {
  margin: 0 auto;
  max-width: 520px;
  color: rgba(255, 244, 232, 0.45);
  font-size: 1rem;
  line-height: 1.5;
}

.offer-bonuses-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.offer-bonuses-divider span {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 108, 0.55), transparent);
}

.offer-bonuses-divider i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9a86c;
  box-shadow: 0 0 16px rgba(201, 168, 108, 0.45);
}

.offer-bonuses-list {
  display: grid;
  gap: 48px;
}

.offer-bonus-card {
  overflow: hidden;
  border: 1px solid rgba(201, 168, 108, 0.15);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(201, 168, 108, 0.06), transparent 38%),
    linear-gradient(180deg, rgba(24, 11, 16, 0.96), rgba(15, 7, 11, 0.94));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.offer-bonus-card,
.offer-bonus-card.is-reversed {
  display: grid;
  grid-template-columns: minmax(280px, 2fr) minmax(0, 3fr);
}

.offer-bonus-card.is-reversed {
  grid-template-columns: minmax(0, 3fr) minmax(280px, 2fr);
}

.offer-bonus-media {
  position: relative;
  min-height: 260px;
  background: #0d0610;
}

.offer-bonus-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
}

.offer-bonus-card.is-reversed .offer-bonus-media {
  order: 2;
}

.offer-bonus-card.is-reversed .offer-bonus-body {
  order: 1;
}

.offer-bonus-media-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(13, 6, 16, 0.95));
  pointer-events: none;
}

.offer-bonus-card.is-reversed .offer-bonus-media-fade {
  background: linear-gradient(to left, transparent 60%, rgba(13, 6, 16, 0.95));
}

.offer-bonus-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(201, 168, 108, 0.4);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #c9a86c;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.offer-bonus-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 34px 36px;
}

.offer-bonus-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 14px;
}

.offer-bonus-emoji {
  font-size: 1.75rem;
  line-height: 1;
}

.offer-bonus-value {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(201, 168, 108, 0.3);
  border-radius: 999px;
  background: rgba(201, 168, 108, 0.12);
  color: #c9a86c;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-bonus-body h4 {
  margin: 0 0 6px;
  color: #fff4e8;
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1.15;
}

.offer-bonus-subtitle {
  margin: 0 0 14px;
  color: #c9a86c;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
}

.offer-bonus-tagline {
  margin: 0 0 18px;
  padding-left: 12px;
  border-left: 2px solid rgba(201, 168, 108, 0.3);
  color: rgba(255, 244, 232, 0.5);
  font-size: 0.92rem;
  font-style: italic;
  line-height: 1.7;
}

.offer-bonus-description {
  margin: 0 0 18px;
  color: rgba(255, 244, 232, 0.6);
  font-size: 0.95rem;
  line-height: 1.72;
}

.offer-bonus-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-bonus-points li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  color: rgba(255, 244, 232, 0.75);
  font-size: 0.95rem;
  line-height: 1.72;
}

.offer-bonus-points li::before {
  content: "\2713";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1px solid rgba(201, 168, 108, 0.3);
  border-radius: 50%;
  background: rgba(201, 168, 108, 0.15);
  color: #c9a86c;
  font-size: 0.8rem;
  font-weight: 700;
}

.is-ai-bonus img {
  object-position: center 48%;
  transform: scale(1.22);
  transform-origin: center;
}

.offer-bonuses-value {
  margin-top: 56px;
  padding: 32px;
  border: 1px solid rgba(201, 168, 108, 0.25);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(201, 168, 108, 0.08), rgba(201, 168, 108, 0.03));
  text-align: center;
}

.offer-bonuses-value-kicker {
  margin: 0 0 8px;
  color: rgba(255, 244, 232, 0.4);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.offer-bonuses-value-price {
  margin: 0 0 10px;
  color: rgba(255, 244, 232, 0.12);
  font-family: Georgia, serif;
  font-size: clamp(3rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: line-through;
}

.offer-bonuses-value-title {
  margin: 0 0 6px;
  color: #c9a86c;
  font-family: Georgia, serif;
  font-size: 1.16rem;
  font-weight: 700;
  line-height: 1.5;
}

.offer-bonuses-value-copy {
  margin: 0;
  color: rgba(255, 244, 232, 0.35);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 1040px) {
  .offer-program {
    grid-template-columns: 1fr;
  }

  .offer-buy-card {
    position: relative;
    top: auto;
  }

  .offer-bonus-card,
  .offer-bonus-card.is-reversed {
    grid-template-columns: 1fr;
  }

  .offer-bonus-card.is-reversed .offer-bonus-media,
  .offer-bonus-card.is-reversed .offer-bonus-body {
    order: initial;
  }
}

@media (max-width: 900px) {
  .ritual-page {
    width: min(100% - 22px, 1180px);
    padding-top: 30px;
    padding-bottom: 52px;
  }

  .hero {
    gap: 12px;
    margin-bottom: 22px;
  }

  .video-card {
    padding: 12px;
  }

  .video-card-border {
    inset: 7px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-proof-list {
    position: relative;
    top: auto;
  }

  .offer-includes,
  .offer-lower-grid {
    grid-template-columns: 1fr;
  }

  .offer-guarantee-hero {
    padding: 28px 22px 32px;
  }

  .offer-bonus-body {
    padding: 28px 26px 30px;
  }

  .offer-bonus-body h4 {
    font-size: 1.75rem;
  }
}

@media (max-width: 640px) {
  body::before {
    background-size: 88px 88px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .subtext {
    max-width: 20ch;
    font-size: 1rem;
    line-height: 1.75;
  }

  .video-card {
    padding: 10px;
    border-radius: 24px;
  }

  .video-card-border,
  .video-frame {
    border-radius: 20px;
  }

  .control-strip {
    gap: 10px;
    padding: 10px 12px;
  }

  .control-time {
    font-size: 0.75rem;
  }

  .ambient {
    display: none;
  }

  .offer-reveal {
    margin-top: -20px;
    padding-top: 46px;
    padding-bottom: 66px;
  }

  .offer-rule {
    margin-bottom: 30px;
  }

  .offer-story h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

  .offer-lead {
    font-size: 1.06rem;
    line-height: 1.65;
  }

  .offer-copy-stack p,
  .offer-detail-card p,
  .offer-guarantee p,
  .offer-urgency p {
    font-size: 0.97rem;
    line-height: 1.72;
  }

  .offer-proof-item {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 14px 15px;
  }

  .offer-proof-item::before {
    width: 38px;
    height: 38px;
  }

  .offer-guarantee-seal {
    width: min(188px, 56vw);
    margin-bottom: 14px;
  }

  .offer-guarantee-panel {
    padding: 20px 18px 22px;
  }

  .offer-guarantee-panel p {
    font-size: 0.97rem;
    line-height: 1.72;
  }

  .offer-button {
    width: 100%;
    padding-inline: 22px;
  }

  .offer-bonuses {
    margin-top: 34px;
  }

  .offer-bonuses-heading {
    margin-bottom: 24px;
  }

  .offer-bonuses-heading h3 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .offer-bonuses-copy,
  .offer-bonus-description,
  .offer-bonus-points li,
  .offer-bonuses-value-copy {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .offer-bonus-value {
    letter-spacing: 0.08em;
  }

  .offer-bonuses-value {
    margin-top: 40px;
    padding: 26px 22px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .ambient-one {
    animation: drift 12s ease-in-out infinite;
  }

  .ambient-two {
    animation: drift 14s ease-in-out infinite reverse;
  }

  .play-pill {
    animation: pulse 3.2s ease-in-out infinite;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 18px 40px rgba(49, 23, 8, 0.24),
      inset 0 -10px 20px rgba(196, 147, 102, 0.18);
  }

  50% {
    transform: scale(1.03);
    box-shadow:
      0 22px 48px rgba(49, 23, 8, 0.28),
      inset 0 -10px 20px rgba(196, 147, 102, 0.24);
  }
}

@keyframes offer-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
