:root {
  color-scheme: light;
  --ink: #24181d;
  --muted: #68565d;
  --paper: #fffaf7;
  --surface: #ffffff;
  --rose: #c8194b;
  --rose-deep: #8f1237;
  --coral: #f15a4a;
  --orange: #f68b2f;
  --plum: #61235f;
  --teal: #126b62;
  --line: rgba(36, 24, 29, 0.13);
  --shadow: 0 22px 55px rgba(97, 35, 95, 0.14);
  --shadow-strong: 0 34px 90px rgba(36, 24, 29, 0.24);
  --glass: rgba(255, 255, 255, 0.16);
  --glass-border: rgba(255, 255, 255, 0.32);
  --container: min(1120px, calc(100vw - 32px));
  font-family:
    "Heebo",
    "Noto Sans Hebrew",
    "Segoe UI",
    Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background: var(--paper);
  overflow-x: hidden;
  direction: ltr;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  direction: ltr;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body,
button,
input,
textarea {
  font: inherit;
}

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

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

.icon-sprite {
  position: absolute !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.site-shell {
  min-height: 100vh;
  overflow-x: clip;
  direction: rtl;
  text-align: right;
  background:
    linear-gradient(115deg, rgba(255, 247, 241, 0.96), rgba(255, 250, 247, 0.96) 45%, rgba(255, 242, 248, 0.9));
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.topbar {
  position: fixed;
  z-index: 50;
  inset-block-start: 14px;
  inset-inline: 0;
  width: var(--container);
  min-height: 70px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(36, 24, 29, 0.76), rgba(63, 31, 50, 0.58)),
    rgba(28, 18, 22, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(26px) saturate(1.45);
  transition:
    min-height 220ms ease,
    padding 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(246, 139, 47, 0.22), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(200, 25, 75, 0.2), transparent 36%);
  opacity: 0.8;
}

.topbar.topbar--scrolled {
  min-height: 62px;
  padding-block: 7px;
  background:
    linear-gradient(120deg, rgba(29, 18, 23, 0.88), rgba(66, 31, 51, 0.72)),
    rgba(28, 18, 22, 0.52);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 22px 64px rgba(0, 0, 0, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  justify-self: start;
}

.brand small {
  display: block;
  margin-block-start: 2px;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.78;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  flex: 0 0 42px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #e31c58, #8f1237);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 12px 28px rgba(200, 25, 75, 0.34);
}

.topnav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.topnav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.topnav a:hover,
.topnav a.is-active,
.footer a:hover,
.text-link:hover {
  color: #fff;
}

.topnav a:hover,
.topnav a.is-active {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  min-width: 0;
}

.topbar-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.topbar-price small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 750;
}

.topbar-price strong {
  font-size: 1.04rem;
  white-space: nowrap;
}

.topbar-cta {
  min-height: 44px;
  padding-inline: 16px;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 15px;
  cursor: pointer;
  backdrop-filter: blur(16px);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.menu-toggle .close-icon,
.menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}

.menu-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

.mobile-menu {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 14px;
  font-weight: 850;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  translate: 120% 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transition: translate 520ms ease;
}

.button:hover::before {
  translate: -120% 0;
}

.button span,
.button svg {
  position: relative;
  z-index: 1;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, #df1954, #b31345 55%, #7d174e);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 18px 38px rgba(200, 25, 75, 0.34);
}

.button--primary::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -30%;
  width: 38%;
  rotate: 16deg;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: softShimmer 4.8s ease-in-out infinite;
  pointer-events: none;
}

.button--primary:hover {
  background: var(--rose-deep);
}

.button--light {
  color: var(--rose-deep);
  background: #fff;
  box-shadow: 0 14px 30px rgba(36, 24, 29, 0.12);
}

.button--outline {
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
}

.button--outline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero {
  position: relative;
  min-height: 90svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #21161b;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(200, 25, 75, 0.16), transparent 36%, rgba(246, 139, 47, 0.12) 76%, transparent),
    linear-gradient(0deg, rgba(36, 24, 29, 0.52), transparent 54%);
  opacity: 0.9;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 38% 14%;
  z-index: 0;
}

.parallax-media {
  --parallax-y: 0px;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.04);
  transform-origin: center;
  will-change: transform;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(22, 13, 17, 0.22), rgba(22, 13, 17, 0.2) 42%, rgba(22, 13, 17, 0.78)),
    linear-gradient(0deg, rgba(22, 13, 17, 0.74), transparent 62%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 46%;
  background: linear-gradient(0deg, rgba(36, 24, 29, 0.7), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: end;
  gap: clamp(28px, 5vw, 64px);
  padding-block: 150px 64px;
  animation: floatIn 760ms ease both;
}

.hero-proof {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.hero-proof li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #ffb85a;
  box-shadow: 0 0 0 6px rgba(255, 184, 90, 0.14);
}

.hero-copy {
  max-width: 760px;
  justify-self: end;
}

.hero-offer {
  align-self: end;
  padding: 24px;
  border-radius: 28px;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(145deg, rgba(36, 24, 29, 0.58), rgba(97, 35, 95, 0.26));
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-offer > p {
  margin: 0 0 8px;
  color: #ffb85a;
  font-size: 0.95rem;
  font-weight: 900;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: clamp(0.86rem, 2.4vw, 1rem);
  font-weight: 850;
}

.hero h1,
.thanks-content h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(3.15rem, 5.6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.7;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.34);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-block-start: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 750;
}

.text-link svg {
  width: 18px;
  height: 18px;
}

.price-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  margin-block-start: 0;
  padding: 12px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  backdrop-filter: blur(18px) saturate(1.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.price-strip span {
  color: rgba(255, 255, 255, 0.78);
}

.price-strip strong {
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  line-height: 1;
}

.price-strip del {
  color: rgba(255, 255, 255, 0.62);
}

.hero-microcopy {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  font-weight: 650;
}

.section {
  padding-block: clamp(72px, 10vw, 118px);
}

.feature-card,
.step-card,
.testimonial-card,
.purchase-panel,
.module-list li,
.transformation-card,
.photo-stack img {
  transform: translateY(0) scale(1);
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition:
    opacity 680ms ease,
    transform 680ms ease,
    filter 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

.section-header {
  max-width: 760px;
  margin-block-end: 34px;
}

.section-header h2,
.pain-grid h2,
.final-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-header p:not(.eyebrow),
.body-copy,
.final-grid p,
.pain-grid p {
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.16rem);
  line-height: 1.85;
}

.pain-section {
  padding-block: 44px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 241, 0.9)),
    var(--surface);
  border-block: 1px solid var(--line);
}

.pain-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 36px;
}

.pain-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pain-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--rose-deep);
  background: #fff2f0;
  border: 1px solid rgba(200, 25, 75, 0.12);
  font-weight: 750;
  box-shadow: 0 12px 24px rgba(200, 25, 75, 0.08);
}

.pain-list svg {
  width: 18px;
  height: 18px;
}

.method-section {
  background:
    linear-gradient(145deg, #fff7fb, #fffaf7 55%, #fff0e7);
}

.method-grid,
.about-grid,
.final-grid,
.modules-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(32px, 6vw, 78px);
}

.image-panel,
.about-image {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.image-panel {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #2b2226;
  transform-style: preserve-3d;
}

.image-panel img,
.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-panel img {
  object-position: center 28%;
}

.depth-card {
  box-shadow:
    0 38px 90px rgba(36, 24, 29, 0.22),
    24px 24px 0 rgba(246, 139, 47, 0.12),
    -18px -18px 0 rgba(200, 25, 75, 0.08);
}

.glass-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 22px 48px rgba(36, 24, 29, 0.14);
  backdrop-filter: blur(24px) saturate(1.4);
}

.hero-offer.glass-card {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(42, 24, 33, 0.82), rgba(97, 35, 95, 0.44)),
    rgba(36, 24, 29, 0.58);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 26px 70px rgba(0, 0, 0, 0.34);
}

.hero-offer .price-strip {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
}

.floating-note {
  position: absolute;
  inset-inline: 22px auto;
  inset-block-end: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(310px, calc(100% - 44px));
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--rose-deep);
  font-weight: 850;
}

.floating-note svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.quote-band {
  margin-block-start: 24px;
  padding: 22px 24px;
  color: var(--plum);
  background: #ffffff;
  border-inline-start: 6px solid var(--orange);
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(36, 24, 29, 0.1);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 750;
  line-height: 1.65;
}

.transformation-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(36, 24, 29, 0.94), rgba(97, 35, 95, 0.94)),
    url("./ayelet-stage-performance.png") center / cover fixed;
}

.transformation-section .section-header p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.transformation-section .eyebrow {
  color: #ffb85a;
}

.transformation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.transformation-card {
  display: grid;
  gap: 14px;
  min-height: 210px;
  padding: 24px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.22);
}

.transformation-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.transformation-card strong {
  font-size: clamp(1.1rem, 2.6vw, 1.45rem);
  line-height: 1.45;
}

.transformation-card svg {
  width: 22px;
  height: 22px;
  color: #ffb85a;
}

.benefit-grid,
.step-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card,
.step-card,
.testimonial-card,
.purchase-panel {
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68));
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 18px 46px rgba(36, 24, 29, 0.08);
  backdrop-filter: blur(16px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.feature-card:hover,
.step-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 25, 75, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 26px 58px rgba(36, 24, 29, 0.13);
}

.feature-card,
.step-card {
  min-height: 238px;
  padding: 24px;
}

.feature-card svg,
.step-card svg,
.testimonial-card svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 16px;
  color: var(--rose);
  background: #fff2f0;
}

.feature-card h3,
.step-card h3 {
  margin: 18px 0 8px;
  font-size: 1.2rem;
}

.feature-card p,
.step-card p,
.testimonial-card blockquote {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.work-section {
  background:
    linear-gradient(135deg, #f6fffc, #fffaf7 52%, #fff2f0);
}

.modules-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(97, 35, 95, 0.96), rgba(36, 24, 29, 0.98)),
    url("./ayelet-microphone-portrait.png") center / cover;
}

.modules-section .eyebrow,
.modules-section .section-header p {
  color: #ffd18d;
}

.modules-section .section-header {
  margin-block-end: 24px;
}

.modules-layout {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.module-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: modules;
}

.module-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  min-height: 74px;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.module-list li:hover {
  transform: translateX(-6px);
  background: rgba(255, 255, 255, 0.16);
}

.gallery-section {
  background:
    linear-gradient(135deg, #fffaf7, #fff5f8 48%, #fff0e7);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}

.gallery-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 13px;
  color: var(--rose-deep);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(200, 25, 75, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(36, 24, 29, 0.06);
  font-weight: 800;
}

.gallery-badges svg {
  width: 18px;
  height: 18px;
}

.photo-stack {
  position: relative;
  min-height: 560px;
  perspective: 1100px;
}

.photo-stack img {
  position: absolute;
  width: min(62%, 360px);
  height: 430px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-strong);
  transition:
    transform 220ms ease,
    filter 220ms ease,
    z-index 220ms ease;
}

.photo-stack img:nth-child(1) {
  inset-block-start: 24px;
  inset-inline-end: 0;
  z-index: 3;
  transform: rotateY(-9deg) rotateZ(2deg);
}

.photo-stack img:nth-child(2) {
  inset-block-start: 112px;
  inset-inline-start: 20px;
  z-index: 2;
  height: 340px;
  transform: rotateY(10deg) rotateZ(-6deg);
}

.photo-stack img:nth-child(3) {
  inset-block-start: 244px;
  inset-inline-end: 92px;
  z-index: 4;
  width: min(48%, 285px);
  height: 300px;
  object-position: center 24%;
  transform: rotateY(-6deg) rotateZ(-2deg);
}

.photo-stack:hover img {
  filter: saturate(1.06) contrast(1.02);
}

.photo-stack img:hover {
  z-index: 8;
  transform: rotate(0deg) translateY(-10px) scale(1.03);
}

.module-list span {
  color: #ffd18d;
  font-size: 1.45rem;
  font-weight: 900;
}

.module-list strong {
  font-size: clamp(1rem, 2.5vw, 1.24rem);
}

.about-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 247, 0.92)),
    var(--surface);
}

.about-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
}

.about-image {
  aspect-ratio: 1;
  object-position: center center;
}

.testimonials-section {
  background:
    linear-gradient(135deg, #fff7f1, #fffaf7 56%, #fff3fb);
}

.testimonial-card {
  margin: 0;
  min-height: 250px;
  padding: 24px;
}

.testimonial-card::before {
  content: "“";
  display: block;
  color: rgba(200, 25, 75, 0.16);
  font-size: 4rem;
  line-height: 0.7;
  font-weight: 900;
}

.testimonial-card blockquote {
  margin-block: 18px;
}

.testimonial-card figcaption {
  color: var(--ink);
  font-weight: 850;
}

.final-section {
  position: relative;
  isolation: isolate;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 250, 247, 0.96), rgba(255, 241, 248, 0.92)),
    #fffaf7;
  overflow: hidden;
  padding-block: clamp(92px, 12vw, 142px);
  scroll-margin-top: 92px;
}

.final-section::before {
  content: "";
  position: absolute;
  inset-block: 0;
  inset-inline-start: 0;
  z-index: -2;
  width: min(48vw, 720px);
  background:
    linear-gradient(90deg, rgba(255, 250, 247, 0), rgba(255, 250, 247, 0.92) 72%),
    url("./ayelet-stage-performance.png") center / cover;
  opacity: 0.88;
}

.final-section::after {
  content: "";
  position: absolute;
  inset-inline: auto 7%;
  inset-block-start: 18%;
  z-index: -1;
  width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(200, 25, 75, 0.11);
  filter: blur(34px);
}

.final-section .eyebrow {
  color: var(--rose);
}

.final-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.final-grid p {
  color: var(--muted);
}

.final-grid > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 4vw, 44px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 24px 70px rgba(36, 24, 29, 0.1);
  backdrop-filter: blur(18px) saturate(1.2);
}

.final-grid > div:first-child h2 {
  max-width: 760px;
}

.offer-badge,
.purchase-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 40px;
  margin-block-end: 16px;
  padding: 9px 13px;
  color: var(--rose-deep);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(200, 25, 75, 0.15);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(200, 25, 75, 0.08);
  font-weight: 900;
}

.offer-badge svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.final-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block-start: 26px;
}

.final-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 13px;
  color: var(--rose-deep);
  background: #fff;
  border: 1px solid rgba(200, 25, 75, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(36, 24, 29, 0.06);
  font-weight: 850;
}

.purchase-panel {
  padding: 28px;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 252, 0.82));
  border-color: rgba(200, 25, 75, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 30px 80px rgba(97, 35, 95, 0.16);
}

.purchase-kicker {
  margin-block-end: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--plum));
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 16px 34px rgba(200, 25, 75, 0.18);
}

.final-section .purchase-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 30px;
}

.price-row,
.price-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.price-row {
  color: var(--muted);
}

.price-main {
  margin-block: 8px 22px;
}

.price-main span {
  color: var(--rose);
  font-weight: 850;
}

.price-main strong {
  color: var(--rose-deep);
  font-size: clamp(2.7rem, 7vw, 4.4rem);
  line-height: 1;
}

.purchase-panel ul {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.purchase-panel li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.purchase-panel li svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.purchase-note {
  margin: -4px 0 18px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.purchase-panel .button {
  width: 100%;
}

.footer {
  color: rgba(255, 255, 255, 0.76);
  background: #181014;
}

.footer-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer a {
  color: #fff;
  font-weight: 800;
}

.mobile-sticky {
  display: none;
}

@keyframes floatIn {
  from {
    opacity: 1;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes softShimmer {
  0%,
  64% {
    transform: translateX(0);
    opacity: 0;
  }
  72% {
    opacity: 1;
  }
  100% {
    transform: translateX(360%);
    opacity: 0;
  }
}

.thanks-page {
  min-height: 100vh;
  color: #fff;
  background: #24181d;
  direction: rtl;
  text-align: right;
}

.thanks-hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(rgba(36, 24, 29, 0.72), rgba(36, 24, 29, 0.72)),
    url("./ayelet-red-dress-piano.png") center / cover;
}

.thanks-brand {
  position: fixed;
  inset-block-start: 24px;
  inset-inline-start: 24px;
}

.thanks-content {
  width: min(760px, 100%);
  padding-block: 100px 42px;
}

.thanks-content > svg {
  width: 56px;
  height: 56px;
  margin-block-end: 18px;
  color: #ffb85a;
}

.thanks-content h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}

.thanks-content p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
  line-height: 1.85;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-block-start: 26px;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .topnav {
    display: none;
  }

  .topbar-actions {
    justify-self: end;
  }

  .menu-toggle {
    display: grid;
  }

  .mobile-menu {
    grid-column: 1 / -1;
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition:
      max-height 260ms ease,
      opacity 220ms ease,
      transform 220ms ease,
      padding 220ms ease;
  }

  .topbar.menu-open .mobile-menu {
    max-height: 430px;
    opacity: 1;
    padding-block-start: 12px;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding-block-start: 12px;
    border-block-start: 1px solid rgba(255, 255, 255, 0.16);
  }

  .mobile-menu nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 800;
  }

  .mobile-menu nav a.is-active {
    color: #fff;
    background: rgba(200, 25, 75, 0.3);
    border-color: rgba(255, 255, 255, 0.18);
  }

  .mobile-menu-offer {
    display: grid;
    gap: 10px;
    margin-block-start: 10px;
    padding: 12px;
    border-radius: 18px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.07)),
      rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .mobile-menu-offer > span {
    color: #ffcf84;
    font-weight: 900;
  }

  .hero-content {
    grid-template-columns: 1fr;
    max-width: min(720px, var(--container));
    margin-inline: auto;
  }

  .hero-copy {
    justify-self: stretch;
  }

  .hero-offer {
    max-width: 430px;
    justify-self: stretch;
  }

  .pain-grid,
  .method-grid,
  .about-grid,
  .final-grid,
  .modules-layout {
    grid-template-columns: 1fr;
  }

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

  .method-grid .image-panel {
    order: 2;
    max-height: 620px;
  }

  .about-image {
    max-height: 560px;
  }
}

@media (max-width: 680px) {
  :root {
    --container: calc(100vw - 24px);
  }

  .topbar {
    inset-inline: auto;
    left: 10px;
    right: 24px;
    inset-block-start: 8px;
    width: auto;
    min-height: 58px;
    margin-inline: 0;
    padding: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    overflow: visible;
    border-radius: 18px;
  }

  .topbar-price {
    min-height: 42px;
    padding-inline: 10px;
  }

  .topbar-price small {
    display: none;
  }

  .topbar-cta {
    min-height: 42px;
    padding-inline: 12px;
  }

  .topbar-cta svg:first-child {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .mobile-menu nav {
    grid-template-columns: 1fr;
  }

  .brand-mark {
    width: 36px;
    flex-basis: 36px;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .brand > span:last-child {
    max-width: 112px;
    overflow: hidden;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    align-items: end;
  }

  .hero-media {
    object-position: 50% top;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(22, 13, 17, 0.94) 0%, rgba(22, 13, 17, 0.82) 38%, rgba(22, 13, 17, 0.25) 72%),
      rgba(22, 13, 17, 0.14);
  }

  .hero::before {
    opacity: 0.48;
  }

  .hero::after {
    height: 58%;
  }

  .hero-content {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
    gap: 18px;
    text-align: center;
    padding-block: 390px 108px;
  }

  .hero-copy {
    max-width: 100%;
    padding-inline: 10px;
  }

  .hero h1 {
    max-width: calc(100% - 12px);
    margin-inline: auto;
    font-size: clamp(2.05rem, 9.4vw, 3rem);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .hero-kicker {
    max-width: 310px;
    margin-inline: auto;
    line-height: 1.45;
  }

  .hero-lead {
    max-width: calc(100% - 12px);
    margin-inline: auto;
    margin-block-start: 16px;
    font-size: 1.02rem;
    line-height: 1.68;
  }

  .button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding-inline: 14px;
    text-align: center;
    white-space: normal;
  }

  .topbar .button {
    width: auto;
    min-height: 42px;
    white-space: nowrap;
  }

  .mobile-menu-offer .button {
    width: 100%;
  }

  .text-link {
    width: 100%;
    justify-content: center;
  }

  .price-strip {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
  }

  .price-strip strong {
    font-size: 2.25rem;
  }

  .hero-offer {
    max-width: 100%;
    padding: 14px;
    border-radius: 20px;
  }

  .hero-offer > p,
  .hero-proof {
    display: none;
  }

  .hero-microcopy {
    max-width: 300px;
    margin-inline: auto;
    font-size: 0.88rem;
  }

  .section {
    padding-block: 66px;
  }

  .pain-section {
    padding-block: 36px;
  }

  .pain-list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .step-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .step-card,
  .testimonial-card {
    min-height: auto;
    padding: 22px;
  }

  .module-list li {
    grid-template-columns: 50px 1fr;
    min-height: 68px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 22px 104px;
  }

  .final-section {
    padding-block: 76px 92px;
  }

  .final-grid > div:first-child {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .final-tags {
    display: grid;
    grid-template-columns: 1fr;
  }

  .final-tags span {
    justify-content: center;
  }

  .final-section .purchase-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .mobile-sticky {
    position: fixed;
    z-index: 60;
    inset-inline: 10px;
    inset-block-end: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 68px;
    padding: 10px;
    color: #fff;
    background: rgba(36, 24, 29, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(36, 24, 29, 0.22);
    backdrop-filter: blur(16px);
    transition:
      transform 220ms ease,
      opacity 220ms ease,
      visibility 220ms ease;
  }

  .mobile-sticky--hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    pointer-events: none;
  }

  .mobile-sticky > span {
    flex: 0 0 auto;
    font-size: 0.92rem;
    font-weight: 850;
    white-space: nowrap;
  }

  .mobile-sticky .button {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    min-height: 48px;
  }

  .mobile-sticky .button svg:first-child {
    display: none;
  }

  @media (max-width: 460px) {
    .mobile-sticky > span {
      display: none;
    }
  }

  .thanks-hero {
    padding: 18px;
  }

  .thanks-brand {
    inset-inline-start: 18px;
  }

  .thanks-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }

  .parallax-media {
    transform: none;
  }
}

@media (max-width: 520px) {
  .topbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-right: 56px;
    padding-left: 8px;
  }

  .brand {
    position: absolute;
    top: 50%;
    right: 10px;
    z-index: 2;
    flex: 0 0 auto;
    transform: translateY(-50%);
    gap: 0;
  }

  .brand > span:last-child {
    display: none;
  }

  .topbar-actions {
    flex: 1 1 0;
    justify-self: start;
    justify-content: flex-start;
    gap: 8px;
  }

  .mobile-menu {
    order: 3;
    flex: 0 0 100%;
  }

  .topbar-price {
    min-width: 72px;
    justify-content: center;
  }

  .topbar-cta {
    min-width: 92px;
  }

  .mobile-sticky > span {
    display: none;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: clamp(1.95rem, 8.7vw, 2.25rem);
  }

  .hero h1 span {
    max-width: 218px;
    margin-inline: auto;
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .hero-actions .button {
    font-size: 0.94rem;
  }
}

