:root {
  --navy-950: #081421;
  --navy-900: #0c1d31;
  --navy-800: #122945;
  --gold: #c9a35a;
  --gold-light: #efd79b;
  --cream: #f7f1e6;
  --white: #ffffff;
  --ink: #15202d;
  --muted: #687483;
  --line: rgba(18, 41, 69, 0.14);
  --shadow: 0 24px 70px rgba(8, 20, 33, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  margin: 0;
}
body::before {
  background:
    linear-gradient(90deg, rgba(201, 163, 90, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(201, 163, 90, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  pointer-events: none;
  position: fixed;
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(247, 241, 230, 0.88);
  border-bottom: 1px solid rgba(18, 41, 69, 0.1);
  display: flex;
  gap: 26px;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 58px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand { align-items: center; display: flex; gap: 12px; min-width: max-content; }
.brand-mark {
  align-items: center;
  background: var(--navy-900);
  border: 1px solid rgba(201, 163, 90, 0.45);
  border-radius: 50%;
  color: var(--gold-light);
  display: inline-flex;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  width: 42px;
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 0.76rem; }
.main-nav { display: flex; gap: 18px; justify-content: center; }
.main-nav a { color: #314154; font-size: 0.9rem; font-weight: 700; }
.main-nav a {
  border-radius: 999px;
  padding: 7px 10px;
  position: relative;
  transition: background 180ms ease, color 180ms ease;
}
.main-nav a:hover,
.main-nav a.is-active {
  background: rgba(201, 163, 90, 0.13);
  color: #8f6825;
}
.main-nav a.is-active::after {
  background: var(--gold);
  border-radius: 999px;
  bottom: 2px;
  content: "";
  height: 2px;
  left: 12px;
  position: absolute;
  right: 12px;
}
.nav-cta {
  border: 1px solid rgba(12, 29, 49, 0.2);
  border-radius: 999px;
  color: var(--navy-900);
  font-weight: 800;
  padding: 9px 17px;
}

.section, .section-band { padding: clamp(72px, 9vw, 126px) clamp(20px, 5vw, 72px); }
.section-band { background: linear-gradient(135deg, #fffaf1, #efe2ce); }
.hero {
  align-items: center;
  background:
    linear-gradient(125deg, rgba(8, 20, 33, 0.96), rgba(18, 41, 69, 0.92)),
    radial-gradient(circle at 72% 30%, rgba(201, 163, 90, 0.35), transparent 36%);
  color: var(--white);
  display: grid;
  gap: clamp(42px, 7vw, 94px);
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  min-height: calc(100vh - 74px);
  overflow: hidden;
  padding: clamp(72px, 9vw, 126px) clamp(20px, 5vw, 72px);
  position: relative;
}
.hero::after {
  background: linear-gradient(90deg, rgba(201, 163, 90, 0), rgba(201, 163, 90, 0.24), rgba(201, 163, 90, 0));
  content: "";
  height: 1px;
  left: 7%;
  position: absolute;
  right: 7%;
  top: 78%;
}
.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.98;
}
h1 { font-size: clamp(4rem, 9vw, 8.2rem); margin-bottom: 24px; max-width: 900px; }
h2 { color: var(--navy-900); font-size: clamp(2.5rem, 5vw, 4.8rem); margin-bottom: 18px; }
h3 { color: var(--navy-900); font-size: 1.03rem; margin-bottom: 0; }
.hero h1, .hero h2 { color: var(--white); }
.hero-line {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.1;
  margin-bottom: 22px;
  max-width: 760px;
}
.hero-text { color: rgba(255, 255, 255, 0.78); font-size: 1.08rem; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
}
.button.primary { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #1b160d; }
.button.secondary { border: 1px solid rgba(255, 255, 255, 0.32); color: var(--white); }
.hero-visual {
  align-items: end;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(150px, 0.52fr) minmax(240px, 1fr);
  justify-items: center;
  position: relative;
}

.book-stage { display: grid; justify-items: center; position: relative; }

.portrait-card {
  align-self: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(239, 215, 155, 0.28);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  position: relative;
  width: min(28vw, 230px);
  z-index: 2;
}

.portrait-card::after {
  background: linear-gradient(180deg, transparent, rgba(8, 20, 33, 0.92));
  bottom: 0;
  content: "";
  height: 42%;
  left: 0;
  position: absolute;
  right: 0;
}

.portrait-card img {
  aspect-ratio: 0.78;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: 50% 16%;
  width: 100%;
}

.portrait-card div {
  bottom: 0;
  left: 0;
  padding: 18px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.portrait-card span {
  color: var(--gold-light);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portrait-card strong {
  color: var(--white);
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1;
  margin-top: 5px;
}
.light-beam {
  background: linear-gradient(180deg, rgba(239, 215, 155, 0.34), rgba(239, 215, 155, 0));
  filter: blur(1px);
  height: 120%;
  position: absolute;
  top: -20%;
  transform: skewX(-12deg);
  width: 120px;
}
.book-cover {
  aspect-ratio: 0.68;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 42%),
    linear-gradient(160deg, #091727, #122945 54%, #07101b);
  border: 1px solid rgba(239, 215, 155, 0.45);
  border-radius: 8px;
  box-shadow: -18px 24px 46px rgba(0, 0, 0, 0.36), inset 18px 0 0 rgba(255, 255, 255, 0.04), inset -7px 0 0 rgba(0, 0, 0, 0.24);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 360px;
  min-height: 520px;
  padding: 34px 30px;
  position: relative;
  transform: perspective(1100px) rotateY(-12deg) rotateX(2deg);
  width: min(82vw, 360px);
  z-index: 1;
}
.book-cover::before {
  border: 1px solid rgba(239, 215, 155, 0.28);
  border-radius: 999px;
  content: "";
  height: 152px;
  left: 50%;
  position: absolute;
  top: 37%;
  transform: translate(-50%, -50%);
  width: 152px;
}
.book-cover::after {
  background: var(--gold);
  content: "";
  height: 96px;
  left: 50%;
  mask: linear-gradient(#000 0 0) center/20px 96px no-repeat, linear-gradient(#000 0 0) center/76px 18px no-repeat;
  position: absolute;
  top: 33%;
  transform: translateX(-50%);
  width: 80px;
}
.cover-top, .book-cover span {
  color: var(--gold-light);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.book-cover h2 { font-size: 3.25rem; line-height: 0.96; margin: 170px 0 0; position: relative; }
.book-cover p { color: rgba(255, 255, 255, 0.72); position: relative; }
.cover-line { background: linear-gradient(90deg, transparent, var(--gold-light), transparent); height: 1px; margin: 18px 0; width: 100%; }
.book-shadow { background: rgba(0, 0, 0, 0.34); border-radius: 50%; filter: blur(18px); height: 44px; margin-top: 24px; width: 300px; }

.book-cover-image {
  border: 1px solid rgba(239, 215, 155, 0.45);
  border-radius: 8px;
  box-shadow: -18px 24px 46px rgba(0, 0, 0, 0.36), inset -7px 0 0 rgba(0, 0, 0, 0.24);
  display: block;
  max-width: 360px;
  transform: perspective(1100px) rotateY(-10deg) rotateX(2deg);
  width: min(82vw, 360px);
  z-index: 1;
}

.quote-line {
  border-left: 3px solid var(--gold);
  color: var(--navy-900) !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem !important;
  line-height: 1.18;
  margin-top: 22px;
  padding-left: 16px;
}

.section-intro { margin: 0 auto 38px; max-width: 850px; text-align: center; }
.section-intro p, .book-panel p, .assessment-copy p, .application-copy p { color: var(--muted); font-size: 1.05rem; }
.split { align-items: end; display: grid; gap: 28px; grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.85fr); max-width: 1180px; text-align: left; }
.problem-grid, .receive-grid, .testimonial-grid { display: grid; gap: 14px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0 auto; max-width: 1180px; }
.problem-grid article, .receive-grid article, .timeline article, .assessment-result, blockquote {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(8, 20, 33, 0.06);
}
.problem-grid article, .receive-grid article { color: var(--navy-900); font-weight: 800; min-height: 112px; padding: 22px; }
.problem-grid article:nth-child(4), .receive-grid article:nth-child(7) { grid-column: span 2; }
.book-panel { align-items: center; display: grid; gap: 36px; grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr); margin: 0 auto; max-width: 1180px; }
.topic-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.topic-cloud span { background: var(--navy-900); border: 1px solid rgba(201, 163, 90, 0.3); border-radius: 999px; color: var(--cream); font-weight: 800; padding: 10px 14px; }
.timeline { display: grid; gap: 14px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0 auto; max-width: 1180px; }
.timeline article { min-height: 150px; padding: 22px; position: relative; }
.timeline article::after { background: var(--gold); content: ""; height: 3px; left: 22px; position: absolute; right: 22px; top: 0; }
.timeline span { color: var(--gold); display: block; font-size: 0.78rem; font-weight: 900; margin-bottom: 16px; text-transform: uppercase; }
.assessment { align-items: start; display: grid; gap: 44px; grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr); }
.assessment-options { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.assessment-options button {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-900);
  cursor: pointer;
  font-weight: 800;
  padding: 10px 14px;
}
.assessment-options button.is-active { background: var(--navy-900); color: var(--gold-light); }
.assessment-result { color: #334255; min-height: 156px; padding: 24px; }
.testimonial-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
blockquote { color: #293849; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.45rem; line-height: 1.18; margin: 0; padding: 28px; }
cite { color: var(--muted); display: block; font-family: Inter, sans-serif; font-size: 0.85rem; font-style: normal; font-weight: 800; margin-top: 20px; }
.application { align-items: start; display: grid; gap: 46px; grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 0.9fr); }
.integration-list { color: var(--navy-900); display: grid; gap: 10px; list-style: none; margin: 28px 0 0; padding: 0; }
.integration-list li::before { color: var(--gold); content: "✓"; font-weight: 900; margin-right: 10px; }
.application-form, .newsletter-form {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 26px;
}
label { color: var(--navy-900); display: grid; font-size: 0.88rem; font-weight: 800; gap: 8px; }
input, select, textarea {
  background: #fffdf8;
  border: 1px solid rgba(18, 41, 69, 0.18);
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  outline: none;
  padding: 12px 13px;
  width: 100%;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201, 163, 90, 0.18); }
.hidden-field { display: none; }
.form-note, #newsletterNote { color: var(--navy-800); font-size: 0.9rem; font-weight: 800; margin: 0; }
.newsletter { align-items: center; display: grid; gap: 32px; grid-template-columns: minmax(0, 1fr) minmax(310px, 0.6fr); }
.newsletter h2 { margin-bottom: 0; }
.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  gap: 30px;
  justify-content: space-between;
  padding: 34px clamp(20px, 5vw, 72px);
}
.site-footer strong { color: var(--white); }
.site-footer p { margin-bottom: 0; max-width: 560px; }
.footer-about { align-items: center; display: flex; gap: 16px; }
.footer-about img {
  border: 1px solid rgba(239, 215, 155, 0.35);
  border-radius: 50%;
  height: 62px;
  object-fit: cover;
  object-position: 50% 18%;
  width: 62px;
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer a { color: var(--gold-light); font-weight: 800; }

.page-hero {
  background:
    linear-gradient(125deg, rgba(8, 20, 33, 0.96), rgba(18, 41, 69, 0.92)),
    radial-gradient(circle at 80% 26%, rgba(201, 163, 90, 0.32), transparent 34%);
  color: var(--white);
  padding: clamp(76px, 10vw, 136px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  position: relative;
}

.page-hero-inner {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  margin: 0 auto;
  max-width: 1180px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(3.8rem, 8vw, 7.2rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  max-width: 720px;
}

.page-hero-card {
  align-self: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(239, 215, 155, 0.28);
  border-radius: 8px;
  padding: 24px;
}

.page-hero::before {
  content: "";
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  position: absolute;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero-card strong {
  color: var(--gold-light);
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 12px;
}

.about-portrait {
  align-self: center;
  border: 1px solid rgba(239, 215, 155, 0.35);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.about-portrait img {
  aspect-ratio: 0.86;
  display: block;
  object-fit: cover;
  object-position: 50% 16%;
  width: 100%;
}

.page-book .page-hero {
  background:
    linear-gradient(105deg, rgba(1, 4, 8, 0.99), rgba(7, 12, 18, 0.97) 52%, rgba(8, 20, 33, 0.92)),
    radial-gradient(circle at 76% 30%, rgba(201, 163, 90, 0.2), transparent 34%);
}

.page-book .page-hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.54)),
    url("/assets/the-great-battle-cover.png") right 8% center / min(55vw, 720px) auto no-repeat;
  filter: blur(12px) grayscale(0.55) contrast(1.2);
  opacity: 0.18;
  transform: scale(1.04);
}

.page-book .book-cover-image {
  box-shadow: -24px 32px 70px rgba(0, 0, 0, 0.58), 0 0 0 1px rgba(239, 215, 155, 0.38), 0 0 80px rgba(201, 163, 90, 0.13);
  transform: perspective(1100px) rotateY(-7deg) rotateX(1deg);
}

.page-mentoring .page-hero {
  background:
    linear-gradient(125deg, rgba(28, 18, 12, 0.96), rgba(72, 47, 27, 0.88)),
    radial-gradient(circle at 74% 28%, rgba(239, 215, 155, 0.3), transparent 36%);
}

.page-mentoring .page-hero::before {
  background:
    linear-gradient(120deg, transparent, rgba(239, 215, 155, 0.16)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 26px);
}

.mentoring-visual {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(120px, 0.45fr) minmax(220px, 1fr);
}

.mentor-portrait-mini {
  border: 1px solid rgba(239, 215, 155, 0.35);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.mentor-portrait-mini img {
  aspect-ratio: 0.74;
  display: block;
  object-fit: cover;
  object-position: 50% 15%;
  width: 100%;
}

.session-desk {
  background: linear-gradient(145deg, rgba(255, 248, 229, 0.94), rgba(207, 166, 105, 0.84));
  border: 1px solid rgba(239, 215, 155, 0.5);
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26);
  color: #2f2117;
  min-height: 270px;
  padding: 26px;
  transform: rotate(-1.5deg);
}

.session-desk span {
  color: #8c672e;
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.session-desk strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}

.note-lines {
  background:
    linear-gradient(#8d7044 0 0) left 34px / 72% 1px no-repeat,
    linear-gradient(#8d7044 0 0) left 72px / 92% 1px no-repeat,
    linear-gradient(#8d7044 0 0) left 110px / 58% 1px no-repeat;
  height: 132px;
  opacity: 0.42;
}

.page-assessment .page-hero {
  background:
    linear-gradient(125deg, rgba(4, 11, 19, 0.98), rgba(10, 25, 39, 0.96) 58%, rgba(5, 12, 18, 0.96)),
    radial-gradient(circle at 72% 26%, rgba(201, 163, 90, 0.23), transparent 38%);
  color: var(--white);
}

.page-assessment .page-hero::before {
  background:
    linear-gradient(116deg, transparent 0 34%, rgba(239, 215, 155, 0.12) 48%, transparent 62%),
    radial-gradient(circle at 77% 38%, rgba(239, 215, 155, 0.16), transparent 34%);
  opacity: 0.82;
}

.page-assessment .page-hero h1,
.page-assessment .page-hero h2 {
  color: var(--white);
}

.page-assessment .page-hero p {
  color: rgba(255, 255, 255, 0.76);
}

.assessment-visual {
  align-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(239, 215, 155, 0.22);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: grid;
  justify-items: center;
  min-height: 340px;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.assessment-visual::before {
  background: radial-gradient(circle at 50% 44%, rgba(239, 215, 155, 0.18), transparent 52%);
  content: "";
  inset: -20%;
  position: absolute;
}

.assessment-visual > * {
  position: relative;
  z-index: 1;
}

.page-apply .page-hero {
  background:
    linear-gradient(112deg, rgba(2, 5, 9, 0.98), rgba(9, 19, 31, 0.96) 52%, rgba(62, 41, 15, 0.94)),
    radial-gradient(circle at 78% 28%, rgba(239, 215, 155, 0.5), transparent 40%);
}

.page-apply .page-hero::before {
  background:
    linear-gradient(112deg, transparent 0 44%, rgba(239, 215, 155, 0.16) 55%, transparent 70%),
    radial-gradient(circle at 76% 42%, rgba(255, 244, 198, 0.18), transparent 34%);
  opacity: 0.9;
}

.page-apply .button.primary {
  box-shadow: 0 0 0 1px rgba(239, 215, 155, 0.38), 0 18px 42px rgba(201, 163, 90, 0.35);
  min-height: 56px;
}

.premium-symbol {
  display: block;
  filter: drop-shadow(0 28px 58px rgba(0, 0, 0, 0.26));
  max-width: 430px;
  width: min(100%, 430px);
}

.apply-visual {
  align-items: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(239, 215, 155, 0.24);
  border-radius: 18px;
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: grid;
  justify-items: center;
  min-height: 360px;
  overflow: hidden;
  padding: 22px;
  position: relative;
}

.apply-visual::before {
  background: radial-gradient(circle at 50% 34%, rgba(239, 215, 155, 0.24), transparent 56%);
  content: "";
  inset: -22%;
  position: absolute;
}

.apply-visual > * {
  position: relative;
  z-index: 1;
}

.apply-symbol {
  filter: drop-shadow(0 0 46px rgba(239, 215, 155, 0.18)) drop-shadow(0 28px 58px rgba(0, 0, 0, 0.34));
}

.apply-visual strong {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  margin-top: 18px;
}

.page-contact .page-hero {
  background:
    linear-gradient(125deg, rgba(7, 18, 30, 0.98), rgba(13, 31, 49, 0.94)),
    radial-gradient(circle at 78% 30%, rgba(239, 215, 155, 0.18), transparent 34%);
}

.page-contact .page-hero::before {
  background:
    linear-gradient(118deg, transparent 0 38%, rgba(239, 215, 155, 0.1) 52%, transparent 66%),
    radial-gradient(circle at 80% 42%, rgba(247, 241, 230, 0.09), transparent 32%);
  opacity: 0.9;
}

.contact-visual {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.024));
  border: 1px solid rgba(239, 215, 155, 0.24);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.contact-visual::before {
  background: radial-gradient(circle at 50% 28%, rgba(239, 215, 155, 0.14), transparent 52%);
  content: "";
  inset: -20%;
  position: absolute;
}

.contact-visual > * {
  position: relative;
  z-index: 1;
}

.contact-symbol {
  margin-bottom: 22px;
}

.assessment-symbol {
  filter: drop-shadow(0 22px 56px rgba(0, 0, 0, 0.28));
}

.page-assessment main {
  background:
    radial-gradient(circle at 12% 35%, rgba(201, 163, 90, 0.12), transparent 28%),
    linear-gradient(180deg, #050b12 0%, #0a1725 42%, #07101b 100%);
}

.page-assessment .assessment {
  align-items: start;
  background:
    radial-gradient(circle at 82% 18%, rgba(239, 215, 155, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  color: var(--white);
  gap: clamp(28px, 5vw, 58px);
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1fr);
  position: relative;
}

.page-assessment .assessment::before {
  background:
    linear-gradient(90deg, rgba(239, 215, 155, 0), rgba(239, 215, 155, 0.22), rgba(239, 215, 155, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
  content: "";
  height: 1px;
  left: 7%;
  position: absolute;
  right: 7%;
  top: 0;
}

.page-assessment .assessment-copy {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(239, 215, 155, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  padding: clamp(24px, 4vw, 38px);
  position: sticky;
  top: 110px;
}

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

.page-assessment .assessment-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.page-assessment .assessment-tool {
  display: grid;
  gap: 22px;
}

.page-assessment .assessment-options {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.page-assessment .assessment-options button {
  background:
    radial-gradient(circle at 82% 16%, rgba(239, 215, 155, 0.12), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.024));
  border: 1px solid rgba(239, 215, 155, 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  color: var(--white);
  min-height: 132px;
  padding: 22px;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.page-assessment .assessment-options button:hover,
.page-assessment .assessment-options button.is-active {
  background:
    radial-gradient(circle at 80% 12%, rgba(239, 215, 155, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
  border-color: rgba(239, 215, 155, 0.56);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(239, 215, 155, 0.12);
  color: var(--white);
  transform: translateY(-2px);
}

.page-assessment .assessment-options button span {
  color: var(--gold-light);
  display: block;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.page-assessment .assessment-options button strong {
  color: var(--white);
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.page-assessment .assessment-options button small {
  color: rgba(255, 255, 255, 0.58);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-top: 8px;
}

.page-assessment .assessment-result {
  background:
    linear-gradient(145deg, rgba(247, 241, 230, 0.98), rgba(255, 251, 244, 0.92)),
    radial-gradient(circle at 88% 18%, rgba(201, 163, 90, 0.18), transparent 32%);
  border: 1px solid rgba(239, 215, 155, 0.34);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  color: var(--navy-900);
  min-height: 260px;
  padding: clamp(26px, 4vw, 42px);
}

.page-assessment .assessment-result h3 {
  color: var(--navy-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
  line-height: 0.98;
  margin-bottom: 16px;
}

.assessment-guide {
  grid-column: 1 / -1;
}

.assessment-modal {
  align-items: center;
  display: grid;
  inset: 0;
  opacity: 0;
  padding: clamp(16px, 3vw, 34px);
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 100;
}

.assessment-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.assessment-modal-backdrop {
  backdrop-filter: blur(10px);
  background: rgba(2, 5, 9, 0.78);
  inset: 0;
  position: absolute;
}

.assessment-modal-panel {
  background:
    radial-gradient(circle at 82% 10%, rgba(239, 215, 155, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(10, 25, 39, 0.98), rgba(3, 8, 14, 0.98));
  border: 1px solid rgba(239, 215, 155, 0.46);
  border-radius: 10px;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.58), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto;
  max-height: min(88vh, 980px);
  max-width: 980px;
  overflow: auto;
  padding: clamp(26px, 5vw, 54px);
  position: relative;
  transform: translateY(18px) scale(0.98);
  transition: transform 180ms ease;
  width: min(100%, 980px);
}

.assessment-modal.is-open .assessment-modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(239, 215, 155, 0.28);
  border-radius: 50%;
  color: var(--gold-light);
  cursor: pointer;
  display: inline-flex;
  font-size: 1.5rem;
  font-weight: 300;
  height: 42px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
}

.modal-close:hover {
  background: rgba(239, 215, 155, 0.14);
}

.assessment-modal-panel h2 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin-bottom: 18px;
  padding-right: 48px;
}

.assessment-modal-panel .result-description {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.assessment-modal-panel .result-detail-grid section,
.assessment-modal-panel .result-question,
.assessment-modal-panel .result-next {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026));
  border-color: rgba(239, 215, 155, 0.18);
}

.assessment-modal-panel .result-detail-grid strong,
.assessment-modal-panel .result-question strong,
.assessment-modal-panel .result-next strong {
  color: var(--gold-light);
}

.assessment-modal-panel .result-detail-grid li,
.assessment-modal-panel .result-detail-grid p,
.assessment-modal-panel .result-question p,
.assessment-modal-panel .result-next p {
  color: rgba(255, 255, 255, 0.76);
}

.assessment-modal-panel .result-verse {
  background:
    linear-gradient(145deg, rgba(239, 215, 155, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(0, 0, 0, 0.18);
  border-color: rgba(239, 215, 155, 0.34);
  box-shadow: none;
  color: var(--gold-light);
}

.assessment-modal-panel .result-actions .button.secondary {
  border-color: rgba(239, 215, 155, 0.34);
  color: var(--white);
}

body.modal-open {
  overflow: hidden;
}

.result-description {
  color: #334255;
  font-size: 1.08rem;
  max-width: 860px;
}

.result-detail-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  margin-top: 26px;
}

.result-detail-grid section,
.result-question,
.result-next {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(18, 41, 69, 0.1);
  border-radius: 8px;
  padding: 20px;
}

.result-detail-grid strong,
.result-question strong,
.result-next strong {
  color: #8f6825;
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.result-detail-grid ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.result-detail-grid li {
  color: var(--navy-900);
  font-weight: 800;
  padding-left: 22px;
  position: relative;
}

.result-detail-grid li::before {
  color: var(--gold);
  content: "•";
  font-size: 1.35rem;
  left: 0;
  line-height: 1;
  position: absolute;
}

.result-detail-grid p,
.result-question p,
.result-next p {
  color: #334255;
  margin-bottom: 0;
}

.result-verse {
  background: var(--navy-900);
  border: 1px solid rgba(201, 163, 90, 0.32);
  color: var(--gold-light);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  margin: 22px 0;
}

.result-question {
  margin-bottom: 16px;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.result-actions .button.secondary {
  border-color: rgba(12, 29, 49, 0.24);
  color: var(--navy-900);
}

.contact-visual strong {
  color: var(--gold-light);
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.content-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.content-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(8, 20, 33, 0.06);
  padding: 24px;
}

.content-card p {
  color: var(--muted);
}

.feature-list {
  color: var(--navy-900);
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.1rem;
}

.stuck-section {
  background:
    radial-gradient(circle at 18% 22%, rgba(201, 163, 90, 0.13), transparent 30%),
    var(--cream);
}

.stuck-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 237, 0.72)),
    radial-gradient(circle at 84% 16%, rgba(201, 163, 90, 0.18), transparent 28%);
  border: 1px solid rgba(201, 163, 90, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
  margin: 0 auto;
  max-width: 900px;
  padding: clamp(26px, 4vw, 44px);
}

.check-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  color: var(--navy-900);
  font-weight: 800;
  padding-left: 30px;
  position: relative;
}

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

.alone-line {
  border-top: 1px solid rgba(18, 41, 69, 0.12);
  color: var(--navy-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1;
  margin: 0;
  padding-top: 22px;
}

.battle-section,
.book-discovery-section,
.faq-section {
  background:
    radial-gradient(circle at 78% 24%, rgba(201, 163, 90, 0.18), transparent 34%),
    linear-gradient(135deg, #07111d, #101d2c 52%, #080d14);
  color: rgba(255, 255, 255, 0.78);
  position: relative;
}

.battle-section h2,
.book-discovery-section h2,
.faq-section h2 {
  color: var(--white);
}

.battle-section .section-intro p,
.book-discovery-section p,
.faq-section .section-intro p {
  color: rgba(255, 255, 255, 0.72);
}

.battle-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  border-color: rgba(239, 215, 155, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.battle-card span {
  color: var(--gold-light);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 28px;
}

.battle-card h3,
.battle-card p,
.faq-grid h3,
.faq-grid p {
  color: inherit;
}

.battle-card h3 {
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.pathway-section {
  background:
    radial-gradient(circle at 50% 12%, rgba(201, 163, 90, 0.18), transparent 28%),
    linear-gradient(180deg, #fffaf1, var(--cream));
}

.pathway-track {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.pathway-track article {
  background: var(--navy-900);
  border: 1px solid rgba(201, 163, 90, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(8, 20, 33, 0.14);
  min-height: 190px;
  padding: 24px;
  position: relative;
}

.pathway-track article:not(:last-child)::after {
  color: var(--gold);
  content: "→";
  font-size: 1.6rem;
  font-weight: 900;
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.pathway-track span {
  color: var(--gold-light);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.pathway-track h3 {
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
}

.pathway-track p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.book-discovery {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 78px);
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.book-feature-cover {
  display: grid;
  justify-items: center;
}

.discovery-grid,
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.discovery-grid span,
.trust-list span {
  background: rgba(201, 163, 90, 0.12);
  border: 1px solid rgba(201, 163, 90, 0.28);
  border-radius: 999px;
  color: var(--gold-light);
  font-weight: 800;
  padding: 10px 14px;
}

.mentor-feature-section {
  background:
    linear-gradient(125deg, rgba(247, 241, 230, 0.96), rgba(255, 250, 241, 0.92)),
    radial-gradient(circle at 14% 18%, rgba(201, 163, 90, 0.18), transparent 34%);
}

.mentor-feature {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 70px);
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.mentor-photo-large {
  border: 1px solid rgba(201, 163, 90, 0.34);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mentor-photo-large img {
  aspect-ratio: 0.82;
  display: block;
  object-fit: cover;
  object-position: 50% 14%;
  width: 100%;
}

.mentor-feature p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
}

.mentor-feature .trust-list span {
  background: var(--navy-900);
  border-color: rgba(201, 163, 90, 0.34);
  color: var(--cream);
}

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

.assessment-cta-section {
  background:
    linear-gradient(120deg, rgba(8, 20, 33, 0.96), rgba(16, 34, 51, 0.94)),
    radial-gradient(circle at 76% 28%, rgba(239, 215, 155, 0.24), transparent 36%);
  color: var(--white);
}

.assessment-cta-panel,
.final-cta-panel {
  margin: 0 auto;
  max-width: 880px;
  text-align: center;
}

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

.assessment-cta-panel p,
.final-cta-panel p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.assessment-cta-panel .button {
  margin-top: 18px;
}

.faq-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.faq-grid article {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(239, 215, 155, 0.18);
  border-radius: 8px;
  padding: 24px;
}

.faq-grid h3 {
  color: var(--white);
  font-size: 1rem;
}

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

.final-cta-section {
  background:
    linear-gradient(112deg, rgba(2, 5, 9, 0.98), rgba(9, 19, 31, 0.96) 52%, rgba(62, 41, 15, 0.94)),
    radial-gradient(circle at 50% 15%, rgba(239, 215, 155, 0.32), transparent 38%);
  color: var(--white);
}

.final-cta-panel .hero-actions {
  justify-content: center;
}

.mentor-fit-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 163, 90, 0.13), transparent 30%),
    var(--cream);
}

.mentor-fit-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1080px;
}

.muted-card {
  background: rgba(255, 255, 255, 0.52);
}

.outcomes-section {
  background:
    radial-gradient(circle at 72% 20%, rgba(201, 163, 90, 0.2), transparent 34%),
    linear-gradient(135deg, #101018, #101f31 58%, #20160f);
  color: rgba(255, 255, 255, 0.76);
}

.outcomes-section h2 {
  color: var(--white);
}

.outcomes-section .section-intro p {
  color: rgba(255, 255, 255, 0.72);
}

.outcome-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.outcome-grid article {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(239, 215, 155, 0.18);
  border-radius: 8px;
  padding: 24px;
}

.outcome-grid span {
  color: var(--gold-light);
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
}

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

@media (max-width: 1040px) {
  .hero, .book-panel, .assessment, .application, .newsletter, .split { grid-template-columns: 1fr; }
  .page-hero-inner, .content-grid, .book-discovery, .mentor-feature { grid-template-columns: 1fr; }
  .problem-grid, .receive-grid, .timeline, .testimonial-grid, .pathway-track, .outcome-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-visual { order: -1; }
  .mentoring-visual { max-width: 560px; }
  .assessment-visual { max-width: 560px; }
  .page-assessment .assessment-copy { position: static; }
  .page-assessment .assessment-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pathway-track article:not(:last-child)::after { content: ""; }
}
@media (max-width: 760px) {
  .site-header { align-items: flex-start; flex-direction: column; gap: 14px; }
  .main-nav { gap: 14px; justify-content: flex-start; overflow-x: auto; width: 100%; }
  .main-nav a { min-width: max-content; }
  .nav-cta { display: none; }
  .hero { min-height: auto; padding-top: 52px; }
  .problem-grid, .receive-grid, .timeline, .testimonial-grid, .pathway-track, .mentor-fit-grid, .outcome-grid, .faq-grid { grid-template-columns: 1fr; }
  .problem-grid article:nth-child(4), .receive-grid article:nth-child(7) { grid-column: auto; }
  .hero-actions, .site-footer { flex-direction: column; }
  .button { width: 100%; }
  .book-cover { min-height: 460px; }
  .book-cover h2 { font-size: 2.7rem; }
  .hero-visual { grid-template-columns: 1fr; }
  .portrait-card { width: min(74vw, 260px); }
  .mentoring-visual { grid-template-columns: 1fr; }
  .mentor-portrait-mini { max-width: 220px; }
  .session-desk { min-height: 230px; transform: none; }
  .assessment-visual { min-height: 410px; }
  .page-assessment .assessment-options, .result-detail-grid { grid-template-columns: 1fr; }
  .page-assessment .assessment-options button { min-height: 118px; }
  .assessment-modal { align-items: end; padding: 10px; }
  .assessment-modal-panel {
    border-radius: 10px 10px 0 0;
    max-height: 92vh;
    padding: 26px 18px 24px;
    width: 100%;
  }
  .assessment-modal-panel h2 {
    padding-right: 42px;
  }
  .result-actions { flex-direction: column; }
  .apply-visual { min-height: 320px; }
  .contact-visual { padding: 20px; }
}
