@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@500;600;700;800&family=Space+Mono:wght@400;700&display=swap");

:root {
  --bg: #050507;
  --surface: #0d0b0d;
  --surface-soft: rgba(255, 255, 255, .045);
  --lime: #E4B363;
  --red: #ef4444;
  --white: #f7f3f2;
  --muted: rgba(247, 243, 242, .62);
  --faint: rgba(247, 243, 242, .42);
  --border: rgba(247, 243, 242, .16);
  --display: "Manrope", sans-serif;
  --body: "Inter", sans-serif;
  --mono: "Geist Mono", "Space Mono", monospace;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse 80% 45% at 50% -10%, rgba(228, 179, 99, .13), transparent 70%),
    linear-gradient(115deg, #050507 0%, #060b08 52%, #050507 100%);
  color: var(--white);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.7'/%3E%3C/svg%3E");
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 19;
  pointer-events: none;
  content: "";
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

::selection {
  background: var(--lime);
  color: var(--bg);
}

a {
  color: inherit;
}

.section {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 11vw, 10rem) 0;
}

.container {
  width: min(100% - 3rem, 1600px);
  margin: 0 auto;
}

.narrow {
  width: min(100% - 3rem, 980px);
}

.eyebrow,
.section-number,
.audience,
.price-label,
.card-index {
  margin: 0;
  color: var(--lime);
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .28em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: .98;
  text-transform: uppercase;
  text-wrap: balance;
}

h2 {
  max-width: 900px;
  margin-bottom: 2rem;
  font-size: clamp(2.6rem, 7vw, 7rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.8rem);
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding-top: 4rem;
  background:
    radial-gradient(circle at 50% 25%, rgba(228, 179, 99, .12), transparent 32%),
    transparent;
}

.hero-glow {
  position: absolute;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: var(--lime);
  filter: blur(120px);
  opacity: .16;
  pointer-events: none;
}

.hero-glow-left {
  top: 18%;
  left: -24rem;
}

.hero-glow-right {
  right: -24rem;
  bottom: 6%;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  margin-bottom: 2.5rem;
}

.audience {
  margin-bottom: 1.25rem;
  color: var(--faint);
}

.hero-frame {
  max-width: 1180px;
  margin-bottom: 2rem;
  padding: clamp(1rem, 3vw, 2.5rem);
  border: 1px solid rgba(247, 243, 242, .65);
  background: linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.01));
  box-shadow: 0 0 80px rgba(228, 179, 99, .09), inset 0 0 0 10px rgba(255,255,255,.025);
}

.hero-frame h1 {
  margin: 0;
  font-size: clamp(2.7rem, 9vw, 8.75rem);
  text-shadow: 0 0 45px rgba(228, 179, 99, .16);
}

.hero-copy {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.hero-copy p {
  margin-bottom: .35rem;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 3rem;
  align-items: end;
  margin-top: 3.5rem;
}

.highlight-list,
.offer-list {
  display: grid;
  gap: .85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.highlight-list li,
.offer-list li {
  display: flex;
  gap: .75rem;
  align-items: baseline;
  color: var(--white);
}

.highlight-list li::before,
.offer-list li::before {
  flex: 0 0 auto;
  width: .55rem;
  height: .55rem;
  content: "";
  background: var(--lime);
  box-shadow: 0 0 12px rgba(228, 179, 99, .5);
}

.hero-offer {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: .35rem;
  background: var(--surface-soft);
  backdrop-filter: blur(12px);
}

.price-label {
  color: var(--faint);
}

.price {
  margin: .35rem 0 1.4rem;
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .8;
}

.laser-button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  overflow: hidden;
  padding: .95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: .2rem;
  background: linear-gradient(var(--lime), var(--lime)) padding-box,
    conic-gradient(from 180deg, #E4B363, #F5DDAF, #E4B363, #6A4E23, #E4B363) border-box;
  color: #160609;
  font-family: var(--display);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(228, 179, 99, .24);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), filter .5s var(--ease);
}

.laser-button::after {
  position: absolute;
  inset: -80% 45%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .95) 45%, transparent);
  transform: rotate(45deg) translateX(-180%);
  transition: transform .6s var(--ease);
}

.laser-button:hover {
  filter: brightness(1.08);
  transform: translateY(-3px);
  box-shadow: 0 0 38px rgba(228, 179, 99, .5);
}

.laser-button:hover::after {
  transform: rotate(45deg) translateX(180%);
}

.laser-button:active {
  transform: translateY(0);
}

.problem {
  background: #080808;
}

.section-number {
  margin-bottom: 1.5rem;
}

.intro,
.closing-copy,
.section-ending,
.reinforcement p,
.guarantee p,
.offer-card p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 3rem 0;
}

.problem-card,
.step-card,
.category-card,
.offer-card {
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, .04), transparent 55%),
    var(--surface-soft);
  backdrop-filter: blur(12px);
}

.problem-card {
  min-height: 260px;
  padding: 1.5rem;
  border-radius: 2rem;
}

.problem-card h3 {
  margin: 3.5rem 0 1rem;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
}

.closing-copy {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.closing-copy p {
  margin-bottom: .5rem;
}

.how-it-works {
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 3rem 0;
}

.step-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border-radius: 2rem;
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}

.step-card > span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: .8rem;
  letter-spacing: .2em;
}

.step-card h3 {
  margin: 0;
}

.step-card:hover,
.category-card:hover,
.problem-card:hover {
  border-color: rgba(228, 179, 99, .35);
  background:
    radial-gradient(circle at top left, rgba(228, 179, 99, .08), transparent 60%),
    var(--surface-soft);
  transform: translateY(-6px);
}

.pack {
  background: #080808;
}

.pack > .container > .intro {
  margin-bottom: .35rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}

.category-card {
  min-height: 450px;
  padding: 1.25rem;
  border-radius: 2rem;
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}

.category-heading {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  min-height: 5rem;
}

.category-heading > span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: .75rem;
}

.category-heading h3 {
  margin: 0;
}

.carousel {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px dashed rgba(228, 179, 99, .3);
  border-radius: 1.25rem;
  background:
    linear-gradient(135deg, rgba(228, 179, 99, .05), transparent 45%),
    rgba(0, 0, 0, .18);
}

.carousel-track {
  display: flex;
  height: 100%;
  min-height: 320px;
  gap: 1rem;
  overflow-x: scroll;
  cursor: grab;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(228, 179, 99, .7) rgba(255, 255, 255, .06);
  scrollbar-width: thin;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-drag: none;
}

.carousel-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.carousel-track::-webkit-scrollbar {
  height: 8px;
}

.carousel-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .06);
}

.carousel-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(228, 179, 99, .7);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: .55rem;
  padding: .9rem .75rem .2rem;
}

.carousel-dot {
  width: .55rem;
  height: .55rem;
  padding: 0;
  border: 1px solid rgba(228, 179, 99, .72);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  opacity: .7;
  transition: transform .25s ease, background-color .25s ease, opacity .25s ease;
}

.carousel-dot[aria-current="true"] {
  background: var(--lime);
  opacity: 1;
  transform: scale(1.3);
}

.carousel-dot:hover {
  background: var(--lime);
  opacity: 1;
}

.carousel-slide {
  display: grid;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 320px;
  place-items: center;
  overflow: hidden;
  scroll-snap-align: start;
}

.carousel-slide picture {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.reinforcement {
  background:
    radial-gradient(circle at 80% 40%, rgba(228, 179, 99, .1), transparent 28%),
    var(--bg);
}

.reinforcement h2 {
  max-width: 850px;
}

.offer {
  background: #080808;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: start;
}

.offer-list {
  margin-top: 2.5rem;
}

.offer-card {
  position: sticky;
  top: 2rem;
  padding: 2rem;
  border-radius: 2rem;
}

.old-price,
.current-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.old-price span,
.current-price span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.old-price strong {
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 400;
  text-decoration: line-through;
}

.old-price span {
  color: var(--red);
}

.current-price {
  padding: 1.25rem 0 1.5rem;
  border-bottom: 0;
}

.current-price strong {
  color: var(--lime);
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 5rem);
  letter-spacing: -.08em;
  line-height: .8;
}

.offer-card p {
  margin-bottom: 1.75rem;
}

.offer-card .laser-button,
.final-cta .laser-button {
  width: 100%;
}

.final {
  background:
    radial-gradient(circle at 20% 20%, rgba(228, 179, 99, .08), transparent 28%),
    var(--bg);
}

.guarantee {
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border);
}

.vector-gallery {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.vector-gallery h2 {
  max-width: 900px;
  margin-inline: auto;
}

.vector-gallery-intro {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.vector-carousel-list {
  display: grid;
  gap: 1.1rem;
  width: 100%;
  margin: 2.5rem auto 0;
}

.vector-carousel {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background:
    radial-gradient(circle at top left, rgba(228, 179, 99, .07), transparent 48%),
    rgba(255, 255, 255, .025);
}

.vector-carousel-header,
.vector-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.vector-carousel-header {
  margin-bottom: .8rem;
  color: var(--lime);
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.vector-carousel-header strong {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 400;
}

.vector-carousel-window {
  overflow: hidden;
}

.vector-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 4.55rem) / 8);
  gap: .65rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-color: rgba(228, 179, 99, .7) rgba(255, 255, 255, .06);
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
  touch-action: pan-x;
}

.vector-carousel-track::-webkit-scrollbar {
  height: 6px;
}

.vector-carousel-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .06);
}

.vector-carousel-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(228, 179, 99, .7);
}

.vector-thumb {
  aspect-ratio: 1;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(228, 179, 99, .28);
  border-radius: .55rem;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .04);
  scroll-snap-align: start;
}

.vector-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  padding: .35rem;
  object-fit: contain;
}

.vector-carousel-controls {
  justify-content: center;
  margin-top: .8rem;
}

.vector-carousel-controls span {
  color: var(--faint);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vector-carousel-controls button {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(228, 179, 99, .42);
  border-radius: 50%;
  background: transparent;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 1rem;
  line-height: 1;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.vector-carousel-controls button:hover {
  border-color: var(--lime);
  background: rgba(228, 179, 99, .12);
  transform: scale(1.08);
}

.faq {
  padding-top: 5rem;
}

.faq h2 {
  margin-bottom: 2.5rem;
}

details {
  border-top: 1px solid var(--border);
}

details:last-of-type {
  border-bottom: 1px solid var(--border);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  list-style: none;
  text-transform: uppercase;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  color: var(--lime);
  content: "+";
  font-family: var(--mono);
  font-size: 1.25rem;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 700px;
  margin: 0 0 1.35rem;
  color: var(--muted);
}

.final-cta {
  margin-top: 4rem;
  text-align: center;
}

.final-cta .laser-button {
  max-width: 520px;
}

.final-cta p {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.velocity-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 18px;
  height: 18px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(228, 179, 99, .5);
  opacity: 0;
  pointer-events: none;
  transition: width .3s var(--ease), height .3s var(--ease), opacity .2s ease, background .3s ease;
}

.velocity-cursor.is-visible {
  opacity: 1;
}

.velocity-cursor.is-active {
  width: 56px;
  height: 56px;
  background: rgba(228, 179, 99, .12);
}

@media (hover: hover) and (pointer: fine) {
  a,
  button,
  summary {
    cursor: none;
  }
}

@media (max-width: 900px) {
  .hero-bottom,
  .offer-layout {
    grid-template-columns: 1fr;
  }

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

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .section {
    padding: 4.5rem 0;
  }

  .container,
  .narrow {
    width: min(100% - 2rem, 1600px);
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-frame {
    border-width: 6px;
  }

  .hero-bottom,
  .problem-grid,
  .steps-grid,
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .step-card,
  .category-card {
    min-height: 0;
  }

  .carousel,
  .carousel-track {
    min-height: 240px;
  }

  .category-card {
    padding: 1rem;
  }

  .guarantee,
  .faq {
    padding-bottom: 3.5rem;
  }

  .faq {
    padding-top: 3.5rem;
  }

  .vector-gallery {
    padding: 3.5rem 0;
  }

  .vector-carousel-list {
    gap: .8rem;
    margin-top: 2rem;
  }

  .vector-carousel {
    padding: .7rem;
  }

  .vector-carousel-track {
    grid-auto-columns: calc((100% - 1.5rem) / 4);
    gap: .5rem;
  }

  .vector-thumb img {
    padding: .2rem;
  }

  .velocity-cursor {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* Green Noir direction: restrained light, hard edges, cinematic pacing */
.section {
  isolation: isolate;
}

.section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: radial-gradient(ellipse 55% 35% at 8% 18%, rgba(228, 179, 99, .08), transparent 72%);
}

.problem,
.pack,
.offer {
  background:
    linear-gradient(105deg, rgba(228, 179, 99, .035), transparent 32%),
    rgba(6, 11, 8, .72);
}

.how-it-works,
.final {
  background: transparent;
}

.reinforcement {
  background:
    radial-gradient(ellipse at 80% 40%, rgba(228, 179, 99, .14), transparent 32%),
    transparent;
}

.hero-glow-left {
  background: #E4B363;
}

.hero-glow-right {
  background: #6A4E23;
}

.highlight-list li::before,
.offer-list li::before {
  box-shadow: 0 0 14px rgba(228, 179, 99, .7);
}

.problem-card,
.step-card,
.category-card,
.offer-card {
  border-radius: .35rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 20px 70px rgba(0,0,0,.16);
}

.problem-card:hover,
.category-card:hover,
.step-card:hover {
  border-color: rgba(228, 179, 99, .55);
  background:
    radial-gradient(circle at top left, rgba(228, 179, 99, .13), transparent 60%),
    var(--surface-soft);
}

.carousel {
  border-color: rgba(228, 179, 99, .34);
  background:
    linear-gradient(135deg, rgba(228, 179, 99, .08), transparent 48%),
    rgba(0, 0, 0, .24);
}

.offer-card {
  background:
    radial-gradient(circle at 90% 0%, rgba(228, 179, 99, .14), transparent 45%),
    rgba(255,255,255,.045);
}

.final-cta {
  position: relative;
}

details summary:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid #c9ffae;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content > *,
  .section > .container > *,
  .problem-card,
  .step-card,
  .category-card,
  .offer-card,
  details {
    animation: noir-rise .8s var(--ease) both;
  }

  .hero-content > :nth-child(2),
  .section > .container > :nth-child(2) { animation-delay: .08s; }
  .hero-content > :nth-child(3),
  .section > .container > :nth-child(3) { animation-delay: .14s; }
  .hero-content > :nth-child(4),
  .section > .container > :nth-child(4) { animation-delay: .2s; }
  .problem-card:nth-child(2),
  .step-card:nth-child(2),
  .category-card:nth-child(2) { animation-delay: .08s; }
  .problem-card:nth-child(3),
  .step-card:nth-child(3),
  .category-card:nth-child(3) { animation-delay: .16s; }
  .step-card:nth-child(4),
  .category-card:nth-child(4) { animation-delay: .24s; }

  .laser-button::after {
    animation: noir-sweep 4.8s ease-in-out infinite;
  }
}

@keyframes noir-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes noir-sweep {
  0%, 55% { transform: rotate(45deg) translateX(-180%); }
  78%, 100% { transform: rotate(45deg) translateX(180%); }
}

/* Centered reading flow and a headline-led hero. */
.hero-content,
.section > .container {
  text-align: center;
}

.hero-headline {
  display: block;
  position: relative;
  max-width: 1480px;
  margin: 1rem auto 2.8rem;
  font-size: clamp(3.2rem, 9.7vw, 10.5rem);
  line-height: .88;
  letter-spacing: -.065em;
  text-align: center;
  text-shadow:
    0 0 55px rgba(228, 179, 99, .24),
    0 3px 0 rgba(255, 255, 255, .08);
}

.hero-headline::after {
  position: absolute;
  right: 15%;
  bottom: -1.2rem;
  left: 15%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  box-shadow: 0 0 18px rgba(228, 179, 99, .7);
}

h2 {
  line-height: .9;
  letter-spacing: -.065em;
}

.hero-copy,
.intro,
.closing-copy,
.section-ending,
.reinforcement p,
.offer-card p,
.guarantee p {
  margin-inline: auto;
  text-align: center;
}

.hero-bottom {
  text-align: center;
}

.highlight-list,
.offer-list {
  justify-items: center;
  margin-inline: auto;
}

.highlight-list li,
.offer-list li {
  justify-content: center;
  text-align: center;
}

.problem-grid,
.steps-grid,
.categories-grid {
  text-align: center;
}

.problem-card,
.step-card,
.category-card,
.offer-card {
  text-align: center;
}

.category-heading {
  justify-content: center;
  text-align: center;
}

.offer-layout {
  text-align: center;
}

.offer-list {
  max-width: 850px;
}

.faq summary,
.faq details p {
  text-align: center;
}

.final-cta .laser-button,
.offer-card .laser-button,
.hero-offer .laser-button {
  margin-inline: auto;
}

@media (max-width: 680px) {
  .hero-headline {
    margin-top: .5rem;
    font-size: clamp(2.7rem, 13vw, 5rem);
  }
}

/* Reference layout: centered full-screen hero, modular surfaces, capsule CTAs. */
body::after {
  opacity: .16;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, .82), transparent 18%),
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(to bottom, black 0%, black 56%, transparent 92%);
}

.hero {
  min-height: 100svh;
  padding: 7rem 0 6rem;
}

.hero-content {
  width: min(100% - 3rem, 1180px);
  margin-inline: auto;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 24px rgba(228, 179, 99, .08);
}

.audience {
  margin-top: 1.75rem;
}

.hero-headline {
  max-width: 1180px;
  margin-top: 1.35rem;
  margin-bottom: 2.4rem;
  font-size: clamp(3.1rem, 8.5vw, 8.75rem);
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 3.25rem;
}

.highlight-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .7rem 1.4rem;
  max-width: 900px;
}

.highlight-list li {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-offer {
  width: min(100%, 430px);
  border-radius: 1rem;
}

.laser-button {
  border-radius: 999px;
  background:
    linear-gradient(#050507, #050507) padding-box,
    conic-gradient(
      from var(--gradient-angle, 0deg),
      transparent 0%,
      #E4B363 8%,
      #F5DDAF 18%,
      #E4B363 30%,
      transparent 42%,
      transparent 100%
    ) border-box;
  color: var(--white);
  animation: border-spin 2.5s linear infinite;
}

.laser-button::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  opacity: .1;
  background: radial-gradient(circle at 50% 50%, white .5px, transparent 0);
  background-size: 4px 4px;
}

.laser-button > * {
  position: relative;
  z-index: 1;
}

.laser-button:hover {
  background:
    linear-gradient(#120609, #120609) padding-box,
    conic-gradient(
      from var(--gradient-angle, 0deg),
      transparent 0%,
      #E4B363 8%,
      #F5DDAF 18%,
      #E4B363 30%,
      transparent 42%,
      transparent 100%
    ) border-box;
}

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes border-spin {
  from { --gradient-angle: 0deg; }
  to { --gradient-angle: 360deg; }
}

.problem-grid,
.steps-grid,
.categories-grid {
  gap: 1.25rem;
}

.problem-card,
.step-card,
.category-card,
.offer-card {
  border-radius: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 20px 70px rgba(0, 0, 0, .18);
}

.problem-card:hover,
.step-card:hover,
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(228, 179, 99, .12);
}

.category-heading {
  min-height: 4rem;
}

.carousel {
  border-radius: .75rem;
}

.offer-card {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4rem);
  border: 2px solid rgba(81, 203, 32, .58);
  border-color: rgba(228, 179, 99, .25);
  box-shadow:
    0 0 55px rgba(81, 203, 32, .2),
    0 0 100px rgba(228, 179, 99, .08),
    inset 0 1px 0 rgba(255, 255, 255, .1);
  text-align: center;
}

.offer-card .old-price,
.offer-card .current-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.offer-card .old-price {
  gap: .35rem;
}

.offer-card .current-price {
  gap: .65rem;
  padding: 1.5rem 0 1.75rem;
}

.offer-card .current-price strong {
  font-size: clamp(4.8rem, 9vw, 7rem);
  line-height: .82;
  text-shadow: 0 0 30px rgba(228, 179, 99, .3);
}

.offer-card > p {
  max-width: 26rem;
  margin-bottom: 2.5rem;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.7;
}

.offer-card .laser-button {
  align-self: center;
  min-width: min(100%, 280px);
}

.section-ending,
.closing-copy,
.reinforcement p {
  text-align: center;
}

@media (max-width: 680px) {
  .hero {
    padding-top: 5rem;
  }

  .hero-content {
    width: min(100% - 2rem, 1180px);
  }

  .hero-headline {
    font-size: clamp(2.65rem, 12.5vw, 5.5rem);
  }

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

@media (prefers-reduced-motion: reduce) {
  .laser-button {
    animation: none;
  }
}

/* Checkout CTAs use the requested solid green. */
.laser-button {
  border: 2px solid #51CB20;
  background: #51CB20;
  color: #071006;
  box-shadow: 0 0 24px rgba(81, 203, 32, .28);
  animation: none;
}

.laser-button::before,
.laser-button::after {
  display: none;
}

.laser-button:hover {
  background: #51CB20;
  box-shadow: 0 0 38px rgba(81, 203, 32, .48);
  filter: brightness(1.08);
}

/* Make the primary offer-card CTA easier to notice and tap. */
.offer-card .laser-button {
  width: 100%;
  min-height: 76px;
  min-width: min(100%, 420px);
  padding: 1.35rem 2.5rem;
  border-width: 3px;
  font-size: 1.15rem;
  letter-spacing: .02em;
  box-shadow: 0 0 42px rgba(81, 203, 32, .5);
}

.offer-card .laser-button:hover {
  box-shadow: 0 0 62px rgba(81, 203, 32, .72);
}