:root {
  --background: #fbf4f8;
  --surface: rgba(255, 255, 255, 0.68);
  --surface-solid: #fffafd;
  --text: #332f3a;
  --muted: #635f69;
  --blue: #e1306c;
  --blue-dark: #a51f64;
  --blue-soft: #f8d8e8;
  --violet: #833ab4;
  --violet-soft: #ead9f4;
  --green: #10b981;
  --amber: #fcaf45;
  --red: #f56040;
  --line: rgba(193, 53, 132, 0.1);
  --shadow-card: 16px 16px 32px rgba(160, 150, 180, 0.2), -10px -10px 24px rgba(255, 255, 255, 0.9),
    inset 6px 6px 12px rgba(225, 48, 108, 0.04), inset -6px -6px 12px rgba(255, 255, 255, 1);
  --shadow-deep: 24px 24px 48px rgba(143, 132, 169, 0.24), -14px -14px 30px rgba(255, 255, 255, 0.96),
    inset 8px 8px 18px rgba(225, 48, 108, 0.05), inset -8px -8px 18px rgba(255, 255, 255, 0.95);
  --shadow-button: 0 12px 20px rgba(193, 53, 132, 0.28), inset 3px 3px 8px rgba(255, 255, 255, 0.32),
    inset -4px -4px 8px rgba(131, 58, 180, 0.2);
  --font-heading: "Nunito", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--background);
  font-family: var(--font-body);
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: -3;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 12% 16%, rgba(248, 216, 232, 0.5), transparent 22%),
    radial-gradient(circle at 82% 44%, rgba(234, 217, 244, 0.42), transparent 25%),
    linear-gradient(145deg, #fff9fc 0%, #fbf3f8 50%, #f8f2fc 100%);
}

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-heading);
  line-height: 1.08;
}

h1 span,
h2 span {
  color: var(--blue-dark);
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.narrow-container {
  width: min(860px, calc(100% - 32px));
}

.section {
  position: relative;
  padding: 86px 0;
}

.clay-card,
.clay-deep {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(15px);
}

.clay-card {
  border-radius: 32px;
}

.clay-deep {
  border-radius: 52px;
  box-shadow: var(--shadow-deep);
}

.background-blobs {
  position: fixed;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  display: block;
  border-radius: 44% 56% 65% 35% / 48% 42% 58% 52%;
  filter: blur(20px);
  opacity: 0.42;
  animation: drift 16s ease-in-out infinite alternate;
}

.blob-one {
  top: 3%;
  left: -10%;
  width: 420px;
  height: 420px;
  background: var(--blue-soft);
}

.blob-two {
  top: 31%;
  right: -12%;
  width: 500px;
  height: 500px;
  background: var(--violet-soft);
  animation-delay: -4s;
}

.blob-three {
  bottom: 7%;
  left: -5%;
  width: 340px;
  height: 340px;
  background: rgba(255, 255, 255, 0.8);
  animation-delay: -8s;
}

.blob-four {
  right: 30%;
  bottom: 15%;
  width: 260px;
  height: 260px;
  background: var(--blue-soft);
  animation-delay: -11s;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid transparent;
  transition: 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.66);
  background: rgba(251, 244, 248, 0.84);
  box-shadow: 0 10px 28px rgba(130, 123, 147, 0.1);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-icon {
  display: grid;
  width: 38px;
  height: 38px;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(145deg, #833ab4, #c13584 52%, #f56040);
  box-shadow: 5px 7px 14px rgba(193, 53, 132, 0.25), inset 2px 3px 5px rgba(255, 255, 255, 0.4);
  font-size: 21px;
  place-items: center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--blue-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 22px;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button:hover {
  transform: translateY(-4px) scale(1.01);
}

.button:active {
  transform: translateY(1px) scale(0.97);
  box-shadow: inset 4px 4px 9px rgba(97, 31, 111, 0.2);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #833ab4 0%, #c13584 42%, #e1306c 70%, #f56040 100%);
  box-shadow: var(--shadow-button);
}

.button-ghost {
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 7px 7px 16px rgba(160, 150, 180, 0.15), -6px -6px 15px rgba(255, 255, 255, 0.88);
}

.button-small {
  min-height: 44px;
  padding: 0 17px;
  border-radius: 16px;
  font-size: 13px;
}

.button-large {
  min-height: 60px;
  padding: 0 24px;
  font-size: 16px;
}

.button-full {
  width: 100%;
}

.mobile-label {
  display: none;
}

.hero {
  min-height: 770px;
  padding-top: 58px;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 54px;
  grid-template-columns: 1.04fr 0.96fr;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  color: var(--blue-dark);
  border: 1px solid rgba(193, 53, 132, 0.14);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 4px 5px 12px rgba(160, 150, 180, 0.09), inset 2px 2px 5px rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-violet {
  color: var(--violet);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.13);
}

.hero h1 {
  max-width: 670px;
  margin-top: 21px;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 900;
  letter-spacing: -2.2px;
}

.hero-text {
  max-width: 690px;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.65;
}

.check-list,
.x-list {
  display: grid;
  gap: 11px;
}

.hero-list {
  margin-top: 24px;
}

.check-list li,
.x-list li {
  position: relative;
  padding-left: 31px;
  color: var(--muted);
  font-size: 15px;
}

.check-list li::before,
.x-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  color: #fff;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  place-items: center;
}

.check-list li::before {
  content: "✓";
  background: linear-gradient(145deg, #37d49d, #0ca371);
  box-shadow: 3px 4px 8px rgba(16, 185, 129, 0.22), inset 1px 2px 3px rgba(255, 255, 255, 0.45);
}

.x-list li::before {
  content: "×";
  background: linear-gradient(145deg, #f48694, #df5e70);
  box-shadow: 3px 4px 8px rgba(239, 106, 123, 0.19), inset 1px 2px 3px rgba(255, 255, 255, 0.43);
}

.hero-actions {
  display: flex;
  gap: 13px;
  margin-top: 29px;
}

.microcopy {
  margin-top: 15px;
  color: #77717e;
  font-size: 12px;
}

.microcopy span {
  color: var(--amber);
  font-size: 9px;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.visual-orbit {
  position: absolute;
  border: 1px dashed rgba(124, 58, 237, 0.12);
  border-radius: 50%;
}

.orbit-one {
  top: 62px;
  right: 30px;
  width: 430px;
  height: 430px;
}

.orbit-two {
  top: 110px;
  right: 80px;
  width: 330px;
  height: 330px;
}

.ebook-scene {
  position: absolute;
  top: 87px;
  right: 76px;
  width: 308px;
  height: 440px;
  perspective: 1400px;
}

.ebook-book {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotateY(-18deg) rotateX(3deg) rotateZ(2deg);
  transform-style: preserve-3d;
  animation: bookFloat 5s ease-in-out infinite;
}

.ebook-cover {
  position: absolute;
  z-index: 3;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
  flex-direction: column;
  padding: 28px;
  color: #fff;
  border-radius: 12px 27px 27px 12px;
  background: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.36), transparent 20%),
    linear-gradient(150deg, #fcaf45 0%, #f56040 22%, #e1306c 50%, #c13584 72%, #833ab4 100%);
  box-shadow: 22px 22px 34px rgba(131, 58, 180, 0.22), inset 7px 7px 12px rgba(255, 255, 255, 0.23),
    inset -8px -8px 14px rgba(97, 31, 111, 0.15);
  transform: translateZ(18px);
}

.ebook-cover::before,
.ebook-cover::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  content: "";
}

.ebook-cover::before {
  right: -74px;
  bottom: -15px;
  width: 230px;
  height: 230px;
}

.ebook-cover::after {
  right: -36px;
  bottom: 23px;
  width: 150px;
  height: 150px;
}

.ebook-brand,
.ebook-cover p,
.ebook-cover small {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.ebook-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-top: 43px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: inset 3px 4px 7px rgba(255, 255, 255, 0.21), 6px 8px 17px rgba(131, 58, 180, 0.19);
  font-family: var(--font-heading);
  font-size: 31px;
  font-weight: 900;
  place-items: center;
}

.ebook-cover p {
  margin-top: 18px;
}

.ebook-cover h2 {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  color: #fff;
  font-size: 39px;
  font-weight: 900;
  letter-spacing: -1px;
}

.ebook-cover h2 span {
  color: #e8f8ff;
}

.ebook-line {
  width: 44px;
  height: 4px;
  margin: 17px 0 11px;
  border-radius: 99px;
  background: #fff;
}

.ebook-cover strong {
  position: relative;
  z-index: 1;
  max-width: 180px;
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.25;
}

.ebook-cover small {
  margin-top: auto;
  font-size: 8px;
}

.ebook-spine {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: -18px;
  width: 37px;
  border-radius: 9px 0 0 9px;
  background: #9d286f;
  box-shadow: inset 8px 0 12px rgba(97, 31, 111, 0.25);
  transform: rotateY(-90deg) translateX(-18px);
  transform-origin: right;
}

.ebook-pages {
  position: absolute;
  z-index: 1;
  right: -12px;
  bottom: -7px;
  width: 97%;
  height: 97%;
  border-radius: 0 17px 19px 0;
  background: repeating-linear-gradient(90deg, #fcfbff 0, #fcfbff 4px, #e7e4ee 5px);
  transform: translateZ(-3px);
}

.floating-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 10px 13px 24px rgba(130, 125, 159, 0.19), -7px -7px 16px rgba(255, 255, 255, 0.86),
    inset 4px 4px 8px rgba(225, 48, 108, 0.04);
  animation: cardFloat 4.4s ease-in-out infinite;
  backdrop-filter: blur(12px);
}

.floating-card p {
  color: var(--text);
  font-size: 12px;
  line-height: 1.35;
}

.floating-card strong {
  color: var(--blue-dark);
  font-family: var(--font-heading);
  font-size: 14px;
}

.floating-icon {
  display: grid;
  min-width: 34px;
  height: 34px;
  color: #fff;
  border-radius: 13px;
  background: linear-gradient(145deg, #e1306c, #833ab4);
  box-shadow: 3px 5px 8px rgba(193, 53, 132, 0.22), inset 2px 2px 4px rgba(255, 255, 255, 0.4);
  font-family: var(--font-heading);
  font-weight: 900;
  place-items: center;
}

.card-followers {
  top: 38px;
  left: 4px;
  max-width: 185px;
}

.card-clients {
  right: -3px;
  bottom: 58px;
  max-width: 185px;
  animation-delay: -1.8s;
}

.card-simple {
  bottom: 35px;
  left: 0;
  max-width: 170px;
  animation-delay: -2.8s;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-top: 16px;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1.4px;
}

.section-heading p {
  margin-top: 14px;
  font-size: 17px;
}

.section-media-card {
  overflow: hidden;
  padding: 12px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 16px 16px 32px rgba(160, 80, 140, 0.14), -10px -10px 24px rgba(255, 255, 255, 0.92),
    inset 5px 5px 10px rgba(219, 39, 119, 0.03), inset -5px -5px 10px rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.section-media-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 25px;
}

.section-media-wide {
  margin-bottom: 32px;
}

.section-media-feature {
  max-width: 820px;
  margin-right: auto;
  margin-bottom: 34px;
  margin-left: auto;
}

.section-media-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.section-media-grid .section-media-card {
  margin-bottom: 22px;
}

.problem-grid,
.comparison-grid,
.audience-grid,
.authority-grid,
.offer-shell {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(2, 1fr);
}

.comparison-card,
.audience-card {
  padding: 30px;
}

.comparison-card h3,
.audience-card h3 {
  margin-bottom: 20px;
  font-size: 23px;
}

.problem-section {
  padding: 96px 0;
}

.problem-grid {
  align-items: center;
  gap: 48px;
}

.problem-visual-card {
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 20px 20px 40px rgba(160, 80, 140, 0.16), -12px -12px 28px rgba(255, 255, 255, 0.95),
    inset 6px 6px 12px rgba(219, 39, 119, 0.03), inset -6px -6px 12px rgba(255, 255, 255, 1);
  backdrop-filter: blur(18px);
}

.problem-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 18px 18px 36px rgba(160, 80, 140, 0.22), -10px -10px 24px rgba(255, 255, 255, 0.9);
  object-fit: contain;
}

.problem-content h2 {
  margin-top: 18px;
  font-size: clamp(35px, 4vw, 55px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.problem-content h2 span {
  display: block;
  color: transparent;
  background: linear-gradient(135deg, #db2777, #f97316);
  background-clip: text;
  -webkit-background-clip: text;
}

.problem-content > p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
}

.problem-list-card {
  padding: 23px;
  margin-top: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 14px 14px 28px rgba(160, 80, 140, 0.14), -8px -8px 20px rgba(255, 255, 255, 0.95),
    inset 5px 5px 10px rgba(219, 39, 119, 0.03), inset -5px -5px 10px rgba(255, 255, 255, 1);
}

.problem-list-card h3 {
  margin-bottom: 16px;
  font-size: 21px;
}

.problem-list {
  display: grid;
  gap: 10px;
}

.problem-list li {
  position: relative;
  padding-left: 33px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.problem-list li::before {
  position: absolute;
  top: -1px;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #fb7185, #db2777);
  box-shadow: 5px 5px 12px rgba(219, 39, 119, 0.22);
  content: "×";
  font-weight: 900;
  line-height: 1;
  place-items: center;
}

.problem-highlight {
  padding: 22px;
  margin-top: 24px;
  border: 1px solid rgba(219, 39, 119, 0.12);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(219, 39, 119, 0.1), rgba(249, 115, 22, 0.1));
}

.problem-highlight p {
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
}

.problem-content .problem-support {
  margin-top: 18px;
  font-weight: 700;
}

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

.feature-card {
  padding: 27px;
  transition: transform 0.24s ease;
}

.feature-card:hover,
.bonus-card:hover,
.chapter-card:hover {
  transform: translateY(-7px);
}

.number-badge {
  display: grid;
  width: 54px;
  height: 54px;
  color: var(--blue-dark);
  border-radius: 20px;
  background: rgba(186, 230, 253, 0.72);
  box-shadow: 5px 6px 12px rgba(193, 53, 132, 0.12), inset 3px 3px 7px rgba(255, 255, 255, 0.72);
  font-family: var(--font-heading);
  font-weight: 900;
  place-items: center;
}

.feature-card h3,
.bonus-card h3 {
  margin-top: 19px;
  font-size: 23px;
}

.feature-card p,
.bonus-card p {
  margin-top: 10px;
  font-size: 15px;
}

.honest-note {
  max-width: 760px;
  padding: 14px 20px;
  margin: 27px auto 0;
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 18px;
  background: rgba(255, 248, 225, 0.52);
  font-size: 14px;
  text-align: center;
}

.honest-note strong {
  color: #b76c06;
}

.comparison-label,
.bonus-tag,
.price-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.comparison-label {
  margin-bottom: 13px;
  color: var(--red);
  background: rgba(239, 106, 123, 0.1);
}

.comparison-right {
  border-color: rgba(16, 185, 129, 0.16);
  background: rgba(237, 255, 249, 0.68);
}

.comparison-right .comparison-label {
  color: #09845c;
  background: rgba(16, 185, 129, 0.12);
}

.statement {
  max-width: 830px;
  padding: 20px;
  margin: 28px auto 0;
  color: var(--text);
  border-radius: 22px;
  background: rgba(186, 230, 253, 0.55);
  box-shadow: inset 3px 3px 7px rgba(255, 255, 255, 0.78), 8px 9px 18px rgba(193, 53, 132, 0.1);
  font-family: var(--font-heading);
  font-size: 21px;
  text-align: center;
}

.audience-grid {
  align-items: start;
}

.audience-card h3 span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-right: 6px;
  color: #fff;
  border-radius: 12px;
  background: var(--green);
  place-items: center;
}

.audience-no h3 span {
  background: var(--red);
}

.content-section {
  background: rgba(252, 231, 241, 0.24);
}

.chapters-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.chapter-card {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 23px;
  transition: transform 0.24s ease;
}

.chapter-card > span {
  display: grid;
  min-width: 43px;
  height: 43px;
  color: var(--blue-dark);
  border-radius: 15px;
  background: rgba(186, 230, 253, 0.58);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  place-items: center;
}

.chapter-card h3 {
  font-size: 17px;
  line-height: 1.23;
}

.chapter-card p {
  margin-top: 5px;
  font-size: 13px;
  line-height: 1.48;
}

.center-action {
  margin-top: 32px;
  text-align: center;
}

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

.bonus-card {
  padding: 22px;
  transition: transform 0.24s ease;
}

.bonus-card:last-child {
  grid-column: 2;
}

.bonus-tag {
  color: var(--violet);
  background: rgba(124, 58, 237, 0.09);
}

.bonus-card h3 {
  margin-top: 15px;
  font-size: 20px;
}

.authority-grid {
  align-items: center;
}

.authority-copy h2 {
  margin-top: 18px;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -1px;
}

.authority-copy > p {
  margin-top: 17px;
}

.primeira-bancada {
  padding: 17px 18px;
  margin-top: 21px;
  border-radius: 20px;
  background: rgba(186, 230, 253, 0.47);
  box-shadow: inset 3px 3px 7px rgba(255, 255, 255, 0.65);
}

.primeira-bancada strong {
  color: var(--blue-dark);
  font-family: var(--font-heading);
}

.primeira-bancada p {
  margin-top: 4px;
  font-size: 14px;
}

.authority-cards {
  display: grid;
  gap: 18px;
}

.creator-card {
  display: flex;
  overflow: hidden;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  padding: 14px 14px 21px;
  text-align: center;
}

.creator-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  box-shadow: 10px 12px 22px rgba(160, 80, 140, 0.17), -6px -6px 14px rgba(255, 255, 255, 0.84);
  object-fit: cover;
  object-position: center;
}

.creator-info {
  padding-inline: 8px;
}

.creator-card h3 {
  font-size: 25px;
}

.creator-card p {
  margin-top: 4px;
  font-size: 14px;
}

.authority-list {
  display: grid;
  gap: 11px;
  padding: 22px;
}

.authority-list li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  font-size: 14px;
}

.authority-list li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.offer-shell {
  gap: 36px;
  padding: 42px;
  border-color: rgba(124, 58, 237, 0.13);
  background: rgba(242, 238, 255, 0.72);
}

.offer-copy {
  padding: 9px 0;
}

.offer-copy h2 {
  margin-top: 16px;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -1px;
}

.offer-copy > p {
  margin-top: 14px;
}

.offer-list {
  margin-top: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.offer-list li {
  font-size: 14px;
}

.price-card {
  position: relative;
  padding: 28px;
  text-align: center;
}

.price-badge {
  color: #a66000;
  background: rgba(245, 158, 11, 0.16);
}

.normal-price {
  margin-top: 16px;
  font-size: 15px;
}

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 4px 0 0;
  color: var(--violet);
  font-family: var(--font-heading);
  line-height: 1;
}

.price small {
  margin-top: 17px;
  font-size: 21px;
  font-weight: 900;
}

.price strong {
  font-size: 92px;
  font-weight: 900;
  letter-spacing: -6px;
}

.price span {
  margin-top: 17px;
  font-size: 25px;
  font-weight: 900;
}

.price-caption {
  font-size: 12px;
}

.countdown-wrap {
  padding: 12px;
  margin: 17px 0;
  border-radius: 18px;
  background: rgba(124, 58, 237, 0.055);
  box-shadow: inset 3px 3px 7px rgba(124, 58, 237, 0.06), inset -3px -3px 7px rgba(255, 255, 255, 0.8);
}

.countdown-wrap p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.countdown {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(4, 1fr);
}

.countdown div {
  display: grid;
}

.countdown strong {
  color: var(--violet);
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1;
}

.countdown span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.centered-copy {
  text-align: center;
}

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

.mini-card {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 23px;
}

.mini-card span {
  display: grid;
  min-width: 39px;
  height: 39px;
  color: var(--blue-dark);
  border-radius: 14px;
  background: rgba(186, 230, 253, 0.62);
  font-family: var(--font-heading);
  font-weight: 900;
  place-items: center;
}

.mini-card strong {
  font-family: var(--font-heading);
  line-height: 1.2;
}

.faq-list {
  display: grid;
  gap: 13px;
}

.faq-item {
  overflow: hidden;
  border-radius: 23px;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 19px 21px;
  color: var(--text);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  text-align: left;
}

.faq-question b {
  display: grid;
  min-width: 31px;
  height: 31px;
  color: var(--blue-dark);
  border-radius: 11px;
  background: rgba(186, 230, 253, 0.55);
  font-size: 21px;
  transition: transform 0.2s ease;
  place-items: center;
}

.faq-item.active .faq-question b {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 21px 20px;
  font-size: 15px;
}

.final-cta {
  padding: 54px;
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
  margin: 17px auto 0;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -1.5px;
}

.final-cta p {
  max-width: 720px;
  margin: 16px auto 25px;
}

.final-cta small {
  display: block;
  margin-top: 15px;
  color: var(--muted);
}

.site-footer {
  padding: 30px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.25);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid p,
.footer-note p {
  margin-top: 7px;
  font-size: 12px;
}

.footer-grid nav {
  display: flex;
  gap: 18px;
}

.footer-grid nav a {
  color: var(--muted);
  font-size: 13px;
}

.footer-note {
  padding-top: 17px;
  margin-top: 17px;
  border-top: 1px solid rgba(124, 58, 237, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(26px, -30px, 0) rotate(18deg);
  }
}

@keyframes bookFloat {
  0%,
  100% {
    transform: rotateY(-18deg) rotateX(3deg) rotateZ(2deg) translateY(0);
  }
  50% {
    transform: rotateY(-18deg) rotateX(3deg) rotateZ(2deg) translateY(-12px);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

  .hero {
    padding-top: 42px;
  }

  .hero-grid,
  .authority-grid,
  .offer-shell {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    width: min(560px, 100%);
    min-height: 560px;
    margin: -20px auto 0;
  }

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

  .bonus-card:last-child {
    grid-column: auto;
  }

  .offer-shell {
    gap: 22px;
  }

  .price-card {
    max-width: 560px;
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .problem-section {
    padding: 72px 0;
  }

  .problem-grid {
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .problem-visual-card {
    padding: 10px;
    border-radius: 32px;
  }

  .problem-image {
    border-radius: 24px;
  }

  .problem-content h2 {
    font-size: clamp(34px, 8vw, 52px);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 22px, 560px);
  }

  .section {
    padding: 61px 0;
  }

  .header-inner {
    min-height: 66px;
    gap: 8px;
  }

  .brand {
    gap: 6px;
    font-size: 13px;
  }

  .brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 11px;
    font-size: 18px;
  }

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .button-small {
    min-height: 39px;
    padding: 0 12px;
    border-radius: 14px;
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 33px;
  }

  .eyebrow {
    font-size: 9px;
  }

  .hero h1 {
    margin-top: 17px;
    font-size: clamp(39px, 12vw, 53px);
    letter-spacing: -1.7px;
  }

  .hero-text {
    margin-top: 15px;
    font-size: 16px;
  }

  .check-list li,
  .x-list li {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    margin-top: 24px;
  }

  .button-large {
    width: 100%;
    min-height: 57px;
    padding: 0 16px;
    font-size: 15px;
  }

  .hero-visual {
    min-height: 400px;
    margin-top: 20px;
  }

  .orbit-one {
    top: 34px;
    right: calc(50% - 185px);
    width: 370px;
    height: 370px;
  }

  .orbit-two {
    top: 70px;
    right: calc(50% - 145px);
    width: 290px;
    height: 290px;
  }

  .ebook-scene {
    top: 55px;
    right: calc(50% - 103px);
    width: 206px;
    height: 302px;
  }

  .ebook-cover {
    padding: 18px;
  }

  .ebook-icon {
    width: 42px;
    height: 42px;
    margin-top: 25px;
    border-radius: 15px;
    font-size: 24px;
  }

  .ebook-cover p {
    margin-top: 11px;
    font-size: 7px;
  }

  .ebook-cover h2 {
    margin-top: 3px;
    font-size: 27px;
  }

  .ebook-line {
    margin: 11px 0 7px;
  }

  .ebook-cover strong {
    font-size: 11px;
  }

  .ebook-cover small,
  .ebook-brand {
    font-size: 6px;
  }

  .floating-card {
    gap: 7px;
    padding: 8px;
    border-radius: 15px;
  }

  .floating-card p,
  .floating-card strong {
    font-size: 9px;
  }

  .floating-icon {
    min-width: 25px;
    height: 25px;
    border-radius: 9px;
    font-size: 12px;
  }

  .card-followers {
    top: 19px;
    left: 0;
    max-width: 142px;
  }

  .card-clients {
    right: 0;
    bottom: 45px;
    max-width: 132px;
  }

  .card-simple {
    bottom: 21px;
    left: 0;
    max-width: 115px;
  }

  .section-heading {
    margin-bottom: 27px;
  }

  .section-heading h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .section-media-card {
    padding: 7px;
    margin-bottom: 22px;
    border-radius: 24px;
    box-shadow: 10px 12px 24px rgba(160, 80, 140, 0.13), -7px -7px 16px rgba(255, 255, 255, 0.9);
  }

  .section-media-card img {
    border-radius: 18px;
  }

  .section-media-grid {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .section-media-grid .section-media-card {
    margin-bottom: 16px;
  }

  .problem-grid,
  .comparison-grid,
  .audience-grid,
  .three-grid,
  .chapters-grid,
  .bonus-grid,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .comparison-card,
  .audience-card {
    padding: 22px;
  }

  .comparison-card h3,
  .audience-card h3 {
    font-size: 21px;
  }

  .problem-list-card,
  .problem-highlight {
    padding: 20px;
    border-radius: 24px;
  }

  .problem-content h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .problem-highlight p,
  .statement {
    font-size: 17px;
  }

  .feature-card {
    padding: 22px;
  }

  .chapter-card {
    padding: 15px;
  }

  .offer-shell {
    padding: 19px;
    border-radius: 36px;
  }

  .offer-copy {
    padding: 7px 3px;
  }

  .offer-copy h2 {
    font-size: 34px;
  }

  .offer-list {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 22px 17px;
  }

  .price strong {
    font-size: 80px;
  }

  .mini-card {
    min-height: 72px;
  }

  .faq-question {
    padding: 16px;
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 16px 16px;
    font-size: 14px;
  }

  .final-cta {
    padding: 36px 20px;
    border-radius: 37px;
  }

  .final-cta h2 {
    font-size: 37px;
  }

  .footer-grid {
    display: grid;
  }

  .footer-grid nav {
    flex-wrap: wrap;
    gap: 10px 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
