:root {
  color-scheme: dark;
  --bg: #050806;
  --surface: #0a0f0c;
  --surface-2: #101712;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.3);
  --text: #f7fff8;
  --muted: rgba(247, 255, 248, 0.72);
  --soft: rgba(247, 255, 248, 0.52);
  --green: #12cf6a;
  --green-dark: #08763f;
  --gold: #d4ad4f;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

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

img {
  -webkit-user-drag: none;
  user-select: none;
}

.mobile-shell {
  display: block;
  width: min(100%, 480px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--bg);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 6, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.top-cta,
.primary-button,
.sticky-buy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--green);
  color: #031308;
  font-weight: 900;
  animation: cta-glow 2.8s ease-in-out infinite;
}

.top-cta {
  min-width: 76px;
  min-height: 38px;
  padding: 0 13px;
  font-size: 13px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #080b09;
}

.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #101411;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.media-shade {
  display: none;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 18px 16px 18px;
  background: #080d09;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.hero-brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.26);
}

.hero-brand p {
  margin: 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 390px;
  margin-bottom: 10px;
  font-size: 43px;
  line-height: 0.94;
  font-weight: 950;
}

.hero-content > h1 {
  width: 100%;
  text-align: center;
}

.hero-copy {
  max-width: 370px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
  text-align: center;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}

.price-row span {
  min-height: 58px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 13, 9, 0.84);
}

.price-row strong,
.price-row small {
  display: block;
}

.price-row strong {
  color: var(--text);
  font-size: 15px;
}

.price-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

.primary-button {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  font-size: 16px;
}

.primary-button.is-loading {
  pointer-events: none;
  opacity: 0.76;
}

.content-band,
.process-band,
.reviews-band,
.final-band {
  padding: 22px 16px;
  border-bottom: 1px solid var(--line);
}

.content-band,
.final-band {
  background: var(--surface);
}

.process-band,
.reviews-band {
  background: #070b08;
}

.section-kicker {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading h2,
.final-band h2 {
  max-width: 390px;
  margin-bottom: 9px;
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.section-heading > p:last-child,
.final-band > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.progress-stats {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 11px 0 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.progress-stats strong {
  color: #ffffff;
}

.hero-progress {
  margin-bottom: 14px;
  padding: 13px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #0d1711;
}

.trust-panel {
  padding: 13px 12px;
  border: 1px solid rgba(212, 173, 79, 0.46);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(212, 173, 79, 0.13), rgba(12, 20, 14, 0.92));
}

.trust-panel p {
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.36;
  text-align: center;
}

.trust-panel strong {
  color: #ffffff;
}

.trust-actions {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 8px;
}

.instagram-button,
.mini-checkout {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
}

.instagram-button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: #ffffff;
  color: #07100a;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.24);
}

.mini-checkout {
  border: 1px solid rgba(18, 207, 106, 0.42);
  background: rgba(18, 207, 106, 0.16);
  color: #ffffff;
}

.progress-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.progress-copy .section-kicker {
  margin-bottom: 7px;
}

.progress-track {
  height: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-fill {
  position: relative;
  height: 100%;
  border-radius: inherit;
  background: #ffffff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.42);
  transition: width 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 10px, rgba(18, 207, 106, 0.2) 10px 18px);
  animation: progress-stripes 1.2s linear infinite;
}

.live-pill {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 11px;
  border: 1px solid rgba(54, 239, 137, 0.7);
  border-radius: var(--radius);
  background: #12291a;
  box-shadow: 0 0 18px rgba(54, 239, 137, 0.2);
  color: #ffffff;
  text-align: left;
}

.live-pill.is-visible {
  display: flex;
  animation: live-alert 900ms ease both, live-breathe 2.4s ease-in-out 900ms infinite;
}

.live-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(54, 239, 137, 0.84);
}

.live-pill strong,
.live-pill small {
  display: block;
}

.live-pill strong {
  font-size: 13px;
  line-height: 1.1;
  text-transform: uppercase;
}

.live-pill small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.1;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.feature-item {
  display: flex;
  min-height: 98px;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.feature-item > span,
.steps strong {
  color: var(--gold);
  font-size: 14px;
  font-weight: 950;
}

.feature-item h3 {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.08;
}

.included-checkout {
  margin-top: 14px;
}

.checkout-safe-note {
  margin: -2px 0 5px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.cancel-note {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.44;
}

.steps {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  min-height: 76px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.review-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin: 18px -16px 0;
  padding: 0 16px 10px;
  scroll-padding-inline: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-list::-webkit-scrollbar {
  display: none;
}

.review-card {
  width: min(calc(100vw - 32px), 448px);
  flex: 0 0 min(calc(100vw - 32px), 448px);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #0b120e;
  scroll-snap-align: start;
}

.review-more-card {
  display: grid;
  width: min(calc(100vw - 32px), 448px);
  min-height: 360px;
  flex: 0 0 min(calc(100vw - 32px), 448px);
  border: 0;
  background: transparent;
  place-items: center;
  scroll-snap-align: start;
}

.review-more-cta {
  display: flex;
  width: 158px;
  min-height: 158px;
  padding: 22px;
  align-items: center;
  justify-content: center;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.9), 0 0 46px rgba(255, 255, 255, 0.62);
  color: #07100a;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  animation: review-more-glow 1.9s ease-in-out infinite;
}

.review-more-cta::after {
  content: "\2192";
  margin-left: 8px;
  font-size: 24px;
  line-height: 1;
}

@keyframes review-more-glow {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.88), 0 0 42px rgba(255, 255, 255, 0.52);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 30px rgba(255, 255, 255, 1), 0 0 74px rgba(255, 255, 255, 0.82);
  }
}

.review-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1512 / 2016;
  border-top: 1px solid var(--line);
  object-fit: cover;
}

.review-copy {
  padding: 17px 16px 16px;
  border-top: 3px solid var(--green);
}

.review-eyebrow {
  margin: 0 0 9px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card h3 {
  margin: 0 0 11px;
  color: #ffffff;
  font-size: 30px;
  line-height: 0.98;
}

.review-card blockquote {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-style: italic;
  line-height: 1.44;
}

.review-author {
  margin: 13px 0 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}

.review-controls[hidden] {
  display: none;
}

.review-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface-2);
  color: #ffffff;
  cursor: pointer;
  font-size: 20px;
  place-items: center;
}

.review-controls span {
  min-width: 46px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.reviews-note {
  margin: 12px 0 0;
  color: var(--soft);
  font-size: 11px;
  line-height: 1.45;
}

.review-cta {
  display: flex;
  width: calc(100% - 24px);
  min-height: 58px;
  margin: 12px auto;
  border: 2px solid rgba(255, 255, 255, 0.54);
  box-shadow: 0 0 0 0 rgba(18, 207, 106, 0.42);
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
}

.review-cta::after {
  content: "\2192";
  margin-left: 9px;
  font-size: 22px;
  line-height: 1;
  transition: transform 180ms ease;
}

.review-cta:hover::after,
.review-cta:focus-visible::after {
  transform: translateX(4px);
}

.review-cta:active {
  transform: scale(0.98);
}

.review-cancel-note {
  margin: 0 10px 13px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

#reviews-section {
  scroll-margin-top: 62px;
}

.final-band .primary-button {
  margin-top: 18px;
}

.support-link {
  display: block;
  margin-top: 15px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-note {
  padding: 18px 16px 94px;
  color: var(--soft);
  font-size: 11px;
  line-height: 1.48;
  text-align: center;
}

.footer-note p {
  margin-bottom: 10px;
}

.footer-note a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.live-chat {
  position: fixed;
  right: max(12px, calc((100vw - 480px) / 2 + 12px));
  bottom: 87px;
  z-index: 29;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(54, 239, 137, 0.7);
  border-radius: 999px;
  background: rgba(13, 38, 24, 0.96);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.42);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.chat-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #36ef89;
  box-shadow: 0 0 0 0 rgba(54, 239, 137, 0.62);
  animation: chat-dot-pulse 1.8s ease-in-out infinite;
}

.sticky-buy {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(100%, 480px);
  min-height: 70px;
  margin: 0 auto;
  padding: 10px 14px max(10px, env(safe-area-inset-bottom));
  border-top: 2px solid var(--green);
  background: rgba(13, 38, 24, 0.97);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.52), 0 -2px 12px rgba(18, 207, 106, 0.2);
  backdrop-filter: blur(18px);
}

.sticky-buy strong,
.sticky-buy span,
.sticky-buy small {
  display: block;
}

.sticky-buy strong {
  color: #ffffff;
  font-size: 14px;
}

.sticky-buy span {
  margin-top: 2px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.sticky-buy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.1;
}

.sticky-buy a {
  min-width: 112px;
  min-height: 44px;
  padding: 0 16px;
  font-size: 14px;
}

.desktop-blocker {
  display: none;
}

.cookie-banner {
  position: fixed;
  right: 12px;
  bottom: 86px;
  left: 12px;
  z-index: 30;
  max-width: 440px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: #101a14;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  color: #f5fff7;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0 0 7px;
  color: #d7e4db;
  font-size: 12px;
  line-height: 1.4;
}

.cookie-banner strong {
  color: #fff;
  font-size: 14px;
}

.cookie-banner div {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 10px;
}

.cookie-banner button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.cookie-primary {
  background: var(--green);
}

.cookie-secondary {
  background: transparent;
}

@media (min-width: 769px) {
  body {
    overflow: hidden;
  }

  .mobile-shell {
    display: none;
  }

  .desktop-blocker {
    display: grid;
    min-height: 100vh;
    padding: 32px;
    place-items: center;
    background: #070b08;
  }

  .desktop-blocker div {
    width: min(560px, 100%);
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    text-align: center;
  }

  .desktop-blocker img {
    width: 94px;
    height: 94px;
    margin-bottom: 18px;
    border-radius: 50%;
  }

  .desktop-blocker h1 {
    max-width: none;
    margin-bottom: 12px;
    font-size: 38px;
    line-height: 1;
  }

  .desktop-blocker p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.44;
  }

  .cookie-banner {
    right: 24px;
    bottom: 24px;
    left: auto;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 39px;
  }

  .section-heading h2,
  .final-band h2 {
    font-size: 27px;
  }
}

@keyframes progress-stripes {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 31px 0;
  }
}

@keyframes live-alert {
  0% {
    opacity: 0;
    outline: 0 solid rgba(54, 239, 137, 0.62);
    transform: translateY(-8px);
  }

  100% {
    opacity: 1;
    outline: 10px solid rgba(54, 239, 137, 0);
    transform: translateY(0);
  }
}

@keyframes live-breathe {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(54, 239, 137, 0.18);
  }

  50% {
    box-shadow: 0 0 22px rgba(54, 239, 137, 0.42);
  }
}

@keyframes cta-glow {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.16);
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(18, 207, 106, 0.2);
  }

  50% {
    border-color: rgba(255, 255, 255, 0.76);
    background: #36ef89;
    box-shadow: 0 0 18px rgba(54, 239, 137, 0.58);
  }
}

@keyframes chat-dot-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(54, 239, 137, 0.6);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(54, 239, 137, 0);
  }
}
