:root {
  --bg: #071f2e;
  --surface: #0a2738;
  --surface-strong: #0e3245;
  --ink: #f4f3ee;
  --ink-soft: #cdd9e3;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #1ec9a6;
  --accent-hover: #19af91;
  --gold: #d9a24f;
  --deep: #071b28;
  --deep-soft: #0c2e42;
  --tint: #123a51;
  --shadow: 0 24px 70px rgba(2, 10, 17, 0.35);
  --radius: 28px;
  --radius-sm: 18px;
  --shell: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(30, 201, 166, 0.22), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(83, 233, 203, 0.18), transparent 18%),
    linear-gradient(180deg, #061724 0%, #082131 50%, #071d2b 100%);
  color: var(--ink);
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 8vw, 4.8rem);
  max-width: 12ch;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.4rem);
  max-width: 14ch;
}

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

p,
li,
summary {
  font-size: 1.18rem;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
}

.narrow {
  max-width: 860px;
}

.section,
.hero {
  padding: 4.75rem 0;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero__grid,
.split,
.offer {
  display: grid;
  gap: 2rem;
}

.hero__grid {
  align-items: center;
}

.hero__content {
  order: 1;
}

.hero__visual {
  order: 2;
}

.brand-mark,
.eyebrow,
.section-tag {
  margin-bottom: 1rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-mark {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.15rem, 3vw, 1.65rem);
  letter-spacing: 0.06em;
  margin-bottom: 1.35rem;
}

.hero__lede {
  max-width: 34rem;
  margin-bottom: 1.75rem;
  color: var(--ink-soft);
  font-size: 1.32rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, #ffb84d 0%, #ff8a1d 100%);
  color: #112232;
  box-shadow: 0 18px 38px rgba(255, 138, 29, 0.34);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: linear-gradient(135deg, #ffc96f 0%, #ff961f 100%);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.18);
}

.button--wide {
  width: 100%;
}

.button--product {
  margin-top: 0.75rem;
  min-height: 3.9rem;
  padding-inline: 1.9rem;
  font-size: 1.02rem;
  box-shadow: 0 22px 42px rgba(255, 138, 29, 0.4);
}

.microcopy {
  margin-top: 0.9rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.microcopy--light {
  color: rgba(255, 255, 255, 0.78);
}

.hero-shot,
.image-frame {
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(217, 162, 79, 0.28);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.04);
}

.image-frame--light {
  background: rgba(255, 255, 255, 0.96);
}

.hero-shot {
  position: relative;
}

.hero-shot::after,
.image-frame::after {
  content: "";
  position: absolute;
  inset: auto -8% -12% auto;
  width: 34%;
  height: 28%;
  background: radial-gradient(circle, rgba(30, 201, 166, 0.2), transparent 70%);
  pointer-events: none;
}

.hero-shot img,
.image-frame img,
.bonus-card img {
  width: 100%;
  display: block;
}

.section--dark {
  background:
    radial-gradient(circle at top right, rgba(30, 201, 166, 0.18), transparent 22%),
    linear-gradient(180deg, var(--deep) 0%, var(--deep-soft) 100%);
  color: #f7fbff;
}

.section--tint {
  background:
    radial-gradient(circle at left center, rgba(30, 201, 166, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(10, 39, 56, 0.92) 0%, rgba(7, 28, 40, 0.9) 100%);
}

.section--offer {
  background:
    radial-gradient(circle at 20% 20%, rgba(30, 201, 166, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(8, 33, 49, 0.96), rgba(6, 24, 35, 0.96)),
    var(--surface);
}

.section--closing {
  background:
    radial-gradient(circle at top center, rgba(15, 139, 125, 0.2), transparent 30%),
    linear-gradient(180deg, #122838 0%, #173548 100%);
  color: #f7fbff;
}

.section-intro,
.section-note {
  max-width: 44rem;
  color: var(--ink-soft);
  font-size: 1.2rem;
}

.section-note {
  margin-top: 1.2rem;
  font-weight: 600;
}

.section-note--light,
.section-tag--light {
  color: rgba(247, 251, 255, 0.82);
}

.split,
.offer {
  align-items: start;
}

.split--middle {
  align-items: center;
}

.problem-list,
.method-grid,
.benefit-grid,
.bonus-grid {
  display: grid;
  gap: 1rem;
}

.info-card,
.step-card,
.benefit-card,
.bonus-card,
.proof-card,
.resource-group,
.seal-card,
.faq-item,
.price-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.info-card,
.step-card,
.benefit-card,
.bonus-card,
.resource-group,
.seal-card,
.price-box {
  padding: 1.35rem;
}

.bullet-list,
.resource-group ul,
.benefit-card ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.bullet-list li,
.resource-group li,
.benefit-card li {
  margin-bottom: 0.7rem;
}

.bullet-list--light li {
  color: rgba(247, 251, 255, 0.9);
}

.method-grid .step-card span {
  display: inline-flex;
  width: 2.4rem;
  height: 2.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: rgba(30, 201, 166, 0.15);
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.resource-groups {
  display: grid;
  gap: 1rem;
}

.resource-group h3 {
  max-width: 16ch;
}

.image-frame--wide img,
.image-frame--product img,
.image-frame--offer img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.image-frame--wide img {
  aspect-ratio: auto;
  object-fit: contain;
  background: #fff;
}

.benefit-card h3 {
  max-width: 14ch;
}

.bonus-card {
  max-width: 540px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.bonus-card img {
  border-radius: 18px;
  margin-bottom: 1.1rem;
}

.image-frame--proof {
  max-width: 980px;
  margin: 0 auto;
}

.offer {
  padding: 2rem;
  border: 1px solid rgba(217, 162, 79, 0.18);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.price-box {
  margin: 1.5rem 0;
}

.price-box__label,
.price-box__hint {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.price-box__value {
  margin: 0.35rem 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
}

.seal-card {
  text-align: center;
}

.seal-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Manrope", sans-serif;
  font-size: 3rem;
}

.hotmart-badge {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
}

.hotmart-badge svg {
  width: 100%;
  height: auto;
  display: block;
}

.authority-quote {
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff0d6;
}

.authority-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.25rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.closing-copy {
  max-width: 42rem;
  color: rgba(247, 251, 255, 0.88);
}

.image-frame--resources {
  max-width: 760px;
  margin: 1.5rem auto 0;
}

.image-frame--portrait {
  max-width: 420px;
  justify-self: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (min-width: 700px) {
  .problem-list,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 900px) {
  .hero__grid,
  .split,
  .offer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }

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

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

@media (max-width: 699px) {
  .section,
  .hero {
    padding: 4rem 0;
  }

  .offer {
    padding: 1.25rem;
  }

  .hero-shot img,
  .image-frame--wide img,
  .image-frame--product img,
  .image-frame--offer img {
    aspect-ratio: auto;
  }
}
