:root {
  --navy: #0d2438;
  --navy-2: #15354f;
  --navy-soft: #eaf0f4;

  --cream: #f7f3ea;
  --cream-dark: #eee8dc;

  --yellow: #f4c746;
  --yellow-hover: #ffd660;

  --orange: #ef6b43;

  --white: #ffffff;
  --ink: #14202a;
  --text: #41505c;
  --muted: #6c7882;

  --border: rgba(13, 36, 56, 0.12);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;

  --shadow:
    0 24px 60px rgba(13, 36, 56, 0.12);

  --shadow-small:
    0 12px 30px rgba(13, 36, 56, 0.08);
}


/* ---------------------------------------------
   RESET / QUARTO
--------------------------------------------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

main,
#quarto-content,
.page-columns,
.content {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.quarto-title-block,
#title-block-header {
  display: none !important;
}

.page-width {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.content-narrow {
  width: min(820px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.center {
  text-align: center;
}

a {
  text-decoration: none;
}

p {
  margin-top: 0;
}

strong {
  color: inherit;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin: 18px 0 22px;
  font-size: clamp(3.3rem, 7vw, 6.7rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.5vw, 4.2rem);
}

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


/* ---------------------------------------------
   ANNOUNCEMENT
--------------------------------------------- */

.announcement {
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--white);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.announcement-inner {
  min-height: 52px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  font-weight: 700;
}

.announcement-inner a {
  color: var(--yellow);
  font-weight: 800;
}


/* ---------------------------------------------
   TYPOGRAPHIC LABELS
--------------------------------------------- */

.eyebrow,
.section-label,
.final-kicker {
  display: inline-block;
  color: var(--navy-2);
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label {
  margin-bottom: 18px;
}

.light-label {
  color: var(--yellow);
}

.dark-label {
  color: var(--navy);
}


/* ---------------------------------------------
   HERO
--------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 96px;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(244, 199, 70, 0.12),
      transparent 26%
    ),
    var(--navy);
}

.hero::after {
  position: absolute;
  right: -200px;
  bottom: -300px;
  width: 650px;
  height: 650px;
  content: "";
  background: rgba(255, 255, 255, 0.025);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  align-items: center;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero h1 {
  color: var(--white);
}

.hero h2 {
  max-width: 760px;
  color: var(--yellow);
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.5rem, 2.7vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.hero-copy > p {
  max-width: 700px;
  font-size: 1.08rem;
}

.hero-facts {
  display: flex;
  gap: 16px;
  margin: 32px 0;
}

.hero-facts div {
  min-width: 125px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
}

.hero-facts span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.price-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}


/* ---------------------------------------------
   HERO VISUAL
--------------------------------------------- */

.hero-visual {
  position: relative;
}

.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  padding: 44px;
  color: var(--white);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.015)
    );
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.visual-card::before {
  position: absolute;
  top: -90px;
  right: -80px;
  width: 270px;
  height: 270px;
  content: "";
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.94;
}

.visual-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 240px;
  height: 240px;
  content: "";
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.visual-kicker {
  position: relative;
  z-index: 2;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.visual-title {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.2rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.visual-line {
  width: 70px;
  height: 5px;
  margin: 30px 0;
  background: var(--yellow);
  border-radius: 10px;
}

.visual-message {
  position: relative;
  z-index: 2;
  max-width: 350px;
}

.visual-message strong,
.visual-message span {
  display: block;
}

.visual-message strong {
  font-size: 1.35rem;
  line-height: 1.3;
}

.visual-message span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
}

.visual-equations {
  position: absolute;
  left: 44px;
  bottom: 42px;
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.22);
  font-family: Georgia, serif;
  font-size: 1.25rem;
}


/* ---------------------------------------------
   BUTTONS
--------------------------------------------- */

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

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

.button-primary {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 10px 24px rgba(244, 199, 70, 0.18);
}

.button-primary:hover {
  color: var(--navy);
  background: var(--yellow-hover);
}

.button-yellow {
  color: var(--navy);
  background: var(--yellow);
}

.button-yellow:hover {
  color: var(--navy);
  background: var(--yellow-hover);
}

.button-full {
  width: 100%;
}


/* ---------------------------------------------
   QUIET STRIP
--------------------------------------------- */

.quiet-strip {
  padding: 25px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

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

.strip-grid div {
  padding-left: 18px;
  border-left: 2px solid var(--yellow);
}

.strip-grid strong,
.strip-grid span {
  display: block;
}

.strip-grid strong {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
}

.strip-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}


/* ---------------------------------------------
   SECTIONS
--------------------------------------------- */

.section {
  padding: 100px 0;
}

.section-light {
  background: var(--white);
}

.section-cream {
  background: var(--cream);
}

.section-navy {
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-lead {
  max-width: 760px;
  margin-bottom: 42px;
  font-size: 1.1rem;
}


/* ---------------------------------------------
   QUOTES / PROBLEM
--------------------------------------------- */

.quote-list {
  display: grid;
  gap: 11px;
  margin: 32px 0;
}

.quote-list div {
  padding: 17px 20px;
  color: var(--ink);
  background: var(--cream);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 700;
}


/* ---------------------------------------------
   STATEMENT
--------------------------------------------- */

.statement {
  padding: 82px 0;
  color: var(--white);
  background: var(--navy-2);
}

.statement-inner {
  text-align: center;
}

.statement-inner > span {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.statement h2 {
  max-width: 900px;
  margin: 17px auto 15px;
  color: var(--white);
}

.statement p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}


/* ---------------------------------------------
   FEATURE CARDS
--------------------------------------------- */

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

.card {
  min-height: 285px;
  padding: 27px;
  color: var(--text);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
}

.card-number {
  display: block;
  margin-bottom: 42px;
  color: var(--orange);
  font-family: "Manrope", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
}

.card h3 {
  color: var(--ink);
}

.card p {
  margin-bottom: 0;
}


/* ---------------------------------------------
   SPLIT / SCHEDULE
--------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.schedule-card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.schedule-card .small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.schedule-big {
  margin: 5px 0 28px;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: 4.2rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid var(--border);
}

.schedule-row span {
  color: var(--muted);
}

.schedule-row strong {
  color: var(--ink);
}


/* ---------------------------------------------
   REVERSE PSYCHOLOGY
--------------------------------------------- */

.reverse-section {
  padding: 94px 0;
  color: var(--ink);
  background: var(--yellow);
}

.reverse-section h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.reverse-section p {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}


/* ---------------------------------------------
   PRODUCT PROOF
--------------------------------------------- */

.proof-section {
  padding: 100px 0;
  background: var(--yellow);
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 62px;
  align-items: center;
}

.proof-copy h2 {
  font-size: clamp(2.5rem, 4.2vw, 4rem);
}

.proof-copy p {
  color: var(--ink);
  font-size: 1.04rem;
}

.proof-image {
  overflow: hidden;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.proof-image img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius) - 8px);
}


/* ---------------------------------------------
   BENEFITS
--------------------------------------------- */

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

.benefit {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 13px;
  align-items: start;
  padding: 21px;
  background: var(--cream);
  border-radius: var(--radius-sm);
}

.benefit span {
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 800;
}

.benefit p {
  margin: 0;
  color: var(--ink);
}


/* ---------------------------------------------
   ABOUT
--------------------------------------------- */

.about-section {
  padding: 100px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: center;
}

.about-photo {
  max-width: 410px;
}

.about-photo img {
  width: 100%;
  display: block;
  border: 8px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-copy p {
  max-width: 700px;
  font-size: 1.04rem;
}


/* ---------------------------------------------
   OFFER
--------------------------------------------- */

.offer-section {
  padding: 105px 0;
  color: var(--white);
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(244, 199, 70, 0.11),
      transparent 25%
    ),
    var(--navy);
}

.offer-card {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 65px;
  align-items: center;
}

.offer-copy h2 {
  color: var(--white);
}

.offer-lead {
  max-width: 620px;
  font-size: 1.08rem;
}

.included-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.78);
}

.checkout-card {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.checkout-label {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.price {
  margin: 7px 0 0;
  color: var(--navy);
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.8rem, 6vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1;
}

.not-subscription {
  display: block;
  margin: 7px 0 28px;
  color: var(--muted);
  font-size: 0.84rem;
}

.start-date {
  display: grid;
  gap: 3px;
  margin-bottom: 26px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.start-date span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.start-date strong {
  color: var(--ink);
  font-size: 1.18rem;
}

.checkout-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}


/* ---------------------------------------------
   GUARANTEE
--------------------------------------------- */

.guarantee-section {
  padding: 80px 0;
  background: var(--yellow);
}

.guarantee-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 38px;
  align-items: center;
  padding: 42px 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.guarantee-icon {
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 3.2rem;
}

.guarantee-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 3.8vw, 3.6rem);
}

.guarantee-copy p {
  max-width: 800px;
}

.guarantee-promise {
  display: inline-block;
  margin-top: 5px;
  padding: 9px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 9px;
  font-size: 0.86rem;
  text-transform: uppercase;
}


/* ---------------------------------------------
   URGENCY
--------------------------------------------- */

.urgency {
  padding: 50px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.urgency-inner {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}

.urgency-copy {
  max-width: 760px;
}

.urgency-label {
  color: var(--orange);
}

.urgency h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}


/* ---------------------------------------------
   FAQ
--------------------------------------------- */

details {
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

summary {
  padding: 19px 22px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  list-style-position: inside;
}

details p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--text);
}


/* ---------------------------------------------
   FINAL CTA
--------------------------------------------- */

.final-cta {
  padding: 105px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.final-cta .final-kicker {
  color: var(--yellow);
}

.final-cta h2 {
  color: var(--white);
}

.final-cta h3 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: var(--yellow);
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
}

.final-button {
  margin-top: 16px;
}

.final-meta {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.8rem;
}


/* ---------------------------------------------
   FOOTER
--------------------------------------------- */

footer {
  padding: 25px 0;
  color: rgba(255, 255, 255, 0.44);
  background: #071723;
  font-size: 0.78rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
}


/* ---------------------------------------------
   TABLET
--------------------------------------------- */

@media (max-width: 1000px) {

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

  .hero-grid {
    gap: 55px;
  }

  .hero-visual {
    max-width: 680px;
  }

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

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

  .split,
  .offer-card,
  .proof-grid,
  .about-grid {
    gap: 45px;
  }

  .about-photo {
    margin: 0 auto;
  }
}


/* ---------------------------------------------
   MOBILE
--------------------------------------------- */

@media (max-width: 680px) {

  .page-width,
  .content-narrow {
    width: min(100% - 28px, 1160px);
  }

  .announcement-inner {
    min-height: 60px;
    gap: 12px;
    justify-content: space-between;
    font-size: 0.74rem;
  }

  .hero {
    padding: 65px 0 70px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.3rem);
  }

  .hero h2 {
    font-size: 1.45rem;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero-facts div {
    min-width: 0;
    padding: 11px 8px;
  }

  .hero-facts strong {
    font-size: 0.9rem;
  }

  .hero-facts span {
    font-size: 0.65rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .price-note {
    text-align: center;
  }

  .visual-card {
    min-height: 430px;
    padding: 30px;
  }

  .visual-equations {
    left: 30px;
    bottom: 30px;
  }

  .section {
    padding: 70px 0;
  }

  .statement,
  .reverse-section,
  .offer-section,
  .final-cta,
  .proof-section,
  .about-section,
  .guarantee-section {
    padding: 72px 0;
  }

  .strip-grid,
  .cards,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid {
    gap: 16px;
  }

  .card {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 25px;
  }

  .schedule-big {
    font-size: 3.6rem;
  }

  .checkout-card {
    padding: 27px 21px;
  }

  .guarantee-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 22px;
  }

  .guarantee-icon {
    width: 82px;
    height: 82px;
    font-size: 2.5rem;
  }

  .price {
    font-size: 4rem;
  }

  .urgency-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-inner {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}


/* ---------------------------------------------
   ACCESSIBILITY
--------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
