/* Agentic Mindset Coaching — isolated staging V1 */
:root {
  --paper: #f3ede3;
  --paper-deep: #e7ded0;
  --ink: #25211f;
  --navy: #284b61;
  --navy-deep: #173447;
  --oxblood: #96323d;
  --peach: #efcdb4;
  --white: #fffaf3;
  --line: #d2c6b7;
  --body: "Source Sans 3", "Segoe UI", sans-serif;
  --display: "Newsreader", Georgia, serif;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 100;
  padding: .7rem 1rem;
  background: var(--white);
  color: var(--navy-deep);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid #d69a2d;
  outline-offset: 4px;
}

.site-header {
  min-height: 80px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--navy-deep);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
}
.wordmark-mark {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--navy);
  border-radius: 50%;
  font-family: var(--display);
  font-size: .8rem;
  letter-spacing: -.04em;
}
.header-cta {
  color: var(--navy-deep);
  font-weight: 700;
  text-underline-offset: .25em;
  text-decoration-thickness: 1px;
}
.cta-narrow { display: none; }

.hero {
  min-height: calc(100vh - 80px);
  min-height: calc(100svh - 80px);
  padding: clamp(4rem, 9vw, 8.5rem) 2rem 2rem;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 2rem;
  right: clamp(-7rem, -3vw, -2rem);
  width: clamp(14rem, 29vw, 28rem);
  aspect-ratio: 1;
  border: 1px solid rgba(40, 75, 97, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(150, 50, 61, .025), 0 0 0 8rem rgba(40, 75, 97, .02);
  pointer-events: none;
}
.hero-inner,
.section,
.final-cta-inner,
.site-footer { max-width: var(--max); margin-inline: auto; }
.eyebrow {
  margin: 0 0 1.4rem;
  color: var(--navy);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow.light { color: #d9e5eb; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--display); font-weight: 400; letter-spacing: -.025em; }
h1 {
  max-width: 1080px;
  margin-bottom: clamp(3.5rem, 8vw, 7rem);
  font-size: clamp(3.15rem, 7vw, 7rem);
  line-height: .96;
}
h1 em { color: var(--oxblood); font-weight: 400; }
.hero-note {
  max-width: 800px;
  padding: .2rem 0 .2rem 2rem;
  border-left: 6px solid var(--oxblood);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}
.hero-note p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.25;
}
.text-link {
  white-space: nowrap;
  color: var(--navy-deep);
  font-weight: 700;
  text-underline-offset: .25em;
}
.hero-rule {
  max-width: var(--max);
  margin: clamp(3rem, 8vh, 6rem) auto 0;
  border-top: 1px solid var(--line);
  padding-top: .65rem;
  display: flex;
  justify-content: space-between;
  color: var(--oxblood);
  font-family: var(--display);
  font-size: .9rem;
}

.section { padding: clamp(5rem, 10vw, 9rem) 2rem; }
.section-intro {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}
.section-intro h2,
.investment h2,
.strategy h2,
.about h2,
.final-cta h2 {
  font-size: clamp(2.65rem, 5vw, 5rem);
  line-height: 1.02;
  margin-bottom: 1.5rem;
}
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: .85fr 1.3fr .95fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step {
  padding: 2.5rem clamp(1.2rem, 2.4vw, 2.5rem) 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}
.step + .step { border-left: 1px solid var(--line); }
.step-number {
  color: var(--oxblood);
  font-family: var(--display);
  font-size: 2.35rem;
  line-height: 1;
}
.step h3 {
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.15;
}
.step p { margin-bottom: 0; }
.example {
  margin: 1.7rem 0 0;
  padding: 1.25rem 1.4rem 1.4rem;
  background: var(--peach);
  border: 0;
}
.example-label {
  display: block;
  margin-bottom: .5rem;
  color: var(--oxblood);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.investment {
  max-width: none;
  background: var(--navy-deep);
  color: var(--white);
}
.investment-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
}
.investment h2 { max-width: 600px; }
.price {
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,.24);
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
}
.price span {
  font-family: var(--body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.investment-copy > p:not(.price) { max-width: 600px; font-size: 1.2rem; }
.included { margin: 2rem 0 0; padding: 0; list-style: none; }
.included li { padding: .65rem 0 .65rem 1.65rem; position: relative; border-bottom: 1px solid rgba(255,255,255,.12); }
.included li::before { content: "—"; position: absolute; left: 0; color: #f0b9a0; }

.strategy {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, .65fr);
  gap: 1.5rem;
}
.strategy-card {
  padding: clamp(2.2rem, 5vw, 5rem);
  background: var(--navy);
  color: var(--white);
}
.strategy-card h2 { max-width: 760px; }
.strategy-card > p:last-child { max-width: 620px; margin-bottom: 0; font-size: 1.2rem; }
.strategy-aside {
  padding: 2rem;
  background: var(--peach);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.large-number { color: var(--oxblood); font-family: var(--display); font-size: clamp(7rem, 15vw, 12rem); line-height: .75; letter-spacing: -.08em; }
.strategy-aside p { margin: 3rem 0 0; }

.about {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(3rem, 10vw, 9rem);
}
.portrait-frame { position: relative; max-width: 470px; padding: 1rem 1rem 4.5rem; background: var(--white); box-shadow: 0 24px 60px rgba(45, 35, 28, .18); transform: rotate(-1.5deg); }
.portrait-frame img { width: 100%; height: auto; aspect-ratio: 4 / 4.65; object-fit: cover; object-position: 50% 15%; filter: saturate(.9) contrast(.98); }
.portrait-caption { position: absolute; left: 1.3rem; bottom: 1rem; color: var(--navy-deep); font-size: .82rem; font-weight: 700; letter-spacing: .06em; line-height: 1.25; text-transform: uppercase; }
.about-lede { max-width: 650px; font-family: var(--display); font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1.25; }
.about-copy > p:not(.eyebrow, .about-lede) { max-width: 600px; }
.signature { margin-top: 2rem; color: var(--oxblood); font-family: var(--display); font-size: 2.5rem; font-style: italic; }

.final-cta {
  padding: clamp(5.5rem, 11vw, 10rem) 2rem;
  background: var(--oxblood);
  color: var(--white);
  text-align: center;
}
.final-cta h2 { max-width: 1000px; margin-inline: auto; }
.final-cta p:not(.eyebrow) { max-width: 610px; margin: 0 auto 2.5rem; font-size: 1.15rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 58px;
  padding: .9rem 1.5rem;
  border: 2px solid var(--white);
  background: var(--white);
  color: var(--oxblood);
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.button:hover { background: transparent; color: var(--white); transform: translateY(-2px); }

.site-footer {
  padding: 1.5rem 2rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #665d55;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .section-intro { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step + .step { border-left: 0; border-top: 1px solid var(--line); }
  .investment-grid, .about { grid-template-columns: 1fr; }
  .about-copy { order: -1; }
  .portrait-frame { margin-inline: auto; }
}

@media (max-width: 680px) {
  body { font-size: 16.5px; line-height: 1.48; }
  .site-header { min-height: 60px; padding: .65rem 1rem; gap: .6rem; }
  .wordmark { min-width: 0; gap: .55rem; font-size: .69rem; letter-spacing: .045em; }
  .wordmark-mark { width: 2rem; height: 2rem; flex: 0 0 2rem; font-size: .7rem; }
  .wordmark > span:last-child { max-width: 138px; line-height: 1.08; }
  .header-cta { flex: 0 0 auto; font-size: .84rem; white-space: nowrap; }
  .cta-wide { display: none; }
  .cta-narrow { display: inline; }

  .hero { padding: 2.8rem 1.1rem 1.2rem; }
  .hero::before { top: 1rem; right: -5rem; width: 13rem; box-shadow: 0 0 0 2rem rgba(150,50,61,.02); }
  .eyebrow { margin-bottom: .9rem; font-size: .72rem; letter-spacing: .1em; }
  h1 { max-width: 25rem; margin-bottom: 1.8rem; font-size: clamp(2.35rem, 10.8vw, 2.75rem); line-height: .99; }
  .hero-note { padding: .1rem 0 .1rem .9rem; border-left-width: 4px; grid-template-columns: 1fr; gap: .75rem; }
  .hero-note p { font-size: 1.28rem; line-height: 1.25; }
  .text-link { white-space: normal; font-size: .94rem; }
  .hero-rule { margin-top: 1.8rem; }

  .section { padding: 3.25rem 1.1rem; }
  .section-intro { gap: .35rem; margin-bottom: 1.9rem; }
  .section-intro h2, .investment h2, .strategy h2, .about h2, .final-cta h2 {
    margin-bottom: 1rem;
    font-size: clamp(2.15rem, 9.8vw, 2.6rem);
    line-height: 1.02;
  }

  .steps { gap: .75rem; border: 0; }
  .step, .step + .step {
    padding: 1.15rem;
    border: 1px solid var(--line);
    background: rgba(255,250,243,.48);
    grid-template-columns: 2rem 1fr;
    gap: .7rem;
  }
  .step-number { font-size: 1.8rem; }
  .step h3 { margin-bottom: .55rem; font-size: 1.2rem; }
  .example { margin-top: 1rem; padding: .9rem 1rem 1rem; }

  .investment-grid { gap: 1.6rem; }
  .price { margin-bottom: 1rem; padding-bottom: 1rem; font-size: 3.25rem; }
  .investment-copy > p:not(.price), .strategy-card > p:last-child { font-size: 1.06rem; }
  .included { margin-top: 1.25rem; }
  .included li { padding-block: .5rem; }

  .strategy { grid-template-columns: 1fr; gap: 0; }
  .strategy-card { padding: 1.6rem 1.25rem 1.8rem; }
  .strategy-aside {
    min-height: 0;
    padding: 1rem 1.25rem;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .large-number { flex: 0 0 auto; font-size: 3.5rem; line-height: .8; letter-spacing: -.06em; }
  .strategy-aside p { margin: 0; font-size: .94rem; line-height: 1.3; }

  .about { gap: 1.8rem; }
  .about-copy { order: 0; }
  .portrait-frame {
    width: min(250px, 78vw);
    max-width: 250px;
    margin-inline: auto;
    padding: .55rem .55rem 3rem;
    box-shadow: 0 12px 30px rgba(45,35,28,.15);
    transform: none;
  }
  .portrait-frame img { height: 245px; aspect-ratio: auto; object-position: 50% 16%; }
  .portrait-caption { left: .9rem; bottom: .75rem; font-size: .7rem; }
  .about-lede { font-size: 1.5rem; }
  .signature { margin-top: 1.2rem; }

  .final-cta { padding: 3.4rem 1.1rem; }
  .final-cta p:not(.eyebrow) { margin-bottom: 1.6rem; font-size: 1rem; }
  .button { width: 100%; min-height: 54px; padding: .8rem .75rem; }
  .site-footer { flex-direction: column; gap: .35rem; padding: 1.1rem; font-size: .68rem; }
}

@media (max-width: 340px) {
  .site-header { padding-inline: .75rem; }
  .wordmark > span:last-child { max-width: 116px; }
  .hero, .section, .final-cta { padding-inline: 1rem; }
  .step, .step + .step { padding: 1rem .9rem; }
  .button { font-size: .92rem; }
}

/* V3 desktop editorial scale. Isolated above the accepted mobile/tablet V2 range. */
@media (min-width: 901px) {
  :root {
    --type-display-hero: clamp(4.75rem, 5.6vw, 5.375rem);
    --type-display-section: clamp(3.375rem, 4.15vw, 4rem);
    --type-supporting: clamp(1.75rem, 2.1vw, 2rem);
    --type-body-desktop: clamp(1.15625rem, 1.33vw, 1.25rem);
    --type-eyebrow: clamp(.875rem, .98vw, .9375rem);
    --type-micro: clamp(.8125rem, .9vw, .875rem);
    --space-section: clamp(5rem, 7vw, 6.5rem);
  }

  body { font-size: var(--type-body-desktop); line-height: 1.54; }
  .site-header { min-height: 76px; padding-block: 1rem; }
  .wordmark, .header-cta { font-size: 1rem; }
  .wordmark-mark { font-size: .875rem; }

  .hero { min-height: auto; padding: clamp(4.5rem, 6.2vw, 6.25rem) 2rem clamp(3.75rem, 5.5vw, 5rem); }
  .hero::before { width: clamp(15rem, 25vw, 24rem); }
  .eyebrow { margin-bottom: 1.2rem; font-size: var(--type-eyebrow); }
  h1 {
    max-width: 1030px;
    margin-bottom: clamp(2.75rem, 4vw, 3.75rem);
    font-size: var(--type-display-hero);
    line-height: .98;
  }
  .hero-note { max-width: 900px; padding-left: 1.6rem; gap: 2.5rem; }
  .hero-note p { font-size: var(--type-supporting); line-height: 1.24; }
  .text-link { font-size: 1rem; }
  .hero-rule { margin-top: clamp(2.75rem, 4vw, 4rem); font-size: var(--type-micro); }

  .section { padding: var(--space-section) 2rem; }
  .section-intro { grid-template-columns: .8fr 2.2fr; margin-bottom: clamp(3rem, 4.5vw, 4.25rem); }
  .section-intro h2, .investment h2, .strategy h2, .about h2, .final-cta h2 {
    font-size: var(--type-display-section);
    line-height: 1.04;
    margin-bottom: 1.35rem;
  }
  .section-intro h2 { max-width: 820px; }
  .step { padding-block: 2.25rem 2.6rem; }
  .step-number { font-size: 2.5rem; }
  .step h3 { font-size: clamp(1.4375rem, 1.7vw, 1.625rem); line-height: 1.18; margin-bottom: .85rem; }
  .example { margin-top: 1.5rem; }
  .example-label { font-size: var(--type-micro); }

  .investment-grid { gap: clamp(3.5rem, 6vw, 6.5rem); }
  .investment h2 { max-width: 560px; }
  .price { font-size: clamp(3.75rem, 5vw, 4.75rem); }
  .price span { font-size: var(--type-micro); }
  .investment-copy > p:not(.price), .strategy-card > p:last-child { font-size: 1.25rem; line-height: 1.5; }
  .included { margin-top: 1.6rem; }
  .included li { padding-block: .55rem; }

  .strategy { gap: 1.75rem; }
  .strategy-card { padding: clamp(3.25rem, 4.5vw, 4.25rem); }
  .strategy-card h2 { max-width: 700px; }
  .strategy-aside { padding: 2.25rem; }
  .large-number { font-size: clamp(8rem, 11vw, 10rem); }
  .strategy-aside p { margin-top: 2.25rem; font-size: 1.125rem; }

  .about { gap: clamp(3.5rem, 7vw, 7rem); }
  .about h2 { margin-bottom: 1.5rem; }
  .about-lede { font-size: clamp(1.875rem, 2.4vw, 2.25rem); line-height: 1.28; }
  .about-copy > p:not(.eyebrow, .about-lede) { font-size: 1.1875rem; }
  .portrait-caption { font-size: var(--type-micro); }

  .final-cta { padding: clamp(5rem, 7.2vw, 6.75rem) 2rem; }
  .final-cta h2 { max-width: 920px; font-size: clamp(3.375rem, 4vw, 3.875rem); }
  .final-cta p:not(.eyebrow) { font-size: 1.2rem; margin-bottom: 2rem; }
  .button { min-height: 60px; padding-inline: 1.65rem; font-size: 1rem; }
  .site-footer { font-size: var(--type-micro); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
