:root {
  --bg: #0b0b0a;
  --bg-2: #11100f;
  --panel: #171615;
  --panel-2: #201d19;
  --cream: #f2eee7;
  --muted: #bcb5aa;
  --gold: #d9a75a;
  --gold-2: #ffc878;
  --line: rgba(217, 167, 90, 0.22);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 50% 0, rgba(217, 167, 90, 0.11), transparent 460px),
    linear-gradient(180deg, #070707, #10100f 42%, #070707);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.35;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2));
  box-shadow: 0 0 14px rgba(217,167,90,0.7);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.grain,
.spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.grain {
  z-index: 20;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.75' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.spotlight {
  left: var(--mx, 50vw);
  top: var(--my, 20vh);
  z-index: 1;
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 167, 90, 0.13), transparent 64%);
  filter: blur(12px);
}

main {
  position: relative;
  z-index: 2;
}

.wrap {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
}

.narrow {
  max-width: 610px;
  text-align: center;
}

.hero {
  position: relative;
  min-height: min(660px, 100svh);
  display: flex;
  align-items: flex-start;
  padding: clamp(42px, 4.8vw, 64px) 0 clamp(42px, 4.4vw, 64px);
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 72% 36%, rgba(217,167,90,0.15), transparent 26%),
    linear-gradient(180deg, #060606, #0b0b0a);
  animation: heroDrift 12s ease-in-out infinite;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 38%, rgba(217,167,90,0.18), transparent 30%),
    linear-gradient(90deg, rgba(5,5,5,0.98) 0%, rgba(5,5,5,0.93) 35%, rgba(5,5,5,0.34) 58%, rgba(5,5,5,0.18) 74%, rgba(5,5,5,0.74) 100%),
    linear-gradient(0deg, #0b0b0a 0%, rgba(11,11,10,0.08) 34%, rgba(11,11,10,0.48) 100%);
  pointer-events: none;
}

.hero-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: block;
  width: 100%;
  min-height: 46px;
  padding: 8px 18px;
  color: #130d05;
  text-align: center;
  background: linear-gradient(135deg, #fff0bf 0%, #ffc66c 35%, #d89737 70%, #fff0bf 100%);
  box-shadow: 0 0 30px rgba(255,198,108,0.25);
}

.hero-ribbon span {
  display: block;
  max-width: min(1040px, 96vw);
  margin-inline: auto;
  font-family: Palatino Linotype, Book Antiqua, Palatino, Georgia, serif;
  font-size: clamp(0.86rem, 1.25vw, 1.04rem);
  font-weight: 700;
  line-height: 1.18;
}

.hero-figure {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: min(54vw, 820px);
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,11,10,0.72), transparent 18%, transparent 76%, rgba(11,11,10,0.24)),
    linear-gradient(0deg, #0b0b0a 0%, transparent 24%);
}

.hero-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: brightness(1.08) contrast(1.04) saturate(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 230px;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(11,11,10,0.82) 24%, transparent 100%);
  pointer-events: none;
}

.hero-grid {
  display: block;
  position: relative;
  z-index: 2;
}

.hero-copy {
  max-width: min(520px, 42vw);
  padding: 0;
  opacity: 1;
  transform: none;
  isolation: isolate;
}

.hero-mark {
  display: none;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(30px, 5vw, 58px);
  color: rgba(242,238,231,0.82);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-mark span {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255,200,120,0.55);
  border-radius: 24px;
  color: var(--gold-2);
  font-family: Palatino Linotype, Book Antiqua, Palatino, Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.hero-mark strong {
  color: #d7b071;
  font-size: 0.9rem;
  line-height: 1.05;
  font-weight: 600;
}

.hero-kicker {
  display: block;
  margin-bottom: 14px;
  color: #d9a75a;
  font-size: clamp(0.92rem, 1.35vw, 1.28rem);
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  font-family: Palatino Linotype, Book Antiqua, Palatino, Georgia, serif;
}

h1 {
  max-width: 570px;
  margin-bottom: 16px;
  font-size: clamp(1.92rem, 3vw, 3.18rem);
  line-height: 1.08;
  font-weight: 600;
  text-shadow: 0 18px 54px rgba(0,0,0,0.65);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  line-height: 1.12;
  font-weight: 600;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.02rem;
  line-height: 1.22;
  font-weight: 600;
}

p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.58;
}

.hero-lead {
  max-width: 560px;
  color: #f4efe7;
  font-size: clamp(1.02rem, 1.45vw, 1.38rem);
  line-height: 1.36;
}

.hero-lead strong {
  color: #fff8ec;
  font-weight: 800;
}

.hero-note {
  max-width: 540px;
  margin-top: 16px;
  color: rgba(242,238,231,0.76);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.48;
}

.hero-copy .hero-mark,
.hero-copy .hero-kicker,
.hero-copy h1,
.hero-copy .hero-lead,
.hero-copy .hero-note,
.hero-copy .btn {
  opacity: 0;
  transform: translateY(18px);
  animation: letterRise 780ms cubic-bezier(.2,.75,.2,1) forwards;
}

.hero-copy .hero-kicker {
  animation-delay: 140ms;
}

.hero-copy h1 {
  animation-delay: 260ms;
}

.hero-copy .hero-lead {
  animation-delay: 390ms;
}

.hero-copy .hero-note {
  animation-delay: 510ms;
}

.hero-copy .btn {
  animation:
    letterRise 780ms cubic-bezier(.2,.75,.2,1) 650ms forwards,
    buttonGlow 3.8s ease-in-out infinite;
}

.hero-btn {
  min-width: min(100%, 360px);
  min-height: 58px;
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.15;
  white-space: normal;
  text-align: center;
}

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

.trust-mini {
  display: flex;
  width: min(360px, 100%);
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
  opacity: 0.62;
}

.trust-mini span {
  width: 28px;
  height: 7px;
  border-radius: 999px;
  background: rgba(242,238,231,0.55);
}

.btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  border-radius: 999px;
  padding: 12px 22px;
  position: relative;
  overflow: hidden;
  color: #170f05;
  background: linear-gradient(135deg, #fff0bf 0%, #ffc66c 35%, #d89737 68%, #fff0bf 100%);
  background-size: 180% 180%;
  box-shadow:
    0 0 0 1px rgba(255,220,145,0.5),
    0 0 24px rgba(255, 198, 108, 0.34),
    0 18px 48px rgba(217, 167, 90, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
  animation: buttonGlow 3.8s ease-in-out infinite;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-130%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  animation: buttonShine 3.2s ease-in-out infinite;
}

.btn:hover {
  box-shadow:
    0 0 0 1px rgba(255,220,145,0.7),
    0 0 34px rgba(255, 198, 108, 0.48),
    0 24px 58px rgba(217, 167, 90, 0.44),
    inset 0 1px 0 rgba(255,255,255,0.75);
}

.btn.small {
  min-height: 38px;
  padding-inline: 18px;
  font-size: 0.74rem;
}

.center-btn {
  display: flex;
  width: fit-content;
  margin: 28px auto 0;
}

.intro-section,
.problem-section,
.truth-section,
.cards-section,
.who-section,
.welcome-section,
.proof-section,
.price-section,
.bonus-section,
.about-section {
  padding: 58px 0;
  border-top: 1px solid rgba(255,255,255,0.035);
}

.intro-section .narrow p {
  max-width: 610px;
  margin-inline: auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  gap: clamp(32px, 6vw, 68px);
  align-items: center;
}

.mockup-collage {
  position: relative;
  min-height: 520px;
  transform-style: preserve-3d;
  animation: floatSlow 7s ease-in-out infinite;
}

.mock,
.mock-main {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(217,167,90,0.18);
  border-radius: 5px;
  background: #111;
  box-shadow: 0 28px 70px rgba(0,0,0,0.52);
}

.mock img,
.mock-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mock-main {
  left: 48%;
  top: 48%;
  z-index: 3;
  width: 54%;
  aspect-ratio: 9 / 12;
  transform: translate(-50%, -50%) rotateY(-8deg) rotateX(3deg);
}

.mock-main img {
  object-position: center;
}

.mock-a {
  left: 0;
  top: 10%;
  z-index: 2;
  width: 30%;
  aspect-ratio: 3 / 4;
  transform: rotateY(18deg) rotateZ(-5deg);
}

.mock-b {
  right: 0;
  top: 12%;
  z-index: 2;
  width: 36%;
  aspect-ratio: 4 / 5;
  transform: rotateY(-16deg) rotateZ(4deg);
}

.mock-c {
  left: 8%;
  bottom: 0;
  z-index: 2;
  width: 44%;
  aspect-ratio: 16 / 10;
  transform: rotateX(8deg) rotateZ(2deg);
}

.mock-c img {
  object-position: center;
}

.orbit {
  position: absolute;
  inset: 22% 4% 18% 0;
  border: 2px solid rgba(217,167,90,0.18);
  border-radius: 50%;
  transform: rotate(-18deg);
  filter: drop-shadow(0 0 16px rgba(217,167,90,0.18));
}

.problem-copy h2 {
  max-width: 520px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(217,167,90,0.12);
  border-radius: 5px;
  padding: 12px;
  background: rgba(255,255,255,0.035);
}

.feature-list span,
.program-card span,
.bonus-card span {
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-list strong {
  color: #e7dfd4;
  font-size: 0.9rem;
  line-height: 1.35;
}

.truth-section .narrow h2 {
  margin-inline: auto;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.bonus-card,
.guarantee-card {
  border: 1px solid rgba(217,167,90,0.16);
  border-radius: 7px;
  padding: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  box-shadow: 0 22px 60px rgba(0,0,0,0.34);
  transform-style: preserve-3d;
}

.info-card img {
  width: 100%;
  margin-bottom: 14px;
  border-radius: 5px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.center-title {
  max-width: 650px;
  margin: 0 auto 36px;
  text-align: center;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 34px;
}

.who-item {
  text-align: center;
}

.who-item span {
  display: block;
  width: 46px;
  height: 1px;
  margin: 0 auto 12px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  box-shadow: 0 0 14px var(--gold);
}

.who-item p {
  margin: 0 auto;
  max-width: 220px;
  font-size: 0.9rem;
}

.welcome-section {
  overflow: hidden;
}

.welcome-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: end;
  margin-bottom: 28px;
}

.welcome-copy h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.welcome-copy p {
  margin-bottom: 0;
  color: rgba(242,238,231,0.8);
}

.mentor-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 8px 0 18px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.mentor-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: imageLoop 38s linear infinite;
}

.mentor-marquee:hover .mentor-track {
  animation-play-state: paused;
}

.mentor-track img {
  width: clamp(150px, 17vw, 240px);
  border: 1px solid rgba(217,167,90,0.18);
  border-radius: 6px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(0,0,0,0.36);
}

.proof-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.proof-heading h2 {
  margin-bottom: 10px;
}

.proof-heading p {
  max-width: 600px;
  margin-inline: auto;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.proof-card {
  position: relative;
  min-height: 245px;
  border-radius: 5px;
  padding: 20px 18px;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    radial-gradient(circle at 18% 0%, rgba(255,198,108,0.18), transparent 42%),
    #141210;
  border: 1px solid rgba(217,167,90,0.2);
  box-shadow: 0 22px 70px rgba(0,0,0,0.38);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.proof-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255,198,108,0.14);
  border-radius: 50%;
}

.proof-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,198,108,0.42);
}

.proof-card span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.proof-card strong {
  display: block;
  margin-bottom: 10px;
  color: #fff7ea;
  font-family: Palatino Linotype, Book Antiqua, Palatino, Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.15;
}

.proof-card p {
  color: rgba(242,238,231,0.72);
  font-size: 0.88rem;
}

.price-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
  gap: 28px;
  align-items: center;
}

.guarantee-card {
  min-height: 360px;
  padding: clamp(22px, 4vw, 34px);
}

.guarantee-card ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.guarantee-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  line-height: 1.4;
}

.guarantee-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold-2);
  border-radius: 50%;
}

.price-card {
  border-radius: 7px;
  padding: 30px 24px;
  color: #16120d;
  text-align: center;
  background: linear-gradient(180deg, #fbf5ec, #e7d9c6);
  box-shadow: 0 28px 80px rgba(0,0,0,0.5);
  transform-style: preserve-3d;
}

.price-card span {
  display: block;
  color: #59483a;
  font-weight: 800;
}

.price-card em {
  display: inline-block;
  margin-top: 18px;
  color: #8a7869;
  font-style: normal;
  font-size: 1rem;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #b3652c;
}

.price-card strong {
  display: block;
  margin: 12px 0 2px;
  color: #c57a2d;
  font-size: clamp(2.35rem, 4.6vw, 4.15rem);
  line-height: 0.95;
  font-weight: 800;
}

.price-card small {
  color: #725f50;
}

.price-card .btn {
  width: 100%;
  margin-top: 20px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.bonus-card.wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1fr;
  gap: 22px;
  align-items: center;
}

.bonus-card.wide img {
  border-radius: 5px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: 30px;
  align-items: center;
}

.about-photo {
  overflow: hidden;
  border: 1px solid rgba(217,167,90,0.16);
  border-radius: 7px;
  background: #111;
  box-shadow: 0 24px 70px rgba(0,0,0,0.42);
  transform-style: preserve-3d;
}

.about-photo img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.about-copy {
  border-top: 1px solid rgba(217,167,90,0.18);
  border-bottom: 1px solid rgba(217,167,90,0.18);
  padding: 26px 0;
}

.about-badge {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.about-badge span {
  display: grid;
  min-height: 86px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--gold-2);
  background: rgba(255,255,255,0.035);
  font-weight: 700;
  text-transform: uppercase;
}

.faq-section {
  padding: 58px 0;
  color: #1e1b17;
  background: #eee8dd;
}

.faq-wrap {
  max-width: 680px;
}

.faq-wrap h2 {
  text-align: center;
}

details {
  border-bottom: 1px solid rgba(0,0,0,0.16);
  padding: 14px 0;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: #4b433b;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid rgba(217,167,90,0.18);
  color: rgba(242,238,231,0.76);
  background:
    radial-gradient(circle at 50% 0%, rgba(217,167,90,0.12), transparent 32%),
    #090907;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: start;
}

.footer-brand strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-family: Palatino Linotype, Book Antiqua, Palatino, Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.22;
}

.footer-brand p,
.footer-contact p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 18px;
}

.footer-links a,
.footer-contact a {
  color: #f5d391;
  font-size: 0.84rem;
}

.footer-contact {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.reveal,
.faq-wrap details {
  opacity: 0;
  transform: translateY(32px) scale(0.985);
  filter: blur(8px);
  transition: opacity 820ms ease, transform 820ms ease, filter 820ms ease;
}

.reveal.is-visible,
.faq-wrap details.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes floatHero {
  50% {
    transform: translateY(-10px);
  }
}

@keyframes heroDrift {
  0%, 100% {
    transform: scale(1.03) translateX(0);
  }
  50% {
    transform: scale(1.06) translateX(10px);
  }
}

@keyframes buttonGlow {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes buttonShine {
  0%, 55% {
    transform: translateX(-130%) skewX(-18deg);
  }
  82%, 100% {
    transform: translateX(130%) skewX(-18deg);
  }
}

@keyframes letterRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSlow {
  50% {
    transform: translateY(-8px) rotateZ(-0.6deg);
  }
}

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

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

@media (max-width: 780px) {
  .two-col,
  .price-grid,
  .about-grid,
  .bonus-card.wide {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: min(680px, 100svh);
    align-items: flex-start;
    padding: 34px 0 30px;
  }

  .hero-bg {
    background: linear-gradient(180deg, #060606, #0b0b0a);
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(5,5,5,0.98) 0%, rgba(5,5,5,0.88) 42%, rgba(5,5,5,0.28) 64%, rgba(5,5,5,0.18) 78%, rgba(5,5,5,0.58) 100%),
      linear-gradient(0deg, #0b0b0a 0%, rgba(11,11,10,0.14) 34%, rgba(11,11,10,0.42) 100%);
  }

  .hero-ribbon {
    min-height: 38px;
    padding: 6px 10px;
  }

  .hero-ribbon span {
    font-size: clamp(0.72rem, 2.1vw, 0.88rem);
    line-height: 1.1;
  }

  .hero-figure {
    right: -10%;
    top: 0;
    bottom: auto;
    width: 64%;
    height: 100%;
  }

  .hero-figure::after {
    background:
      linear-gradient(90deg, rgba(11,11,10,0.82) 0%, rgba(11,11,10,0.58) 18%, transparent 43%, transparent 78%, rgba(11,11,10,0.35) 100%),
      linear-gradient(0deg, #0b0b0a 0%, rgba(11,11,10,0.15) 28%, transparent 64%);
  }

  .hero-figure img {
    object-position: 62% center;
  }

  .hero-copy {
    max-width: 48%;
    padding: 0;
  }

  .hero-mark {
    margin-bottom: 18px;
  }

  .hero-mark span {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    font-size: 1rem;
  }

  .hero-mark strong {
    font-size: 0.72rem;
  }

  .hero-lead {
    font-size: clamp(0.92rem, 2.1vw, 1.18rem);
    line-height: 1.34;
  }

  .hero-note {
    max-width: 95%;
    margin-top: 16px;
    font-size: 0.9rem;
  }

  .hero-btn {
    min-width: min(100%, 300px);
    min-height: 54px;
    margin-top: 18px;
    font-size: 0.82rem;
    padding-inline: 18px;
  }

  .cards-grid,
  .who-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .mockup-collage {
    min-height: 360px;
  }

  .welcome-copy {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 22px;
  }

  .mentor-track img {
    width: 160px;
  }

  .proof-grid {
    grid-template-columns: repeat(5, minmax(150px, 170px));
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .about-photo img {
    min-height: 360px;
  }

  .info-card img,
  .bonus-card.wide img {
    max-height: 340px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-contact {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: calc(100% - 34px);
  }

  .hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0 0;
  }

  .hero-bg {
    background: linear-gradient(180deg, #060606, #0b0b0a);
  }

  .hero::before {
    background:
      radial-gradient(circle at 78% 58%, rgba(217,167,90,0.08), transparent 30%),
      linear-gradient(180deg, rgba(5,5,5,0.98) 0%, rgba(11,11,10,0.96) 100%);
  }

  .hero-copy {
    max-width: 100%;
    padding: 9px 0 18px;
  }

  .hero-figure {
    display: none;
  }

  .hero-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% center;
  }

  .hero-figure::after {
    background:
      linear-gradient(0deg, #0b0b0a 0%, rgba(11,11,10,0.06) 32%, transparent 72%),
      linear-gradient(90deg, rgba(11,11,10,0.08), transparent 40%, rgba(11,11,10,0.16));
  }

  .hero-ribbon {
    min-height: 30px;
    padding: 4px 8px;
  }

  .hero-ribbon span {
    max-width: 94vw;
    font-size: clamp(0.56rem, 2.7vw, 0.68rem);
    line-height: 1.05;
  }

  h1 {
    font-size: clamp(1.48rem, 7.2vw, 2rem);
    line-height: 1.06;
    margin-bottom: 10px;
  }

  h2 {
    font-size: clamp(1.35rem, 7.4vw, 1.95rem);
    line-height: 1.15;
  }

  p {
    font-size: 0.94rem;
  }

  .hero-kicker {
    font-size: 0.66rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .hero-mark {
    display: none;
  }

  .hero-lead {
    max-width: 100%;
    font-size: clamp(0.92rem, 4vw, 1.02rem);
    line-height: 1.35;
  }

  .hero-note {
    display: none;
  }

  .hero-btn {
    display: none;
  }

  .btn,
  .center-btn,
  .price-card .btn {
    width: 100%;
  }

  .trust-mini {
    display: none;
  }

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

  .intro-section,
  .problem-section,
  .truth-section,
  .cards-section,
  .who-section,
  .welcome-section,
  .proof-section,
  .price-section,
  .bonus-section,
  .about-section {
    padding: 44px 0;
  }

  .intro-section {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    margin-top: -2px;
    padding: 224px 0 34px;
    overflow: hidden;
    isolation: isolate;
  }

  .intro-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("assets/generated-hero.png");
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 68% center;
    filter: brightness(0.88) contrast(1.06);
  }

  .intro-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      linear-gradient(180deg, #0b0b0a 0%, rgba(11,11,10,0.04) 22%, rgba(11,11,10,0.18) 52%, #0b0b0a 100%),
      linear-gradient(90deg, rgba(11,11,10,0.82) 0%, rgba(11,11,10,0.38) 40%, rgba(11,11,10,0.68) 100%);
    pointer-events: none;
  }

  .intro-section .narrow {
    width: calc(100% - 28px);
    max-width: 420px;
    padding: 20px 14px 0;
    text-align: left;
  }

  .intro-section .eyebrow {
    margin-bottom: 8px;
  }

  .intro-section h2 {
    max-width: 330px;
    margin-bottom: 9px;
  }

  .intro-section .narrow p {
    max-width: 360px;
    color: rgba(244,239,231,0.88);
    text-shadow: 0 2px 18px rgba(0,0,0,0.65);
  }

  .intro-section .btn {
    width: 100%;
    margin-top: 6px;
  }

  .feature-list div {
    grid-template-columns: 1fr;
  }

  .mockup-collage {
    min-height: 390px;
  }

  .mock-main {
    width: 54%;
  }

  .mock-a {
    width: 32%;
  }

  .mock-b {
    width: 36%;
  }

  .mock-c {
    width: 34%;
  }

  .price-card strong {
    font-size: 2.55rem;
  }

  .about-photo img {
    min-height: 310px;
  }

  .info-card img,
  .bonus-card.wide img {
    max-height: 280px;
  }

  .mentor-track {
    animation-duration: 32s;
  }

  .mentor-track img {
    width: 148px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .site-footer {
    padding: 34px 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .wrap {
    width: calc(100% - 28px);
  }

  .hero {
    padding-top: 10px;
    padding-bottom: 0;
  }

  .hero-figure {
    display: none;
  }

  .hero-ribbon span {
    font-size: 0.56rem;
  }

  .hero-kicker {
    font-size: 0.64rem;
  }

  h1 {
    font-size: clamp(1.24rem, 7vw, 1.55rem);
    margin-bottom: 9px;
  }

  .hero-lead {
    font-size: 0.8rem;
    line-height: 1.28;
  }

  .hero-btn {
    display: none;
  }

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

  .intro-section {
    min-height: 500px;
    padding-top: 190px;
  }

  .intro-section::before {
    background-size: auto 96%;
    background-position: 66% top;
  }
}

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

  .hero-copy .hero-mark,
  .hero-copy .hero-kicker,
  .hero-copy h1,
  .hero-copy p,
  .hero-copy .btn,
  .reveal,
  .faq-wrap details {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
