/*
Theme Name: Invisible Marketing
Theme URI: https://invisiblemarketing.ai
Author: Invisible Marketing
Description: Invisible Marketing - a connected growth system for established business owners. Landing page with the Golden Triangle method, an interactive Marketing Clarity Score, the Boot Camp outline and FAQ. Pairs with the "IM AI Chat" plugin to power the /chat advisor.
Version: 2.2.1
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GPL-2.0-or-later
Text Domain: invisible-marketing
*/

/* ============================================================
   Reset
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  line-height: 1.5;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

ol,
ul,
menu {
  list-style: none;
}

img,
svg,
video,
canvas,
iframe,
embed,
object {
  vertical-align: middle;
  display: block;
}

img,
video {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background-color: transparent;
  border-radius: 0;
}

summary {
  display: list-item;
}

table {
  border-collapse: collapse;
}

[hidden] {
  display: none !important;
}

/* ============================================================
   Design tokens — taken from the Invisible Marketing logo:
   navy field, yellow + green + cornflower puzzle pieces.

   --gold      bright logo yellow. Use on navy, or as a solid
               fill with navy text on top.
   --gold-ink  darkened gold for small text and hairlines on
               light backgrounds, where bright yellow would be
               unreadable.
   ============================================================ */
:root {
  --navy: #0f3d8f;
  --navy-deep: #0a2c6b;
  --gold: #f5cf50;
  --gold-soft: #f9de8a;
  --gold-ink: #9a6f12;
  --sky: #6b8fcb;
  --sage: #cfe3b8;
  --sage-soft: #e8f1dc;
  --paper: #f7f9fc;
  --stone: #e9eff8;
  --stone-deep: #dbe4f2;
  --charcoal: #14203a;
  --muted: #5c6880;
  --line: #0f3d8f2e;
  --font-manrope: "Manrope", "Segoe UI", Arial, Helvetica, sans-serif;
  --font-fraunces: "Fraunces", Georgia, "Times New Roman", serif;
}

body {
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--font-manrope);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

section[id] {
  scroll-margin-top: 86px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  z-index: 50;
  background: #f7f9fce6;
  border-bottom: 1px solid #0f3d8f1a;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 82px;
  padding: 0 clamp(24px, 3vw, 48px);
  display: grid;
  position: sticky;
  top: 0;
}

.wordmark {
  color: var(--navy);
  font-family: var(--font-fraunces);
  letter-spacing: -0.035em;
  width: fit-content;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  line-height: 1;
}

.wordmark span {
  color: var(--gold-ink);
}

/* Uploaded logo (Appearance → Customize → Site Identity). */
.site-logo {
  display: flex;
  align-items: center;
}

.site-logo img {
  width: auto;
  height: auto;
  max-height: 54px;
  max-width: 260px;
}

.site-header nav {
  align-items: center;
  gap: clamp(22px, 2.7vw, 42px);
  display: flex;
}

.site-header nav a {
  color: #26314a;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.site-header nav a::after {
  background: var(--gold-ink);
  content: "";
  transform-origin: 0;
  width: 100%;
  height: 2px;
  transition: transform 0.18s;
  position: absolute;
  bottom: -8px;
  left: 0;
  transform: scaleX(0);
}

.site-header nav a:hover::after,
.site-header nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-header > .button {
  justify-self: end;
}

/* ============================================================
   Buttons
   ============================================================ */
.button {
  background: var(--navy);
  border: 1px solid var(--navy);
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 25px;
  font-size: 15px;
  font-weight: 700;
  transition: box-shadow 0.18s, transform 0.18s, background 0.18s;
  display: inline-flex;
}

.button:hover,
.button:focus-visible {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px #0a2c6b3d;
}

.button-small {
  min-height: 44px;
  padding: 0 19px;
  font-size: 13px;
}

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

.button-outline:hover,
.button-outline:focus-visible {
  box-shadow: none;
  background: #0f3d8f0f;
}

.button-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #e8bf3c;
  border-color: #e8bf3c;
}

.button-ghost {
  color: var(--navy);
  background: none;
  border-color: #0f3d8f4d;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  box-shadow: none;
  background: #0f3d8f0d;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  background: radial-gradient(circle at 68% 20%, #f5cf5026, transparent 22%),
    linear-gradient(135deg, var(--paper), var(--stone));
  grid-template-columns: minmax(0, 1.02fr) minmax(520px, 0.98fr);
  min-height: min(800px, 100svh - 82px);
  padding-left: clamp(28px, 4.5vw, 72px);
  display: grid;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  opacity: 0.18;
  pointer-events: none;
  background-image: radial-gradient(#0f3d8f2e 0.7px, transparent 0.7px);
  background-size: 24px 24px;
  position: absolute;
  inset: 0;
}

.hero-copy {
  z-index: 3;
  align-self: center;
  max-width: 770px;
  padding: 78px 40px 70px 0;
  position: relative;
}

.eyebrow {
  color: var(--navy);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 800;
}

.eyebrow::after {
  background: var(--gold-ink);
  content: "";
  width: 68px;
  height: 2px;
  margin-top: 16px;
  display: block;
}

.eyebrow.light {
  color: #d7e2f5;
}

.eyebrow.light::after {
  background: var(--gold);
}

.hero h1,
.section h2,
.scorecard-section h2,
.final-cta h2,
.faq-heading h2 {
  font-family: var(--font-fraunces);
  letter-spacing: -0.048em;
  margin: 0;
  font-weight: 600;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(52px, 5vw, 80px);
  line-height: 0.99;
}

.hero-subhead {
  color: #3f4a63;
  max-width: 675px;
  margin: 28px 0 31px;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
}

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

.micro-proof {
  color: #46516b;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}

.micro-proof i {
  background: var(--navy);
  border-radius: 50%;
  width: 4px;
  height: 4px;
}

.checkmark {
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 14px;
  display: inline-flex;
}

.hero-visual {
  min-height: 650px;
  position: relative;
}

.hero-visual::before {
  background: linear-gradient(90deg, var(--stone) 0%, #e9eff86b 14%, transparent 42%);
  content: "";
  pointer-events: none;
  z-index: 2;
  position: absolute;
  inset: 0;
}

.hero-visual img {
  object-fit: cover;
  object-position: 58% center;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.orbit {
  pointer-events: none;
  z-index: 3;
  border: 1px solid #6b8fcb85;
  border-radius: 50%;
  width: 650px;
  height: 470px;
  position: absolute;
  top: 12%;
  right: 8%;
  transform: rotate(-13deg);
}

.orbit::before,
.orbit::after {
  background: var(--navy);
  content: "";
  border: 4px solid #f7f9fccc;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  position: absolute;
}

.orbit::before {
  top: 19%;
  left: 11%;
}

.orbit::after {
  top: 7%;
  right: 18%;
}

.orbit-two {
  width: 530px;
  height: 340px;
  top: 27%;
  right: -5%;
  transform: rotate(18deg);
}

.insight-card {
  border: 1px solid var(--navy);
  z-index: 5;
  background: #f7f9fcf0;
  border-radius: 6px;
  width: min(340px, 80%);
  padding: 22px 24px;
  position: absolute;
  bottom: 7%;
  left: 4%;
  box-shadow: 0 20px 50px #0f3d8f2e;
}

.insight-card > p {
  color: var(--navy);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
}

.insight-card > p::after {
  background: var(--gold-ink);
  content: "";
  width: 42px;
  height: 2px;
  margin-top: 10px;
  display: block;
}

.insight-card div {
  border-top: 1px solid var(--line);
  grid-template-columns: 84px 1fr;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0 4px;
  display: grid;
}

.insight-card strong {
  color: var(--gold-ink);
  font-family: var(--font-fraunces);
  font-size: 36px;
  font-weight: 500;
}

.insight-card span {
  color: #4c5670;
  font-size: 12px;
}

/* ============================================================
   Research strip
   ============================================================ */
.research-strip {
  background: var(--navy);
  color: #fff;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px clamp(28px, 5vw, 80px);
  display: grid;
}

.research-strip p {
  border-right: 1px solid #ffffff2e;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0 clamp(12px, 2vw, 30px);
  display: flex;
}

.research-strip p:first-child {
  padding-left: 0;
}

.research-strip p:last-child {
  border-right: 0;
}

.research-strip strong {
  color: var(--gold);
  font-family: var(--font-fraunces);
  font-size: 28px;
}

.research-strip span {
  color: #ffffffc4;
  max-width: 140px;
  font-size: 11px;
  line-height: 1.45;
}

/* ============================================================
   Generic section
   ============================================================ */
.section {
  padding: 120px clamp(28px, 6vw, 96px);
}

.section-heading {
  max-width: 810px;
}

.section h2,
.scorecard-section h2,
.faq-heading h2 {
  font-size: clamp(42px, 4.3vw, 66px);
  line-height: 1.06;
}

.section-heading > p:last-child,
.method-intro > p:last-child,
.scorecard-copy > p,
.bootcamp-intro > p,
.row-heading > p {
  color: var(--muted);
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.75;
}

/* ============================================================
   Problem loop
   ============================================================ */
.problem-section {
  background: var(--paper);
}

.problem-loop {
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 64px;
  display: grid;
}

.loop-step {
  background: var(--stone);
  border-top: 3px solid var(--navy);
  min-height: 150px;
  padding: 24px 20px;
  position: relative;
}

.loop-step:not(:last-child)::after {
  background: var(--gold);
  color: var(--navy-deep);
  content: "\2192";
  z-index: 2;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  position: absolute;
  top: 57px;
  right: -20px;
}

.loop-step span {
  color: var(--gold-ink);
  letter-spacing: 0.12em;
  margin-bottom: 34px;
  font-size: 11px;
  font-weight: 800;
  display: block;
}

.loop-step strong {
  font-size: 16px;
  line-height: 1.35;
}

.pull-quote {
  border-left: 3px solid var(--gold-ink);
  color: var(--navy);
  font-family: var(--font-fraunces);
  max-width: 980px;
  margin: 70px 0 0;
  padding-left: 30px;
  font-size: clamp(24px, 2.4vw, 37px);
  line-height: 1.35;
}

/* ============================================================
   Method
   ============================================================ */
.method-section {
  background: var(--navy);
  color: #fff;
  grid-template-columns: 1.15fr 0.9fr 0.9fr;
  gap: clamp(30px, 4vw, 60px);
  display: grid;
}

.method-intro {
  align-self: center;
}

.method-intro > p:last-child {
  color: #ffffffb8;
}

.triangle-card,
.belief-card {
  background: #ffffff12;
  border: 1px solid #ffffff2e;
  min-height: 470px;
  padding: 28px;
  position: relative;
}

.triangle-card {
  overflow: hidden;
}

.triangle-lines {
  border-bottom: 1px solid #f5cf5085;
  width: 250px;
  height: 225px;
  position: absolute;
  top: 62px;
  left: 50%;
  transform: translate(-50%);
}

.triangle-lines::before,
.triangle-lines::after {
  content: "";
  border-top: 1px solid #f5cf5085;
  width: 222px;
  height: 1px;
  position: absolute;
  top: 105px;
}

.triangle-lines::before {
  left: -25px;
  transform: rotate(-61deg);
}

.triangle-lines::after {
  right: -25px;
  transform: rotate(61deg);
}

.triangle-point {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  position: absolute;
}

.triangle-point span {
  background: var(--gold);
  color: var(--navy-deep);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 9px;
  font-size: 10px;
  font-weight: 800;
  display: flex;
}

.triangle-point strong {
  font-family: var(--font-fraunces);
  font-size: 22px;
}

.triangle-point small {
  color: #ffffff9e;
  margin-top: 3px;
  font-size: 10px;
}

.point-market {
  top: 240px;
  left: 12px;
}

.point-message {
  top: 26px;
  left: 50%;
  transform: translate(-50%);
}

.point-media {
  top: 240px;
  right: 12px;
}

.triangle-card > p {
  color: #ffffff9e;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  font-size: 11px;
  position: absolute;
  bottom: 34px;
  left: 0;
}

.card-kicker {
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 800;
}

.belief-card ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.belief-card li {
  font-family: var(--font-fraunces);
  border-top: 1px solid #ffffff29;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 14px;
  padding: 17px 0;
  font-size: 16px;
  line-height: 1.3;
  display: grid;
}

.belief-card li span {
  color: var(--gold);
  font-family: var(--font-manrope);
  font-size: 10px;
  font-weight: 800;
}

/* ============================================================
   Journey
   ============================================================ */
.journey-section {
  background: var(--stone);
}

.row-heading {
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: clamp(40px, 8vw, 130px);
  max-width: none;
  display: grid;
}

.row-heading > p {
  margin-bottom: 8px;
}

.journey-grid {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  display: grid;
}

.journey-grid article {
  border-right: 1px solid var(--line);
  padding: 32px clamp(18px, 2.3vw, 38px) 40px;
  transition: background 0.2s, transform 0.2s;
}

.journey-grid article:first-child {
  padding-left: 0;
}

.journey-grid article:last-child {
  border-right: 0;
}

.journey-grid article:hover {
  background: #f7f9fc8c;
  transform: translateY(-3px);
}

.journey-grid article > span {
  color: var(--gold-ink);
  font-size: 11px;
  font-weight: 800;
}

.journey-grid h3 {
  font-family: var(--font-fraunces);
  margin: 42px 0 14px;
  font-size: 27px;
}

.journey-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================================
   Scorecard
   ============================================================ */
.scorecard-section {
  background: var(--navy-deep);
  color: #fff;
  grid-template-columns: 0.68fr 1.32fr;
  gap: clamp(50px, 8vw, 130px);
  padding: 120px clamp(28px, 6vw, 96px);
  display: grid;
}

.scorecard-copy {
  align-self: start;
  position: sticky;
  top: 120px;
}

.scorecard-copy > p {
  color: #ffffffb8;
}

.score-progress {
  background: #ffffff26;
  height: 4px;
  margin-top: 40px;
  overflow: hidden;
}

.score-progress span {
  background: var(--gold);
  height: 100%;
  transition: width 0.25s;
  display: block;
}

.scorecard-copy small {
  color: #ffffff8f;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 12px;
  font-size: 11px;
  display: block;
}

.scorecard-panel {
  background: var(--paper);
  color: var(--charcoal);
  padding: clamp(24px, 4vw, 55px);
}

.score-questions fieldset {
  border: 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr auto;
  gap: 20px;
  margin: 0;
  padding: 23px 0;
  display: grid;
}

.score-questions fieldset:first-child {
  padding-top: 0;
}

.score-questions legend {
  float: left;
  grid-template-columns: 30px 1fr;
  gap: 4px;
  width: 100%;
  padding: 0 20px 0 0;
  display: grid;
}

.score-questions legend span {
  color: var(--gold-ink);
  grid-row: span 2;
  margin-top: 3px;
  font-size: 10px;
  font-weight: 800;
}

.score-questions legend strong {
  font-size: 15px;
}

.score-questions legend small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.choice-row {
  align-items: center;
  gap: 6px;
  display: flex;
}

.choice-row button {
  border: 1px solid var(--line);
  color: #4b5670;
  cursor: pointer;
  background: none;
  border-radius: 999px;
  min-width: 72px;
  padding: 10px 13px;
  font-size: 10px;
  font-weight: 700;
  transition: all 0.15s;
}

.choice-row button:hover,
.choice-row button:focus-visible {
  border-color: var(--navy);
  color: var(--navy);
}

.choice-row button.selected {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.score-button {
  border: 0;
  width: 100%;
  margin-top: 34px;
}

.score-button:disabled {
  box-shadow: none;
  cursor: not-allowed;
  background: #aab3c4;
  border-color: #aab3c4;
  transform: none;
}

.score-result {
  background: var(--sage-soft);
  grid-template-columns: auto 1fr;
  gap: 24px;
  margin-top: 34px;
  padding: 30px;
  display: grid;
}

.score-number {
  align-items: baseline;
  display: flex;
}

.score-number strong {
  color: var(--navy);
  font-family: var(--font-fraunces);
  font-size: 68px;
  font-weight: 600;
  line-height: 1;
}

.score-number span {
  color: var(--muted);
  font-size: 13px;
}

.score-result > div:nth-child(2) > p:first-child,
.focus-list > p {
  color: var(--gold-ink);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 7px;
  font-size: 10px;
  font-weight: 800;
}

.score-result h3 {
  font-family: var(--font-fraunces);
  margin: 0 0 9px;
  font-size: 27px;
}

.score-result > div:nth-child(2) > p:last-child {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.focus-list {
  grid-column: 1 / -1;
}

.focus-list span {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  margin: 5px 6px 0 0;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

.text-button {
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  background: none;
  border: 0;
  grid-column: 1 / -1;
  width: fit-content;
  padding: 0;
  font-size: 12px;
  font-weight: 800;
}

/* ============================================================
   Boot Camp
   ============================================================ */
.bootcamp-section {
  background: var(--paper);
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 10vw, 160px);
  display: grid;
}

.bootcamp-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.bootcamp-intro .button {
  margin-top: 34px;
}

.bootcamp-pill-row {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
  display: flex;
}

.bootcamp-pill-row span {
  border: 1px solid var(--line);
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 10px;
  font-weight: 800;
}

.weeks-list {
  border-top: 1px solid var(--line);
}

.weeks-list article {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 28px 0;
  display: grid;
}

.weeks-list article > span {
  color: var(--gold-ink);
  padding-top: 6px;
  font-size: 11px;
  font-weight: 800;
}

.weeks-list h3 {
  font-family: var(--font-fraunces);
  margin: 0 0 7px;
  font-size: clamp(22px, 2vw, 30px);
}

.weeks-list p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

/* ============================================================
   Evidence
   ============================================================ */
.evidence-section {
  background: var(--stone);
}

.evidence-grid {
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
  margin-top: 60px;
  display: grid;
}

.evidence-grid article {
  background: var(--paper);
  border-top: 3px solid var(--navy);
  min-height: 310px;
  padding: clamp(26px, 3.3vw, 50px);
}

.evidence-grid .evidence-feature {
  background: var(--navy);
  color: #fff;
  border-top-color: var(--gold);
}

.evidence-grid article > span {
  color: var(--gold-ink);
  font-family: var(--font-fraunces);
  font-size: clamp(54px, 5vw, 78px);
  line-height: 1;
}

.evidence-grid .evidence-feature > span {
  color: var(--gold);
}

.evidence-grid h3 {
  font-family: var(--font-fraunces);
  margin: 40px 0 15px;
  font-size: clamp(22px, 2.1vw, 31px);
  line-height: 1.2;
}

.evidence-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.evidence-feature p {
  color: #ffffffa8;
}

/* ============================================================
   Insights
   ============================================================ */
.insights-section {
  background: var(--paper);
}

.insight-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
  display: grid;
}

.insight-grid article {
  border: 1px solid var(--line);
  flex-direction: column;
  min-height: 320px;
  padding: clamp(24px, 3vw, 42px);
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
}

.insight-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px #0f3d8f1f;
}

.insight-grid article > p {
  color: var(--gold-ink);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 45px;
  font-size: 10px;
  font-weight: 800;
}

.insight-grid h3 {
  font-family: var(--font-fraunces);
  margin: 0 0 16px;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.18;
}

.insight-grid article > span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.insight-grid a {
  color: var(--navy);
  margin-top: auto;
  padding-top: 28px;
  font-size: 12px;
  font-weight: 800;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--navy);
  color: #fff;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 10vw, 160px);
  display: grid;
}

.faq-heading h2 {
  max-width: 440px;
}

.faq-list {
  border-top: 1px solid #ffffff30;
}

.faq-list details {
  border-bottom: 1px solid #ffffff30;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-fraunces);
  padding: 28px 50px 28px 0;
  font-size: clamp(19px, 1.7vw, 25px);
  list-style: none;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--gold);
  content: "+";
  font-family: var(--font-manrope);
  font-size: 23px;
  font-weight: 300;
  position: absolute;
  top: 25px;
  right: 4px;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list details p {
  color: #ffffffab;
  margin: -4px 55px 28px 0;
  font-size: 14px;
  line-height: 1.75;
}

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta {
  background: radial-gradient(circle at 80% 30%, #f5cf503d, transparent 30%), var(--stone);
  padding: 120px clamp(28px, 8vw, 130px);
}

.final-cta h2 {
  color: var(--navy);
  max-width: 1040px;
  font-size: clamp(46px, 5.6vw, 82px);
  line-height: 1.02;
}

.final-cta > p:nth-of-type(2) {
  color: var(--muted);
  margin: 28px 0 34px;
  font-size: 18px;
}

.final-cta > div {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  color: #fff;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 55px clamp(28px, 6vw, 96px) 34px;
  display: grid;
}

.footer-wordmark {
  color: #fff;
}

.footer-wordmark span {
  color: var(--gold);
}

.site-footer > p {
  color: #ffffff99;
  margin: 0;
  font-size: 12px;
}

.site-footer > div {
  gap: 22px;
  display: flex;
}

.site-footer > div a {
  color: #ffffffbd;
  font-size: 11px;
  font-weight: 700;
}

.site-footer > div a:hover {
  color: var(--gold);
}

.site-footer > small {
  color: #ffffff6b;
  border-top: 1px solid #ffffff26;
  grid-column: 1 / -1;
  padding-top: 24px;
  font-size: 10px;
}

/* ============================================================
   Back-to-top button
   ============================================================ */
.to-top {
  position: fixed;
  right: clamp(16px, 2.5vw, 32px);
  bottom: clamp(16px, 2.5vw, 32px);
  z-index: 60;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid var(--navy-deep);
  color: var(--gold);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  display: flex;
  box-shadow: 0 12px 30px #0a2c6b47;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s, background 0.22s;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover,
.to-top:focus-visible {
  background: var(--navy-deep);
  transform: translateY(-3px);
}

.to-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   Inner pages (posts, pages, 404, chat)
   ============================================================ */
.im-page {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) clamp(24px, 6vw, 40px);
}

.im-page h1 {
  font-family: var(--font-fraunces);
  letter-spacing: -0.04em;
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.06;
  margin: 0 0 28px;
}

.im-page .im-content > * + * {
  margin-top: 20px;
}

.im-page .im-content {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.im-page .im-content h2,
.im-page .im-content h3 {
  color: var(--charcoal);
  font-family: var(--font-fraunces);
  font-weight: 600;
  line-height: 1.2;
}

.im-page .im-content h2 {
  font-size: 30px;
  margin-top: 40px;
}

.im-page .im-content h3 {
  font-size: 22px;
  margin-top: 32px;
}

.im-page .im-content a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.im-page .im-content ul,
.im-page .im-content ol {
  padding-left: 22px;
  list-style: revert;
}

.im-page .im-content li + li {
  margin-top: 8px;
}

.im-page .im-content blockquote {
  border-left: 3px solid var(--gold-ink);
  padding-left: 22px;
  color: var(--navy);
  font-family: var(--font-fraunces);
  font-size: 21px;
  line-height: 1.45;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .hero h1 {
    font-size: clamp(52px, 6vw, 68px);
  }

  .method-section {
    grid-template-columns: 1fr 1fr;
  }

  .method-intro {
    grid-column: 1 / -1;
    max-width: 760px;
  }

  .scorecard-section {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 55px;
  }

  .score-questions fieldset {
    grid-template-columns: 1fr;
  }

  .choice-row {
    padding-left: 30px;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 70px;
    padding: 0 20px;
  }

  .wordmark {
    font-size: 22px;
  }

  .site-logo img {
    max-height: 44px;
    max-width: 190px;
  }

  .button-small {
    min-height: 40px;
    padding: 0 13px;
    font-size: 11px;
  }

  section[id] {
    scroll-margin-top: 70px;
  }

  .hero {
    min-height: 0;
    padding: 0;
    display: block;
  }

  .hero-copy {
    padding: 65px 24px 44px;
  }

  .hero h1 {
    font-size: clamp(46px, 12vw, 68px);
  }

  .hero-subhead {
    font-size: 17px;
  }

  .hero-visual {
    min-height: 550px;
  }

  .hero-visual::before {
    background: linear-gradient(180deg, var(--stone) 0%, #e9eff833 20%, transparent 45%);
  }

  .insight-card {
    bottom: 24px;
    left: 24px;
  }

  .research-strip {
    grid-template-columns: 1fr 1fr;
    padding: 18px 24px;
  }

  .research-strip p {
    border-bottom: 1px solid #ffffff1f;
    border-right: 0;
    padding: 14px 0;
  }

  .research-strip p:nth-child(odd) {
    border-right: 1px solid #ffffff1f;
    padding-right: 18px;
  }

  .research-strip p:nth-child(2n) {
    padding-left: 18px;
  }

  .section,
  .scorecard-section {
    padding: 85px 24px;
  }

  .problem-loop {
    grid-template-columns: 1fr;
  }

  .loop-step {
    min-height: 92px;
  }

  .loop-step span {
    margin-bottom: 13px;
  }

  .loop-step:not(:last-child)::after {
    inset: auto auto -20px 50%;
    transform: rotate(90deg);
  }

  .method-section,
  .scorecard-section,
  .bootcamp-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .triangle-card,
  .belief-card {
    min-height: 430px;
  }

  .row-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
  }

  .journey-grid {
    grid-template-columns: 1fr 1fr;
  }

  .journey-grid article {
    border-bottom: 1px solid var(--line);
  }

  .journey-grid article:first-child {
    padding-left: 22px;
  }

  .scorecard-copy,
  .bootcamp-intro {
    position: static;
  }

  .scorecard-panel {
    padding: 28px 22px;
  }

  .score-result {
    grid-template-columns: 1fr;
  }

  .score-result > *,
  .focus-list,
  .text-button {
    grid-column: 1;
  }

  .evidence-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .evidence-grid article {
    min-height: 260px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer > small {
    grid-column: 1;
  }
}

@media (max-width: 520px) {
  .site-header .button-small {
    min-height: 38px;
  }

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

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

  .micro-proof i {
    display: none;
  }

  .micro-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .micro-proof .checkmark {
    float: left;
  }

  .hero-visual {
    min-height: 470px;
  }

  .orbit {
    right: -70%;
  }

  .insight-card {
    width: calc(100% - 48px);
  }

  .research-strip {
    grid-template-columns: 1fr;
  }

  .research-strip p,
  .research-strip p:nth-child(odd),
  .research-strip p:nth-child(2n) {
    border-right: 0;
    padding: 14px 0;
  }

  .section h2,
  .scorecard-section h2,
  .faq-heading h2 {
    font-size: 41px;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-grid article {
    border-right: 0;
    padding-left: 0 !important;
  }

  .choice-row {
    grid-template-columns: repeat(3, 1fr);
    padding-left: 0;
    display: grid;
  }

  .choice-row button {
    min-width: 0;
    padding: 10px 5px;
  }

  .score-questions legend {
    float: none;
  }

  .final-cta > div {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta .button {
    width: 100%;
  }

  .to-top {
    width: 46px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    animation: 0.65s both rise-in;
  }

  .hero-copy > :nth-child(2) {
    animation-delay: 80ms;
  }

  .hero-copy > :nth-child(3) {
    animation-delay: 0.15s;
  }

  .hero-copy > :nth-child(4) {
    animation-delay: 0.22s;
  }

  .hero-copy > :nth-child(5) {
    animation-delay: 0.28s;
  }

  .hero-visual img {
    animation: 0.9s both image-enter;
  }

  .orbit-one {
    animation: 14s ease-in-out infinite alternate drift-one;
  }

  .orbit-two {
    animation: 17s ease-in-out infinite alternate drift-two;
  }
}

@keyframes rise-in {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-enter {
  0% {
    opacity: 0;
    transform: scale(1.035);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes drift-one {
  0% {
    transform: rotate(-13deg) translate(0);
  }

  to {
    transform: rotate(-10deg) translate(-10px, 6px);
  }
}

@keyframes drift-two {
  0% {
    transform: rotate(18deg) translate(0);
  }

  to {
    transform: rotate(22deg) translate(8px, -8px);
  }
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}

/* WordPress admin bar offset for the sticky header. */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
