:root {
  --bg: #050706;
  --bg-soft: #0a0f0c;
  --panel: #101512;
  --panel-2: #151b18;
  --text: #f6f7f5;
  --muted: #a8b0aa;
  --muted-2: #707a73;
  --green: #38ff7a;
  --green-2: #12c95a;
  --gold: #d9a441;
  --gold-2: #ffe3a0;
  --line: rgba(255, 255, 255, 0.11);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --radius-lg: 18px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(56, 255, 122, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 20%, rgba(217, 164, 65, 0.13), transparent 30rem),
    linear-gradient(180deg, #050706 0%, #080b09 46%, #050706 100%);
  letter-spacing: 0;
}

.cursor-follower {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 227, 160, 0.62);
  border-radius: 50%;
  background: rgba(217, 164, 65, 0.08);
  box-shadow: 0 0 28px rgba(217, 164, 65, 0.18);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.86);
  transition: opacity 180ms ease, transform 120ms ease;
  mix-blend-mode: screen;
}

.cursor-follower.is-visible {
  opacity: 1;
}

.cursor-follower.is-hovering {
  transform: translate3d(-50%, -50%, 0) scale(1.45);
  background: rgba(217, 164, 65, 0.12);
  border-color: rgba(56, 255, 122, 0.48);
}

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

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  font-size: clamp(2.45rem, 5.7vw, 5.65rem);
  max-width: 920px;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.08rem;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 900px;
}

.center {
  text-align: center;
}

.section-pad {
  padding: 104px 0;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 7, 6, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 42px;
  border: 1px solid rgba(217, 164, 65, 0.5);
  border-radius: 8px;
  color: var(--gold-2);
  background: linear-gradient(145deg, #1e1a10, #080a08);
  font-size: 0.76rem;
  font-weight: 900;
}

.brand-mark.small {
  width: 62px;
  height: 48px;
}

.crown-shape {
  position: absolute;
  top: 6px;
  width: 25px;
  height: 12px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  clip-path: polygon(0 100%, 0 35%, 24% 70%, 50% 0, 76% 70%, 100% 35%, 100% 100%);
}

.brand-mark span:last-child {
  transform: translateY(6px);
}

.brand-text {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.93rem;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--green);
}

.header-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--green);
  color: #031107;
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  padding-top: 84px;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.clean-hero .hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
}

.clean-hero .hero-subtitle {
  max-width: 680px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 22px var(--green);
}

.hero-subtitle {
  max-width: 780px;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.promo-price {
  width: fit-content;
  max-width: 100%;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border: 1px solid rgba(217, 164, 65, 0.48);
  border-radius: 18px;
  background:
    radial-gradient(circle at 85% 20%, rgba(56, 255, 122, 0.12), transparent 10rem),
    linear-gradient(135deg, rgba(217, 164, 65, 0.2), rgba(255, 255, 255, 0.045)),
    rgba(0, 0, 0, 0.34);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28), 0 0 60px rgba(217, 164, 65, 0.12);
  backdrop-filter: blur(14px);
}

.promo-label {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 999px;
  background: rgba(217, 164, 65, 0.1);
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-price .old-price {
  color: var(--muted);
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 77, 109, 0.9);
  text-decoration-thickness: 2px;
}

.promo-price strong,
.price {
  color: var(--gold-2);
  font-size: clamp(4rem, 8vw, 7.2rem);
  line-height: 0.84;
  text-shadow: 0 0 28px rgba(217, 164, 65, 0.24);
  overflow-wrap: anywhere;
}

.installment-price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.installment-price span {
  max-width: 132px;
  color: #f5ead2;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.promo-price small {
  color: #f4efe4;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  font-weight: 850;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  cursor: pointer;
  text-align: center;
  overflow-wrap: anywhere;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--green), #bbff72);
  color: #031107;
  box-shadow: 0 18px 52px rgba(56, 255, 122, 0.25);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.btn.full {
  width: 100%;
}

.microcopy {
  color: var(--muted-2);
  font-size: 0.93rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 780px;
}

.badge-row span,
.benefit-grid span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.035);
  color: #dce4de;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.product-hero-frame {
  width: min(780px, 58vw);
  margin: 0;
  border: 1px solid rgba(217, 164, 65, 0.24);
  border-radius: 24px;
  overflow: hidden;
  background: #050706;
  box-shadow: var(--shadow), 0 0 90px rgba(217, 164, 65, 0.12);
}

.product-hero-frame img,
.product-showcase-image {
  display: block;
  width: 100%;
  height: auto;
}

.product-showcase-image {
  border: 1px solid rgba(217, 164, 65, 0.24);
  border-radius: 18px;
  background: #050706;
  box-shadow: var(--shadow);
}

.phone-mockup {
  position: relative;
  width: min(330px, 78vw);
  aspect-ratio: 9 / 18.5;
  padding: 14px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, #202620, #050605);
  box-shadow: var(--shadow), inset 0 0 0 8px #070907;
}

.phone-speaker {
  position: absolute;
  top: 17px;
  left: 50%;
  width: 84px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #222923;
  z-index: 2;
}

.reels-screen {
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  padding: 34px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.75)),
    radial-gradient(circle at 48% 28%, rgba(56, 255, 122, 0.28), transparent 8rem),
    linear-gradient(145deg, #172018, #090b09);
}

.reel-top,
.reel-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #dce4de;
  font-size: 0.84rem;
  font-weight: 800;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff3764;
  box-shadow: 0 0 20px #ff3764;
}

.reel-title {
  margin-top: auto;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.08;
}

.reel-bars {
  display: grid;
  gap: 8px;
  margin: 22px 0;
}

.reel-bars span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.reel-bars span:nth-child(1) {
  width: 84%;
}

.reel-bars span:nth-child(2) {
  width: 62%;
}

.reel-bars span:nth-child(3) {
  width: 76%;
}

.reel-bars span:nth-child(4) {
  width: 48%;
}

.floating-card {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(16, 21, 18, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.growth-card {
  left: 2%;
  top: 12%;
  width: 190px;
  padding: 18px;
}

.notification-card {
  right: 0;
  bottom: 16%;
  width: 210px;
  padding: 18px;
}

.floating-card .label,
.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.floating-card strong {
  display: block;
  margin-top: 6px;
  color: var(--green);
  font-size: 1.75rem;
}

.mini-chart {
  display: flex !important;
  align-items: end;
  gap: 5px;
  height: 44px;
  margin-top: 12px;
}

.mini-chart i {
  display: block;
  width: 22px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--green), var(--gold));
}

.mini-chart i:nth-child(1) { height: 18px; }
.mini-chart i:nth-child(2) { height: 25px; }
.mini-chart i:nth-child(3) { height: 30px; }
.mini-chart i:nth-child(4) { height: 38px; }
.mini-chart i:nth-child(5) { height: 44px; }

.section-copy {
  display: grid;
  gap: 20px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 36px;
  display: grid;
  gap: 16px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

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

.check-list span,
.x-list span,
.value-stack span {
  position: relative;
  display: block;
  padding: 15px 16px 15px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: #dce4de;
}

.check-list span::before,
.value-stack span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(56, 255, 122, 0.55);
}

.x-list span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #ff4d6d;
}

.pain,
.goal,
.guarantee {
  background: rgba(255, 255, 255, 0.025);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.belief .narrow,
.guarantee .narrow {
  display: grid;
  gap: 22px;
}

.impact-line {
  padding: 22px;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(56, 255, 122, 0.16), rgba(255, 255, 255, 0.03));
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 900;
}

.product-stack {
  display: grid;
  gap: 16px;
}

.pack-card {
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(217, 164, 65, 0.32);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(217, 164, 65, 0.16), rgba(56, 255, 122, 0.08)),
    var(--panel);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 18px;
}

.pack-card h3 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.metric-strip,
.formula {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.metric-strip {
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--muted);
}

.metric-strip strong {
  color: var(--green);
}

.included {
  background:
    linear-gradient(180deg, rgba(217, 164, 65, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(0, 0, 0, 0.08);
  border-block: 1px solid rgba(217, 164, 65, 0.12);
}

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

.included-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(217, 164, 65, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    #0b0d0b;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
  display: grid;
  align-content: start;
  gap: 13px;
}

.included-card h3 {
  color: #fbf4e5;
  line-height: 1.16;
}

.included-card p {
  font-size: 0.94rem;
}

.content-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 10px;
  background: rgba(217, 164, 65, 0.08);
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.access,
.trust,
.clean-proof {
  background: rgba(255, 255, 255, 0.018);
  border-block: 1px solid rgba(255, 255, 255, 0.055);
}

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

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

.step-card,
.quote-card {
  border: 1px solid rgba(217, 164, 65, 0.15);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.14);
}

.step-card {
  display: grid;
  gap: 12px;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(217, 164, 65, 0.12);
  color: var(--gold-2);
  font-weight: 900;
}

.quote-card {
  display: grid;
  gap: 16px;
}

.quote-card p {
  color: #e8e1d2;
  font-size: 1.02rem;
}

.quote-card strong {
  color: var(--gold-2);
  font-size: 0.95rem;
}

.clean-proof {
  background:
    linear-gradient(180deg, rgba(217, 164, 65, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.015);
}

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

.proof-card {
  border: 1px solid rgba(217, 164, 65, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    #0a0d0b;
  padding: 20px;
  display: grid;
  gap: 16px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.18);
}

.proof-card p {
  color: #efe8d9;
  font-size: 0.98rem;
  line-height: 1.58;
}

.proof-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-head div {
  display: grid;
  gap: 3px;
}

.proof-head strong {
  color: #fff8ec;
  font-size: 0.95rem;
}

.proof-head small {
  color: var(--gold-2);
  font-size: 0.78rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-badges span {
  border: 1px solid rgba(217, 164, 65, 0.18);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(217, 164, 65, 0.055);
  color: #efe8d9;
  font-size: 0.88rem;
  font-weight: 800;
}

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

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

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

.feature-card,
.bonus-card,
.chat-card,
.fit-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

.feature-card,
.bonus-card {
  padding: 24px;
  display: grid;
  gap: 14px;
}

.feature-card .icon,
.bonus-card > span {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-width: 48px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(56, 255, 122, 0.12);
  color: var(--green);
  font-weight: 900;
}

.formula {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 24px;
}

.formula span,
.formula strong {
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 850;
}

.formula b {
  color: var(--gold);
  display: grid;
  place-items: center;
}

.formula strong {
  grid-column: 1 / -1;
  background: rgba(56, 255, 122, 0.14);
  color: var(--green);
  text-align: center;
}

.social-proof {
  background:
    linear-gradient(rgba(5, 7, 6, 0.82), rgba(5, 7, 6, 0.92)),
    repeating-linear-gradient(135deg, rgba(56, 255, 122, 0.07) 0 1px, transparent 1px 18px);
}

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

.chat-card {
  padding: 16px;
  display: grid;
  gap: 12px;
  background: #0b120e;
}

.chat-head {
  display: flex;
  gap: 10px;
  align-items: center;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #071006;
  background: linear-gradient(135deg, var(--green), var(--gold-2));
  font-weight: 900;
}

.chat-head div {
  display: grid;
  gap: 3px;
}

.chat-head small {
  color: var(--muted-2);
}

.bubble {
  padding: 12px;
  border-radius: 14px;
  color: #eaf0ec;
  line-height: 1.45;
  font-size: 0.9rem;
}

.bubble.user {
  border-bottom-left-radius: 4px;
  background: #1e2721;
}

.bubble.hcm {
  margin-left: 22px;
  border-bottom-right-radius: 4px;
  background: linear-gradient(135deg, rgba(56, 255, 122, 0.28), rgba(217, 164, 65, 0.16));
}

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

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.fit-panel {
  padding: 28px;
  display: grid;
  gap: 22px;
}

.fit-panel.yes {
  border-color: rgba(56, 255, 122, 0.22);
}

.fit-panel.no {
  border-color: rgba(255, 77, 109, 0.2);
}

.offer-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(56, 255, 122, 0.26);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(56, 255, 122, 0.11), rgba(217, 164, 65, 0.09)),
    var(--panel);
  box-shadow: var(--shadow);
}

.offer-copy {
  display: grid;
  gap: 22px;
}

.value-stack {
  display: grid;
  gap: 10px;
}

.clean-stack span {
  padding-left: 40px;
}

.value-stack strong {
  font-size: 1.2rem;
}

.price-box {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(217, 164, 65, 0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 5%, rgba(56, 255, 122, 0.12), transparent 12rem),
    radial-gradient(circle at 50% 0%, rgba(217, 164, 65, 0.18), transparent 18rem),
    rgba(0, 0, 0, 0.25);
  display: grid;
  align-content: center;
  gap: 14px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.price-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.7) 48%, rgba(0, 0, 0, 0.34) 100%),
    url("assets/hero-cofre-mulher-premium.png") right center / cover no-repeat;
  opacity: 0.72;
  pointer-events: none;
}

.price-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(217, 164, 65, 0.18), transparent 14rem),
    linear-gradient(180deg, rgba(5, 7, 6, 0.05), rgba(5, 7, 6, 0.45));
  pointer-events: none;
}

.price-box > * {
  position: relative;
  z-index: 1;
}

.from-price,
.installment {
  color: var(--muted);
}

.from-price {
  font-size: 1.05rem;
  font-weight: 800;
}

.from-price s {
  color: #7f8781;
  text-decoration-color: rgba(255, 77, 109, 0.9);
  text-decoration-thickness: 2px;
}

.price {
  font-size: clamp(4.4rem, 7vw, 6.4rem);
  text-shadow: 0 0 34px rgba(217, 164, 65, 0.25);
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 900;
}

details p {
  padding: 0 20px 20px;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0;
  text-align: left;
}

.choice-grid div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: #e4ebe6;
  font-weight: 800;
}

.choice-grid div:nth-child(2) {
  border-color: rgba(56, 255, 122, 0.38);
  background: rgba(56, 255, 122, 0.12);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #030403;
}

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

.footer-grid p {
  max-width: 760px;
  margin-top: 8px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 16px;
  color: var(--muted);
}

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

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

@media (max-width: 1050px) {
  .cards.four,
  .chat-grid,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .steps-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    border-radius: 18px;
  }

  .brand-text,
  .nav-links {
    display: none;
  }

  .hero-grid,
  .split,
  .two-columns,
  .offer-card {
    grid-template-columns: 1fr;
  }

  .clean-hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-visual {
    min-height: auto;
  }

  .product-hero-frame {
    width: min(100%, 720px);
  }

  .floating-card {
    transform: scale(0.9);
  }

  .growth-card {
    left: 0;
  }

  .notification-card {
    right: -8px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding: 68px 0;
  }

  .header-cta {
    padding: 11px 12px;
    font-size: 0.84rem;
  }

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

  .cards.four,
  .cards.three,
  .chat-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .trust-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .formula {
    grid-template-columns: 1fr;
  }

  .formula b {
    display: none;
  }

  .offer-card,
  .fit-panel {
    padding: 20px;
  }

  .footer-grid {
    display: grid;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

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

  .cursor-follower {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-follower {
    display: none;
  }
}
