:root {
  --bg: #071114;
  --bg-soft: #0b181b;
  --panel: #0f2024;
  --panel-soft: #13282c;
  --paper: #eef7f6;
  --text: #f4fbfb;
  --muted: #b5c8c8;
  --muted-strong: #d5e3e2;
  --line: rgba(180, 229, 226, 0.16);
  --line-strong: rgba(32, 199, 193, 0.52);
  --teal: #20c7c1;
  --teal-dark: #0f8f8a;
  --gold: #d0aa5b;
  --danger: #ff6f7f;
  --shadow: rgba(0, 0, 0, 0.38);
  --radius: 8px;
  font-family: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(32, 199, 193, 0.04), transparent 520px),
    var(--bg);
  background-size: 126px 126px, 126px 126px, 100% 100%, 100% 100%;
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(150deg, transparent 0 46%, rgba(255, 255, 255, 0.03) 46% 47%, transparent 47% 100%),
    linear-gradient(30deg, transparent 0 46%, rgba(255, 255, 255, 0.022) 46% 47%, transparent 47% 100%);
  background-size: 280px 180px;
  opacity: 0.42;
}

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

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

p,
li {
  line-height: 1.65;
}

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

.narrow {
  max-width: 820px;
}

.section-band {
  position: relative;
  border-bottom: 1px solid var(--line);
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 72px;
  padding: 14px max(24px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 20, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
  font-size: 15px;
}

.brand strong {
  color: var(--teal);
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover,
.brand:hover {
  color: var(--teal);
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  background: var(--teal);
  color: #031012;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 14px 28px rgba(32, 199, 193, 0.16);
}

.header-cta {
  min-height: 38px;
  padding: 0 18px;
  background: transparent;
  color: var(--teal);
  box-shadow: none;
}

.primary-button {
  padding: 0 26px;
}

.primary-button:hover {
  background: #42ded9;
}

.hero {
  display: grid;
  align-items: start;
  padding: 92px 0 96px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: 56px;
}

.hero-copy,
.hero-product,
.section-heading,
.bundle-card,
.fit-card,
.checkout-card,
.trust-points article,
.process-grid article,
.deliverable-card {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 64px;
}

h2 {
  font-size: 44px;
}

h3 {
  font-size: 21px;
}

.hero-subtitle {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted-strong);
  font-size: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.hero-badges span,
.tools-grid span,
.offer-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--teal);
  background: rgba(32, 199, 193, 0.07);
  font-size: 13px;
  font-weight: 800;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
}

.price-lockup {
  display: grid;
  gap: 2px;
}

.price-lockup span {
  color: var(--muted);
  font-size: 13px;
}

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

.microcopy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-product {
  position: relative;
  isolation: isolate;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 26px -18px -18px 22px;
  border: 1px solid rgba(32, 199, 193, 0.2);
  background: rgba(32, 199, 193, 0.06);
  z-index: -1;
}

.cover-image {
  width: 100%;
  max-width: 430px;
  margin-left: auto;
  border: 1px solid var(--line-strong);
  box-shadow: 0 28px 70px var(--shadow);
}

.floating-proof {
  position: absolute;
  left: 0;
  bottom: 46px;
  width: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(9, 25, 29, 0.94);
  box-shadow: 0 18px 40px var(--shadow);
}

.floating-proof strong,
.floating-proof span {
  display: block;
}

.floating-proof strong {
  margin-bottom: 6px;
  color: var(--teal);
}

.floating-proof span {
  color: var(--muted-strong);
  font-size: 14px;
  line-height: 1.45;
}

.problem-section {
  background: rgba(9, 21, 24, 0.58);
}

.problem-section h2,
.final-cta h2 {
  max-width: 820px;
}

.problem-section p:not(.eyebrow),
.final-cta p:not(.eyebrow),
.section-heading p {
  color: var(--muted-strong);
  font-size: 18px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bundle-card,
.fit-card,
.checkout-card,
.trust-points article,
.process-grid article,
.deliverable-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 31, 35, 0.82);
}

.bundle-card {
  padding: 28px;
}

.card-number {
  display: block;
  margin-bottom: 24px;
  color: var(--teal);
  font-size: 28px;
  font-weight: 900;
}

.card-meta {
  margin: 10px 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.bundle-card p:last-child,
.process-grid p,
.deliverable-copy p:not(.card-meta),
.trust-points p,
.fit-card li,
.checkout-card p {
  color: var(--muted);
}

.inside-section {
  background: rgba(5, 13, 16, 0.55);
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.deliverable-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(18, 42, 46, 0.92), rgba(10, 24, 27, 0.86));
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.deliverable-image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 360px;
  border-bottom: 1px solid var(--line);
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(238, 247, 246, 0.98), rgba(227, 240, 239, 0.98));
}

.deliverable-image img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: top center;
  border-radius: 4px;
  box-shadow: 0 18px 36px rgba(3, 16, 18, 0.14);
}

.deliverable-copy {
  padding: 24px;
}

.deliverable-copy .card-number {
  margin-bottom: 18px;
  font-size: 22px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article {
  position: relative;
  min-height: 218px;
  padding: 30px 24px;
}

.process-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  background: var(--teal);
}

.process-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 14px;
}

.tools-section {
  background: rgba(10, 24, 27, 0.62);
}

.tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.fit-card {
  padding: 34px;
}

.fit-card ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.fit-card li {
  position: relative;
  padding-left: 25px;
}

.fit-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.muted-card li::before {
  background: var(--danger);
}

.trust-section {
  background: rgba(5, 13, 16, 0.5);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: start;
}

.trust-grid > div:first-child p:not(.eyebrow) {
  color: var(--muted-strong);
  font-size: 18px;
}

.trust-points {
  display: grid;
  gap: 16px;
}

.trust-points article {
  padding: 24px;
}

.trust-points h3 {
  margin-bottom: 10px;
}

.offer-section {
  background: linear-gradient(180deg, rgba(14, 39, 43, 0.72), rgba(6, 17, 20, 0.92));
}

.offer-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 42px;
  background: rgba(8, 22, 25, 0.92);
  box-shadow: 0 30px 80px var(--shadow);
}

.offer-box h2 {
  margin-bottom: 16px;
}

.offer-box p {
  color: var(--muted-strong);
  font-size: 18px;
}

.offer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.checkout-card {
  padding: 28px;
  background: var(--paper);
  color: #0b2025;
}

.checkout-card strong {
  display: block;
  margin: 8px 0 8px;
  color: #071114;
  font-size: 48px;
  line-height: 1;
}

.checkout-card p {
  color: #40595b;
}

.checkout-label {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.full-button {
  width: 100%;
  margin-top: 14px;
}

.checkout-card small {
  display: block;
  margin-top: 14px;
  color: #667b7e;
  line-height: 1.5;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 31, 35, 0.74);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--text);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  text-align: center;
  background: rgba(8, 21, 24, 0.76);
}

.final-cta .primary-button {
  margin-top: 22px;
}

.site-footer {
  padding: 34px 20px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .trust-grid,
  .offer-box {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .cover-image {
    margin: 0 auto;
  }

  .floating-proof {
    position: static;
    width: auto;
    margin-top: 16px;
  }

  .bundle-grid,
  .deliverable-grid,
  .process-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-band {
    padding: 68px 0;
  }

  .site-header {
    min-height: 64px;
    max-width: 100vw;
    overflow: hidden;
    padding: 12px 16px;
    gap: 12px;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  h1 {
    font-size: 32px;
    max-width: 100%;
  }

  h2 {
    font-size: 29px;
  }

  h3 {
    font-size: 19px;
  }

  .hero-subtitle,
  .problem-section p:not(.eyebrow),
  .final-cta p:not(.eyebrow),
  .section-heading p,
  .offer-box p,
  .trust-grid > div:first-child p:not(.eyebrow) {
    font-size: 16px;
  }

  .offer-box {
    padding: 24px;
  }

  .checkout-card strong {
    font-size: 40px;
  }

  .cta-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .primary-button {
    width: 100%;
  }

  .hero-badges span,
  .tools-grid span,
  .offer-list span {
    min-height: 32px;
    padding: 0 11px;
    font-size: 12px;
  }

  .hero-grid {
    display: block;
  }

  .hero-subtitle,
  .microcopy,
  .section-heading,
  .problem-section p:not(.eyebrow),
  .final-cta p:not(.eyebrow) {
    max-width: 100%;
  }

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

  .hero-badges span {
    justify-content: center;
    text-align: center;
  }

  .hero-product {
    width: 100%;
    margin-top: 42px;
    overflow: hidden;
  }

  .cover-image {
    max-width: 100%;
  }

  .hero-product::before {
    inset: 14px 0 -12px 10px;
  }

  .deliverable-image {
    min-height: 0;
    padding: 14px;
  }

  .deliverable-image img {
    max-height: 360px;
  }

  .deliverable-copy,
  .process-grid article {
    padding: 22px;
  }
}
