﻿/* =========================
   Base Reset
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #080b10;
  color: #f5f1e8;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   Shared Layout
========================= */

.container,
.navbar {
  width: min(1180px, 90%);
  margin: 0 auto;
}

.section {
  padding: 7rem 0;
}

.narrow {
  width: min(900px, 90%);
  margin: 0 auto;
}

.eyebrow {
  color: #f3c96b;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  letter-spacing: -0.07em;
}

/* =========================
   Announcement Strip
========================= */

.announcement-strip {
  width: 100%;
  min-height: 42px;
  padding: 0.65rem 5%;
  background: #0f141d;
  color: #d8d1c4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.announcement-strip span {
  color: #f3c96b;
  font-weight: 600;
}

.announcement-strip a {
  color: #080b10;
  background: #f3c96b;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  transition: 0.25s ease;
}

.announcement-strip a:hover {
  background: #fff2bd;
  transform: translateY(-1px);
}

/* =========================
   Header / Navbar
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 11, 16, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(8, 11, 16, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.navbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5f1e8;
}

.brand img {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links a {
  font-size: 0.86rem;
  color: #b9b2a6;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: #f5f1e8;
}

.nav-links .nav-cta {
  color: #080b10;
  background: #f5f1e8;
  padding: 0.75rem 1.05rem;
  border-radius: 999px;
  font-weight: 700;
}

.nav-links .nav-cta:hover {
  background: #f3c96b;
  color: #080b10;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  min-width: 46px;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 201, 107, 0.35);
  color: #f3c96b !important;
  font-size: 0.78rem !important;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.language-switcher.is-hidden {
  display: none;
}

.nav-links a.active-link:not(.nav-cta) {
  color: #f3c96b;
}

.nav-links a:not(.nav-cta) {
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: #f3c96b;
  border-radius: 999px;
  transition: width 0.25s ease;
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active-link:not(.nav-cta)::after {
  width: 100%;
}

/* Mobile Nav Button */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f5f1e8;
  margin: 6px 0;
  transition: 0.25s ease;
}

.nav-toggle.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}


/* =========================
   Hero Section
========================= */

.hero,
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 6.8rem 0 7.5rem;
  background:
    radial-gradient(circle at top right, rgba(243, 201, 107, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(93, 116, 255, 0.12), transparent 30%),
    #080b10;
}

.hero::before,
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.hero-grid,
.hero-container {
  position: relative;
  z-index: 2;
  width: min(1180px, 90%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  color: #f5f1e8;
  margin-bottom: 1.4rem;
}

.hero-content h1 span {
  display: block;
}

.hero-content h2 {
  max-width: 620px;
  font-size: clamp(1.3rem, 2.5vw, 2.1rem);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -0.035em;
  color: #d8d1c4;
  margin-bottom: 1.4rem;
}

.hero-text,
.hero-description {
  max-width: 580px;
  color: #9f978b;
  font-size: 1.02rem;
  margin-bottom: 2.2rem;
}

.hero-actions,
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn-primary {
  background: #f3c96b;
  color: #080b10;
}

.btn-primary:hover {
  background: #fff2bd;
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(243, 201, 107, 0.18);
}

.btn-secondary {
  color: #f5f1e8;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.trust-line {
  margin-top: 1rem;
  color: #81796f;
  font-size: 0.88rem;
}

/* =========================
   Hero Visual
========================= */

.hero-cover,
.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ebook-card {
  position: relative;
  width: min(360px, 82vw);
  border-radius: 28px;
  overflow: hidden;
  transform: rotate(-3deg);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.12);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.ebook-card img {
  width: 100%;
  display: block;
}

.ebook-card:hover {
  transform: rotate(-2deg) translateY(-6px);
  box-shadow:
    0 40px 110px rgba(0, 0, 0, 0.58),
    0 0 0 1px rgba(243, 201, 107, 0.25);
}

.ebook-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;

  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #080b10;
  background: #f3c96b;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-weight: 800;
}

.floating-card {
  position: absolute;
  width: 230px;
  padding: 1.1rem;
  border-radius: 18px;
  background: rgba(245, 241, 232, 0.08);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.3);
}

.floating-card span {
  display: block;
  color: #f3c96b;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.floating-card p {
  color: #f5f1e8;
  font-size: 0.92rem;
  line-height: 1.45;
}

.card-one {
  top: 58px;
  right: 10px;
}

.card-two {
  bottom: 42px;
  left: 6px;
}


/* =========================
   Light Editorial Section
========================= */

.problem-section,
.editorial-note,
.not-section {
  padding: 7rem 0;
  background: #f5f1e8;
  color: #080b10;
}

.problem-section .eyebrow,
.not-section .eyebrow {
  color: #655b4b;
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(8, 11, 16, 0.14);
  margin-bottom: 1.5rem;
}

.problem-section h2,
.not-section h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  max-width: 720px;
  margin-bottom: 2rem;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.problem-item {
  padding: 1.3rem;
  border-radius: 22px;
  background: #fffaf0;
  color: #080b10;
  border: 1px solid rgba(8, 11, 16, 0.1);
  box-shadow: 0 18px 45px rgba(8, 11, 16, 0.07);
  font-weight: 800;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.problem-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(8, 11, 16, 0.12);
  border-color: rgba(8, 11, 16, 0.2);
}

.section-note {
  max-width: 720px;
  color: #4d4538;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: 2rem;
}

/* =========================
   Featured / Learn Section
========================= */

.learn-section,
.featured-ebook {
  padding: 7rem 0;
  background: #080b10;
  color: #f5f1e8;
  position: relative;
  overflow: hidden;
}

.learn-section::before,
.featured-ebook::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  top: 80px;
  background: radial-gradient(circle, rgba(243, 201, 107, 0.15), transparent 68%);
  pointer-events: none;
}

.section-heading {
  position: relative;
  z-index: 2;
  width: min(1180px, 90%);
  margin: 0 auto 3rem;
  max-width: 760px;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin-bottom: 1.2rem;
}

.cards-grid {
  position: relative;
  z-index: 2;
  width: min(1180px, 90%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.section-mini-cta {
  position: relative;
  z-index: 2;
  width: min(760px, 90%);
  margin: 2.2rem auto 0;
  padding: 1.1rem;
  border-radius: 8px;
  background: rgba(245, 241, 232, 0.075);
  border: 1px solid rgba(243, 201, 107, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.section-mini-cta p {
  color: #d8d1c4;
  line-height: 1.65;
  margin: 0;
}

.info-card {
  min-height: 360px;
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(245, 241, 232, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.info-card:hover {
  background: rgba(245, 241, 232, 0.09);
  border-color: rgba(243, 201, 107, 0.25);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.info-card span {
  width: fit-content;
  color: #080b10;
  background: #f3c96b;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
}

.info-card h3 {
  font-size: 1.75rem;
  line-height: 1.05;
  letter-spacing: -0.055em;
  margin: 2rem 0 1rem;
  color: #f5f1e8;
}

.info-card p {
  color: #d8d1c4;
  font-size: 0.96rem;
  line-height: 1.7;
}

/* =========================
   Signals / Insights Section
========================= */

.insights-section,
.signals-section {
  padding: 7rem 0;
  background: #f5f1e8;
  color: #080b10;
}

.insights-grid {
  width: min(1180px, 90%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  gap: 1.2rem;
}

.insight-card {
  min-height: 330px;
  padding: 1.6rem;
  border-radius: 28px;
  background: #fffaf0;
  border: 1px solid rgba(8, 11, 16, 0.1);
  box-shadow: 0 18px 50px rgba(8, 11, 16, 0.08);

  display: flex;
  flex-direction: column;
  justify-content: center;

  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 900;

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.insight-card:first-child {
  background: #080b10;
  color: #f5f1e8;
  border-color: rgba(255, 255, 255, 0.12);
}

.insight-card:hover {
  box-shadow: 0 28px 70px rgba(8, 11, 16, 0.13);
}

/* =========================
   Not Section
========================= */

.not-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.not-list span {
  color: #080b10;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(8, 11, 16, 0.05);
  border: 1px solid rgba(8, 11, 16, 0.12);
}

/* =========================
   Reality Cycle Section
========================= */

.cycle-section,
.reality-cycle {
  padding: 7rem 0;
  background: #080b10;
  color: #f5f1e8;
  position: relative;
  overflow: hidden;
}

.cycle-section::before,
.reality-cycle::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  left: -180px;
  top: 80px;
  background: radial-gradient(circle, rgba(93, 116, 255, 0.13), transparent 68%);
  pointer-events: none;
}

.cycle-section::after,
.reality-cycle::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(243, 201, 107, 0.13), transparent 70%);
  pointer-events: none;
}

.cycle-box {
  position: relative;
  z-index: 2;
  width: min(900px, 90%);
  margin: 3rem auto 0;

  padding: 1.7rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(243, 201, 107, 0.16), transparent 42%),
    rgba(245, 241, 232, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.1);

  display: grid;
  gap: 0.9rem;
}

.cycle-step {
  position: relative;
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(245, 241, 232, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);

  color: #f5f1e8;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;

  transition:
    transform 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
}

.cycle-step:hover {
  transform: translateX(6px);
  background: rgba(245, 241, 232, 0.085);
  border-color: rgba(243, 201, 107, 0.25);
}

.cycle-arrow {
  color: #f3c96b;
  font-size: 1.6rem;
  text-align: center;
}

/* =========================
   Final Download CTA
========================= */

.download-section,
.final-cta {
  padding: 7rem 0;
  background:
    radial-gradient(circle at top right, rgba(243, 201, 107, 0.18), transparent 34%),
    radial-gradient(circle at bottom left, rgba(93, 116, 255, 0.12), transparent 32%),
    #080b10;
  color: #f5f1e8;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-section::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}

.download-box {
  position: relative;
  z-index: 2;
  width: min(900px, 90%);
  margin: 0 auto;
}

.download-box h2 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  margin-bottom: 1.4rem;
}

.download-box p {
  max-width: 680px;
  margin: 0 auto 2rem;
  color: #d8d1c4;
  font-size: 1.08rem;
  line-height: 1.8;
}

/* =========================
   Footer
========================= */

.site-footer {
  background: #05070b;
  color: #f5f1e8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  width: min(1180px, 90%);
  margin: 0 auto;
  padding: 3rem 0;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-inner p {
  max-width: 420px;
  color: #9f978b;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-inner a {
  color: #b9b2a6;
  font-size: 0.88rem;
  transition: 0.25s ease;
}

.footer-inner a:hover {
  color: #f3c96b;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  justify-items: end;
}

/* =========================
   Reveal Animation
========================= */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

.reveal.visible,
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 {
  transition-delay: 0.1s;
}

.reveal.delay-2 {
  transition-delay: 0.2s;
}

.reveal.delay-3 {
  transition-delay: 0.3s;
}

/* =========================
   Subtle Card Movement
========================= */

.problem-item,
.info-card,
.insight-card,
.cycle-step,
.not-list span {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
  will-change: transform;
}

.problem-item:hover,
.info-card:hover,
.insight-card:hover {
  transform: translateY(-6px);
}

.cycle-step:hover {
  transform: translateX(5px);
}

.not-list span:hover {
  transform: translateY(-2px);
}

/* =========================
   Responsive
========================= */

@media (max-width: 900px) {
  .announcement-strip {
    flex-direction: column;
    gap: 0.45rem;
    text-align: center;
  }

  .navbar {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 5%;
    right: 5%;

    padding: 1.2rem;
    border-radius: 22px;
    background: rgba(15, 20, 29, 0.96);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(18px);

    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero,
  .hero-section {
    padding: 4.8rem 0 5.5rem;
  }

  .hero-grid,
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero-cover,
  .hero-visual {
    min-height: 460px;
  }

  .positioning-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .problem-list,
  .cards-grid,
  .insights-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 280px;
  }

  .insight-card {
    min-height: 260px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 0.68rem;
    max-width: 190px;
  }

  .hero-content h1 {
    font-size: 3.3rem;
  }

  .hero-actions,
  .hero-buttons {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .floating-card {
    width: 190px;
    padding: 0.9rem;
  }

  .card-one {
    right: -8px;
  }

  .card-two {
    left: -8px;
  }

  .problem-section h2,
  .not-section h2,
  .section-heading h2 {
    font-size: 2.8rem;
  }

  .problem-item,
  .info-card,
  .insight-card {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .info-card h3,
  .insight-card {
    font-size: 1.7rem;
  }

  .download-box h2 {
    font-size: 3rem;
  }

  .download-box p {
    font-size: 1rem;
  }
}



@media (max-width: 900px) {
  .hero-section {
    padding: 4rem 0 4.6rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .hero-content h1 {
    font-size: 4rem;
    max-width: 100%;
  }

  .hero-content h1 .hero-title-sub {
    font-size: 2.5rem;
  }

  .hero-description {
    margin-bottom: 1.3rem;
  }

  .hero-visual {
    min-height: 360px;
  }
}

@media (max-width: 520px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }

  .hero-content h1 .hero-title-sub {
    font-size: 2rem;
    line-height: 1;
  }

  .hero-description {
    font-size: 0.92rem;
  }

  .hero-buttons {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 300px;
  }
}





/* =========================
   HERO COMPACT FIX
   Paste this at the very bottom of style.css
========================= */

.hero,
.hero-section {
  padding: 4.4rem 0 4.8rem;
}

.hero-grid,
.hero-container {
  grid-template-columns: 1.02fr 0.98fr;
  gap: 2.2rem;
  align-items: center;
}

.hero-content h1 {
  max-width: 720px;
  font-size: clamp(2.9rem, 5.8vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
  margin-bottom: 1rem;
}

.hero-content h1 .hero-title-sub {
  display: block;
  margin-top: 0.45rem;
  font-size: clamp(1.75rem, 3.5vw, 3.15rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: #d8d1c4;
}

.hero-text,
.hero-description {
  max-width: 560px;
  font-size: 0.96rem;
  line-height: 1.7;
  margin-bottom: 1.35rem;
}

.hero-actions,
.hero-buttons {
  margin-top: 0.2rem;
}

.hero-cover,
.hero-visual {
  min-height: 390px;
}

.ebook-card,
.ebook-image-card {
  width: min(300px, 76vw);
}

/* Tablet */
@media (max-width: 900px) {
  .hero,
  .hero-section {
    padding: 3.8rem 0 4.2rem;
  }

  .hero-grid,
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 3.8rem;
  }

  .hero-content h1 .hero-title-sub {
    font-size: 2.45rem;
  }

  .hero-cover,
  .hero-visual {
    min-height: 340px;
  }
}

/* Phone */
@media (max-width: 520px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content h1 .hero-title-sub {
    font-size: 1.9rem;
  }

  .hero-cover,
  .hero-visual {
    min-height: 280px;
  }
}




/* =========================
   HERO HEIGHT BALANCE FIX
    at the very bottom
========================= */

.hero,
.hero-section {
  min-height: calc(100vh - 118px);
  padding-top: 4.8rem;
  padding-bottom: 5.6rem;
  display: flex;
  align-items: center;
}

.hero-grid,
.hero-container {
  width: min(1180px, 90%);
}

/* Keep title size as current */
.hero-content h1 {
  font-size: clamp(3.1rem, 6vw, 5.6rem);
}

.hero-content h1 .hero-title-sub {
  font-size: clamp(1.9rem, 3.7vw, 3.25rem);
}

/* Slightly lower visual balance */
.hero-cover,
.hero-visual {
  min-height: 430px;
}

/* Tablet */
@media (max-width: 900px) {
  .hero,
  .hero-section {
    min-height: auto;
    padding-top: 4.2rem;
    padding-bottom: 4.8rem;
  }

  .hero-cover,
  .hero-visual {
    min-height: 360px;
  }
}

/* Phone */
@media (max-width: 520px) {
  .hero,
  .hero-section {
    padding-top: 3.6rem;
    padding-bottom: 4.2rem;
  }

  .hero-cover,
  .hero-visual {
    min-height: 300px;
  }
}






/* =========================
   BOL LANDING PAGE V2 PATCH
   Paste at the very bottom of style.css
========================= */

/* -------------------------
   Global polish
------------------------- */

body {
  background: #080b10;
  color: #f5f1e8;
}

.section {
  padding: 6.5rem 0;
}

@media (max-width: 520px) {
  .section {
    padding: 4.5rem 0;
  }
}

/* -------------------------
   Minimal navbar for conversion
------------------------- */

.navbar {
  min-height: 70px;
}

.nav-links {
  gap: 1rem;
}

.nav-links .nav-cta {
  background: #f3c96b;
  color: #080b10;
}

.nav-links .nav-cta:hover {
  background: #fff2bd;
  color: #080b10;
}

/* -------------------------
   Hero final copy polish
------------------------- */

.hero,
.hero-section {
  min-height: calc(100vh - 70px);
  padding-top: 4.5rem;
  padding-bottom: 5rem;
}

.hero-content h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  line-height: 0.94;
}

.hero-content h1 .hero-title-sub {
  margin-top: 0.55rem;
  font-size: clamp(1.9rem, 3.6vw, 3.25rem);
  color: #d8d1c4;
}

.hero-text {
  max-width: 560px;
  color: #c8c0b3;
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 1.8rem;
}

.ebook-badge {
  background: #f3c96b;
  color: #080b10;
}

/* -------------------------
   Section 2: Di Sebalik Angka
------------------------- */

.problem-section {
  background: #f5f1e8;
  color: #080b10;
}

.problem-section h2 {
  max-width: 820px;
  font-size: clamp(2.25rem, 4.6vw, 4.6rem);
  line-height: 1;
}

.problem-list {
  margin-top: 2.4rem;
}

.problem-item {
  min-height: 135px;
  display: flex;
  align-items: center;
  font-size: 1.12rem;
  line-height: 1.45;
}

/* -------------------------
   Section 3: 4 perkara
------------------------- */

#perkara.learn-section {
  background:
    radial-gradient(circle at top right, rgba(243, 201, 107, 0.13), transparent 36%),
    #080b10;
}

#perkara .section-heading {
  max-width: 900px;
}

#perkara .section-heading h2 {
  max-width: 900px;
}

#perkara .info-card {
  min-height: 290px;
  justify-content: flex-start;
  gap: 4.2rem;
  background: rgba(245, 241, 232, 0.065);
}

#perkara .info-card p {
  color: #f5f1e8;
  font-size: clamp(1.18rem, 1.7vw, 1.45rem);
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.035em;
}

/* -------------------------
   Section 4: Kitaran sebenar
------------------------- */

.cycle-section h2 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  line-height: 1;
  max-width: 820px;
}

.cycle-box {
  margin-top: 2.5rem;
  padding: 1.4rem;
}

.cycle-step {
  text-transform: none;
  letter-spacing: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.3rem 1.4rem;
}

.cycle-step strong {
  color: #f5f1e8;
  font-size: 1.08rem;
  line-height: 1.2;
}

.cycle-step small {
  color: #c8c0b3;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cycle-section .section-note {
  color: #d8d1c4;
  margin-top: 2rem;
}

.cycle-cta-text {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  color: #f3c96b;
  font-weight: 800;
}

/* -------------------------
   Section 5: Field Note #01
------------------------- */

.field-note-section {
  background: #f5f1e8;
  color: #080b10;
}

.field-note-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 35%),
    #080b10;
  color: #f5f1e8;
  border: 1px solid rgba(243, 201, 107, 0.32);
  border-radius: 34px;
  padding: clamp(2rem, 5vw, 4.3rem);
  box-shadow:
    0 34px 90px rgba(8, 11, 16, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.field-note-label {
  color: #f3c96b;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

.field-note-body {
  max-width: 820px;
}

.field-note-body p {
  color: #f5f1e8;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.85;
  margin-bottom: 1.45rem;
}

.field-note-body p:last-child {
  margin-bottom: 0;
  color: #f3c96b;
}

/* -------------------------
   Section 6: Bukan buku motivasi
------------------------- */

.not-section {
  background: #f5f1e8;
  color: #080b10;
}

.not-section h2 {
  max-width: 760px;
  text-transform: uppercase;
}

.not-section .section-note {
  margin-top: 1.25rem;
}

.not-list {
  margin-top: 2rem;
  margin-bottom: 1.8rem;
}

.not-list span {
  background: #080b10;
  color: #f5f1e8;
  border-color: rgba(8, 11, 16, 0.2);
}

/* -------------------------
   Section 7: Final Download CTA
------------------------- */

.download-section {
  padding: 7rem 0;
}

.download-box h2 {
  text-transform: uppercase;
}

.download-box p {
  color: #d8d1c4;
}

/* -------------------------
   Footer polish
------------------------- */

.site-footer {
  background: #05070b;
}

.footer-inner strong {
  display: block;
  color: #f5f1e8;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.footer-inner p + p {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: #81796f;
}

/* -------------------------
   Mobile refinement
------------------------- */

@media (max-width: 900px) {
  .hero,
  .hero-section {
    min-height: auto;
  }

  .hero-grid,
  .hero-container {
    grid-template-columns: 1fr;
  }

  .problem-list,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  #perkara .info-card {
    min-height: 220px;
    gap: 3rem;
  }

  .cycle-step {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brand {
    max-width: 180px;
    line-height: 1.3;
  }

  .hero-content h1 {
    font-size: 3.05rem;
  }

  .hero-content h1 .hero-title-sub {
    font-size: 1.85rem;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .problem-section h2,
  .not-section h2,
  .section-heading h2,
  .cycle-section h2 {
    font-size: 2.45rem;
  }

  .problem-item {
    min-height: auto;
  }

  .field-note-card {
    border-radius: 26px;
  }

  .field-note-body p {
    font-size: 1rem;
    line-height: 1.75;
  }
}







/* =========================
   LABEL POLISH ONLY
   Di Sebalik Angka + Positioning
========================= */

.problem-section .eyebrow,
.not-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 8px 16px;
  margin-bottom: 22px;

  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 900;
  text-transform: uppercase;

  color: #8a6a35;
  background: rgba(176, 141, 87, 0.08);
  border: 1px solid rgba(176, 141, 87, 0.45);
  border-radius: 999px;
}

.problem-section .eyebrow::after,
.not-section .eyebrow::after {
  content: "";
  width: 48px;
  height: 1px;
  margin-left: 14px;
  background: rgba(176, 141, 87, 0.55);
}





/* =========================
   EMAIL CAPTURE DOWNLOAD FORM
========================= */

.download-form {
  width: min(680px, 100%);
  margin: 2.4rem auto 0;
  padding: 1.2rem;
  border-radius: 28px;
  background: rgba(245, 241, 232, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.download-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.download-form label {
  text-align: left;
}

.download-form label span {
  display: block;
  color: #d8d1c4;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.download-form input {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #f5f1e8;
  font-size: 0.95rem;
  outline: none;
}

.download-form input::placeholder {
  color: rgba(245, 241, 232, 0.45);
}

.download-form input:focus {
  border-color: rgba(243, 201, 107, 0.65);
  box-shadow: 0 0 0 4px rgba(243, 201, 107, 0.1);
}

.download-form .btn {
  width: 100%;
  margin-top: 0.2rem;
  border: none;
  cursor: pointer;
}

.form-note {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
  color: #9f978b !important;
  font-size: 0.86rem !important;
}

.form-note a {
  color: #f3c96b;
  font-weight: 800;
}

.download-trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.download-trust-row span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.075);
  border: 1px solid rgba(243, 201, 107, 0.24);
  color: #d8d1c4;
  font-size: 0.78rem;
  font-weight: 800;
}

.hidden-field {
  display: none;
}

.download-success {
  display: none;
  width: min(680px, 100%);
  margin: 2.4rem auto 0;
  padding: 2rem;
  border-radius: 28px;
  background: rgba(245, 241, 232, 0.08);
  border: 1px solid rgba(243, 201, 107, 0.28);
}

.download-success.show {
  display: block;
}

.download-success h3 {
  color: #f5f1e8;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin-bottom: 0.8rem;
}

.download-success p {
  margin-bottom: 1.4rem;
}

@media (max-width: 620px) {
  .download-form-grid {
    grid-template-columns: 1fr;
  }

  .download-form,
  .download-success {
    padding: 1rem;
    border-radius: 22px;
  }
}





/* =========================
   THANK YOU + SIGNAL OFFER
========================= */

.thank-you-section {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(243, 201, 107, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(93, 116, 255, 0.1), transparent 32%),
    #080b10;
  color: #f5f1e8;
}

.thank-you-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.thank-you-content h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  margin-bottom: 1.3rem;
}

.thank-you-content p {
  max-width: 620px;
  color: #d8d1c4;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.observation-note {
  margin-top: 2rem;
  padding: 1.3rem;
  border-radius: 24px;
  background: rgba(245, 241, 232, 0.065);
  border: 1px solid rgba(243, 201, 107, 0.22);
}

.observation-note span {
  display: block;
  color: #f3c96b;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  margin-bottom: 0.7rem;
}

.observation-note strong {
  display: block;
  color: #f5f1e8;
  font-size: 1.1rem;
  line-height: 1.55;
}

.signal-offer-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 34px;
  background: #f5f1e8;
  color: #080b10;
  border: 1px solid rgba(243, 201, 107, 0.35);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.signal-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  margin-bottom: 1.4rem;

  color: #8a6a35;
  background: rgba(176, 141, 87, 0.08);
  border: 1px solid rgba(176, 141, 87, 0.45);
  border-radius: 999px;

  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-offer-card h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.07em;
  margin-bottom: 1.2rem;
}

.signal-offer-card p {
  color: #4d4538;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.signal-points {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 1.8rem;
}

.signal-points span {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #fffaf0;
  border: 1px solid rgba(8, 11, 16, 0.08);
  color: #080b10;
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .thank-you-section {
    min-height: auto;
  }

  .thank-you-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .thank-you-content h1 {
    font-size: 3rem;
  }

  .signal-offer-card {
    border-radius: 26px;
  }

  .signal-points span {
    border-radius: 18px;
  }
}





/* =========================
   BOL SIGNAL SCAN PAGE
   Paste at bottom of style.css
========================= */

.signal-scan-section {
  background:
    radial-gradient(circle at top right, rgba(243, 201, 107, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(93, 116, 255, 0.08), transparent 32%),
    #080b10;
  color: #f5f1e8;
}

.signal-scan-container {
  width: min(980px, 90%);
  margin: 0 auto;
}

.signal-scan-intro {
  max-width: 850px;
  margin-bottom: 3rem;
}

.signal-scan-intro h1 {
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  margin-bottom: 1.4rem;
}

.signal-scan-intro p {
  max-width: 720px;
  color: #d8d1c4;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}

.scan-trust-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.scan-trust-box span {
  display: inline-flex;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.07);
  border: 1px solid rgba(243, 201, 107, 0.22);
  color: #f5f1e8;
  font-size: 0.88rem;
  font-weight: 800;
}

/* Form shell */

.signal-form {
  display: grid;
  gap: 1.4rem;
}

.scan-category {
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: 32px;
  background: rgba(245, 241, 232, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.category-header {
  margin-bottom: 1.5rem;
}

.category-header span {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(243, 201, 107, 0.12);
  border: 1px solid rgba(243, 201, 107, 0.28);
  color: #f3c96b;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  margin-bottom: 0.8rem;
}

.category-header h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.065em;
}

/* Questions */

.scan-question {
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.scan-question p {
  color: #f5f1e8;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

/* Answer scale generated by JS */

.answer-scale {
  display: grid;
  gap: 0.55rem;
}

.answer-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: #d8d1c4;
  cursor: pointer;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    color 0.22s ease;
}

.answer-option:hover {
  transform: translateY(-2px);
  background: rgba(245, 241, 232, 0.085);
  border-color: rgba(243, 201, 107, 0.3);
  color: #f5f1e8;
}

.answer-option input {
  margin-top: 0.28rem;
  accent-color: #f3c96b;
}

.answer-option span {
  display: block;
  font-size: 0.92rem;
  line-height: 1.45;
}

.answer-option:has(input:checked) {
  background: rgba(243, 201, 107, 0.13);
  border-color: rgba(243, 201, 107, 0.65);
  color: #f5f1e8;
}

.scan-submit {
  width: min(420px, 100%);
  margin: 1.5rem auto 0;
  border: none;
  cursor: pointer;
}

.scan-disclaimer {
  max-width: 760px;
  margin: 0.5rem auto 0;
  color: #9f978b;
  font-size: 0.82rem;
  line-height: 1.7;
  text-align: center;
}

/* Result section */

.scan-result {
  display: none;
  margin-top: 4rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 34px;
  background: #f5f1e8;
  color: #080b10;
  border: 1px solid rgba(243, 201, 107, 0.35);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.scan-result.show {
  display: block;
}

.scan-result .eyebrow {
  color: #8a6a35;
}

.scan-result h2 {
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1;
  letter-spacing: -0.07em;
  margin-bottom: 1rem;
}

.scan-result > p {
  color: #4d4538;
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin: 1.8rem 0;
}

.result-card {
  padding: 1.2rem;
  border-radius: 24px;
  background: #fffaf0;
  border: 1px solid rgba(8, 11, 16, 0.09);
}

.result-card span {
  display: block;
  color: #655b4b;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.result-card strong {
  display: block;
  color: #080b10;
  font-size: 1.45rem;
  line-height: 1.2;
}

.top-signals,
.result-meaning,
.reflection-box,
.next-step-box {
  margin-top: 1.4rem;
  padding: 1.25rem;
  border-radius: 24px;
  background: #fffaf0;
  border: 1px solid rgba(8, 11, 16, 0.09);
}

.top-signals h3,
.result-meaning h3,
.reflection-box h3,
.next-step-box h3 {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  margin-bottom: 0.8rem;
}

.top-signals ol,
.reflection-box ul {
  padding-left: 1.2rem;
}

.top-signals li,
.reflection-box li {
  margin-bottom: 0.55rem;
  color: #4d4538;
  line-height: 1.55;
}

.result-meaning p,
.next-step-box p {
  color: #4d4538;
  line-height: 1.75;
  margin-bottom: 0.9rem;
}

.result-meaning p:last-child,
.next-step-box p:last-child {
  margin-bottom: 0;
}

.next-step-box .btn {
  margin-top: 0.7rem;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.result-actions .btn {
  margin-top: 0;
}

.result-actions .btn-secondary {
  line-height: 1.35;
  text-align: center;
  white-space: normal;
}

.scan-result .btn-secondary,
.scan-review .btn-secondary {
  color: #080b10;
  border-color: rgba(138, 106, 53, 0.36);
  background: rgba(138, 106, 53, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.scan-result .btn-secondary:hover,
.scan-review .btn-secondary:hover {
  color: #080b10;
  border-color: rgba(138, 106, 53, 0.58);
  background: rgba(243, 201, 107, 0.28);
  box-shadow: 0 14px 35px rgba(138, 106, 53, 0.12);
}

/* Mobile */

@media (max-width: 700px) {
  .signal-scan-intro h1 {
    font-size: 3rem;
  }

  .scan-trust-box {
    display: grid;
  }

  .scan-category,
  .scan-result {
    border-radius: 26px;
  }

  .result-grid {
    grid-template-columns: 1fr;
  }

  .answer-option {
    border-radius: 16px;
  }
}

@media (max-width: 420px) {
  .signal-scan-container {
    width: min(94%, 980px);
  }

  .signal-scan-intro h1 {
    font-size: 2.55rem;
  }

  .scan-question p {
    font-size: 0.96rem;
  }

  .answer-option span {
    font-size: 0.88rem;
  }
}




/* =========================
   EMAIL ONLY FORM POLISH
========================= */

.download-form-single {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 1rem;
}

.download-form-single label {
  width: 100%;
  text-align: left;
}

.download-form-single input {
  width: 100%;
}

.download-form .btn {
  margin-top: 0.6rem;
}







/* =========================
   SIGNAL SCAN DATA ADDITIONS
========================= */

.scan-context {
  background: rgba(243, 201, 107, 0.08);
  border-color: rgba(243, 201, 107, 0.28);
}

.profile-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.profile-field {
  display: grid;
  gap: 0.45rem;
}

.profile-field span {
  color: #f5f1e8;
  font-size: 0.88rem;
  font-weight: 900;
}

.profile-field small {
  color: #9f978b;
  font-size: 0.75rem;
  font-weight: 700;
}

.profile-field input,
.profile-field select,
.profile-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: #f5f1e8;
  font-size: 0.95rem;
  outline: none;
}

.profile-field textarea {
  resize: vertical;
  line-height: 1.55;
}

.profile-field input::placeholder,
.profile-field textarea::placeholder {
  color: rgba(245, 241, 232, 0.45);
}

.profile-field select option {
  color: #080b10;
}

.profile-field input:focus,
.profile-field select:focus,
.profile-field textarea:focus {
  border-color: rgba(243, 201, 107, 0.65);
  box-shadow: 0 0 0 4px rgba(243, 201, 107, 0.1);
}

.profile-field-wide {
  grid-column: 1 / -1;
}

.industry-options {
  display: grid;
  gap: 0.55rem;
}

.industry-other-input {
  width: 100%;
  min-height: 50px;
  margin-top: 0.4rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: #f5f1e8;
  font-size: 0.95rem;
  outline: none;
}

.industry-other-input::placeholder {
  color: rgba(245, 241, 232, 0.45);
}

.industry-other-input:focus {
  border-color: rgba(243, 201, 107, 0.65);
  box-shadow: 0 0 0 4px rgba(243, 201, 107, 0.1);
}

.full-scan-interest-box {
  margin-top: 1.4rem;
  padding: 1.25rem;
  border-radius: 24px;
  background: #fffaf0;
  border: 1px solid rgba(8, 11, 16, 0.09);
}

.full-scan-interest-box h3 {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  margin-bottom: 0.8rem;
}

.full-scan-interest-box p {
  color: #4d4538;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.full-scan-interest-box .answer-option {
  background: #f5f1e8;
  color: #080b10;
  border-color: rgba(8, 11, 16, 0.12);
  margin-bottom: 0.6rem;
}

.interest-submit {
  margin-top: 1rem;
  border: none;
  cursor: pointer;
}

.interest-status {
  margin-top: 0.8rem;
  color: #4d4538;
  font-size: 0.9rem;
}





/* =========================
   INDUSTRY OTHER FIELD FIX
========================= */

.industry-other-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0.7rem;
  align-items: stretch;
}

.industry-other-row .answer-option {
  margin: 0;
  height: 100%;
}

.industry-other-input {
  margin-top: 0;
}

.industry-other-input:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 700px) {
  .profile-fields {
    grid-template-columns: 1fr;
  }

  .industry-other-row {
    grid-template-columns: 1fr;
  }
}




/* =========================
   FULL SCAN QUESTION INSIDE SCAN
========================= */

.full-scan-question {
  background: rgba(243, 201, 107, 0.075);
  border-color: rgba(243, 201, 107, 0.32);
}

.interest-options {
  display: grid;
  gap: 0.55rem;
}




/* =========================
   STAGE 2 - SAVE STATUS + LOADING STATE
========================= */

.scan-save-status {
  display: inline-flex;
  margin: 0.4rem 0 1.2rem !important;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(8, 11, 16, 0.06);
  border: 1px solid rgba(8, 11, 16, 0.08);
  color: #4d4538 !important;
  font-size: 0.86rem !important;
  font-weight: 800;
}

.scan-save-status.success {
  background: rgba(42, 117, 73, 0.1);
  border-color: rgba(42, 117, 73, 0.22);
  color: #2a7549 !important;
}

.scan-save-status.error {
  background: rgba(150, 55, 55, 0.1);
  border-color: rgba(150, 55, 55, 0.22);
  color: #963737 !important;
}

.scan-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}




/* =========================
   THANK YOU EMAIL HELP NOTE
========================= */

.email-help-note {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(245, 241, 232, 0.065);
  border: 1px solid rgba(243, 201, 107, 0.22);
}

.thank-you-grid > .email-help-note {
  grid-column: 1 / -1;
  width: min(760px, 100%);
  margin-inline: auto;
}

.email-help-note span {
  display: block;
  color: #f3c96b;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.email-help-note p {
  margin: 0;
  color: #d8d1c4;
  font-size: 0.95rem;
  line-height: 1.65;
}

.email-help-note strong {
  color: #f5f1e8;
}





/* =========================
   SIGNAL SCAN PROGRESS TRACKER
========================= */

.scan-progress-tracker {
  position: sticky;
  top: 88px;
  z-index: 20;
  margin-bottom: 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(8, 11, 16, 0.82);
  border: 1px solid rgba(243, 201, 107, 0.24);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.scan-progress-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  color: #f5f1e8;
  font-size: 0.85rem;
  font-weight: 800;
}

.scan-progress-top span:last-child {
  color: #f3c96b;
}

.scan-progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(245, 241, 232, 0.12);
}

.scan-progress-bar span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: #f3c96b;
  transition: width 0.25s ease;
}

@media (max-width: 768px) {
  .scan-progress-tracker {
    top: 74px;
    border-radius: 18px;
    padding: 0.85rem;
  }

  .scan-progress-top {
    font-size: 0.78rem;
  }
}





/* =========================
   RESULT PAGE POLISH
========================= */

.result-reading-note {
  margin-top: 1.2rem;
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
  background: rgba(8, 11, 16, 0.045);
  border: 1px solid rgba(8, 11, 16, 0.08);
}

.result-reading-note span {
  display: block;
  color: #8a6a35;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 900;
  margin-bottom: 0.55rem;
}

.result-reading-note p {
  margin: 0;
  color: #4d4538;
  font-size: 0.95rem;
  line-height: 1.7;
}

.top-signals ol {
  display: grid;
  gap: 0.7rem;
  padding-left: 0;
  list-style: none;
  counter-reset: signal-counter;
}

.top-signals li {
  counter-increment: signal-counter;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  margin-bottom: 0;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: #f5f1e8;
  border: 1px solid rgba(8, 11, 16, 0.08);
}

.top-signals li::before {
  content: counter(signal-counter, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(176, 141, 87, 0.12);
  color: #8a6a35;
  font-size: 0.75rem;
  font-weight: 900;
}





/* =========================
   RESULT SCROLL OFFSET
========================= */

.scan-result {
  scroll-margin-top: 110px;
}

@media (max-width: 768px) {
  .scan-result {
    scroll-margin-top: 90px;
  }
}






/* =========================
   SIGNAL SCAN MOBILE POLISH
========================= */

@media (max-width: 768px) {
  .signal-form {
    gap: 1.2rem;
  }

  .scan-category {
    padding: 1.25rem;
    border-radius: 24px;
  }

  .category-header h2 {
    font-size: 1.75rem;
    line-height: 1.05;
  }

  .scan-question {
    padding-top: 1rem;
  }

  .scan-question p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .answer-option {
    padding: 0.85rem 0.9rem;
    border-radius: 16px;
    align-items: flex-start;
  }

  .answer-option input {
    margin-top: 0.15rem;
  }

  .answer-option span {
    line-height: 1.45;
  }

  .industry-other-row {
    gap: 0.55rem;
  }

  .industry-other-input {
    min-height: 48px;
    border-radius: 16px;
  }

  .profile-field input,
  .profile-field select,
  .profile-field textarea {
    min-height: 48px;
    border-radius: 16px;
  }

  .scan-submit {
    width: 100%;
    justify-content: center;
    min-height: 54px;
  }

  .scan-result {
    padding: 1.3rem;
    border-radius: 26px;
  }

  .scan-result h2 {
    font-size: 2rem;
    line-height: 1.05;
  }

  .result-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .result-card {
    padding: 1rem;
    border-radius: 18px;
  }

  .top-signals li {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .top-signals li::before {
    width: fit-content;
  }

  .next-step-box {
    padding: 1.1rem;
    border-radius: 22px;
  }

  .next-step-box .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .category-header h2 {
    font-size: 1.55rem;
  }

  .scan-result h2 {
    font-size: 1.75rem;
  }

  .scan-progress-top {
    flex-direction: column;
    gap: 0.35rem;
  }
}





/* =========================
   DATA USE NOTE
========================= */

.data-use-note {
  margin-top: 1.2rem;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(243, 201, 107, 0.075);
  border: 1px solid rgba(243, 201, 107, 0.24);
}

.data-use-note span {
  display: block;
  color: #f3c96b;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.data-use-note p {
  margin: 0;
  color: #d8d1c4;
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .data-use-note {
    padding: 0.95rem;
    border-radius: 18px;
  }

  .data-use-note p {
    font-size: 0.88rem;
  }
}






/* =========================
   PRIVACY PAGE
========================= */

.privacy-section {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
}

.privacy-container {
  max-width: 820px;
}

.privacy-section h1 {
  max-width: 760px;
  margin-bottom: 1.2rem;
  color: #f5f1e8;
}

.privacy-intro {
  max-width: 720px;
  color: #d8d1c4;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.privacy-card {
  padding: 1.25rem 1.35rem;
  margin-bottom: 1rem;
  border-radius: 24px;
  background: rgba(245, 241, 232, 0.065);
  border: 1px solid rgba(243, 201, 107, 0.2);
}

.privacy-card h2 {
  color: #f3c96b;
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.privacy-card p {
  color: #d8d1c4;
  line-height: 1.7;
  margin: 0;
}

.privacy-section .btn {
  margin-top: 1.2rem;
}

@media (max-width: 768px) {
  .privacy-section {
    padding-top: 115px;
    padding-bottom: 60px;
  }

  .privacy-card {
    padding: 1rem;
    border-radius: 20px;
  }
}

/* =========================
   QSS20 PAID REPORT FUNNEL
========================= */

.report-section {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 80px;
}

.report-container {
  max-width: 980px;
}

.report-intro {
  max-width: 840px;
  margin-bottom: 2rem;
}

.report-intro h1 {
  margin-bottom: 1rem;
  color: #f5f1e8;
  font-size: clamp(2.8rem, 7vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.report-intro p {
  max-width: 760px;
  color: #d8d1c4;
  font-size: 1.05rem;
  line-height: 1.75;
}

.report-empty,
.report-result,
.report-panel,
.report-cta-band,
.report-disclaimer,
.report-form {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 28px;
  background: rgba(245, 241, 232, 0.065);
  border: 1px solid rgba(243, 201, 107, 0.2);
}

.report-empty h2,
.report-panel h2,
.report-cta-band h2,
.report-disclaimer h2 {
  color: #f5f1e8;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 0.85rem;
}

.report-empty p,
.report-panel p,
.report-cta-band p,
.report-disclaimer p {
  color: #d8d1c4;
  line-height: 1.75;
}

.report-result {
  background: #f5f1e8;
  color: #080b10;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.report-result .result-meaning h2,
.report-result .next-step-box h2 {
  color: #080b10;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
}

.report-result .report-cta-band {
  margin-top: 1.4rem;
  background: #fffaf0;
  border-color: rgba(8, 11, 16, 0.09);
}

.report-result .report-cta-band h2 {
  color: #080b10;
}

.report-result .report-cta-band p {
  color: #4d4538;
}

.report-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.report-list {
  padding-left: 1.2rem;
}

.report-list li {
  color: #d8d1c4;
  line-height: 1.65;
  margin-bottom: 0.6rem;
}

.price-row {
  display: grid;
  gap: 0.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(243, 201, 107, 0.18);
}

.price-row strong {
  color: #f3c96b;
  font-size: 2.35rem;
  line-height: 1;
}

.price-row span,
.report-note {
  color: #d8d1c4;
}

.report-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  line-height: 1.7;
}

.report-cta-band {
  margin-top: 1rem;
}

.report-payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.report-payment-option {
  display: grid;
  gap: 0.65rem;
  align-content: start;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(8, 11, 16, 0.24);
  border: 1px solid rgba(243, 201, 107, 0.18);
}

.report-payment-option strong {
  color: #f5f1e8;
  font-size: 1.1rem;
}

.report-payment-option span {
  color: #d8d1c4;
  font-size: 0.92rem;
  line-height: 1.55;
}

.report-payment-option .btn {
  width: 100%;
  margin-top: 0.2rem;
}

.report-selected-market {
  margin-top: 1rem;
  color: #d8d1c4;
  font-size: 0.95rem;
}

.report-selected-market strong {
  color: #f3c96b;
}

.payment-summary {
  align-self: start;
}

.payment-row {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(243, 201, 107, 0.16);
}

.payment-row span {
  color: #d8d1c4;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.payment-row strong {
  color: #f5f1e8;
  font-size: 1.05rem;
  line-height: 1.35;
}

.payment-row-total strong {
  color: #f3c96b;
  font-size: 2.2rem;
  line-height: 1;
}

.report-disclaimer {
  margin-top: 1rem;
}

.report-form {
  max-width: 860px;
}

.report-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.report-form-grid > .report-form-wide {
  grid-column: 1 / -1;
}

.report-form label,
.report-form-wide {
  display: grid;
  gap: 0.45rem;
  color: #f5f1e8;
  font-weight: 800;
}

.report-form label span,
.report-form-wide span {
  color: #d8d1c4;
  font-size: 0.82rem;
}

.report-form input,
.report-form select,
.report-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #f5f1e8;
  font-size: 0.95rem;
  outline: none;
}

.report-form textarea {
  resize: vertical;
  line-height: 1.55;
}

.report-form select option {
  color: #080b10;
}

.report-form input::placeholder,
.report-form textarea::placeholder {
  color: rgba(245, 241, 232, 0.45);
}

.report-form input:focus,
.report-form select:focus,
.report-form textarea:focus {
  border-color: rgba(243, 201, 107, 0.65);
  box-shadow: 0 0 0 4px rgba(243, 201, 107, 0.1);
}

.report-form-wide,
.report-choice-group {
  margin-top: 0.9rem;
}

.report-choice-group {
  display: grid;
  gap: 0.65rem;
}

.report-choice-group .answer-option {
  display: flex;
  color: #f5f1e8;
  font-weight: 500;
}

.report-choice-group .answer-option span {
  color: #f5f1e8;
  font-size: 0.92rem;
}

.report-intro-wide {
  max-width: 900px;
}

.offer-grid {
  align-items: stretch;
}

.report-list-spaced {
  display: grid;
  gap: 0.75rem;
  padding-left: 0;
  list-style: none;
}

.report-list-spaced li {
  margin: 0;
  padding: 0.85rem 0.95rem;
  border-radius: 18px;
  background: rgba(245, 241, 232, 0.08);
  border: 1px solid rgba(243, 201, 107, 0.16);
}

.form-section-label {
  display: grid;
  gap: 0.35rem;
  margin: 1.4rem 0 0.9rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(243, 201, 107, 0.18);
}

.form-section-label:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.form-section-label span {
  color: #f3c96b;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 900;
}

.form-section-label strong {
  color: #f5f1e8;
  font-size: 1.15rem;
  line-height: 1.35;
}

.report-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.report-form legend {
  color: #d8d1c4;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.report-form legend small {
  color: #9f978b;
  font-weight: 600;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.checkbox-grid .answer-option {
  min-height: 52px;
  margin: 0;
  color: #f5f1e8;
  background: rgba(255, 255, 255, 0.07);
}

.checkbox-grid .answer-option span {
  color: #f5f1e8;
  font-size: 0.9rem;
}

.report-form-actions {
  margin-top: 1.1rem;
}

.report-form .btn {
  border: none;
  cursor: pointer;
  margin-top: 1rem;
}

.report-form .btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.5;
}

.form-status.show {
  display: block;
}

.form-status.success {
  background: rgba(42, 117, 73, 0.14);
  border: 1px solid rgba(42, 117, 73, 0.28);
  color: #99d8ac;
}

.form-status.error {
  background: rgba(150, 55, 55, 0.16);
  border: 1px solid rgba(150, 55, 55, 0.32);
  color: #ffb5b5;
}

@media (max-width: 768px) {
  .report-section {
    padding-top: 115px;
    padding-bottom: 60px;
  }

  .report-two-column,
  .report-payment-options,
  .report-form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .report-intro h1 {
    font-size: clamp(2.45rem, 14vw, 4.3rem);
  }
}

/* =========================
   SSR REPORT ENGINE PREVIEW
========================= */

.engine-container {
  width: min(1400px, 94%);
  max-width: none;
}

.engine-layout {
  display: grid;
  grid-template-columns: minmax(360px, 440px) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.engine-form {
  position: sticky;
  top: 96px;
  max-height: calc(100vh - 116px);
  overflow: auto;
}

.engine-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.engine-button-row .btn {
  border: 0;
  cursor: pointer;
}

.engine-question-grid {
  display: grid;
  gap: 0.55rem;
}

#engineStatus {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.engine-question-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.engine-question-input span {
  color: #d8d1c4;
  font-size: 0.82rem;
  line-height: 1.45;
}

.engine-question-input select {
  min-height: 42px;
  padding: 0.55rem 0.65rem;
  border-radius: 14px;
}

.engine-output {
  min-width: 0;
}

.engine-output-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 24px;
  background: rgba(245, 241, 232, 0.065);
  border: 1px solid rgba(243, 201, 107, 0.2);
}

.engine-output-top h2 {
  color: #f5f1e8;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0;
  line-height: 1;
}

.generated-report {
  display: grid;
  gap: 1rem;
}

.generated-report h1,
.generated-report h2,
.generated-report h3 {
  letter-spacing: 0;
}

.generated-cover,
.generated-page {
  padding: clamp(1.3rem, 3vw, 2.1rem);
  border-radius: 8px;
  background: #fffaf0;
  color: #080b10;
  border: 1px solid rgba(8, 11, 16, 0.1);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

.generated-cover {
  min-height: 280px;
  display: grid;
  align-content: center;
}

.generated-cover .eyebrow,
.generated-page .eyebrow {
  color: #8a6a35;
}

.generated-cover h1 {
  max-width: 820px;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.98;
  margin-bottom: 1rem;
}

.generated-cover p {
  color: #4d4538;
  font-size: 1.05rem;
}

.engine-source-note,
.engine-warning {
  width: fit-content;
  margin-top: 1.2rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: rgba(138, 106, 53, 0.12);
  color: #655b4b;
  font-size: 0.82rem;
  font-weight: 800;
}

.engine-warning {
  width: auto;
  border-radius: 8px;
  background: rgba(150, 55, 55, 0.12);
  border: 1px solid rgba(150, 55, 55, 0.2);
  color: #7e2e2e;
}

.generated-page-heading {
  padding-bottom: 1rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid rgba(8, 11, 16, 0.12);
}

.generated-page-heading span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: #8a6a35;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.generated-page-heading h2 {
  color: #080b10;
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  line-height: 1.05;
  margin-bottom: 0.55rem;
}

.generated-page-heading p,
.generated-page p,
.generated-page li {
  color: #4d4538;
  line-height: 1.72;
}

.generated-meta-grid,
.generated-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.generated-signal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.generated-meta {
  padding: 0.85rem 0.95rem;
  border-radius: 8px;
  background: #f5f1e8;
  border: 1px solid rgba(8, 11, 16, 0.09);
}

.generated-meta span {
  display: block;
  color: #655b4b;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.generated-meta strong {
  display: block;
  color: #080b10;
  line-height: 1.4;
}

.generated-callout,
.generated-label-block,
.generated-disclaimer {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 8px;
  background: #f5f1e8;
  border: 1px solid rgba(8, 11, 16, 0.09);
}

.generated-callout {
  border-color: rgba(138, 106, 53, 0.28);
  background: rgba(243, 201, 107, 0.14);
}

.generated-label-block h3 {
  color: #080b10;
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.generated-label-block ul,
.generated-action-list {
  padding-left: 1.1rem;
}

.generated-label-block li,
.generated-action-list li {
  margin-bottom: 0.5rem;
}

.generated-action-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-left: 0;
  list-style: none;
}

.generated-action-list li {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 0.8rem;
  margin: 0;
  padding: 0.95rem;
  border-radius: 8px;
  background: #f5f1e8;
  border: 1px solid rgba(8, 11, 16, 0.09);
}

.generated-action-list span {
  color: #8a6a35;
  font-weight: 900;
}

.generated-note {
  margin-top: 1rem;
  color: #655b4b !important;
  font-size: 0.9rem;
}

.generated-disclaimer {
  background: rgba(8, 11, 16, 0.04);
}

@media (max-width: 1100px) {
  .engine-layout {
    grid-template-columns: 1fr;
  }

  .engine-form {
    position: static;
    max-height: none;
  }
}

@media (max-width: 700px) {
  .engine-output-top,
  .engine-button-row {
    display: grid;
  }

  .engine-button-row .btn,
  .engine-output-top .btn {
    width: 100%;
  }

  .engine-question-input,
  .generated-meta-grid,
  .generated-signal-grid,
  .generated-action-list li {
    grid-template-columns: 1fr;
  }
}

@media print {
  body {
    background: #ffffff;
    color: #080b10;
  }

  .no-print,
  .site-header,
  .engine-form,
  .engine-output-top,
  .site-footer {
    display: none !important;
  }

  .section,
  .report-section,
  .engine-section {
    padding: 0;
    background: #ffffff;
  }

  .engine-container {
    width: 100%;
  }

  .engine-layout {
    display: block;
  }

  .generated-report {
    display: block;
  }

  .generated-cover,
  .generated-page {
    box-shadow: none;
    border: 0;
    page-break-after: always;
    break-after: page;
  }
}

/* =========================
   TOUCH-UP POLISH
========================= */

@media (max-width: 700px) {
  .section-mini-cta,
  .result-actions {
    display: grid;
  }

  .section-mini-cta .btn,
  .result-actions .btn {
    width: 100%;
  }

  .download-trust-row {
    display: grid;
  }
}







/* =========================
   404 PAGE
========================= */

.not-found-section {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(243, 201, 107, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(93, 116, 255, 0.1), transparent 32%),
    #080b10;
  color: #f5f1e8;
}

.not-found-container {
  max-width: 760px;
}

.not-found-section h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  margin-bottom: 1.3rem;
}

.not-found-section p {
  max-width: 620px;
  color: #d8d1c4;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

@media (max-width: 520px) {
  .not-found-section {
    min-height: auto;
    padding-top: 6rem;
  }

  .not-found-section h1 {
    font-size: 3rem;
  }

  .not-found-actions {
    display: grid;
  }

  .not-found-actions .btn {
    width: 100%;
  }
}





/* =========================
   SIGNAL SCAN REVIEW STEP
========================= */

.scan-review {
  display: none;
  margin-top: 3rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 34px;
  background: #f5f1e8;
  color: #080b10;
  border: 1px solid rgba(243, 201, 107, 0.35);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
  scroll-margin-top: 110px;
}

.scan-review.show {
  display: block;
}

.scan-review .eyebrow {
  color: #8a6a35;
}

.scan-review h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.07em;
  margin-bottom: 1rem;
}

.scan-review > p {
  color: #4d4538;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.review-block {
  margin-top: 1.4rem;
  padding: 1.25rem;
  border-radius: 24px;
  background: #fffaf0;
  border: 1px solid rgba(8, 11, 16, 0.09);
}

.review-block h3 {
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  margin-bottom: 0.9rem;
}

.review-list,
.review-answers {
  display: grid;
  gap: 0.75rem;
}

.review-item {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: #f5f1e8;
  border: 1px solid rgba(8, 11, 16, 0.08);
}

.review-item span {
  display: block;
  color: #655b4b;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.review-item strong {
  display: block;
  color: #080b10;
  font-size: 0.98rem;
  line-height: 1.45;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.review-actions .btn {
  border: none;
  cursor: pointer;
}

.review-actions .btn-secondary {
  color: #080b10;
  border: 1px solid rgba(138, 106, 53, 0.46);
  background: rgba(138, 106, 53, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.46);
}

.review-actions .btn-secondary:hover {
  color: #080b10;
  border-color: rgba(138, 106, 53, 0.65);
  background: rgba(243, 201, 107, 0.3);
}

@media (max-width: 700px) {
  .scan-review {
    border-radius: 26px;
    padding: 1.3rem;
  }

  .review-actions {
    display: grid;
  }

  .review-actions .btn {
    width: 100%;
  }
}






