:root {
  --bg: #ffffff;
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #dbe4ef;
  --soft: #f4f8fb;
  --soft-2: #edf7f6;
  --navy: #172554;
  --violet: #3b2a84;
  --cyan: #12a7c6;
  --gold: #f6b642;
  --gold-dark: #c97912;
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.shell {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.brand-mark {
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav,
.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a,
.header-nav a,
.footer-nav a {
  color: #334155;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.nav a:hover,
.header-nav a:hover,
.nav a.active,
.header-nav a.active,
.footer-nav a:hover {
  color: var(--violet);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--gold), #ffd56f);
  color: #221400;
  border-color: rgba(201, 121, 18, 0.28);
  box-shadow: 0 14px 26px rgba(246, 182, 66, 0.32);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ffca54, #ffe091);
  box-shadow: 0 18px 36px rgba(246, 182, 66, 0.42);
}

.button-secondary {
  background: #ffffff;
  color: var(--navy);
  border-color: var(--line);
}

.button-large,
.button-jumbo {
  min-height: 64px;
  padding: 0 34px;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.hero-main-cta {
  width: min(680px, 100%);
  min-height: 82px;
  padding: 0 52px;
  font-size: 1.2rem;
  letter-spacing: 0;
  box-shadow: 0 18px 38px rgba(246, 182, 66, 0.42);
}

.hero-main-cta span {
  display: block;
  max-width: 520px;
  line-height: 1.18;
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.86rem;
}

.page {
  overflow-x: hidden;
}

.hero {
  position: relative;
  padding: 44px 0 72px;
  background:
    radial-gradient(circle at 18% 8%, rgba(18, 167, 198, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
}

.hero-inner,
.hero-container {
  width: calc(100% - 40px);
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.hero-product {
  width: 100%;
  max-width: 780px;
  margin: 0 auto 34px;
  border-radius: var(--radius);
  filter: drop-shadow(0 26px 34px rgba(23, 37, 84, 0.22));
}

.hero-title {
  max-width: 910px;
  margin: 0 auto;
  color: var(--navy);
  font-size: clamp(2.35rem, 6vw, 5.15rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-subtitle,
.hero-copy {
  max-width: 760px;
  margin: 22px auto 0;
  color: #425064;
  font-size: clamp(1.04rem, 2.2vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.short-home .redirect-hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 34px 0 54px;
}

.short-home .hero-product {
  max-width: 700px;
  margin-bottom: 26px;
}

.short-home .hero-title {
  max-width: 860px;
  font-size: clamp(2.4rem, 5.4vw, 4.65rem);
}

.short-home .hero-copy {
  max-width: 650px;
}

.single-action {
  margin-top: 32px;
}

.redirect-summary {
  padding: 34px 0;
  background: #ffffff;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.summary-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  text-align: center;
}

.summary-grid strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 950;
}

.summary-grid span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.quick-cta {
  padding: 44px 0;
  background: linear-gradient(180deg, var(--soft) 0%, #ffffff 100%);
}

.quick-cta .shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.quick-cta img {
  width: 220px;
}

.quick-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.quick-cta p {
  max-width: 620px;
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 1.05rem;
}

.compact-footer {
  padding: 28px 0;
}

.cta-note,
.microcopy {
  margin: 14px auto 0;
  color: #64748b;
  font-size: 0.92rem;
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: calc(100% - 40px);
  max-width: 900px;
  margin: -32px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-item {
  background: #ffffff;
  padding: 22px;
  text-align: center;
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 900;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 78px 0;
}

.section-soft {
  background: var(--soft);
}

.section-alt {
  background: linear-gradient(180deg, #ffffff 0%, var(--soft-2) 100%);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head h2,
.policy-hero h1,
.details-section h2,
.cta-section h2,
.final-cta-section h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.cta-section p,
.final-cta-section p {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 46px;
  align-items: center;
}

.copy-block h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
}

.copy-block p {
  margin: 0 0 18px;
  color: #415064;
  font-size: 1.06rem;
}

.check-list,
.features-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li,
.features-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: #273449;
  font-weight: 750;
}

.product-frame {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.product-frame img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.cards-grid,
.benefits-grid,
.access-grid,
.how-works,
.usage-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card,
.feature-card,
.benefit-item,
.access-card,
.work-step,
.usage-step,
.details-section,
.policy-block,
.official-box,
.official-benefits,
.testimonial-card,
.ingredient-card,
.info-highlight,
.affiliate-notice {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.07);
}

.card,
.feature-card,
.benefit-item,
.access-card,
.work-step,
.usage-step,
.policy-block,
.ingredient-card,
.testimonial-card,
.info-highlight,
.affiliate-notice {
  padding: 24px;
}

.card h3,
.feature-card h3,
.access-card h3,
.work-step h4,
.benefit-text h4,
.ingredient-card h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.2;
}

.card p,
.feature-card p,
.access-card p,
.work-step p,
.usage-step p,
.benefit-item p,
.ingredient-card p,
.testimonial-card p,
.policy-block p {
  margin: 0;
  color: var(--muted);
}

.number,
.step-number,
.usage-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--soft-2);
  color: var(--violet);
  font-weight: 950;
}

.access-card {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}

.access-card span {
  margin-top: 18px;
  color: var(--gold-dark);
  font-weight: 950;
}

.cta-band,
.cta-section,
.final-cta-section {
  padding: 66px 0;
  background:
    radial-gradient(circle at 84% 12%, rgba(18, 167, 198, 0.16), transparent 30%),
    linear-gradient(135deg, var(--navy), var(--violet));
  color: #ffffff;
  text-align: center;
}

.cta-band h2,
.cta-section h2,
.cta-section h3,
.final-cta-section h2 {
  margin: 0 auto;
  max-width: 780px;
  color: #ffffff;
}

.cta-band p,
.cta-section p,
.final-cta-section p,
.cta-subtext {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .button,
.cta-section .button,
.final-cta-section .button {
  margin-top: 26px;
}

.site-footer {
  padding: 36px 0;
  background: #0f172a;
  color: rgba(255, 255, 255, 0.72);
}

.footer-shell {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-text {
  margin: 8px auto 0;
  max-width: 900px;
  font-size: 0.88rem;
}

.policy-page,
.content-page {
  background: var(--soft);
}

.policy-shell,
.content-shell {
  width: calc(100% - 40px);
  max-width: 980px;
  margin: 0 auto;
  padding: 54px 0 78px;
}

.policy-hero,
.content-hero {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.policy-hero p,
.content-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
}

.policy-actions,
.content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.policy-copy,
.details-copy {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.details-section {
  padding: 30px;
}

.details-section h2 {
  margin-bottom: 18px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.official-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 20px;
  margin-top: 24px;
}

.official-box,
.official-benefits {
  padding: 30px;
}

.benefit-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.benefit-card:first-of-type {
  border-top: 0;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--soft-2);
  color: var(--violet);
  font-weight: 950;
}

.secure-badge {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
}

.mini-product {
  width: 100%;
  max-width: 360px;
  margin: 0 auto 22px;
}

@media (max-width: 860px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav,
  .header-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }

  .header-cta {
    width: 100%;
  }

  .trust-strip,
  .two-col,
  .cards-grid,
  .benefits-grid,
  .access-grid,
  .how-works,
  .usage-steps,
  .official-grid,
  .summary-grid,
  .quick-cta .shell {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
  }

  .hero {
    padding-top: 28px;
  }

  .short-home .redirect-hero {
    min-height: auto;
    padding: 30px 0 46px;
  }

  .quick-cta {
    text-align: center;
  }

  .quick-cta img {
    width: 190px;
    margin: 0 auto;
  }

  .section {
    padding: 56px 0;
  }

  .policy-hero,
  .content-hero,
  .details-section,
  .official-box,
  .official-benefits {
    padding: 24px;
  }
}

@media (max-width: 520px) {
  .site-header,
  main,
  .hero,
  .section,
  .section-soft,
  .section-alt,
  .cta-band,
  .cta-section,
  .final-cta-section,
  .site-footer {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .shell,
  .hero-inner,
  .hero-container,
  .policy-shell,
  .content-shell,
  .footer-shell {
    width: calc(100% - 28px);
  }

  .button,
  .button-large,
  .button-jumbo {
    width: 100%;
    padding: 0 18px;
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .hero-main-cta {
    min-height: 84px;
    padding: 0 20px;
    font-size: 0.98rem;
  }

  .hero-main-cta span {
    max-width: 285px;
  }

  .hero-inner,
  .hero-container {
    width: 100%;
    padding: 0 14px;
  }

  .hero-product {
    width: 100%;
    max-width: 360px;
    margin-bottom: 24px;
  }

  .hero-title {
    max-width: 320px;
    font-size: 1.72rem;
    line-height: 1.04;
  }

  .hero-copy,
  .hero-subtitle {
    max-width: 320px;
    font-size: 0.96rem;
  }

  .hero-actions {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .trust-strip {
    width: calc(100% - 40px);
    max-width: 350px;
  }

  .policy-actions,
  .content-actions,
  .hero-actions {
    width: 100%;
  }
}
