:root {
  --bg: #050505;
  --card: #101010;
  --card2: #171717;
  --text: #fff7ea;
  --muted: #b9b0a3;
  --line: rgba(255,255,255,.13);
  --green: #caff2c;
  --orange: #ff5b22;
  --pink: #ff2ea6;
  --blue: #18c8ff;
  --shadow: 0 30px 80px rgba(0,0,0,.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-bottom: 76px;
  background:
    radial-gradient(circle at 15% 5%, rgba(202,255,44,.16), transparent 25%),
    radial-gradient(circle at 85% 10%, rgba(255,46,166,.13), transparent 28%),
    radial-gradient(circle at 50% 70%, rgba(24,200,255,.10), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1,h2,h3,p { margin-top: 0; }

.topbar {
  position: fixed;
  z-index: 30;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 20px));
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 10px 10px 10px 18px;
  background: rgba(5,5,5,.65);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.brand { text-decoration:none; font-weight:1000; letter-spacing:-.04em; text-transform:uppercase; }
.top-btn { text-decoration:none; background:var(--green); color:#050505; padding:10px 16px; border-radius:999px; font-weight:1000; }

.hero {
  width: min(1120px, calc(100% - 28px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 96px 0 42px;
  display:grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items:center;
}
.badge, .eyebrow {
  display:inline-flex;
  width: fit-content;
  background: rgba(202,255,44,.14);
  color: var(--green);
  border: 1px solid rgba(202,255,44,.35);
  border-radius:999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight:1000;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom: 14px;
}
h1 {
  font-size: clamp(48px, 7.6vw, 104px);
  line-height: .84;
  letter-spacing: -.075em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.lead {
  max-width: 650px;
  color: #ddd4c9;
  font-size: 20px;
  line-height:1.42;
  margin-bottom: 28px;
}
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-bottom: 26px; }
.btn {
  display:inline-flex;
  min-height:54px;
  align-items:center;
  justify-content:center;
  padding: 14px 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:1000;
  text-transform:uppercase;
  transition:.2s;
}
.btn:hover { transform: translateY(-2px); }
.primary {
  background: linear-gradient(135deg, var(--green), #8cff00);
  color:#050505;
  box-shadow: 0 16px 50px rgba(202,255,44,.28);
}
.secondary {
  border:1px solid var(--line);
  background:rgba(255,255,255,.07);
}
.wide { width:100%; }

.stats {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.stats div, .cards article, .screen-wrap, .proof-text, .price-card, details, .about, .funnel-stats div {
  background: rgba(16,16,16,.82);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.stats div { padding: 15px; border-radius: 20px; }
.stats b { display:block; color: var(--green); font-size:30px; letter-spacing:-.06em; }
.stats span { color:var(--muted); font-size:12px; line-height:1.15; display:block; }

.hero-photo {
  position:relative;
  min-height: 640px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.photo-glow {
  position:absolute;
  width: 84%;
  height: 78%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(202,255,44,.35), transparent 58%),
    radial-gradient(circle at 70% 20%, rgba(255,46,166,.35), transparent 42%);
  filter: blur(30px);
}
.hero-photo img {
  position:relative;
  z-index:1;
  width: 92%;
  height: 620px;
  object-fit: cover;
  object-position:center top;
  border-radius: 46px;
  border: 2px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
}
.photo-label {
  position:absolute;
  z-index:2;
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(14px);
  border:1px solid var(--line);
  border-radius: 20px;
  padding: 14px 18px;
}
.photo-label span { display:block; color:var(--muted); font-size:12px; }
.photo-label b { color:var(--green); font-size:24px; }
.photo-label.one { left: 0; top: 42%; }
.photo-label.two { right: 0; bottom: 20%; }

.marquee {
  overflow: hidden;
  background: var(--green);
  color: #050505;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 36px;
  white-space: nowrap;
  padding: 10px 0;
  font-size: clamp(34px, 6vw, 80px);
  font-weight: 1000;
  letter-spacing: -.07em;
  text-transform: uppercase;
  will-change: transform;
  animation: marqueeLoop 8s linear infinite;
}

.marquee-track span {
  display: inline-block;
  padding-left: 20px;
}

@keyframes marqueeLoop {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.section {
  width:min(1120px, calc(100% - 28px));
  margin:0 auto;
  padding: 72px 0;
}
.hook {
  text-align:center;
  max-width: 900px;
}
h2 {
  font-size: clamp(36px, 5.8vw, 72px);
  line-height:.9;
  letter-spacing:-.065em;
  text-transform:uppercase;
  margin-bottom: 18px;
}
.hook p, .section-head p, .visual-copy p, .proof-text p, .about p, .final-cta p {
  color:var(--muted);
  font-size: 18px;
  line-height:1.45;
}
.section-head { max-width: 850px; margin-bottom:30px; }
.center { text-align:center; margin-left:auto; margin-right:auto; }

.grid.cards {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.cards article {
  padding:22px;
  border-radius:28px;
  min-height: 230px;
}
.cards .accent-card {
  background:
    radial-gradient(circle at 20% 0%, rgba(202,255,44,.22), transparent 42%),
    rgba(16,16,16,.88);
}
.cards span {
  color: var(--green);
  font-weight:1000;
  display:block;
  margin-bottom:16px;
}
h3 {
  font-size: 25px;
  line-height:1;
  letter-spacing:-.045em;
  margin-bottom:10px;
}
.cards p { color:var(--muted); line-height:1.38; margin-bottom:0; }

.visual-block {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:28px;
  align-items:center;
}
.screen-wrap {
  padding:12px;
  border-radius:36px;
  background: linear-gradient(135deg, rgba(202,255,44,.18), rgba(255,46,166,.12)), var(--card);
}
.screen-wrap img {
  border-radius:26px;
  width:100%;
  max-height:620px;
  object-fit:cover;
  object-position:top;
}

.shot-grid {
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:14px;
}
.shot-grid img {
  height: 430px;
  width:100%;
  object-fit:cover;
  object-position:top;
  border-radius:28px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.proof-layout {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:24px;
  align-items:center;
}
.proof-text {
  border-radius:34px;
  padding:30px;
}
.big-number {
  font-size: clamp(76px, 10vw, 135px);
  line-height:.8;
  color:var(--green);
  font-weight:1000;
  letter-spacing:-.08em;
}
.pill-row { display:flex; gap:8px; flex-wrap:wrap; }
.pill-row span, .included span {
  background: rgba(255,255,255,.07);
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:999px;
  color:#eadfd1;
  font-weight:800;
  font-size:13px;
}
.reels {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.reels img {
  height:520px;
  width:100%;
  object-fit:cover;
  object-position:top;
  border-radius:30px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.funnel-stats {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-bottom:18px;
}
.funnel-stats div {
  border-radius:26px;
  padding:22px;
  text-align:center;
}
.funnel-stats b {
  display:block;
  color:var(--green);
  font-size:54px;
  line-height:.85;
  letter-spacing:-.07em;
}
.funnel-stats span { display:block; font-weight:900; }
.funnel-stats em { color:var(--muted); font-style:normal; }

.funnel-images {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}
.funnel-images a {
  display:block;
  border:1px solid var(--line);
  border-radius:26px;
  overflow:hidden;
  background:rgba(16,16,16,.82);
}
.funnel-images img {
  width:100%;
  height:260px;
  object-fit:contain;
  object-position:center;
}

.about {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:26px;
  align-items:center;
  border-radius:38px;
  padding:24px;
}
.about-photo img {
  height: 430px;
  width:100%;
  object-fit:cover;
  border-radius:28px;
}

.price-card {
  max-width:760px;
  margin:0 auto;
  border-radius:40px;
  padding:36px;
  text-align:center;
  background:
    radial-gradient(circle at 50% 0%, rgba(202,255,44,.22), transparent 38%),
    rgba(16,16,16,.9);
}
.price-card h2 {
  font-size: clamp(84px, 15vw, 150px);
  color:var(--green);
  margin:0 0 10px;
}
.price-card h2 span {
  font-size:22px;
  color:var(--text);
  letter-spacing:0;
}
.price-card p { color:var(--muted); font-size:18px; line-height:1.4; }
.included { display:flex; gap:8px; justify-content:center; flex-wrap:wrap; margin:24px 0; }
.price-card small { display:block; color:var(--muted); margin-top:12px; }

.faq { max-width:860px; }
details {
  border-radius:22px;
  padding:18px 20px;
  margin-bottom:10px;
}
summary { cursor:pointer; font-size:18px; font-weight:1000; }
details p { color:var(--muted); margin:12px 0 0; line-height:1.4; }

.final-cta {
  width:min(900px, calc(100% - 28px));
  margin:0 auto;
  padding:72px 0 90px;
  text-align:center;
}
footer {
  width:min(1120px, calc(100% - 28px));
  margin:0 auto 22px;
  padding:22px 0;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  color:var(--muted);
}
footer a { color:var(--green); text-decoration:none; font-weight:900; }

@media (max-width: 920px) {
  .hero, .visual-block, .proof-layout, .about { grid-template-columns:1fr; }
  .hero-photo { order:-1; min-height:auto; }
  .grid.cards { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 640px) {
  .topbar { bottom:8px; width:calc(100% - 16px); }
  .brand { font-size:12px; }
  .top-btn { padding:9px 12px; font-size:12px; }

  .hero {
    width:calc(100% - 22px);
    min-height:auto;
    padding:76px 0 34px;
    gap:18px;
  }
  .hero-photo {
    min-height:0;
    margin-bottom:8px;
  }
  .hero-photo img {
    width:100%;
    height:360px;
    border-radius:30px;
    object-position:center top;
  }
  .photo-glow {
    width:100%;
    height:320px;
  }
  .photo-label { display:none; }

  h1 {
    font-size: 42px;
    line-height:.87;
    margin-bottom:14px;
  }
  .lead { font-size:15.5px; line-height:1.34; margin-bottom:18px; }
  .badge, .eyebrow { font-size:10px; padding:7px 10px; margin-bottom:10px; }
  .hero-actions { gap:8px; margin-bottom:14px; }
  .btn { width:100%; min-height:46px; font-size:13px; padding:12px 14px; }
  .stats { gap:6px; }
  .stats div { padding:9px 6px; border-radius:14px; }
  .stats b { font-size:20px; }
  .stats span { font-size:10px; }

  .marquee-track { font-size:34px; padding:8px 0; gap:24px; }

  .section { width:calc(100% - 22px); padding:42px 0; }
  h2 { font-size:32px; line-height:.94; }
  h3 { font-size:20px; }
  .hook p, .section-head p, .visual-copy p, .proof-text p, .about p, .final-cta p, .price-card p {
    font-size:15px;
    line-height:1.38;
  }

  .grid.cards { grid-template-columns:1fr; gap:10px; }
  .cards article { min-height:auto; padding:16px; border-radius:20px; }
  .cards span { margin-bottom:8px; }

  .screen-wrap { padding:8px; border-radius:24px; }
  .screen-wrap img { border-radius:18px; max-height:430px; }

  .shot-grid { grid-template-columns:1fr; gap:10px; }
  .shot-grid img { height:auto; max-height:460px; border-radius:20px; object-fit:contain; background:rgba(16,16,16,.82); }

  .proof-text { padding:20px; border-radius:24px; }
  .big-number { font-size:76px; }
  .reels { grid-template-columns:1fr 1fr; gap:10px; }
  .reels img { height:300px; border-radius:20px; }

  .funnel-stats { grid-template-columns:1fr; gap:8px; }
  .funnel-stats div { padding:16px; border-radius:20px; }
  .funnel-stats b { font-size:44px; }
  .funnel-images {
    grid-template-columns:1fr;
  }
  .funnel-images a { border-radius:18px; }
  .funnel-images img {
    height:220px;
    object-fit:contain;
  }

  .about { padding:14px; border-radius:24px; }
  .about-photo img { height:300px; border-radius:20px; }

  .price-card { padding:22px; border-radius:28px; }
  .price-card h2 { font-size:84px; }
  .price-card h2 span { display:block; font-size:18px; }
  .included { gap:6px; margin:18px 0; }
  .included span { font-size:11px; padding:8px 10px; }

  details { padding:15px 16px; border-radius:18px; }
  summary { font-size:15px; }
  details p { font-size:14px; }

  .final-cta { width:calc(100% - 22px); padding:54px 0 72px; }
  footer { width:calc(100% - 22px); flex-direction:column; gap:10px; font-size:13px; }
}

@media (max-width: 380px) {
  h1 { font-size:37px; }
  h2 { font-size:29px; }
  .hero-photo img { height:320px; }
  .reels img { height:260px; }
}


.about-results-layout {
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:22px;
  align-items:stretch;
  margin-bottom:18px;
}

.about-results .about-photo img {
  height:100%;
  min-height:430px;
  width:100%;
  object-fit:cover;
  border-radius:30px;
}

.strong-text {
  color: var(--text) !important;
  font-size: 22px !important;
  line-height:1.28 !important;
  font-weight:900;
  margin-bottom:24px;
}

.about-note {
  margin-top:18px;
  margin-bottom:0;
}

@media (max-width: 920px) {
  .about-results-layout { grid-template-columns:1fr; }
}

@media (max-width: 640px) {
  .about-results-layout { gap:12px; }
  .about-results .about-photo img {
    min-height:0;
    height:300px;
    border-radius:20px;
  }
  .strong-text {
    font-size:16px !important;
  }
}


/* Clean story/results section */
.story-results {
  padding-top: 56px;
  padding-bottom: 56px;
}

.story-card {
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 20px;
  align-items: stretch;
  background:
    radial-gradient(circle at 0% 0%, rgba(202,255,44,.18), transparent 38%),
    radial-gradient(circle at 100% 0%, rgba(255,46,166,.10), transparent 34%),
    rgba(16,16,16,.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 34px;
  padding: 28px;
}

.story-copy h2 {
  font-size: clamp(34px, 5vw, 62px);
  margin-bottom: 18px;
}

.story-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.story-copy .story-main {
  color: var(--text);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.story-numbers {
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.story-numbers div {
  background: rgba(5,5,5,.36);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
}

.story-numbers b {
  display:block;
  color: var(--green);
  font-size: 44px;
  line-height: .9;
  letter-spacing: -.07em;
}

.story-numbers span {
  color: #ddd4c9;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
}

/* Make funnel screenshots compact and readable */
.funnel-images {
  grid-template-columns: repeat(3, 1fr) !important;
  align-items: start;
}

.funnel-images a {
  background: rgba(16,16,16,.82);
}

.funnel-images img {
  width: 100%;
  height: 190px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent;
}

@media (max-width: 920px) {
  .story-card {
    grid-template-columns: 1fr;
  }
  .story-numbers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .story-results {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .story-card {
    padding: 18px;
    border-radius: 24px;
    gap: 14px;
  }

  .story-copy h2 {
    font-size: 30px;
  }

  .story-copy p,
  .story-copy .story-main {
    font-size: 14.5px;
    line-height: 1.35;
  }

  .story-numbers {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .story-numbers div {
    padding: 12px;
    border-radius: 16px;
  }

  .story-numbers b {
    font-size: 28px;
  }

  .story-numbers span {
    font-size: 11px;
  }

  .funnel-images {
    grid-template-columns: 1fr !important;
  }

  .funnel-images img {
    height: 190px !important;
  }
}


/* Updated inside cards: 4 in a row on desktop */
.grid.cards.inside-cards {
  grid-template-columns: repeat(4, 1fr);
}

.inside-cards article {
  min-height: 245px;
}

.inside-cards h3 {
  font-size: 22px;
}

.inside-cards p {
  font-size: 15px;
}

@media (max-width: 1100px) {
  .grid.cards.inside-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid.cards.inside-cards {
    grid-template-columns: 1fr;
  }

  .inside-cards article {
    min-height: auto;
  }

  .inside-cards h3 {
    font-size: 20px;
  }

  .inside-cards p {
    font-size: 14px;
  }
}


/* Mobile adaptation v7 */
@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at 50% -5%, rgba(202,255,44,.12), transparent 28%),
      radial-gradient(circle at 100% 12%, rgba(255,46,166,.10), transparent 24%),
      var(--bg);
  }

  .hero {
    padding-top: 26px;
    gap: 14px;
  }

  .hero-photo {
    width: 100%;
    margin: 0 auto 4px;
  }

  .hero-photo img {
    height: auto !important;
    max-height: 430px;
    width: 100%;
    object-fit: contain !important;
    object-position: center center !important;
    background: linear-gradient(135deg, rgba(202,255,44,.10), rgba(255,46,166,.08)), #101010;
    border-radius: 24px;
  }

  .photo-glow {
    width: 90%;
    height: 70%;
    opacity: .75;
  }

  h1 {
    font-size: 36px;
    line-height: .9;
    letter-spacing: -.06em;
  }

  .lead {
    font-size: 14.5px;
    line-height: 1.32;
  }

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

  .stats div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
  }

  .stats b {
    font-size: 24px;
    flex: 0 0 auto;
  }

  .stats span {
    text-align: right;
    font-size: 12px;
  }

  .section {
    padding: 34px 0;
  }

  .section-head {
    margin-bottom: 18px;
  }

  .grid.cards.inside-cards {
    gap: 8px;
  }

  .inside-cards article,
  .cards article {
    padding: 14px;
    border-radius: 18px;
  }

  .inside-cards span,
  .cards span {
    margin-bottom: 6px;
  }

  .inside-cards h3,
  .cards h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .inside-cards p,
  .cards p {
    font-size: 13.5px;
    line-height: 1.32;
  }

  .visual-block {
    gap: 14px;
  }

  .screen-wrap img {
    max-height: none;
    height: auto;
    object-fit: contain;
  }

  .shot-grid img {
    max-height: none;
    height: auto;
  }

  .story-card {
    padding: 16px;
  }

  .story-copy h2 {
    font-size: 27px;
  }

  .story-numbers {
    grid-template-columns: 1fr;
  }

  .story-numbers div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .story-numbers span {
    text-align: right;
  }

  .funnel-stats {
    grid-template-columns: 1fr;
  }

  .funnel-stats div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 10px;
  }

  .funnel-stats b {
    font-size: 34px;
  }

  .funnel-stats span {
    font-size: 13px;
  }

  .funnel-stats em {
    font-size: 12px;
    text-align: right;
  }

  .funnel-images img {
    height: auto !important;
    max-height: 260px;
    object-fit: contain !important;
  }

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

  .reels img {
    height: auto;
    max-height: 420px;
    object-fit: contain;
    background: rgba(16,16,16,.82);
  }

  .about-photo img {
    object-fit: contain;
    background: rgba(16,16,16,.82);
  }

  .price-card {
    padding: 18px;
  }

  .price-card h2 {
    font-size: 72px;
  }

  .final-cta {
    padding-top: 42px;
  }
}

@media (max-width: 390px) {
  .hero-photo img {
    max-height: 380px;
  }

  h1 {
    font-size: 33px;
  }

  h2 {
    font-size: 27px;
  }

  .btn {
    font-size: 12px;
  }
}


/* Mobile carousel for material examples */
.carousel-hint {
  display: none;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  margin: 12px 0 0;
}

@media (max-width: 640px) {
  .materials-carousel {
    display: flex !important;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 11px 12px;
    margin-left: -11px;
    margin-right: -11px;
    -webkit-overflow-scrolling: touch;
  }

  .materials-carousel::-webkit-scrollbar {
    display: none;
  }

  .materials-carousel img {
    flex: 0 0 82%;
    width: 82%;
    max-height: 520px !important;
    height: auto !important;
    object-fit: contain !important;
    scroll-snap-align: center;
    border-radius: 22px;
  }

  .carousel-hint {
    display: block;
  }
}

@media (max-width: 390px) {
  .materials-carousel img {
    flex-basis: 86%;
    width: 86%;
  }
}


/* Hero photo overlap update */
.hero.hero-overlap {
  grid-template-columns: 1fr;
  min-height: auto;
  padding-top: 34px;
  padding-bottom: 48px;
  gap: 0;
  position: relative;
}

.hero.hero-overlap .hero-photo {
  width: min(820px, 100%);
  min-height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero.hero-overlap .hero-photo img {
  width: 100%;
  height: min(68vh, 660px);
  min-height: 500px;
  object-fit: cover;
  object-position: center top;
  border-radius: 48px;
}

.hero.hero-overlap .hero-content {
  width: min(980px, calc(100% - 34px));
  margin: -205px auto 0;
  position: relative;
  z-index: 3;
  padding: 28px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(5,5,5,.72), rgba(5,5,5,.94)),
    radial-gradient(circle at 10% 0%, rgba(202,255,44,.18), transparent 34%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero.hero-overlap h1 {
  max-width: 920px;
}

.hero.hero-overlap .lead {
  max-width: 760px;
}

.hero.hero-overlap .photo-label.one {
  top: auto;
  left: 28px;
  bottom: 250px;
}

.hero.hero-overlap .photo-label.two {
  right: 28px;
  bottom: 250px;
}

@media (max-width: 920px) {
  .hero.hero-overlap {
    padding-top: 34px;
  }

  .hero.hero-overlap .hero-photo {
    order: 0;
  }

  .hero.hero-overlap .hero-photo img {
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: contain;
    background: linear-gradient(135deg, rgba(202,255,44,.10), rgba(255,46,166,.08)), #101010;
  }

  .hero.hero-overlap .hero-content {
    margin-top: -92px;
    width: calc(100% - 18px);
    padding: 18px;
    border-radius: 26px;
  }

  .hero.hero-overlap .photo-label {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero.hero-overlap {
    width: calc(100% - 18px);
    padding-top: 26px;
    padding-bottom: 34px;
  }

  .hero.hero-overlap .hero-photo img {
    max-height: none;
    border-radius: 24px;
  }

  .hero.hero-overlap .hero-content {
    margin-top: -62px;
    padding: 16px;
    border-radius: 22px;
  }

  .hero.hero-overlap h1 {
    font-size: 35px;
    line-height: .9;
  }

  .hero.hero-overlap .lead {
    font-size: 14px;
  }

  .hero.hero-overlap .stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .hero.hero-overlap h1 {
    font-size: 32px;
  }

  .hero.hero-overlap .hero-content {
    margin-top: -48px;
  }
}


.hero.hero-overlap .hero-content::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 45%);
}


.old-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px auto 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffb39b;
  background: rgba(255, 91, 34, .13);
  border: 1px solid rgba(255, 91, 34, .35);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: 13px;
}

.old-price::after {
  content: "";
  display: block;
  position: absolute;
}

.price-card .old-price + h2 {
  margin-top: 4px;
}

@media (max-width: 640px) {
  .old-price {
    font-size: 11px;
    padding: 8px 11px;
  }
}


.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  margin: 10px 0 12px;
  flex-wrap: wrap;
}

.cross-price {
  position: relative;
  color: rgba(255, 247, 234, .55);
  font-size: clamp(34px, 7vw, 72px);
  font-weight: 1000;
  letter-spacing: -.06em;
  line-height: .9;
}

.cross-price::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  top: 50%;
  height: 5px;
  background: var(--orange);
  transform: rotate(-8deg);
  border-radius: 999px;
}

.price-row strong {
  display: block;
  color: var(--green);
  font-size: clamp(84px, 15vw, 150px);
  line-height: .8;
  letter-spacing: -.075em;
}

.price-row small {
  font-size: 22px;
  color: var(--text);
  letter-spacing: 0;
}

@media (max-width: 640px) {
  .price-row {
    gap: 10px;
    align-items: center;
  }

  .cross-price {
    font-size: 36px;
  }

  .cross-price::after {
    height: 4px;
  }

  .price-row strong {
    font-size: 76px;
  }

  .price-row small {
    display: block;
    font-size: 18px;
  }
}


@media (max-width: 640px) {
  .badge {
    white-space: nowrap;
    font-size: 9px;
    letter-spacing: .045em;
    padding: 7px 9px;
  }
}


.price-stack {
  display: grid;
  gap: 14px;
  margin: 14px 0 18px;
}

.old-price-line,
.new-price-line {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
}

.old-price-line span,
.new-price-line span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.new-price-line {
  background:
    radial-gradient(circle at 50% 0%, rgba(202,255,44,.22), transparent 55%),
    rgba(202,255,44,.07);
  border-color: rgba(202,255,44,.35);
}

.new-price-line strong {
  color: var(--green);
  font-size: clamp(84px, 14vw, 138px);
  line-height: .8;
  letter-spacing: -.075em;
}

.new-price-line small {
  display: block;
  color: var(--text);
  font-size: 22px;
  letter-spacing: 0;
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .price-stack {
    gap: 10px;
  }

  .old-price-line,
  .new-price-line {
    padding: 13px;
    border-radius: 18px;
  }

  .old-price-line span,
  .new-price-line span {
    font-size: 10px;
  }

  .new-price-line strong {
    font-size: 76px;
  }

  .new-price-line small {
    font-size: 17px;
  }
}


/* Price sticker v25 */
.price-card {
  position: relative;
  overflow: visible;
  padding-top: 42px;
}

.price-sticker {
  position: absolute;
  top: -26px;
  right: 22px;
  z-index: 3;
  display: grid;
  gap: 2px;
  justify-items: center;
  padding: 13px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--orange), #ff2ea6);
  color: #fff7ea;
  transform: rotate(5deg);
  box-shadow: 0 20px 44px rgba(255, 91, 34, .34), 0 0 0 5px rgba(255, 91, 34, .10);
  border: 1px solid rgba(255,255,255,.28);
}

.price-sticker::before {
  content: "−80%";
  position: absolute;
  left: -34px;
  top: 8px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #050505;
  font-size: 12px;
  font-weight: 1000;
  box-shadow: 0 12px 28px rgba(202,255,44,.28);
}

.price-sticker span {
  font-size: 10px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .055em;
}

.price-sticker b {
  position: relative;
  font-size: 25px;
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -.04em;
}

.price-sticker b::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: 50%;
  height: 4px;
  background: #050505;
  transform: rotate(-8deg);
  border-radius: 999px;
}

.price-card .eyebrow {
  margin-top: 4px;
  margin-bottom: 8px;
}

.price-card h2 {
  margin-top: 0;
  margin-bottom: 8px;
}

.price-card p {
  margin-bottom: 18px;
}

@media (max-width: 640px) {
  .price-card {
    padding-top: 40px;
  }

  .price-sticker {
    top: -20px;
    right: 10px;
    padding: 10px 13px;
    border-radius: 18px;
    transform: rotate(4deg);
  }

  .price-sticker::before {
    left: -28px;
    top: 6px;
    width: 38px;
    height: 38px;
    font-size: 10px;
  }

  .price-sticker span {
    font-size: 8px;
  }

  .price-sticker b {
    font-size: 19px;
  }

  .price-card .eyebrow {
    max-width: 68%;
    margin-left: auto;
    margin-right: auto;
  }
}


/* Bottom floating CTA update */
.topbar {
  top: auto !important;
  bottom: 12px !important;
}

@media (max-width: 640px) {
  .topbar {
    top: auto !important;
    bottom: 8px !important;
    padding: 9px 9px 9px 14px;
  }

  .top-btn {
    font-size: 11px;
    padding: 10px 11px;
    white-space: nowrap;
  }

  .brand {
    max-width: 48%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}


/* Two-line bottom CTA price */
.top-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  min-width: 150px;
}

.top-btn span {
  font-size: 13px;
  font-weight: 1000;
}

.top-btn small {
  font-size: 11px;
  font-weight: 900;
  opacity: .9;
}

.top-btn small b {
  font-size: 13px;
}

.top-btn s {
  text-decoration-thickness: 2px;
  text-decoration-color: var(--orange);
}

@media (max-width: 640px) {
  .top-btn {
    min-width: 132px;
    padding: 9px 10px;
  }

  .top-btn span {
    font-size: 11px;
  }

  .top-btn small {
    font-size: 9px;
  }

  .top-btn small b {
    font-size: 11px;
  }
}


/* Cleaner old price in bottom CTA */
.top-btn small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.top-btn small b,
.old-cta-price {
  font-size: 13px;
  font-weight: 1000;
}

.old-cta-price {
  position: relative;
  display: inline-block;
  color: #050505;
  opacity: .82;
}

.old-cta-price::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 2px;
  background: var(--orange);
  transform: rotate(-14deg);
  border-radius: 999px;
}

.top-btn s {
  text-decoration: none;
}

@media (max-width: 640px) {
  .top-btn small {
    gap: 4px;
  }

  .top-btn small b,
  .old-cta-price {
    font-size: 11px;
  }

  .old-cta-price::after {
    height: 1.8px;
    left: -3px;
    right: -3px;
  }
}


/* Clean funnel cards v31 */
.funnel-pairs {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.funnel-pair {
  background: rgba(16,16,16,.82);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 0;
}

.funnel-pair-text {
  padding: 18px;
  display: grid;
  gap: 4px;
  background:
    radial-gradient(circle at 10% 0%, rgba(202,255,44,.16), transparent 40%),
    rgba(255,255,255,.035);
}

.funnel-pair-text b {
  display: block;
  color: var(--green);
  font-size: 46px;
  line-height: .85;
  letter-spacing: -.07em;
}

.funnel-pair-text span {
  color: var(--text);
  font-weight: 1000;
}

.funnel-pair-text em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.funnel-pair a {
  display: block;
  width: 100%;
  background: rgba(5,5,5,.22);
}

.funnel-pair img {
  display: block;
  width: 100%;
  height: 220px !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 8px;
  background: transparent;
}

.funnel-carousel-hint {
  display: none;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  margin: 12px 0 0;
}

@media (max-width: 920px) {
  .funnel-pairs {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }
}

@media (max-width: 640px) {
  .funnel-pairs {
    display: flex !important;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 11px 12px;
    margin-left: -11px;
    margin-right: -11px;
    -webkit-overflow-scrolling: touch;
  }

  .funnel-pairs::-webkit-scrollbar {
    display: none;
  }

  .funnel-pair {
    flex: 0 0 88%;
    width: 88%;
    scroll-snap-align: center;
    border-radius: 22px;
  }

  .funnel-pair-text {
    padding: 14px;
  }

  .funnel-pair-text b {
    font-size: 38px;
  }

  .funnel-pair img {
    height: auto !important;
    max-height: none !important;
    padding: 8px;
  }

  .funnel-carousel-hint {
    display: block;
  }
}


/* Funnel text one-line v32 */
.funnel-pair-text {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px !important;
}

.funnel-pair-text b {
  font-size: 32px !important;
  line-height: 1 !important;
  flex: 0 0 auto;
}

.funnel-pair-text span {
  font-size: 13px;
  white-space: nowrap;
}

.funnel-pair-text em {
  font-size: 12px !important;
  white-space: nowrap;
  text-align: right;
}

@media (max-width: 640px) {
  .funnel-pair-text {
    padding: 10px 12px !important;
    gap: 7px;
  }

  .funnel-pair-text b {
    font-size: 30px !important;
  }

  .funnel-pair-text span {
    font-size: 12px;
  }

  .funnel-pair-text em {
    font-size: 11px !important;
  }
}

@media (max-width: 390px) {
  .funnel-pair-text b {
    font-size: 27px !important;
  }

  .funnel-pair-text span,
  .funnel-pair-text em {
    font-size: 10.5px !important;
  }
}


/* Hero monthly update note v38 */
.hero-update-note {
  margin: 12px 0 0 !important;
  padding: 12px 14px !important;
  max-width: 760px;
  border-radius: 18px;
  background: rgba(202,255,44,.12);
  border: 1px solid rgba(202,255,44,.35);
  color: var(--text);
  font-weight: 900;
  line-height: 1.35;
  box-shadow: 0 14px 34px rgba(202,255,44,.08);
}

@media (max-width: 640px) {
  .hero-update-note {
    margin-top: 10px !important;
    padding: 10px 12px !important;
    font-size: 13px;
    border-radius: 16px;
  }
}


/* Hero note spacing v39 */
.hero-update-note {
  margin: 8px 0 8px !important;
  padding: 10px 14px !important;
}

.hero-actions {
  margin-top: 12px !important;
}

@media (max-width: 640px) {
  .hero-update-note {
    margin: 8px 0 8px !important;
    padding: 9px 12px !important;
    font-size: 12.5px !important;
    line-height: 1.28 !important;
  }

  .hero-actions {
    margin-top: 14px !important;
    gap: 8px !important;
  }
}


/* Price countdown timer v43 */
.price-timer {
  margin: 14px auto 18px;
  padding: 14px;
  max-width: 360px;
  border-radius: 22px;
  background: rgba(202,255,44,.11);
  border: 1px solid rgba(202,255,44,.32);
  box-shadow: 0 18px 44px rgba(202,255,44,.08);
  text-align: center;
}

.price-timer > span {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
}

.timer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.timer-row strong {
  min-width: 54px;
  padding: 10px 9px;
  border-radius: 14px;
  background: rgba(5,5,5,.72);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--green);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.04em;
  box-shadow: inset 0 0 18px rgba(202,255,44,.06);
}

.timer-row i {
  color: var(--green);
  font-style: normal;
  font-size: 24px;
  font-weight: 1000;
}

@media (max-width: 640px) {
  .price-timer {
    margin: 12px auto 16px;
    padding: 12px;
    border-radius: 18px;
  }

  .timer-row strong {
    min-width: 46px;
    padding: 9px 7px;
    font-size: 23px;
    border-radius: 12px;
  }

  .timer-row i {
    font-size: 20px;
  }
}


/* Hero top text plus mini timer v46 */
.hero-badge-text,
.hero-mini-timer {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.hero-badge-text {
  gap: 4px;
}

.hero-badge-text b {
  font-weight: 1000;
}

.hero-badge-text s {
  position: relative;
  text-decoration: none;
  opacity: .7;
}

.hero-badge-text s::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  top: 50%;
  height: 2px;
  background: currentColor;
  transform: rotate(-13deg);
  border-radius: 999px;
}

.hero-mini-timer {
  margin-left: 8px;
  padding-left: 9px;
  border-left: 1px solid rgba(5,5,5,.22);
  font-variant-numeric: tabular-nums;
  font-weight: 1000;
}

.hero-mini-timer b {
  min-width: 18px;
  text-align: center;
}

@media (max-width: 640px) {
  .hero-mini-timer {
    margin-left: 6px;
    padding-left: 7px;
  }

  .hero-badge-text,
  .hero-mini-timer {
    font-size: 10.5px;
  }
}


/* Profile before/after block v54 */
.profile-before-after {
  margin-top: 22px;
  padding: 20px;
  border-radius: 30px;
  background: rgba(16,16,16,.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.before-after-head {
  max-width: 760px;
  margin-bottom: 16px;
}

.before-after-head h3 {
  margin: 6px 0 8px;
  font-size: clamp(26px, 4vw, 44px);
  line-height: .98;
  letter-spacing: -.05em;
}

.before-after-head p:not(.eyebrow) {
  color: var(--muted);
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
}

.profile-shots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.profile-shot {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(255,255,255,.12);
}

.profile-shot span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(5,5,5,.82);
  color: #fff;
  font-weight: 1000;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.profile-shot.after span {
  background: var(--green);
  color: #050505;
}

.profile-shot img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: #fff;
}

@media (max-width: 760px) {
  .profile-before-after {
    padding: 15px;
    border-radius: 24px;
  }

  .profile-shots {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .profile-shots::-webkit-scrollbar {
    display: none;
  }

  .profile-shot {
    flex: 0 0 88%;
    width: 88%;
    scroll-snap-align: center;
    border-radius: 20px;
  }

  .profile-shot img {
    height: auto;
    max-height: 480px;
  }
}


/* Profile before/after labels and crop fix v55 */
.profile-shot {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.96);
}

.profile-shot span {
  position: static !important;
  z-index: auto;
  align-self: flex-start;
  margin: 12px 12px 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(5,5,5,.86);
  color: #fff;
  font-weight: 1000;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.profile-shot.after span {
  background: var(--green);
  color: #050505;
}

.profile-shot img {
  margin-top: 8px;
  height: 330px !important;
  object-fit: contain !important;
  object-position: top center !important;
  background: #fff;
}

@media (max-width: 760px) {
  .profile-shot img {
    height: auto !important;
    max-height: 430px;
  }
}


/* Before/after stacked story v56 */
.before-after-stack {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,91,34,.18), transparent 38%),
    linear-gradient(180deg, rgba(68,0,0,.72), rgba(20,0,0,.88));
  border-color: rgba(255, 215, 140, .18);
}

.before-after-stack .before-after-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.before-after-stack .before-after-head h3 {
  color: #ffd188;
  font-size: clamp(34px, 6vw, 72px);
  letter-spacing: -.06em;
}

.profile-stack-card {
  max-width: 760px;
  margin: 18px auto 0;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.profile-stack-shot {
  width: min(100%, 620px);
  display: grid;
  gap: 12px;
  justify-items: center;
}

.profile-stack-shot img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(255, 230, 170, .38);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}

.profile-stack-shot strong {
  color: #ffd188;
  font-size: 26px;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 900;
}

.profile-arrow {
  color: #ffd188;
  font-size: 58px;
  line-height: .7;
  font-weight: 400;
  margin: 2px 0;
  text-shadow: 0 12px 30px rgba(255, 209, 136, .28);
}

@media (max-width: 760px) {
  .profile-stack-card {
    gap: 14px;
    margin-top: 14px;
  }

  .profile-stack-shot {
    gap: 10px;
  }

  .profile-stack-shot img {
    max-height: none;
    border-radius: 20px;
  }

  .profile-stack-shot strong {
    font-size: 22px;
  }

  .profile-arrow {
    font-size: 46px;
  }
}


/* Before/after clean style v57 */
.before-after-stack {
  background:
    radial-gradient(circle at 50% 0%, rgba(202,255,44,.10), transparent 34%),
    rgba(16,16,16,.76) !important;
  border-color: var(--line) !important;
}

.before-after-stack .before-after-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.before-after-stack .before-after-head h3 {
  display: none !important;
}

.profile-arrow {
  color: var(--green) !important;
  text-shadow: 0 12px 30px rgba(202,255,44,.22) !important;
}

.profile-stack-shot strong {
  color: var(--green) !important;
}
