:root {
  --ink: #101010;
  --muted: #625d50;
  --paper: #fffaf0;
  --soft: #f3ead7;
  --line: #dfc77c;
  --gold: #f6c431;
  --gold-strong: #ffe15a;
  --gold-soft: #fff2bc;
  --whatsapp: #075e54;
  --whatsapp-dark: #06483f;
  --whatsapp-soft: #e7f5ee;
  --whatsapp-bubble: #d9fdd3;
  --red: #c84630;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(16, 24, 32, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 42px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

body.has-floating-cta {
  padding-bottom: 88px;
}

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

.topbar {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  height: 42px;
  overflow: hidden;
  border-bottom: 1px solid rgba(246, 196, 49, 0.28);
  background: #050505;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.topbar-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  height: 100%;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: topbar-scroll 28s linear infinite;
}

.topbar-track span {
  position: relative;
  padding-left: 28px;
}

.topbar-track span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

@keyframes topbar-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

.narrow {
  max-width: 820px;
}

.centered {
  text-align: center;
}

.section {
  padding: 72px 0;
}

.section-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 9vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 8vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.lead,
.hero-subtitle {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.96), rgba(34, 27, 8, 0.93)),
    radial-gradient(circle at 82% 16%, rgba(246, 196, 49, 0.34), transparent 30%),
    #101010;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 92px;
  background: linear-gradient(to bottom, transparent, rgba(16, 24, 32, 0.2));
  pointer-events: none;
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 14px;
}

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

.brand-logo {
  width: 58px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  background: #050505;
  box-shadow: 0 0 20px rgba(246, 196, 49, 0.2);
}

.brand-text {
  overflow: hidden;
  max-width: 150px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-cta {
  display: none;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  padding: 42px 0 72px;
}

.hero-subtitle {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-points {
  display: grid;
  gap: 8px;
  max-width: 540px;
  margin: 20px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 26px;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.price-panel {
  display: grid;
  gap: 2px;
  max-width: 380px;
  margin: 28px 0 20px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.price-label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-panel strong {
  font-size: 2.35rem;
  line-height: 1;
}

.price-panel small {
  color: rgba(255, 255, 255, 0.74);
}

.hero-impact {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 800;
}

.cta-group {
  display: grid;
  gap: 10px;
  max-width: 440px;
}

.urgency-note {
  margin: 0;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 900;
}

.price-opportunity {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-weight: 900;
}

.security-microcopy {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.86rem;
  list-style: none;
}

.security-microcopy.light {
  margin-top: 12px;
}

.security-microcopy.inverted {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.security-microcopy.center {
  justify-items: center;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(242, 184, 75, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-strong);
}

.btn-secondary {
  margin-top: 12px;
  background: var(--ink);
  color: var(--white);
}

.btn-large {
  width: 100%;
}

.microcopy,
.secure-note,
.section-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero .microcopy {
  color: rgba(255, 255, 255, 0.72);
}

.hero .security-microcopy {
  color: rgba(255, 255, 255, 0.76);
}

.hero-visual {
  display: grid;
  gap: 18px;
  place-items: center;
}

.phone-mockup {
  width: min(100%, 360px);
  padding: 14px;
  border: 10px solid #090909;
  border-radius: 34px;
  background: var(--whatsapp-soft);
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.phone-top {
  width: 72px;
  height: 5px;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: #2b3b45;
}

.chat-header,
.whatsapp-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.chat-header {
  padding: 10px;
  border-radius: 8px;
  background: var(--whatsapp);
  color: var(--white);
}

.chat-header small,
.whatsapp-head small {
  display: block;
  color: currentColor;
  opacity: 0.72;
  font-size: 0.76rem;
}

.avatar {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.chat-bubble {
  width: fit-content;
  max-width: 88%;
  margin: 10px 0;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.92rem;
}

.incoming {
  background: var(--white);
}

.outgoing {
  margin-left: auto;
  background: var(--whatsapp-bubble);
}

.chat-result {
  margin-top: 16px;
  padding: 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.chat-result span {
  display: block;
  color: var(--gold);
  font-size: 1.45rem;
  font-weight: 900;
}

.problem,
.learn,
.guarantee,
.quote-proof {
  background: var(--paper);
}

.consequence,
.benefits,
.faq {
  background: var(--soft);
}

.transition,
.not-for-you {
  color: var(--white);
  background: var(--ink);
}

.transition .lead,
.not-for-you .check-list,
.not-for-you .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.split,
.offer-grid {
  display: grid;
  gap: 32px;
}

.pain-list,
.feature-grid,
.benefit-row,
.testimonial-grid {
  display: grid;
  gap: 14px;
}

.pain-list article,
.feature-grid article,
.benefit-row article,
.method-card,
.consequence-box,
.offer-card,
.guarantee-box,
.whatsapp-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.06);
}

.pain-list article {
  display: flex;
  gap: 14px;
  padding: 18px;
}

.pain-list span {
  color: var(--gold);
  font-weight: 900;
}

.pain-list p,
.check-list,
.objection-list,
.benefit-row p,
.feature-grid p,
.method-step p,
.offer-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.consequence-box,
.method-card,
.offer-card,
.guarantee-box,
.whatsapp-card {
  padding: 22px;
}

.check-list,
.objection-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.check-list li,
.objection-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before,
.objection-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.danger li::before {
  content: "!";
  background: #ffe6df;
  color: var(--red);
}

.method-card {
  display: grid;
  gap: 14px;
  background: var(--ink);
  color: var(--white);
}

.method-step {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.method-step span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 900;
}

.method-step p {
  color: rgba(255, 255, 255, 0.75);
}

.feature-grid article,
.benefit-row article {
  padding: 20px;
}

.icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.social-proof {
  background: #f9f6ef;
}

.quote-grid {
  display: grid;
  gap: 14px;
}

.quote-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 24, 32, 0.06);
}

.quote-card p {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.quote-card strong {
  color: var(--muted);
}

.whatsapp-card {
  background: var(--whatsapp-soft);
}

.msg {
  width: fit-content;
  max-width: 92%;
  margin: 10px 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.msg.received {
  background: var(--white);
}

.msg.sent {
  margin-left: auto;
  background: var(--whatsapp-bubble);
}

.msg.result {
  width: 100%;
  background: var(--whatsapp-dark);
  color: var(--white);
  font-weight: 900;
}

.objection-list {
  margin: 0;
}

.objection-list li {
  padding: 18px 18px 18px 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.objection-list li::before {
  top: 18px;
  left: 18px;
}

.offer {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.97), rgba(39, 30, 6, 0.94)),
    radial-gradient(circle at 82% 18%, rgba(246, 196, 49, 0.24), transparent 30%),
    #101010;
}

.loss-reminder {
  color: var(--white);
  background: var(--ink);
}

.loss-reminder .section-kicker {
  color: var(--gold);
}

.loss-copy {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.45rem, 6vw, 2.4rem);
  font-weight: 900;
  line-height: 1.12;
}

.offer .lead,
.offer .check-list,
.offer-card p,
.offer .section-kicker {
  color: rgba(255, 255, 255, 0.78);
}

.offer-card .urgency-note {
  color: var(--gold);
}

.offer .check-list li::before {
  background: rgba(242, 184, 75, 0.22);
  color: var(--gold);
}

.offer-card {
  align-self: start;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.value-anchor {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(242, 184, 75, 0.16);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.offer-price {
  display: grid;
  margin-bottom: 12px;
}

.offer-price small {
  color: rgba(255, 255, 255, 0.7);
}

.price-panel .price-opportunity,
.offer-price .price-opportunity {
  color: var(--gold);
  font-weight: 900;
}

.offer-price strong {
  font-size: 3rem;
  line-height: 1;
}

.scarcity {
  margin: 18px 0;
  padding: 12px;
  border: 1px solid rgba(242, 184, 75, 0.46);
  border-radius: var(--radius);
  background: rgba(242, 184, 75, 0.12);
  color: var(--gold);
  font-weight: 900;
  text-align: center;
}

.secure-note {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.seal {
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 1.65rem;
  font-weight: 900;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 18px;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

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

.final-cta {
  background: var(--paper);
}

.final-price {
  margin: 22px auto;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
}

.final-price strong {
  color: var(--ink);
}

.decision-copy {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.decision-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.decision-copy strong {
  color: var(--ink);
}

.footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink);
  font-size: 0.92rem;
}

.footer-inner {
  display: grid;
  gap: 8px;
}

.footer a {
  color: var(--gold);
  font-weight: 800;
}

.mobile-floating-cta {
  position: fixed;
  z-index: 30;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 14px 38px rgba(16, 24, 32, 0.3);
  font-weight: 950;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-floating-cta small {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
}

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

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

@media (min-width: 680px) {
  .nav-cta {
    display: inline-flex;
  }

  .btn-large {
    width: auto;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }
}

@media (min-width: 920px) {
  .section {
    padding: 96px 0;
  }

  .hero-grid,
  .split,
  .offer-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
  }

  .hero-grid {
    padding: 70px 0 96px;
  }

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

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

@media (max-width: 767px) {
  .mobile-floating-cta {
    display: flex;
  }

  .mobile-floating-cta.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

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

  .topbar-track {
    animation: none;
  }

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