/* tokens/root */
:root {
  --cream: #ddc8b3;
  --greige: #9f8e87;
  --bordeaux-deep: #2a070c;
  --offwhite: #f8f8f7;
  --sand: #cbc0b2;
  --bordeaux: #550b14;
  --taupe: #7e6961;
  --black: #0d0d0d;
  --line: rgba(221, 200, 179, 0.2);
  --panel: rgba(248, 248, 247, 0.055);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

/* base */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--offwhite);
  background:
    radial-gradient(
      circle at 52% -12%,
      rgba(85, 11, 20, 0.72),
      transparent 30rem
    ),
    radial-gradient(
      circle at 10% 28%,
      rgba(42, 7, 12, 0.86),
      transparent 24rem
    ),
    radial-gradient(
      circle at 92% 70%,
      rgba(221, 200, 179, 0.1),
      transparent 26rem
    ),
    linear-gradient(180deg, #050505 0%, var(--black) 46%, #140306 100%);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

body.dialog-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family:
    "Arial Narrow", "Roboto Condensed", Impact, Haettenschweiler, sans-serif;
  font-stretch: condensed;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  line-height: 0.92;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.2rem;
  font-size: clamp(4rem, 17vw, 9.4rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h2 {
  font-size: clamp(2.8rem, 10vw, 6.2rem);
}

h3 {
  color: var(--offwhite);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.18;
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.55'/%3E%3C/svg%3E");
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.5;
}

.ambient-one {
  top: 7rem;
  left: -7rem;
  background: var(--bordeaux);
}

.ambient-two {
  right: -8rem;
  bottom: 10rem;
  background: rgba(221, 200, 179, 0.22);
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 120;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--cream),
    var(--bordeaux),
    var(--cream)
  );
  box-shadow: 0 0 18px rgba(221, 200, 179, 0.34);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.top-marquee {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 13, 13, 0.72);
  backdrop-filter: blur(18px);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  padding: 0.8rem 1.6rem;
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--cream);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-subtitle,
.final-cta p,
.program-panel p,
.lux-card p,
.testimonial-card p,
.dialog-intro {
  color: rgba(248, 248, 247, 0.72);
  line-height: 1.7;
}

/* hero */
.hero {
  position: relative;
  display: grid;
  gap: 2.4rem;
  align-items: center;
  min-height: calc(100svh - 43px);
  padding: 3rem 0 4.5rem;
  isolation: isolate;
}

.hero-copy {
  min-width: 0;
}

.hero-visual {
  min-width: 0;
}

.hero-spotlight {
  position: absolute;
  inset: -2rem;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--spotlight-x, 50%) var(--spotlight-y, 35%),
    rgba(221, 200, 179, 0.16),
    rgba(85, 11, 20, 0.08) 18rem,
    transparent 31rem
  );
  transition: opacity 420ms ease;
}

.ghost-words {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.ghost-words span {
  position: absolute;
  color: rgba(221, 200, 179, 0.055);
  font-family:
    "Arial Narrow", "Roboto Condensed", Impact, Haettenschweiler, sans-serif;
  font-size: clamp(4.5rem, 19vw, 17rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 0.85;
  text-transform: uppercase;
  filter: blur(7px);
  transform: translate3d(0, var(--ghost-y, 0), 0)
    rotate(var(--ghost-rotate, 0deg));
  user-select: none;
}

.ghost-words span:nth-child(1) {
  top: 2%;
  left: -12%;
}

.ghost-words span:nth-child(2) {
  top: 24%;
  right: -22%;
  --ghost-rotate: -4deg;
}

.ghost-words span:nth-child(3) {
  bottom: 28%;
  left: -16%;
  --ghost-rotate: 3deg;
}

.ghost-words span:nth-child(4) {
  right: -12%;
  bottom: 3%;
}

.title-word {
  display: inline-block;
  opacity: 0;
  filter: blur(14px);
  transform: translateY(0.6em) rotateX(22deg);
  transform-origin: 50% 100%;
}

body.is-loaded .title-word {
  animation: editorialWordReveal 760ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(120ms + var(--word-index) * 72ms);
}

.hero-subtitle {
  max-width: 36rem;
  margin-bottom: 1.6rem;
  font-size: clamp(1rem, 3.8vw, 1.25rem);
  opacity: 0;
  filter: blur(10px);
  transform: translateY(16px);
}

body.is-loaded .hero-subtitle {
  animation: softLiftReveal 820ms cubic-bezier(0.16, 1, 0.3, 1) 720ms forwards;
}

.hero-actions {
  display: grid;
  gap: 0.9rem;
}

.hero-cta,
.hero .microcopy {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(18px);
}

body.is-loaded .hero-cta,
body.is-loaded .hero .microcopy {
  animation: softLiftReveal 760ms cubic-bezier(0.16, 1, 0.3, 1) 1040ms forwards;
}

.microcopy {
  color: var(--greige);
  font-size: 0.82rem;
}

.portrait-frame {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2.2rem;
  background: linear-gradient(
    160deg,
    rgba(42, 7, 12, 0.88),
    rgba(13, 13, 13, 0.92)
  );
  box-shadow: var(--shadow);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 1rem;
  z-index: 1;
  border: 1px solid rgba(221, 200, 179, 0.18);
  border-radius: 1.6rem;
  pointer-events: none;
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(13, 13, 13, 0.28),
    rgba(42, 7, 12, 0.86)
  );
  transition: opacity 1200ms ease;
}

.portrait-frame picture,
.portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 28rem;
}

.portrait-frame img {
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.78) contrast(1.1) brightness(0.82);
  clip-path: inset(0 0 100% 0 round 2rem);
  transform: scale(1.08);
  transition:
    clip-path 1300ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1600ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 700ms ease;
}

body.is-loaded .portrait-frame img {
  clip-path: inset(0 0 0 0 round 2rem);
  transform: scale(1.03);
}

.portrait-glass {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  border: 1px solid rgba(221, 200, 179, 0.22);
  border-radius: 1.3rem;
  padding: 1rem;
  background: rgba(13, 13, 13, 0.44);
  backdrop-filter: blur(18px);
}

.portrait-glass span,
.portrait-glass strong {
  display: block;
}

.portrait-glass span {
  margin-bottom: 0.35rem;
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.portrait-glass strong {
  color: var(--offwhite);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

/* cards */
.card-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.lux-card,
.program-panel,
.testimonial-card,
.final-cta {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  background: linear-gradient(
    145deg,
    rgba(248, 248, 247, 0.075),
    rgba(248, 248, 247, 0.025)
  );
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.lux-card::after,
.program-panel::after,
.testimonial-card::after,
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(221, 200, 179, 0.12),
    transparent 34%,
    rgba(85, 11, 20, 0.12)
  );
  opacity: 0;
  transition: opacity 260ms ease;
}

.lux-card:hover,
.program-panel:hover,
.testimonial-card:hover,
.final-cta:hover {
  border-color: rgba(221, 200, 179, 0.34);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.34);
}

.lux-card:hover::after,
.program-panel:hover::after,
.testimonial-card:hover::after,
.final-cta:hover::after {
  opacity: 1;
}

.lux-card,
.testimonial-card {
  padding: 1.25rem;
}

.testimonial-card h3 {
  margin-bottom: 0.75rem;
}

.testimonial-card span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.testimonial-card p,
.lux-card p {
  margin-bottom: 0;
}

.lux-card span,
.benefit-row span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

/* sections */
.split-section,
#presale,
.program-section,
.social-proof,
.final-cta {
  padding: 4.8rem 0;
  border-top: 1px solid var(--line);
}

.section-content h2 {
  max-width: min(100%, 24ch);
  margin-bottom: 2rem;
}

.center-heading {
  max-width: min(100%, 47rem);
  margin-right: auto;
  margin-bottom: 2rem;
  margin-left: auto;
  text-align: center;
}

.social-proof .center-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.social-proof h2 {
  max-width: min(100%, 24ch);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-intro {
  max-width: 42rem;
  margin: 0.8rem auto 0;
  color: rgba(248, 248, 247, 0.72);
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  line-height: 1.55;
}

.benefit-list {
  border-top: 1px solid var(--line);
}

.benefit-row {
  display: grid;
  gap: 0.25rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.benefit-row p {
  margin: 0;
  color: rgba(248, 248, 247, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 5vw, 2.1rem);
  line-height: 1.25;
}

.program-panel,
.final-cta {
  padding: clamp(1.35rem, 5vw, 3rem);
}

.program-panel h2,
.final-cta h2 {
  max-width: min(100%, 22ch);
}

.program-panel > p {
  max-width: 42rem;
}

.program-stats {
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
}

.program-stats div {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.program-stats strong,
.program-stats span {
  display: block;
}

.program-stats strong {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.program-stats span {
  color: var(--greige);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.final-cta {
  margin-bottom: 4.5rem;
  text-align: center;
}

.final-cta h2,
.final-cta p {
  margin-right: auto;
  margin-left: auto;
}

.final-cta p {
  max-width: 37rem;
}

/* form/dialog */
.premium-button {
  --magnet-x: 0px;
  --magnet-y: 0px;
  --button-rotate-x: 0deg;
  --button-rotate-y: 0deg;
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(221, 200, 179, 0.5);
  border-radius: 999px;
  padding: 1.05rem 1.35rem;
  color: #140304;
  background: linear-gradient(
    145deg,
    var(--offwhite),
    var(--cream) 55%,
    var(--sand)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -8px 18px rgba(85, 11, 20, 0.16),
    0 16px 34px rgba(85, 11, 20, 0.34),
    0 5px 0 rgba(85, 11, 20, 0.65);
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translate3d(var(--magnet-x), var(--magnet-y), 0)
    rotateX(var(--button-rotate-x)) rotateY(var(--button-rotate-y));
  transform-style: preserve-3d;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
  will-change: transform;
}

.premium-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 18%,
    rgba(255, 255, 255, 0.42) 42%,
    transparent 62%
  );
  opacity: 0;
  transform: translateX(-115%);
}

.premium-button:active {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -6px 14px rgba(85, 11, 20, 0.2),
    0 10px 22px rgba(85, 11, 20, 0.32),
    0 2px 0 rgba(85, 11, 20, 0.7);
}

.premium-button:hover,
.premium-button:focus-visible {
  filter: saturate(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -8px 18px rgba(85, 11, 20, 0.16),
    0 22px 44px rgba(85, 11, 20, 0.48),
    0 7px 0 rgba(85, 11, 20, 0.72);
  transform: translate3d(var(--magnet-x), calc(var(--magnet-y) - 3px), 0)
    rotateX(var(--button-rotate-x)) rotateY(var(--button-rotate-y));
}

.premium-button:hover::before,
.premium-button:focus-visible::before {
  animation: buttonShine 950ms cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-button.large {
  margin-top: 0.8rem;
}

.sticky-mobile-cta {
  position: fixed;
  right: 0.7rem;
  bottom: calc(0.75rem + env(safe-area-inset-bottom));
  left: 0.7rem;
  z-index: 80;
  min-height: 3.8rem;
  border: 1px solid rgba(221, 200, 179, 0.64);
  border-radius: 999px;
  color: #140304;
  background: linear-gradient(
    145deg,
    var(--offwhite),
    var(--cream) 58%,
    var(--sand)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 -10px 22px rgba(85, 11, 20, 0.18),
    0 20px 48px rgba(0, 0, 0, 0.42),
    0 12px 34px rgba(85, 11, 20, 0.48),
    0 5px 0 rgba(85, 11, 20, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
  transform: translateY(120%);
  transition:
    opacity 280ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-mobile-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.waitlist-dialog {
  width: min(92vw, 34rem);
  max-height: calc(100svh - 2rem);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(221, 200, 179, 0.28);
  border-radius: 1.8rem;
  padding: 0;
  color: var(--offwhite);
  background:
    radial-gradient(
      circle at 10% 0%,
      rgba(85, 11, 20, 0.62),
      transparent 18rem
    ),
    linear-gradient(150deg, #151111, #080808);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.72);
  scrollbar-color: rgba(221, 200, 179, 0.45) rgba(248, 248, 247, 0.05);
  scrollbar-width: thin;
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  transition:
    opacity 320ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    overlay 420ms ease allow-discrete,
    display 420ms ease allow-discrete;
}

.waitlist-dialog[open] {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.waitlist-dialog::backdrop {
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(18px) saturate(0.82);
}

.waitlist-dialog::-webkit-scrollbar {
  width: 0.45rem;
}

.waitlist-dialog::-webkit-scrollbar-track {
  background: rgba(248, 248, 247, 0.04);
}

.waitlist-dialog::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(221, 200, 179, 0.42);
}

.dialog-content {
  position: relative;
  padding: clamp(1.2rem, 5vw, 2rem);
}

.dialog-content::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(221, 200, 179, 0.48),
    transparent
  );
}

.dialog-content h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(2.5rem, 11vw, 4.6rem);
}

.dialog-close {
  position: absolute;
  top: 0.8rem;
  right: 0.85rem;
  z-index: 2;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(248, 248, 247, 0.05);
  font-size: 1.4rem;
}

.waitlist-form {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.2rem;
}

.waitlist-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.waitlist-form input,
.waitlist-form textarea {
  width: 100%;
  border: 1px solid rgba(221, 200, 179, 0.34);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  color: var(--offwhite);
  background: linear-gradient(
    180deg,
    rgba(248, 248, 247, 0.075),
    rgba(13, 13, 13, 0.18)
  );
  box-shadow: inset 0 1px 0 rgba(248, 248, 247, 0.04);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.waitlist-form textarea {
  resize: vertical;
}

.waitlist-form input:focus,
.waitlist-form textarea:focus {
  border-color: rgba(221, 200, 179, 0.78);
  box-shadow: 0 0 0 4px rgba(221, 200, 179, 0.09);
}

.form-note {
  margin: 0;
  color: var(--greige);
  font-size: 0.82rem;
  line-height: 1.5;
}

.form-note.success,
.form-note.error {
  border: 1px solid rgba(221, 200, 179, 0.22);
  border-radius: 0.9rem;
  padding: 0.78rem 0.9rem;
  color: var(--cream);
  background: rgba(221, 200, 179, 0.08);
}

.form-note.error {
  border-color: rgba(255, 143, 143, 0.34);
  color: #ffd8d8;
  background: rgba(255, 143, 143, 0.08);
}

.waitlist-form .premium-button:disabled {
  cursor: wait;
  opacity: 0.64;
}

/* footer */
.site-footer {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1rem 2rem;
  border-top: 1px solid var(--line);
  color: var(--greige);
  font-size: 0.85rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--cream);
  text-decoration: none;
}

/* animations */
.reveal {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(34px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Keeps reveal and scroll parallax from fighting over transform on the hero image column. */
.hero-visual.reveal {
  transform: translate3d(0, calc(34px + var(--parallax-y, 0px)), 0);
}

.hero-visual.reveal.is-visible {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.line-reveal {
  position: relative;
}

.line-reveal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(221, 200, 179, 0.38),
    transparent
  );
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 1000ms cubic-bezier(0.16, 1, 0.3, 1) 120ms;
}

.line-reveal.is-visible::before {
  transform: scaleX(1);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes editorialWordReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes softLiftReveal {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes buttonShine {
  0% {
    opacity: 0;
    transform: translateX(-115%);
  }

  18% {
    opacity: 0.55;
  }

  100% {
    opacity: 0;
    transform: translateX(115%);
  }
}

/* responsive */
@media (max-width: 639px) {
  .site-noise {
    opacity: 0.17;
  }

  .ambient {
    width: 13rem;
    height: 13rem;
    filter: blur(58px);
  }

  .top-marquee {
    border-bottom-color: rgba(221, 200, 179, 0.14);
  }

  .marquee-track span {
    padding: 0.72rem 1.1rem;
    font-size: 0.64rem;
    letter-spacing: 0.19em;
  }

  .section-shell {
    width: min(100% - 1.15rem, 28rem);
  }

  .hero {
    gap: 0;
    min-height: calc(100svh - 36px);
    overflow-x: clip;
    padding: 13.6rem 0 4.4rem;
  }

  .hero-visual {
    position: absolute;
    inset: 0.8rem 0 auto;
  }

  .hero-visual.reveal,
  .hero-visual.reveal.is-visible {
    transform: none;
  }

  .portrait-frame {
    min-height: min(70svh, 31rem);
    border-radius: 1.55rem;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.52);
  }

  .portrait-frame::before {
    inset: 0.65rem;
    border-radius: 1.15rem;
  }

  .portrait-frame::after {
    background:
      linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.03) 0%,
        rgba(13, 13, 13, 0.16) 34%,
        rgba(13, 13, 13, 0.78) 63%,
        rgba(42, 7, 12, 0.96) 100%
      ),
      radial-gradient(
        circle at 50% 82%,
        rgba(221, 200, 179, 0.16),
        transparent 14rem
      );
  }

  .portrait-frame picture,
  .portrait-frame img {
    min-height: min(70svh, 31rem);
  }

  .portrait-frame img {
    object-position: center 12%;
  }

  .portrait-glass {
    display: none;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
    margin: 0;
    padding: 0 0.5rem;
  }

  .ghost-words span {
    opacity: 0.8;
    filter: blur(5px);
  }

  .ghost-words span:nth-child(1) {
    top: 9rem;
    left: -28%;
  }

  .ghost-words span:nth-child(2) {
    top: 23rem;
    right: -54%;
  }

  .ghost-words span:nth-child(3),
  .ghost-words span:nth-child(4) {
    display: none;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 0.78rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }

  .hero .eyebrow {
    display: inline-flex;
    max-width: 100%;
    margin-bottom: 0.72rem;
    border: 1px solid rgba(221, 200, 179, 0.2);
    border-radius: 999px;
    padding: 0.48rem 0.7rem;
    background: rgba(13, 13, 13, 0.48);
    backdrop-filter: blur(14px);
    font-size: 0.58rem;
    line-height: 1.2;
  }

  h1 {
    max-width: 8.2ch;
    margin-bottom: 1rem;
    font-size: clamp(2.75rem, 13vw, 4rem);
    letter-spacing: 0.025em;
    line-height: 0.88;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  h2 {
    font-size: clamp(2.55rem, 11.6vw, 3.9rem);
    letter-spacing: 0.028em;
    line-height: 0.94;
    text-wrap: balance;
  }

  h3 {
    font-size: 1.2rem;
  }

  .hero-subtitle {
    max-width: 22.5rem;
    margin-bottom: 1.35rem;
    color: rgba(248, 248, 247, 0.82);
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 0.85rem;
  }

  .premium-button {
    min-height: 4.25rem;
    padding: 1.12rem 1.05rem;
    font-size: 0.82rem;
    letter-spacing: 0.085em;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.85),
      inset 0 -10px 22px rgba(85, 11, 20, 0.18),
      0 18px 38px rgba(85, 11, 20, 0.42),
      0 6px 0 rgba(85, 11, 20, 0.72);
  }

  .microcopy {
    display: block;
    max-width: 19rem;
    margin: 0 auto;
    color: rgba(221, 200, 179, 0.78);
    font-size: 0.78rem;
    line-height: 1.45;
    text-align: center;
  }

  .split-section,
  #presale,
  .program-section,
  .social-proof,
  .final-cta {
    padding: 4rem 0;
  }

  .section-content h2,
  .program-panel h2,
  .social-proof h2,
  .final-cta h2 {
    max-width: min(100%, 18ch);
  }

  .center-heading,
  .social-proof h2,
  .final-cta h2 {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .card-grid,
  .testimonial-grid {
    gap: 0.9rem;
  }

  .lux-card,
  .testimonial-card {
    border-radius: 1.35rem;
    padding: 1.15rem;
  }

  .lux-card p,
  .program-panel p,
  .testimonial-card p,
  .final-cta p {
    line-height: 1.58;
  }

  .benefit-row {
    gap: 0.35rem;
    padding: 1.35rem 0;
  }

  .benefit-row p {
    font-size: clamp(1.18rem, 5.4vw, 1.55rem);
    line-height: 1.28;
  }

  .program-panel,
  .final-cta {
    border-radius: 1.35rem;
    padding: 1.3rem;
  }

  .program-stats {
    gap: 1rem;
  }

  .final-cta {
    margin-bottom: 3rem;
  }

  .site-footer {
    padding-bottom: 6rem;
  }

  .waitlist-dialog {
    width: 100%;
    max-width: none;
    max-height: calc(92svh - env(safe-area-inset-bottom));
    margin: auto 0 0;
    border-radius: 1.45rem 1.45rem 0 0;
    transform: translateY(100%);
  }

  .waitlist-dialog[open] {
    transform: translateY(0);
  }

  .dialog-content {
    padding: 1.25rem;
  }

  .waitlist-form {
    gap: 0.82rem;
  }

  .waitlist-form input,
  .waitlist-form textarea {
    border-radius: 0.9rem;
    padding: 0.92rem 0.95rem;
  }
}

@media (min-width: 640px) {
  .premium-button {
    width: auto;
    min-width: 19rem;
  }

  .hero-actions {
    display: flex;
    align-items: center;
  }

  .program-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer {
    flex-direction: row;
    padding-inline: 2rem;
    text-align: left;
  }
}

@media (min-width: 860px) {
  .section-shell {
    width: min(1120px, calc(100% - 4rem));
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
    gap: 3rem;
    padding-top: 4.5rem;
  }

  .hero:hover .hero-spotlight {
    opacity: 1;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-visual {
    order: 2;
    position: relative;
    z-index: 1;
  }

  h1 {
    max-width: 9.8ch;
    font-size: clamp(4rem, 12vw, 8.2rem);
  }

  .portrait-frame,
  .portrait-frame picture,
  .portrait-frame img {
    min-height: 42rem;
  }

  .split-section {
    display: grid;
    grid-template-columns: 0.34fr 1fr;
    gap: 2rem;
  }

  .card-grid.three,
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit-row {
    grid-template-columns: 8rem 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.8rem 0;
  }

  .sticky-mobile-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-track {
    animation: none !important;
  }

  .title-word,
  .hero-subtitle,
  .hero-cta,
  .hero .microcopy,
  .portrait-frame img,
  .reveal,
  .hero-visual.reveal,
  .waitlist-dialog {
    animation: none !important;
    clip-path: none !important;
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    padding-bottom: 110px;
  }

  main {
    padding-bottom: 110px;
  }

  .section-shell {
    width: min(100% - 40px, 43rem);
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.35rem;
    min-height: auto;
    padding: 2.6rem 0 5.4rem;
    overflow: visible;
  }

  .hero-copy {
    display: contents;
  }

  .hero .eyebrow {
    order: 1;
    justify-self: center;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 0 0.15rem;
    border: 1px solid rgba(221, 200, 179, 0.2);
    border-radius: 999px;
    padding: 0.5rem 0.72rem;
    background: rgba(13, 13, 13, 0.48);
    backdrop-filter: blur(14px);
    font-size: 0.62rem;
    line-height: 1.2;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .hero-visual {
    order: 2;
    position: relative;
    inset: auto;
    z-index: 1;
    width: 100%;
    margin: 0;
  }

  .hero-visual.reveal,
  .hero-visual.reveal.is-visible {
    transform: none;
  }

  .portrait-frame {
    width: 100%;
    min-height: clamp(21rem, 74vw, 30rem);
    border-radius: 1.75rem;
  }

  .portrait-frame picture,
  .portrait-frame img {
    min-height: clamp(21rem, 74vw, 30rem);
  }

  .portrait-frame img {
    object-position: center top;
  }

  .portrait-glass {
    display: none;
  }

  h1,
  h2 {
    max-width: 100%;
    letter-spacing: -0.04em;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .hero h1 {
    order: 3;
  }

  h1 {
    margin: 0 0 0.15rem;
    font-size: clamp(48px, 14vw, 76px);
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(44px, 12vw, 68px);
    line-height: 0.94;
  }

  .section-content h2,
  .program-panel h2,
  .social-proof h2,
  .final-cta h2,
  .center-heading,
  .center-heading h2 {
    max-width: min(100%, 22ch);
  }

  .social-proof .center-heading,
  .social-proof h2,
  .final-cta h2,
  .final-cta p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .hero-subtitle {
    order: 4;
    max-width: 34rem;
    margin: 0 0 0.25rem;
    color: rgba(248, 248, 247, 0.82);
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions {
    order: 5;
    display: grid;
    gap: 0.9rem;
    width: 100%;
  }

  .split-section,
  #presale,
  .program-section,
  .social-proof,
  .final-cta {
    padding-top: clamp(72px, 13vw, 96px);
    padding-bottom: clamp(72px, 13vw, 96px);
  }

  .center-heading,
  .section-content h2 {
    margin-bottom: 1.7rem;
  }

  .card-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .lux-card,
  .testimonial-card,
  .program-panel,
  .final-cta {
    width: 100%;
    border-radius: 1.65rem;
    padding: 26px 22px;
  }

  .lux-card p,
  .program-panel p,
  .testimonial-card p,
  .final-cta p,
  .dialog-intro {
    font-size: 1rem;
    line-height: 1.5;
  }

  .lux-card h3,
  .testimonial-card h3 {
    line-height: 1.25;
  }

  .benefit-row {
    gap: 0.45rem;
    padding: 1.35rem 0;
  }

  .benefit-row p {
    font-size: clamp(1.18rem, 5.3vw, 1.7rem);
    line-height: 1.32;
  }

  .program-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .final-cta {
    margin-bottom: 1.5rem;
  }

  .sticky-mobile-cta {
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    left: 16px;
    width: auto;
    min-height: 3.65rem;
    padding: 0.95rem 1rem;
    z-index: 80;
  }

  .site-footer {
    padding-bottom: calc(7.2rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 639px) {
  .section-content h2,
  .program-panel h2,
  .social-proof h2,
  .final-cta h2 {
    max-width: min(100%, 18ch);
  }
}

/* QUANTUM client revision */
body {
  background:
    radial-gradient(circle at 52% -12%, rgba(85, 11, 20, 0.46), transparent 28rem),
    radial-gradient(circle at 10% 28%, rgba(42, 7, 12, 0.82), transparent 24rem),
    radial-gradient(circle at 92% 70%, rgba(221, 200, 179, 0.12), transparent 28rem),
    linear-gradient(180deg, #050505 0%, var(--black) 48%, #100204 100%);
}

h1,
h2 {
  letter-spacing: 0.015em;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 12.6ch;
  font-size: clamp(3.15rem, 9.3vw, 6.7rem);
}

h2 {
  font-size: clamp(2.25rem, 6.8vw, 4.85rem);
}

.hero-subtitle,
.final-cta p,
.program-panel p,
.lux-card p,
.testimonial-card p,
.dialog-intro,
.mentor-copy p {
  color: rgba(248, 248, 247, 0.76);
}

.hero-badges,
.topic-cloud,
.mentor-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}

.hero-badges span,
.topic-cloud span,
.mentor-highlights span,
.card-label {
  display: inline-flex;
  align-items: center;
  min-height: 2.05rem;
  border: 1px solid rgba(221, 200, 179, 0.22);
  border-radius: 999px;
  padding: 0.48rem 0.78rem;
  color: var(--cream);
  background: rgba(248, 248, 247, 0.055);
  box-shadow: inset 0 1px 0 rgba(248, 248, 247, 0.05);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

#waiting-room,
.transform-section,
.mentor-section {
  padding: 4.8rem 0;
  border-top: 1px solid var(--line);
}

.quantum-panel {
  display: grid;
  gap: 2rem;
}

.visual-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.48fr;
  gap: 1rem;
  align-items: end;
}

.photo-placeholder {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border: 1px solid rgba(221, 200, 179, 0.24);
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 50% 20%, rgba(221, 200, 179, 0.18), transparent 12rem),
    linear-gradient(145deg, rgba(85, 11, 20, 0.7), rgba(13, 13, 13, 0.94));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0.8rem;
  z-index: 1;
  border: 1px solid rgba(221, 200, 179, 0.15);
  border-radius: 1.15rem;
  pointer-events: none;
}

.photo-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.72) contrast(1.08) brightness(0.84);
}

.photo-placeholder span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  border: 1px solid rgba(221, 200, 179, 0.2);
  border-radius: 1rem;
  padding: 0.8rem;
  color: var(--cream);
  background: rgba(13, 13, 13, 0.48);
  backdrop-filter: blur(16px);
  font-family: Georgia, "Times New Roman", serif;
}

.photo-placeholder.small {
  min-height: 11rem;
}

.photo-placeholder.small::after {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: rgba(221, 200, 179, 0.52);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.checklist-grid .lux-card p {
  color: rgba(248, 248, 247, 0.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  line-height: 1.42;
}

.inline-cta {
  margin-top: 1.5rem;
}

.transform-grid,
.results-layout,
.mentor-section {
  display: grid;
  gap: 1rem;
}

.transform-card,
.results-group {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: linear-gradient(145deg, rgba(248, 248, 247, 0.075), rgba(248, 248, 247, 0.025));
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
}

.to-card,
.featured-results {
  border-color: rgba(221, 200, 179, 0.32);
  background:
    radial-gradient(circle at 92% 8%, rgba(221, 200, 179, 0.16), transparent 13rem),
    linear-gradient(145deg, rgba(85, 11, 20, 0.38), rgba(248, 248, 247, 0.035));
}

.transform-card ul {
  display: grid;
  gap: 0.85rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.transform-card li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(248, 248, 247, 0.8);
  line-height: 1.55;
}

.transform-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 0.48rem;
  height: 0.48rem;
  border: 1px solid var(--cream);
  border-radius: 999px;
  background: rgba(221, 200, 179, 0.16);
  box-shadow: 0 0 14px rgba(221, 200, 179, 0.18);
}

.mentor-section {
  align-items: center;
}

.mentor-copy h2 {
  max-width: min(100%, 18ch);
}

.editorial-photo {
  min-height: clamp(26rem, 45vw, 38rem);
}

.result-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.result-list p {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  justify-content: space-between;
  margin: 0;
  border-bottom: 1px solid rgba(221, 200, 179, 0.13);
  padding-bottom: 0.75rem;
  color: rgba(248, 248, 247, 0.82);
}

.result-list strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 500;
}

.result-list span {
  flex: 0 0 auto;
  color: var(--cream);
  font-weight: 800;
}

.waitlist-form select {
  width: 100%;
  border: 1px solid rgba(221, 200, 179, 0.34);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  color: var(--offwhite);
  background: linear-gradient(180deg, rgba(248, 248, 247, 0.075), rgba(13, 13, 13, 0.18));
  box-shadow: inset 0 1px 0 rgba(248, 248, 247, 0.04);
  outline: none;
}

.waitlist-form select:focus {
  border-color: rgba(221, 200, 179, 0.78);
  box-shadow: 0 0 0 4px rgba(221, 200, 179, 0.09);
}

.waitlist-form option {
  color: var(--black);
  background: var(--cream);
}

@media (min-width: 860px) {
  h1 {
    max-width: 12ch;
    font-size: clamp(3.5rem, 8.2vw, 6.45rem);
  }

  h2 {
    font-size: clamp(2.55rem, 5.6vw, 4.6rem);
  }

  .hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.78fr);
  }

  .quantum-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 0.72fr);
  }

  .quantum-panel .topic-cloud {
    grid-column: 1 / -1;
  }

  .transform-grid,
  .results-layout,
  .mentor-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1rem;
  }
}

@media (max-width: 768px) {
  h1,
  h2 {
    letter-spacing: -0.015em;
    line-height: 1;
  }

  h1 {
    font-size: clamp(38px, 10.8vw, 56px);
  }

  h2 {
    font-size: clamp(34px, 9.4vw, 50px);
  }

  .hero-badges {
    order: 6;
    margin-top: 0.1rem;
  }

  #waiting-room,
  .transform-section,
  .mentor-section {
    padding-top: clamp(72px, 13vw, 96px);
    padding-bottom: clamp(72px, 13vw, 96px);
  }

  .visual-stack {
    grid-template-columns: 1fr;
  }

  .photo-placeholder,
  .photo-placeholder.small {
    min-height: clamp(14rem, 62vw, 24rem);
  }

  .transform-grid,
  .results-layout,
  .mentor-section {
    grid-template-columns: 1fr;
  }

  .result-list p {
    display: grid;
    gap: 0.25rem;
  }

  .waitlist-dialog {
    max-height: calc(90svh - env(safe-area-inset-bottom));
  }

  .dialog-content h2 {
    font-size: clamp(30px, 8vw, 42px);
    line-height: 1.02;
  }

  .waitlist-form input,
  .waitlist-form textarea,
  .waitlist-form select {
    min-height: 3.25rem;
    font-size: 1rem;
  }
}

select {
  font: inherit;
}


/* Responsive/layout refinements */
.hero-copy {
  max-width: 43rem;
}

.result-list p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
  gap: 0.85rem 1.2rem;
  align-items: baseline;
}

.result-list strong,
.result-list span {
  min-width: 0;
  overflow-wrap: break-word;
}

.result-list span {
  justify-self: end;
  max-width: 100%;
  text-align: right;
  white-space: normal;
}

.result-list.two-col {
  gap: 0.9rem 1.75rem;
}

.result-list.two-col p {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

#waiting-room .center-heading h2 {
  max-width: min(100%, 21ch);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 860px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.76fr);
    gap: clamp(3rem, 5vw, 4.8rem);
  }

  h1,
  .hero h1 {
    max-width: 13.6ch;
    font-size: clamp(3.35rem, 7.35vw, 5.95rem);
    line-height: 1.04;
    letter-spacing: 0.005em;
  }

  .hero-subtitle {
    max-width: 39rem;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.75rem;
  }
}

@media (min-width: 1180px) {
  .two-col {
    column-gap: 2.25rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    justify-self: center;
    width: min(100%, 37rem);
    max-width: 11.8ch;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(40px, 10.4vw, 58px);
    line-height: 1.04;
    letter-spacing: -0.01em;
    text-align: center;
  }

  .hero-subtitle {
    justify-self: center;
    text-align: center;
  }

  .hero-badges {
    justify-content: center;
  }

  #waiting-room .center-heading {
    width: min(100%, 34rem);
    max-width: 34rem;
  }

  #waiting-room .center-heading h2 {
    max-width: 17ch;
    font-size: clamp(30px, 8.1vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.005em;
  }

  .social-proof h2 {
    max-width: 17ch;
    font-size: clamp(31px, 8.4vw, 44px);
    line-height: 1.08;
  }

  .result-list,
  .result-list.two-col {
    grid-template-columns: 1fr;
  }

  .result-list p,
  .result-list.two-col p {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0.4rem 1rem;
  }
}

@media (max-width: 520px) {
  .section-shell {
    width: min(100% - 28px, 28rem);
  }

  .hero h1 {
    max-width: 12.2ch;
    font-size: clamp(36px, 10.6vw, 48px);
    line-height: 1.06;
  }

  #waiting-room .center-heading h2 {
    max-width: 16.5ch;
    font-size: clamp(28px, 7.9vw, 36px);
    line-height: 1.1;
  }

  .social-proof h2 {
    max-width: 16ch;
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.1;
  }

  .result-list p,
  .result-list.two-col p {
    grid-template-columns: minmax(0, 1fr);
  }

  .result-list span {
    justify-self: start;
    text-align: left;
  }
}

/* Private room heading and expert-result card refinements */
.no-break {
  white-space: nowrap;
}

#waiting-room .center-heading {
  max-width: min(100%, 58rem);
}

#waiting-room .center-heading h2 {
  max-width: min(100%, 25ch);
  font-size: clamp(2.35rem, 5.15vw, 4.35rem);
  line-height: 1.06;
  letter-spacing: 0.002em;
}

.featured-results {
  padding: clamp(1.35rem, 3.6vw, 2.15rem);
}

.expert-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.expert-result-card {
  position: relative;
  display: grid;
  gap: 0.82rem;
  min-width: 0;
  border: 1px solid rgba(221, 200, 179, 0.18);
  border-radius: 1.18rem;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(248, 248, 247, 0.085), rgba(248, 248, 247, 0.028)),
    rgba(13, 13, 13, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(248, 248, 247, 0.06),
    0 12px 38px rgba(0, 0, 0, 0.16);
}

.expert-result-card::before {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(221, 200, 179, 0.72), transparent);
  opacity: 0.72;
}

.expert-result-card strong {
  min-width: 0;
  color: var(--offwhite);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.06rem, 1.8vw, 1.22rem);
  font-weight: 500;
  line-height: 1.18;
  overflow-wrap: break-word;
}

.expert-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  min-width: 0;
}

.expert-result-amount {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  border: 1px solid rgba(221, 200, 179, 0.38);
  border-radius: 999px;
  padding: 0.42rem 0.74rem;
  color: #160405;
  background: linear-gradient(145deg, var(--offwhite), var(--cream) 58%, var(--sand));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 10px 24px rgba(85, 11, 20, 0.24);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.expert-result-niche {
  min-width: 0;
  color: rgba(248, 248, 247, 0.76);
  font-size: 0.82rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

@media (min-width: 860px) {
  #waiting-room .center-heading h2 {
    max-width: min(100%, 24ch);
  }

  .expert-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .expert-result-card {
    align-content: start;
    padding: 1.08rem 1.05rem 1.05rem 1.15rem;
  }
}

@media (min-width: 1180px) {
  #waiting-room .center-heading h2 {
    max-width: min(100%, 26ch);
    font-size: clamp(2.55rem, 4.45vw, 4.15rem);
    line-height: 1.08;
  }

  .expert-results-grid {
    gap: 1.05rem;
  }
}

@media (max-width: 768px) {
  #waiting-room .center-heading h2 {
    max-width: min(100%, 18.5ch);
    font-size: clamp(29px, 7.8vw, 40px);
    line-height: 1.12;
    letter-spacing: -0.01em;
  }

  .expert-results-grid {
    gap: 0.82rem;
  }

  .expert-result-card {
    gap: 0.74rem;
    padding: 0.95rem 0.95rem 0.98rem 1.05rem;
  }

  .expert-result-meta {
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  #waiting-room .center-heading h2 {
    max-width: 100%;
    font-size: clamp(27px, 7.25vw, 32px);
  }

  .no-break {
    white-space: normal;
  }
}

/* Visual integration redesign: local image slots only. Replace the assets/*.jpg paths in index.html comments. */
.visual-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-image.is-missing {
  display: none;
}

.hero-promise {
  max-width: 28rem;
  margin: -0.45rem 0 1rem;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  line-height: 1.14;
}

.portrait-frame {
  overflow: visible;
  background:
    radial-gradient(circle at 50% 12%, rgba(221, 200, 179, 0.24), transparent 14rem),
    radial-gradient(circle at 92% 70%, rgba(85, 11, 20, 0.48), transparent 16rem),
    linear-gradient(160deg, rgba(42, 7, 12, 0.9), rgba(13, 13, 13, 0.94));
}

.portrait-frame::before {
  z-index: 2;
}

.portrait-frame::after {
  z-index: 1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.04) 0%, rgba(13, 13, 13, 0.08) 34%, rgba(13, 13, 13, 0.36) 70%, rgba(42, 7, 12, 0.9) 100%),
    radial-gradient(circle at 50% 88%, rgba(221, 200, 179, 0.22), transparent 13rem);
}

.portrait-frame > img {
  position: relative;
  z-index: 0;
  border-radius: inherit;
}

.portrait-frame .visual-image.is-missing + .portrait-glass::before,
.photo-placeholder:has(.visual-image.is-missing)::after,
.bonus-media:has(.visual-image.is-missing)::after,
.student-photo:has(.visual-image.is-missing)::after,
.review-avatar:has(.visual-image.is-missing)::after {
  content: "Image slot";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(221, 200, 179, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.bonus-grid,
.bonus-stack {
  display: grid;
  gap: 1rem;
}

.bonus-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}

.bonus-card,
.student-result-card,
.review-frame {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(221, 200, 179, 0.2);
  border-radius: 1.65rem;
  background:
    radial-gradient(circle at 92% 8%, rgba(221, 200, 179, 0.12), transparent 11rem),
    linear-gradient(145deg, rgba(248, 248, 247, 0.075), rgba(248, 248, 247, 0.025));
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.bonus-card:hover,
.student-result-card:hover,
.review-frame:hover {
  border-color: rgba(221, 200, 179, 0.38);
  box-shadow: 0 22px 86px rgba(0, 0, 0, 0.36), 0 0 36px rgba(85, 11, 20, 0.18);
}

.bonus-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.bonus-card::before,
.student-result-card::before,
.review-frame::before,
.transform-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(221, 200, 179, 0.13), transparent 36%, rgba(85, 11, 20, 0.14));
  opacity: 0.72;
}

.bonus-media {
  position: relative;
  min-height: 12rem;
  overflow: hidden;
  border: 1px solid rgba(221, 200, 179, 0.16);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 50% 26%, rgba(221, 200, 179, 0.2), transparent 8rem),
    linear-gradient(145deg, rgba(85, 11, 20, 0.62), rgba(13, 13, 13, 0.92));
}

.bonus-card span,
.student-niche,
.review-frame span {
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.bonus-card h3,
.bonus-card p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.bonus-card p,
.student-card-copy p,
.review-frame blockquote,
.transform-intro {
  color: rgba(248, 248, 247, 0.74);
  line-height: 1.55;
}

.transform-card {
  isolation: isolate;
}

.from-card {
  background:
    radial-gradient(circle at 12% 0%, rgba(85, 11, 20, 0.28), transparent 13rem),
    linear-gradient(145deg, rgba(248, 248, 247, 0.06), rgba(42, 7, 12, 0.16));
}

.from-card .card-label {
  border-color: rgba(172, 76, 86, 0.35);
  color: #f1c8c8;
  background: rgba(85, 11, 20, 0.28);
}

.transform-intro {
  position: relative;
  z-index: 1;
  max-width: 24rem;
  margin: 1rem 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.transform-orb {
  position: absolute;
  top: -5rem;
  right: -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(221, 200, 179, 0.18), transparent 66%);
  filter: blur(4px);
}

.from-card .transform-orb {
  background: radial-gradient(circle, rgba(85, 11, 20, 0.42), transparent 68%);
}

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

.authority-highlights span {
  display: grid;
  gap: 0.2rem;
  border-radius: 1.1rem;
  padding: 0.9rem;
  line-height: 1.25;
}

.authority-highlights strong {
  color: var(--offwhite);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.student-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 1rem;
}

.student-result-card {
  display: grid;
  min-height: 100%;
}

.student-photo {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(221, 200, 179, 0.16);
  background:
    radial-gradient(circle at 50% 20%, rgba(221, 200, 179, 0.18), transparent 10rem),
    linear-gradient(145deg, rgba(85, 11, 20, 0.6), rgba(13, 13, 13, 0.92));
}

.student-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  padding: 1.15rem;
}

.student-card-copy h3,
.student-card-copy p {
  margin: 0;
}

.student-amount {
  width: fit-content;
  border: 1px solid rgba(221, 200, 179, 0.44);
  border-radius: 999px;
  padding: 0.5rem 0.82rem;
  color: #160405;
  background: linear-gradient(145deg, var(--offwhite), var(--cream) 58%, var(--sand));
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1;
}

.review-frame-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.review-frame {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: center;
  padding: 1rem;
}

.review-avatar {
  position: relative;
  width: 4.2rem;
  height: 4.2rem;
  overflow: hidden;
  border: 1px solid rgba(221, 200, 179, 0.26);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 30%, rgba(221, 200, 179, 0.25), transparent 3rem),
    linear-gradient(145deg, rgba(85, 11, 20, 0.62), rgba(13, 13, 13, 0.92));
}

.review-frame blockquote {
  position: relative;
  z-index: 1;
  grid-column: 2;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.review-frame div:last-child {
  position: relative;
  z-index: 1;
  grid-column: 2;
  display: grid;
  gap: 0.2rem;
}

.review-frame strong {
  color: var(--offwhite);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

@media (min-width: 860px) {
  .student-results-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .student-result-card:nth-child(1),
  .student-result-card:nth-child(6) {
    grid-column: span 2;
  }
}

@media (min-width: 901px) {
  .bonus-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(18rem, 0.85fr);
    align-items: start;
    gap: clamp(1rem, 2vw, 1.4rem);
  }

  .bonus-stack {
    grid-column: 2;
    align-self: start;
    gap: clamp(1rem, 2vw, 1.4rem);
  }

  .bonus-card {
    align-self: start;
  }

  .bonus-card--featured {
    position: sticky;
    top: clamp(90px, 10vh, 130px);
    grid-column: 1;
    gap: clamp(0.9rem, 1.6vw, 1.25rem);
    padding: clamp(1.05rem, 1.6vw, 1.35rem);
  }

  .bonus-stack .bonus-card {
    gap: 0.72rem;
    padding: 0.9rem;
  }

  .bonus-stack .bonus-media {
    min-height: clamp(8.2rem, 11vw, 10rem);
  }

  .bonus-stack .bonus-card h3 {
    font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  }

  .bonus-stack .bonus-card p {
    font-size: 0.94rem;
    line-height: 1.48;
  }
}

@media (max-width: 900px) {
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .bonus-card--featured {
    position: relative;
    top: auto;
  }
}

@media (max-width: 768px) {
  .hero-promise {
    order: 4;
    justify-self: center;
    max-width: 22rem;
    margin: 0;
    font-size: clamp(1.1rem, 5vw, 1.45rem);
    text-align: center;
  }

  .hero-subtitle {
    order: 5;
  }

  .hero-actions {
    order: 6;
  }

  .hero-badges {
    order: 7;
  }

  .bonus-media,
  .student-photo {
    min-height: clamp(13rem, 56vw, 20rem);
  }

  .authority-highlights {
    grid-template-columns: 1fr;
  }

  .review-frame {
    align-items: start;
  }
}

@media (max-width: 430px) {
  .section-shell {
    width: min(100% - 24px, 28rem);
  }

  .bonus-card,
  .student-card-copy,
  .review-frame {
    padding: 0.95rem;
  }

  .student-results-grid,
  .review-frame-grid,
  .bonus-grid,
  .bonus-stack {
    gap: 0.85rem;
  }

  .portrait-frame,
  .portrait-frame img {
    min-height: clamp(20rem, 82vw, 25rem);
  }
}

/* FIX HERO PORTRAIT BLEED */
.portrait-frame {
  position: relative;
  height: clamp(34rem, 72vh, 42rem);
  min-height: 0;
  overflow: hidden;
  border-radius: 2.2rem;
  isolation: isolate;
}

.portrait-frame picture,
.portrait-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.portrait-frame img {
  object-fit: cover;
  object-position: center top;
}

.portrait-frame::before {
  z-index: 2;
}

.portrait-frame::after {
  z-index: 1;
  pointer-events: none;
}

.portrait-glass {
  z-index: 3;
  max-width: calc(100% - 2.5rem);
  overflow: hidden;
}

/* FIX PRICE BADGES IN NARROW STUDENT CARDS */
.student-card-copy {
  align-items: start;
}

.student-amount {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: auto;
  min-width: 6.1rem;
  min-height: 2.35rem;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  white-space: nowrap;
  line-height: 1;
}

/* Optional: mai echilibrat pe cardurile înguste desktop */
@media (min-width: 860px) {
  .student-result-card:not(:nth-child(1)):not(:nth-child(6)) .student-amount {
    min-width: 5.8rem;
    font-size: 0.95rem;
  }
}

/* Daniela / Valina final visual revision */
:root {
  --charcoal: #101112;
  --charcoal-soft: #171819;
  --charcoal-muted: #242528;
  --gold-soft: #d7bd86;
}

body {
  background:
    radial-gradient(circle at 50% -14%, rgba(221, 200, 179, 0.12), transparent 25rem),
    radial-gradient(circle at 9% 24%, rgba(85, 11, 20, 0.22), transparent 21rem),
    radial-gradient(circle at 92% 72%, rgba(215, 189, 134, 0.09), transparent 24rem),
    linear-gradient(180deg, #050607 0%, var(--charcoal) 44%, #0a0b0c 100%);
}

.ambient-one {
  background: rgba(85, 11, 20, 0.58);
}

.ambient-two {
  background: rgba(215, 189, 134, 0.18);
}

.top-marquee,
.portrait-glass,
.waitlist-dialog {
  background-color: rgba(10, 11, 12, 0.76);
}

.hero-spotlight {
  background: radial-gradient(
    circle at var(--spotlight-x, 50%) var(--spotlight-y, 35%),
    rgba(221, 200, 179, 0.13),
    rgba(85, 11, 20, 0.06) 17rem,
    transparent 30rem
  );
}

.hero-badges span,
.topic-cloud span,
.mentor-highlights span,
.card-label {
  border-color: rgba(215, 189, 134, 0.32);
  background: rgba(215, 189, 134, 0.07);
}

.premium-button,
.sticky-mobile-cta {
  border-color: rgba(215, 189, 134, 0.72);
  background: linear-gradient(145deg, #faf7ef, var(--cream) 48%, var(--gold-soft));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -8px 18px rgba(85, 11, 20, 0.18),
    0 18px 36px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(215, 189, 134, 0.18),
    0 5px 0 rgba(85, 11, 20, 0.72);
}

.visual-stack {
  grid-template-columns: minmax(0, 1fr);
}

.quantum-panel {
  background:
    radial-gradient(circle at 12% 0%, rgba(215, 189, 134, 0.1), transparent 18rem),
    linear-gradient(145deg, rgba(23, 24, 25, 0.92), rgba(12, 13, 14, 0.96));
}

.bonus-card {
  background:
    radial-gradient(circle at 90% 0%, rgba(215, 189, 134, 0.12), transparent 10rem),
    linear-gradient(145deg, rgba(24, 25, 27, 0.94), rgba(12, 13, 14, 0.96));
}

.bonus-card--featured {
  border-color: rgba(215, 189, 134, 0.42);
  background:
    radial-gradient(circle at 88% 6%, rgba(215, 189, 134, 0.18), transparent 11rem),
    radial-gradient(circle at 8% 100%, rgba(85, 11, 20, 0.28), transparent 12rem),
    linear-gradient(145deg, rgba(28, 27, 25, 0.97), rgba(12, 13, 14, 0.96));
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.32), 0 0 40px rgba(215, 189, 134, 0.08);
}

@media (min-width: 1040px) {
  .bonus-card--featured {
    grid-template-columns: minmax(14rem, 0.9fr) minmax(0, 1.1fr);
    column-gap: clamp(1rem, 2vw, 1.55rem);
  }

  .bonus-card--featured .bonus-media {
    grid-row: 1 / span 4;
    min-height: clamp(22rem, 34vw, 29rem);
    align-self: stretch;
  }

  .bonus-card--featured .bonus-index,
  .bonus-card--featured h3,
  .bonus-card--featured p,
  .bonus-card--featured .telegram-list {
    grid-column: 2;
  }
}

.bonus-card .bonus-index,
.student-niche,
.review-frame span {
  position: relative;
  z-index: 1;
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.telegram-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.58rem;
  margin: 0.1rem 0 0;
  padding: 0.85rem;
  border: 1px solid rgba(215, 189, 134, 0.22);
  border-radius: 1.05rem;
  list-style: none;
  background: linear-gradient(145deg, rgba(215, 189, 134, 0.075), rgba(248, 248, 247, 0.025));
  box-shadow: inset 0 1px 0 rgba(248, 248, 247, 0.05);
}

.telegram-list li {
  position: relative;
  padding-left: 1.45rem;
  color: rgba(248, 248, 247, 0.83);
  font-size: 0.88rem;
  line-height: 1.42;
}

.telegram-list li::before {
  content: "✦";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-soft);
  text-shadow: 0 0 14px rgba(215, 189, 134, 0.34);
}

.transform-card {
  border-width: 1px;
}

.from-card {
  border-color: rgba(156, 163, 175, 0.2);
  background:
    radial-gradient(circle at 88% 0%, rgba(156, 163, 175, 0.08), transparent 11rem),
    linear-gradient(145deg, rgba(36, 37, 40, 0.96), rgba(13, 14, 15, 0.98));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  filter: saturate(0.72);
}

.from-card::after {
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.1), transparent 42%, rgba(0, 0, 0, 0.22));
  opacity: 0.82;
}

.from-card .card-label {
  border-color: rgba(148, 163, 184, 0.24);
  color: rgba(226, 232, 240, 0.66);
  background: rgba(15, 16, 18, 0.72);
  box-shadow: none;
}

.from-card .transform-intro,
.from-card li {
  color: rgba(226, 232, 240, 0.62);
}

.from-card li::before {
  border-color: rgba(148, 163, 184, 0.5);
  background: rgba(148, 163, 184, 0.14);
  box-shadow: none;
}

.from-card .transform-orb {
  background: radial-gradient(circle, rgba(148, 163, 184, 0.12), transparent 70%);
}

.to-card {
  border-color: rgba(215, 189, 134, 0.58);
  background:
    radial-gradient(circle at 90% 0%, rgba(215, 189, 134, 0.28), transparent 13rem),
    radial-gradient(circle at 0% 100%, rgba(85, 11, 20, 0.6), transparent 17rem),
    linear-gradient(145deg, rgba(85, 11, 20, 0.48), rgba(19, 20, 21, 0.96));
  box-shadow: 0 24px 86px rgba(0, 0, 0, 0.38), 0 0 52px rgba(215, 189, 134, 0.16);
}

.to-card::after {
  background: linear-gradient(135deg, rgba(215, 189, 134, 0.2), transparent 34%, rgba(85, 11, 20, 0.24));
  opacity: 0.95;
}

.to-card .card-label {
  border-color: rgba(215, 189, 134, 0.62);
  color: #fff2cf;
  background: linear-gradient(145deg, rgba(85, 11, 20, 0.66), rgba(215, 189, 134, 0.12));
  box-shadow: 0 0 24px rgba(215, 189, 134, 0.13);
}

.to-card .transform-intro {
  color: #f4dfbd;
}

.to-card li {
  color: rgba(248, 248, 247, 0.88);
}

.to-card li::before {
  border-color: rgba(215, 189, 134, 0.9);
  background: var(--gold-soft);
  box-shadow: 0 0 18px rgba(215, 189, 134, 0.42);
}

.to-card .transform-orb {
  background: radial-gradient(circle, rgba(215, 189, 134, 0.32), transparent 66%);
}

@media (max-width: 768px) {
  .bonus-card--featured {
    gap: 0.85rem;
  }

  .telegram-list {
    padding: 0.78rem;
  }

  .transform-grid {
    gap: 1.15rem;
  }

  .from-card {
    border-left: 4px solid rgba(148, 163, 184, 0.36);
  }

  .to-card {
    border-left: 4px solid rgba(215, 189, 134, 0.78);
  }
}
