:root {
  --bg: #f7f3ea;
  --ink: #111827;
  --muted: #5f6673;
  --card: #ffffff;
  --soft: #ebe3d6;
  --line: rgba(17, 24, 39, 0.14);
  --navy: #111827;
  --accent: #9a3412;
  --accent-dark: #7c2d12;
  --gold: #f6c987;
  --shadow: 0 26px 80px rgba(17, 24, 39, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 5vw, 76px);
  background: rgba(247, 243, 234, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--navy);
  color: white;
  font-weight: 900;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink) !important;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 76px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(38px, 6vw, 92px);
  min-height: calc(100vh - 80px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 900;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 26px;
  font-size: clamp(2.65rem, 6vw, 5.9rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 720px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

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

.primary {
  color: white;
  background: var(--accent);
  box-shadow: 0 16px 36px rgba(154, 52, 18, 0.24);
}

.primary:hover {
  background: var(--accent-dark);
}

.secondary {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.panel-card {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(246, 201, 135, 0.2), transparent 36%),
    var(--navy);
  color: white;
  box-shadow: var(--shadow);
}

.panel-kicker {
  margin-bottom: 58px;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 900;
}

.panel-card h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
  letter-spacing: -0.06em;
}

.panel-card p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

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

.proof-strip div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
}

.proof-strip strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.proof-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 7vw, 96px);
  border-top: 1px solid var(--line);
}

.rich-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.rich-copy p:last-child {
  margin-bottom: 0;
}

.feature-grid-section,
.questions,
.contact {
  background: var(--soft);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-heading.light {
  color: white;
}

.section-heading.light .eyebrow {
  color: var(--gold);
}

.section-heading.light p:last-child {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

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

.feature-card,
.spine-grid article,
.lead-form,
.contact-card,
.impact-list article,
.thanks-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.06);
}

.feature-card {
  min-height: 282px;
  padding: 28px;
}

.feature-card span,
.spine-grid span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--accent);
  font-weight: 900;
}

.feature-card p,
.impact-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.spine {
  background: var(--navy);
}

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

.spine-grid article {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: white;
}

.spine-grid span {
  color: var(--gold);
}

.spine-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.book-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  padding: clamp(30px, 5vw, 60px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background: white;
  box-shadow: var(--shadow);
}

.book-text p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

.book-cover {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  padding: 30px;
  border-radius: 24px;
  color: white;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(145deg, #111827 0%, #2f1b17 48%, #7c2d12 100%);
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.25);
}

.book-cover small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.book-cover span {
  font-size: 2.9rem;
  line-height: 0.92;
  letter-spacing: -0.08em;
  font-weight: 900;
}

.book-cover em {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-weight: 700;
}

.questions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.questions-copy p,
.contact p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.06rem;
}

.lead-form {
  padding: 28px;
}

.lead-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.form-note,
.small {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.full {
  width: 100%;
}

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

.impact-list article {
  padding: 26px;
}

.about {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: center;
  border-top: 1px solid var(--line);
}

.about-image-wrap {
  overflow: hidden;
  border-radius: 32px;
  background: white;
  box-shadow: var(--shadow);
}

.about-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.about-copy p {
  max-width: 790px;
  color: var(--muted);
  font-size: 1.06rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.contact-card {
  padding: 28px;
}

.contact-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-card a:not(.button) {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 900;
  word-break: break-word;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

.thanks-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(154, 52, 18, 0.16), transparent 32%),
    var(--bg);
}

.thanks-page {
  min-height: 100vh;
  padding: clamp(24px, 5vw, 76px);
}

.thanks-brand {
  margin-bottom: clamp(60px, 10vw, 120px);
}

.thanks-card {
  max-width: 820px;
  padding: clamp(32px, 6vw, 64px);
}

.thanks-card h1 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.thanks-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

code {
  padding: 3px 6px;
  border-radius: 7px;
  background: rgba(17, 24, 39, 0.08);
}

@media (max-width: 1120px) {
  .nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: white;
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 13px 14px;
  }

  .menu-button {
    display: block;
  }

  .hero,
  .split,
  .book-card,
  .questions,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .impact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .book-cover {
    max-width: 380px;
  }

  .about-image-wrap {
    max-width: 420px;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-text {
    font-size: 0.9rem;
  }

  .section {
    padding: 58px 18px;
  }

  h1 {
    font-size: clamp(2.5rem, 16vw, 4rem);
  }

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

  .proof-strip,
  .feature-grid,
  .spine-grid,
  .impact-list {
    grid-template-columns: 1fr;
  }

  .panel-card,
  .feature-card,
  .spine-grid article,
  .book-card,
  .lead-form,
  .contact-card,
  .impact-list article,
  .thanks-card {
    border-radius: 22px;
  }

  .book-cover {
    min-height: 350px;
    max-width: none;
  }

  .book-cover span {
    font-size: 2.5rem;
  }

  .site-footer {
    flex-direction: column;
  }
}


.outcome-strip strong {
  font-size: 1.25rem;
}

.outcome-list article {
  min-height: 230px;
}

.evidence-panel {
  margin-top: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow);
}

.evidence-panel p {
  max-width: 980px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}


.wordmark-brand {
  gap: 0;
}

.wordmark-brand img {
  display: block;
  width: 245px;
  height: auto;
}

.thanks-brand.wordmark-brand img {
  width: 320px;
}

@media (max-width: 700px) {
  .wordmark-brand img {
  display: block;
  width: 245px;
  height: auto;
}

  .thanks-brand.wordmark-brand img {
  width: 320px;
}
}


.book-cover-image {
  margin: 0;
  max-width: 330px;
  justify-self: center;
  perspective: 1200px;
}

.book-cover-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 32px 70px rgba(17, 24, 39, 0.28);
  transform: rotateY(-4deg) rotateZ(0.5deg);
  transform-origin: center;
}

@media (max-width: 1120px) {
  .book-cover-image {
    max-width: 320px;
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .book-cover-image {
    max-width: 250px;
  }

  .book-cover-image img {
    transform: none;
  }
}


.image-break {
  padding-top: 0;
  padding-bottom: clamp(56px, 8vw, 96px);
}

.image-break figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-break img {
  display: block;
  width: 100%;
  height: auto;
}

.image-break figcaption {
  position: absolute;
  left: clamp(18px, 4vw, 48px);
  bottom: clamp(18px, 4vw, 42px);
  max-width: 520px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(247, 243, 234, 0.88);
  backdrop-filter: blur(10px);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.12);
}

.actual-cover {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.actual-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(17, 24, 39, 0.25);
}

@media (max-width: 700px) {
  .image-break figure {
    border-radius: 22px;
  }

  .image-break figcaption {
    position: static;
    max-width: none;
    border-radius: 0;
    background: white;
    box-shadow: none;
  }
}


.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.sales-delusion-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  min-height: calc(100vh - 80px);
}

.sales-delusion-copy p:not(.eyebrow):not(.lead) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
}

.sales-delusion-panel {
  display: grid;
  gap: 22px;
}

.page-cover {
  max-width: 360px;
  justify-self: center;
}

.page-cover img {
  border-radius: 22px;
}

@media (max-width: 1120px) {
  .sales-delusion-page {
    grid-template-columns: 1fr;
  }

  .page-cover {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .book-actions {
    width: 100%;
  }

  .sales-delusion-page {
    min-height: auto;
  }
}
