:root {
  --blue: #108fd3;
  --blue-dark: #0873ad;
  --ink: #14212a;
  --muted: #596873;
  --paper: #f8f6ef;
  --paper-deep: #eee8dc;
  --night: #09141c;
  --white: #fff;
  --shadow: 0 24px 70px rgba(6, 21, 31, .2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
}
body.modal-open { overflow: hidden; }
a { color: inherit; }
img {
  display: block;
  max-width: 100%;
  height: auto;
}

.topbar {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 40px));
  padding: 22px 0;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  color: var(--white);
}
.brand { text-decoration: none; }
.brand span {
  display: block;
  font-family: "Libre Franklin", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.brand small { display: block; color: rgba(255,255,255,.7); font-size: 11px; }
.top-cta {
  padding: 10px 17px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  font-family: "Libre Franklin", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: 860px;
  padding: 140px max(24px, calc((100vw - 1180px) / 2)) 90px;
  grid-template-columns: 1.1fr .9fr;
  gap: 70px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 25%, rgba(16,143,211,.32), transparent 31%),
    linear-gradient(135deg, #0d1e29 0%, #071016 62%, #152735 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, transparent, black);
}
.hero-copy, .guide-stage { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-family: "Libre Franklin", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero h1, section h2 {
  margin: 0;
  font-family: "Libre Franklin", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.02;
}
.hero h1 { max-width: 700px; font-size: clamp(47px, 5.1vw, 76px); }
.hero-punch {
  max-width: 650px;
  margin: 18px 0;
  color: #64c4f3;
  font-family: "Caveat", cursive;
  font-size: clamp(31px, 3vw, 46px);
  line-height: 1.05;
}
.hero-body { max-width: 660px; color: rgba(255,255,255,.78); }
.benefit-list {
  display: grid;
  margin: 26px 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}
.benefit-list li { position: relative; padding-left: 28px; color: rgba(255,255,255,.9); }
.benefit-list li::before { content: "✦"; position: absolute; left: 0; color: var(--blue); }

.form-card {
  max-width: 690px;
  margin-top: 34px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
}
.form-card h2 { margin: 0; font-size: 26px; }
.form-card > form > p, .thank-you > p { margin: 6px 0 20px; color: rgba(255,255,255,.7); }
.form-row { display: grid; grid-template-columns: 1fr 1.35fr; gap: 12px; }
label {
  color: rgba(255,255,255,.72);
  font-family: "Libre Franklin", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
input {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 9px;
  outline: none;
  color: var(--white);
  background: rgba(0,0,0,.22);
  font: 16px "Libre Franklin", Arial, sans-serif;
}
input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(16,143,211,.18); }
button, .button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 9px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 10px 30px rgba(16,143,211,.25);
  cursor: pointer;
  font-family: "Libre Franklin", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
form > button { width: 100%; margin-top: 12px; }
.privacy-note { margin: 10px 0 0 !important; font-size: 11px; line-height: 1.45; }
.honeypot { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.thank-you .button { margin-top: 8px; }
.text-button { min-height: auto; margin-left: 12px; padding: 10px; background: transparent; box-shadow: none; color: rgba(255,255,255,.65); text-decoration: underline; }

.guide-stage { min-height: 670px; }
.guide-stage > img {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 50%;
  width: min(420px, 82%);
  border-radius: 3px;
  box-shadow: 0 35px 90px rgba(0,0,0,.55);
  transform: translateX(-50%) rotate(2.2deg);
}
.sunset-orb {
  position: absolute;
  top: 130px;
  left: 50%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(232,133,52,.3), rgba(16,143,211,.08) 48%, transparent 70%);
  filter: blur(4px);
}
.guide-badge {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 90px;
  display: flex;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--night);
  background: #f5ede0;
  box-shadow: var(--shadow);
  transform: rotate(-5deg);
}
.guide-badge strong { font: 800 38px "Libre Franklin", Arial, sans-serif; }
.guide-badge span { font: 700 10px/1.2 "Libre Franklin", Arial, sans-serif; text-transform: uppercase; }

section:not(.hero) { padding: 110px max(24px, calc((100vw - 1180px) / 2)); }
section h2 { font-size: clamp(40px, 4.2vw, 63px); }
.section-intro { max-width: 760px; }
.section-intro > p:last-child { max-width: 700px; color: var(--muted); }

.method-grid {
  display: grid;
  margin-top: 54px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.method-grid article {
  position: relative;
  min-height: 260px;
  padding: 32px;
  border: 1px solid #d8d7d1;
  border-radius: 14px;
  background: rgba(255,255,255,.58);
}
.method-grid span { color: var(--blue); font: 800 12px "Libre Franklin", Arial, sans-serif; letter-spacing: .12em; }
.method-grid h3 { margin: 50px 0 8px; font: 800 29px "Libre Franklin", Arial, sans-serif; }
.method-grid p { margin: 0; color: var(--muted); }
blockquote {
  max-width: 880px;
  margin: 78px auto 0;
  padding: 0;
  border: 0;
  color: var(--ink);
  font: 500 clamp(30px, 3.3vw, 48px)/1.2 "Caveat", cursive;
  text-align: center;
}
blockquote cite { display: block; margin-top: 18px; color: var(--muted); font: 700 10px "Libre Franklin", Arial, sans-serif; letter-spacing: .12em; text-transform: uppercase; }

.inside-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
  align-items: center;
  color: var(--white);
  background: var(--night);
}
.inside-image { padding: 20px; background: rgba(255,255,255,.05); transform: rotate(-1deg); }
.inside-image img { box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.inside-copy h2 { max-width: 700px; }
.check-list { margin: 38px 0 32px; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 0 0 20px; padding-left: 35px; color: rgba(255,255,255,.72); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--blue); font: 800 18px "Libre Franklin", Arial, sans-serif; }
.check-list strong { color: var(--white); font-family: "Libre Franklin", Arial, sans-serif; }
.inline-link { color: var(--blue); font-family: "Libre Franklin", Arial, sans-serif; font-size: 14px; font-weight: 800; text-underline-offset: 4px; }

.bonus-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  background: var(--paper-deep);
}
.bonus-section > div:first-child p:last-child { color: var(--muted); }
.identity-groups { display: grid; gap: 14px; }
.identity-groups article { padding: 26px 28px; border-left: 5px solid var(--blue); background: var(--white); box-shadow: 0 8px 30px rgba(30,38,42,.06); }
.identity-groups small { display: block; margin-bottom: 13px; color: var(--muted); font: 800 10px "Libre Franklin", Arial, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.identity-groups span { display: inline-block; margin: 4px 5px 4px 0; padding: 6px 11px; border-radius: 999px; color: var(--blue-dark); background: #e7f4fb; font: 700 13px "Libre Franklin", Arial, sans-serif; }

.author-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 85px;
  align-items: center;
}
.author-photo-wrap { position: relative; }
.author-photo-wrap::before { content: ""; position: absolute; inset: -20px 40px 35px -20px; z-index: -1; background: var(--blue); }
.author-photo-wrap img { filter: saturate(.88); box-shadow: var(--shadow); }
.author-copy p { color: var(--muted); }
.signature { margin: 15px 0 0; color: var(--blue) !important; font: 600 54px "Caveat", cursive; }

.book-section {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 100px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #0b1c27, #071016);
}
.book-cover {
  width: min(360px, 100%);
  aspect-ratio: 1000 / 1620;
  justify-self: end;
  background: url("/assets/book-front.png") center / cover no-repeat;
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}
.book-copy p { color: rgba(255,255,255,.72); }
.button-row { display: flex; margin-top: 28px; align-items: center; gap: 25px; }
.button.secondary { border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.08); box-shadow: none; }

.coaching-section {
  text-align: center;
  background: linear-gradient(150deg, #dfeff7, #f8f6ef 62%);
}
.coaching-section h2, .coaching-section > p { max-width: 800px; margin-left: auto; margin-right: auto; }
.coaching-section > p:not(.eyebrow):not(.demo-note) { color: var(--muted); font-size: 21px; }
.coaching-section .button { margin-top: 20px; }
.demo-note { color: var(--muted); font-size: 12px; }

.final-section { text-align: center; }
.final-section h2 { max-width: 930px; margin: auto; }
.final-section > p:not(.eyebrow) { color: var(--muted); }
.final-section .button { margin-top: 15px; }

footer {
  display: flex;
  padding: 28px max(24px, calc((100vw - 1180px) / 2));
  justify-content: space-between;
  color: rgba(255,255,255,.65);
  background: var(--night);
  font: 12px "Libre Franklin", Arial, sans-serif;
}

.demo-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  background: rgba(4,12,17,.78);
  backdrop-filter: blur(8px);
}
.demo-modal[hidden] { display: none; }
.demo-modal-card {
  position: relative;
  width: min(560px, 100%);
  padding: 42px;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 35px 100px rgba(0,0,0,.45);
}
.demo-modal-card h2 { margin: 0; font: 800 34px/1.1 "Libre Franklin", Arial, sans-serif; letter-spacing: -.035em; }
.demo-modal-card > p:not(.eyebrow) { color: var(--muted); }
.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  min-height: auto;
  padding: 6px 10px;
  color: var(--muted);
  background: transparent;
  box-shadow: none;
  font-size: 26px;
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 125px; }
  .guide-stage { min-height: 590px; }
  .guide-stage > img { width: min(380px, 80%); }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid article { min-height: auto; }
  .method-grid h3 { margin-top: 22px; }
  .inside-section, .bonus-section, .author-section, .book-section { grid-template-columns: 1fr; gap: 55px; }
  .inside-image { width: min(500px, 100%); margin: auto; }
  .book-cover { width: min(340px, 70%); justify-self: center; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .topbar { width: calc(100% - 28px); }
  .brand small { display: none; }
  .top-cta { font-size: 10px; }
  .hero { min-height: auto; padding: 110px 18px 65px; }
  .hero h1 { font-size: 43px; }
  .form-row { grid-template-columns: 1fr; }
  .guide-stage { min-height: 490px; }
  .guide-stage > img { width: min(310px, 78%); }
  .guide-badge { right: 8px; bottom: 40px; width: 98px; height: 98px; }
  section:not(.hero) { padding: 75px 20px; }
  section h2 { font-size: 38px; }
  .method-grid, .identity-groups { gap: 12px; }
  .author-photo-wrap::before { inset: -10px 25px 25px -10px; }
  .button-row { align-items: flex-start; flex-direction: column; }
  footer { flex-direction: column; gap: 6px; }
}
