:root {
  --page: #f3e8e2;
  --surface: #fffaf6;
  --surface-soft: #fbf1ed;
  --ink: #351629;
  --muted: #7e686f;
  --brand: #b98292;
  --brand-dark: #5c2748;
  --brand-deep: #351126;
  --gold: #d8a75f;
  --success: #12a538;
  --success-dark: #087829;
  --danger: #b03a55;
  --warning-bg: #fff1d8;
  --warning-text: #875c1c;
  --line: #ead4ce;
  --shadow: 0 24px 70px rgba(92, 39, 72, 0.15);
  --radius: 16px;
  --max: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, rgba(216, 167, 95, 0.18), transparent 34%),
    linear-gradient(90deg, transparent 0 24px, rgba(92, 39, 72, 0.045) 24px 25px) center / 46px 46px,
    var(--page);
  color: var(--ink);
  font-family: "Sora", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.page-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 18px;
}

.section {
  margin: 0 0 28px;
  padding: clamp(24px, 5vw, 46px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero {
  padding-top: clamp(34px, 7vw, 62px);
  text-align: center;
}

.eyebrow {
  width: fit-content;
  margin: 0 auto 14px;
  padding: 7px 12px;
  border: 1px solid rgba(216, 167, 95, 0.55);
  border-radius: 999px;
  color: var(--brand-dark);
  background: #fff2de;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.05rem, 6vw, 3.45rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 4.8vw, 2.65rem);
  font-weight: 800;
}

h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

h1 span,
h2 span,
h3 span {
  display: inline;
  padding: 0 0.24em;
  border-radius: 7px;
  background: var(--brand);
  color: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 50px;
}

p {
  color: var(--muted);
}

.muted {
  margin-bottom: 22px;
  color: var(--muted);
  text-align: center;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: "";
  position: absolute;
  /* top: 0.35em; */
  left: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--brand-dark);
  box-shadow: inset 0 0 0 5px #f7d8cd;
}

.hero-list {
  width: min(100%, 440px);
  margin: 0 auto 24px;
  text-align: left;
  font-weight: 700;
}

.hero-list li + li,
.card-list li + li,
.offer-list li + li {
  margin-top: 12px;
}

.hero-image,
.wide-image,
.split img,
.offer img {
  width: 100%;
  border-radius: var(--radius);
}

.split {
  display: grid;
  gap: 24px;
  align-items: center;
}

.split.reverse img {
  order: -1;
}

.card-list {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
}

.card-list li,
.lesson-grid span {
  padding: 14px 16px 14px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  font-weight: 700;
}

.card-list li::before {
  left: 16px;
}

.lesson-grid {
  display: grid;
  gap: 8px;
  margin: 24px 0 18px;
}

.lesson-grid span {
  padding-left: 16px;
  background: var(--brand);
  color: #fff;
  text-align: center;
}

.lesson-grid span:nth-child(even) {
  background: var(--brand-deep);
}

.soft-badge {
  margin: 18px auto 22px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: #fff2de;
  color: var(--success);
  font-weight: 800;
  text-align: center;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 15px 22px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #19c447, var(--success-dark));
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 3.5vw, 1.18rem);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(18, 165, 56, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(18, 165, 56, 0.44);
}

.author {
  display: grid;
  gap: 34px;
  align-items: center;
  padding-top: clamp(32px, 6vw, 54px);
  padding-bottom: clamp(32px, 6vw, 54px);
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 167, 95, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255, 250, 246, 0.95), rgba(251, 241, 237, 0.94)),
    var(--surface);
}

.author-photo {
  position: relative;
  width: min(100%, 330px);
  margin: 0 auto;
  padding: 13px;
  border-radius: 999px;
  background: conic-gradient(
    from 215deg,
    #f7d9a4,
    #d8a75f,
    #c57b8a,
    #8e496b,
    #5c2748,
    #f7d9a4
  );
  box-shadow: 0 24px 64px rgba(92, 39, 72, 0.24);
}

.author-photo::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: inherit;
}

.profile-ring {
  position: absolute;
  inset: 5px;
  border: 7px solid #fff;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
}

.profile-ring span {
  position: absolute;
  right: 12%;
  bottom: 8%;
  width: 48px;
  height: 48px;
  border: 6px solid #fff;
  border-radius: 50%;
  background:
    linear-gradient(#fff, #fff) center / 18px 4px no-repeat,
    linear-gradient(#fff, #fff) center / 4px 18px no-repeat,
    var(--brand-dark);
  box-shadow: 0 10px 24px rgba(92, 39, 72, 0.35);
}

.author-photo img {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
}

.author-handle {
  position: absolute;
  right: 50%;
  bottom: -22px;
  z-index: 2;
  width: max-content;
  min-width: 205px;
  padding: 10px 14px;
  border: 1px solid rgba(92, 39, 72, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(92, 39, 72, 0.18);
  text-align: left;
  transform: translateX(50%);
  backdrop-filter: blur(12px);
}

.author-handle strong,
.author-handle small {
  display: block;
  line-height: 1.2;
}

.author-handle strong {
  color: var(--ink);
  font-family: "Poppins", sans-serif;
  font-size: 0.96rem;
}

.author-handle small {
  margin-top: 2px;
  color: var(--brand-dark);
  font-size: 0.74rem;
  font-weight: 800;
}

.author-copy .eyebrow {
  margin: 0 0 14px;
}

.author-copy h2 {
  margin-bottom: 14px;
}

.author-copy p:not(.eyebrow) {
  margin-bottom: 0;
  font-size: 1rem;
}

.author-tags {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.author-tags li {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(92, 39, 72, 0.16);
  border-radius: 14px;
  background: rgba(255, 242, 222, 0.66);
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.author-tags svg {
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefits {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.benefits article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: center;
}

.benefits img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.benefits p,
.bonus-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.bonus-grid {
  display: grid;
  gap: 22px;
  margin-top: 24px;
}

.bonus-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.bonus-grid img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.bonus-grid h3,
.bonus-grid p {
  padding: 0 18px;
}

.bonus-grid h3 {
  margin-top: 18px;
}

.bonus-grid p {
  padding-bottom: 20px;
}

.guarantee {
  text-align: center;
}

.guarantee img {
  width: 150px;
  margin: 0 auto 18px;
}

.compare {
  display: grid;
  gap: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.compare-card {
  padding: clamp(22px, 5vw, 34px);
  border-radius: calc(var(--radius) + 4px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.before h2 span {
  background: var(--danger);
}

.after h2 span {
  background: var(--brand-dark);
}

.compare-card ul {
  padding-left: 20px;
  color: var(--ink);
  font-weight: 700;
}

.compare-card .check-list {
  padding-left: 0;
}

.note {
  background: var(--warning-bg);
  text-align: center;
}

.note h2,
.note p {
  color: var(--warning-text);
}

.offer {
  text-align: center;
}

.offer img {
  margin: 20px 0;
}

.offer-list {
  width: min(100%, 420px);
  margin: 0 auto 24px;
  text-align: left;
  font-weight: 700;
}

.price {
  margin: 26px 0 22px;
  font-family: "Poppins", sans-serif;
}

.price p {
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 700;
}

.price s {
  color: var(--danger);
}

.price strong {
  display: block;
  color: var(--brand-dark);
  font-size: clamp(2.15rem, 8vw, 3.5rem);
  line-height: 1;
}

.price small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.urgency {
  margin: 18px 0 0;
  color: var(--danger);
  font-weight: 800;
}

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

footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 12px 28px 36px;
  color: var(--muted);
  text-align: center;
  font-size: 0.78rem;
}

footer p {
  margin: 6px auto;
}

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

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

@media (min-width: 760px) {
  .page-shell {
    padding: 28px;
  }

  .split {
    grid-template-columns: 1fr 0.95fr;
  }

  .split.reverse img {
    order: initial;
  }

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

  .author {
    grid-template-columns: 0.85fr 1fr;
  }

  .bonus-grid,
  .compare {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .page-shell {
    padding: 10px;
  }

  .section {
    border-radius: 18px;
  }

  .benefits article {
    grid-template-columns: 68px 1fr;
  }

  .benefits img {
    width: 68px;
    height: 68px;
  }
}

.instagram a svg {
    width: 42px;
    height: 42px;
}