:root {
  --navy: #05005f;
  --navy-2: #11136f;
  --blue: #5d84ec;
  --blue-soft: #eef4ff;
  --sky: #7abced;
  --leaf: #b8dd1f;
  --green: #64a624;
  --orange: #ff6a21;
  --ink: #15151c;
  --muted: #5f6070;
  --cream: #f5f1e8;
  --white: #ffffff;
  --line: rgba(10, 17, 51, 0.12);
  --shadow: 0 22px 70px rgba(7, 18, 70, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header,
.timer-bar,
.hero,
.section,
.site-footer {
  padding-inline: clamp(20px, 5vw, 72px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(16, 24, 64, 0.08);
  backdrop-filter: blur(16px);
}

.product-page .site-header {
  top: 44px;
}

.brand img {
  width: 138px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 42px);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: var(--navy);
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  color: var(--white) !important;
  background: var(--blue);
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
  min-height: calc(100svh - 82px);
  padding-block: clamp(56px, 9vw, 120px);
  overflow: hidden;
}

.home-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(93, 132, 236, 0.24), transparent 34%),
    linear-gradient(135deg, #fbfaf5 0%, #eef4ff 100%);
}

.product-hero {
  min-height: calc(100svh - 126px);
  background:
    radial-gradient(circle at 34% 28%, rgba(184, 221, 31, 0.22), transparent 28%),
    linear-gradient(135deg, #faf7ef 0%, #f3f7ff 100%);
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--ink);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 9vw, 7.6rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.hero-lede,
.split-copy p,
.section-heading p,
.offer-band p,
.facts-section p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 16px 32px rgba(5, 0, 95, 0.18);
}

.button-primary:hover {
  background: #090281;
}

.button-soft {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(7, 18, 70, 0.08);
}

.button-accent {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 18px 34px rgba(255, 106, 33, 0.22);
}

.button-wide {
  width: min(100%, 420px);
}

.trust-row,
.seal-row,
.payment-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.trust-row span {
  padding: 9px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-product,
.product-gallery {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-product::before,
.product-gallery::before {
  content: "";
  position: absolute;
  inset: 9% 2%;
  z-index: 0;
  background: radial-gradient(circle, rgba(93, 132, 236, 0.18), transparent 64%);
  border-radius: 50%;
}

.hero-product img,
.product-gallery > img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 40px rgba(20, 38, 110, 0.18));
}

.section {
  padding-block: clamp(64px, 9vw, 124px);
}

.band-light {
  background: var(--cream);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.feature-grid,
.benefit-row,
.pricing-grid,
.review-grid,
.steps-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.pricing-card,
.review-card,
.faq-list details {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(7, 18, 70, 0.06);
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--blue);
  font-weight: 950;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.image-stack {
  position: relative;
}

.image-stack > img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-stack-right > img {
  max-height: 640px;
  object-position: center 34%;
}

.mini-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(280px, calc(100% - 44px));
  padding: 18px;
  color: var(--white);
  background: rgba(5, 0, 95, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.mini-card strong,
.mini-card span {
  display: block;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 16px;
  height: 16px;
  background: var(--leaf);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.62);
}

.dark-section {
  color: var(--white);
  background: var(--navy);
}

.dark-section h2,
.dark-section .eyebrow,
.dark-section p {
  color: var(--white);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 44px;
}

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

.steps-grid.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-grid article {
  padding-top: 22px;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
}

.steps-grid span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--navy);
  background: var(--white);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 950;
}

.review-section {
  background: #fafafa;
}

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

.review-card {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px;
}

.review-card img {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border: 4px solid var(--green);
  border-radius: 50%;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card span {
  color: var(--muted);
}

.review-card p {
  margin: 12px 0 0;
}

.offer-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px) auto;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 50%, rgba(184, 221, 31, 0.35), transparent 30%),
    linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
}

.offer-band h2,
.offer-band p,
.offer-band .eyebrow {
  color: var(--white);
}

.timer-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
}

.timer-bar strong {
  display: inline-flex;
  align-items: center;
  min-width: 70px;
  justify-content: center;
  padding: 4px 10px;
  color: var(--navy);
  background: var(--leaf);
  border-radius: 999px;
}

.timer-bar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-gallery {
  min-height: 520px;
}

.best-price-badge {
  position: absolute;
  top: 8%;
  right: 12%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
  transform: rotate(8deg);
}

.seal-row {
  position: relative;
  z-index: 2;
  justify-content: center;
  margin-top: -26px;
}

.seal-row img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.product-tagline {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 800;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.rating span {
  color: #c5db22;
  letter-spacing: 0.05em;
}

.rating em {
  color: var(--muted);
  font-style: normal;
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 28px 0 18px;
}

.price-line strong {
  color: var(--navy);
  font-size: clamp(3.6rem, 8vw, 6.4rem);
  line-height: 0.85;
}

.price-line span {
  color: var(--muted);
  font-weight: 900;
}

.secure-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.band-blue {
  color: var(--white);
  background: var(--blue);
}

.band-blue h2,
.band-blue h3,
.band-blue p,
.band-blue .eyebrow {
  color: var(--white);
}

.benefit-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-row article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.offer-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 520px;
  padding: 28px;
  overflow: hidden;
  text-align: center;
}

.pricing-card h3 {
  font-size: 1.5rem;
}

.pricing-card img {
  width: min(100%, 270px);
  height: 230px;
  margin: auto 0 18px;
  object-fit: contain;
}

.pricing-card.featured {
  color: var(--white);
  background: var(--blue);
  padding-top: 64px;
  transform: translateY(-16px);
  box-shadow: 0 28px 70px rgba(5, 0, 95, 0.22);
}

.pricing-card.featured h3,
.pricing-card.featured p,
.pricing-card.featured span {
  color: var(--white);
}

.deal-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px;
  color: var(--white);
  background: var(--navy);
  font-weight: 950;
  text-transform: uppercase;
}

.bundle-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.bundle-price strong {
  font-size: 3.5rem;
  line-height: 1;
}

.bundle-price span {
  max-width: 70px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.1;
  text-align: left;
}

.payment-row {
  justify-content: center;
  margin-top: 26px;
}

.payment-row img {
  width: 54px;
  height: 34px;
  object-fit: contain;
  padding: 5px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.facts-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--white);
}

.facts-table {
  display: grid;
  border-top: 2px solid var(--ink);
}

.facts-table div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.facts-table strong {
  color: var(--ink);
}

.faq-section {
  color: var(--white);
  background: var(--navy);
}

.faq-section h2,
.faq-section .eyebrow {
  color: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  padding: 20px 24px;
  background: var(--blue);
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-list summary {
  cursor: pointer;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto 18px;
  padding: 14px 16px 14px 22px;
  color: var(--white);
  background: rgba(5, 0, 95, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(5, 0, 95, 0.22);
  backdrop-filter: blur(18px);
}

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

.sticky-cta span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.social-proof {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  width: min(360px, calc(100% - 44px));
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 58px rgba(7, 18, 70, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 280ms ease, transform 280ms ease;
}

.social-proof.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-page .social-proof {
  bottom: 112px;
}

.proof-dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  background: var(--leaf);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(184, 221, 31, 0.18);
}

.social-proof strong {
  display: block;
  margin-bottom: 4px;
}

.social-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 36px;
  color: var(--muted);
  background: #f7f8fb;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 120px;
  flex: 0 0 auto;
}

.site-footer p {
  max-width: 820px;
  margin: 0;
  font-size: 0.82rem;
}

.site-footer nav {
  display: flex;
  gap: 16px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .nav-links {
    gap: 14px;
    letter-spacing: 0.08em;
  }

  .hero,
  .section-grid,
  .split-section,
  .facts-section,
  .offer-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-gallery {
    min-height: 420px;
    order: -1;
  }

  .feature-grid,
  .benefit-row,
  .pricing-grid,
  .steps-grid,
  .steps-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card.featured {
    transform: none;
  }

  .offer-band {
    text-align: left;
  }

  .offer-band img {
    max-width: 360px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    padding-block: 18px;
  }

  .product-page .site-header {
    top: auto;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .timer-bar {
    position: static;
    flex-wrap: wrap;
    padding-block: 8px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.4rem);
  }

  .hero-actions,
  .trust-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .feature-grid,
  .benefit-row,
  .pricing-grid,
  .review-grid,
  .steps-grid,
  .steps-grid.compact {
    grid-template-columns: 1fr;
  }

  .review-card {
    grid-template-columns: 1fr;
  }

  .review-card img {
    width: 112px;
    height: 112px;
  }

  .best-price-badge {
    width: 82px;
    height: 82px;
    font-size: 0.86rem;
  }

  .sticky-cta {
    align-items: stretch;
    flex-direction: column;
    width: calc(100% - 24px);
    bottom: 12px;
  }

  .social-proof {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }

  .product-page .social-proof {
    bottom: 138px;
  }
}
