@font-face {
  font-family: Inter;
  src: url("/assets/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("/assets/source-serif-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("/assets/source-serif-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
:root {
  --canvas: #f7f3eb;
  --paper: #fcfbf8;
  --ink: #1c2833;
  --muted: #56616b;
  --copper: #824827;
  --light-copper: #e0ad89;
  --line: #ddd8cf;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: #ecd1bc;
  color: var(--ink);
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
a,
button {
  touch-action: manipulation;
}
a:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 5px;
}
h1,
h2,
h3,
p,
dl,
dd,
ol,
blockquote {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  text-wrap: balance;
}
h1 {
  font-size: clamp(3.4rem, 5.5vw, 5.1rem);
  letter-spacing: -0.035em;
  max-width: 830px;
}
h1 em {
  color: var(--copper);
  font-weight: 400;
  margin-inline-end: 0.02em;
  letter-spacing: -0.015em;
}
.headline-ending {
  display: block;
}
.count-phrase {
  white-space: nowrap;
}
h2 {
  font-size: clamp(2.25rem, 3.3vw, 3.25rem);
  letter-spacing: -0.032em;
}
h3 {
  font-size: 1.55rem;
  letter-spacing: -0.015em;
}
.wrap {
  width: min(1248px, calc(100% - 112px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  line-height: 1.8;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.wordmark {
  color: var(--ink);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.52rem;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 0.25em;
}
.wordmark span {
  position: relative;
  color: var(--copper);
}
.wordmark span::after {
  content: "";
  height: 1px;
  background: #a6633c;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.82rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.nav-link:hover,
.text-link:hover {
  color: var(--copper);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 28px;
  border: 1px solid var(--ink);
  border-radius: 5px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 0.16s ease,
    box-shadow 0.16s ease;
}
.button:hover {
  background: #2e4053;
  box-shadow: 0 8px 22px #1c283315;
}
.button-small {
  min-height: 44px;
  padding: 10px 22px;
  font-size: 0.8125rem;
}
.skip-link {
  position: absolute;
  left: 24px;
  top: 12px;
  transform: translateY(-200%);
  z-index: 20;
  padding: 10px 18px;
  background: var(--ink);
  color: white;
}
.skip-link:focus {
  transform: none;
}
.hero {
  padding-block: 68px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 236px;
  gap: 8.5%;
}
.hero .eyebrow {
  margin-bottom: 23px;
}
.hero-description {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 610px;
  margin-top: 27px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 32px;
}
.text-link {
  font-size: 0.86rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  text-decoration: underline;
  gap: 12px;
}
.text-link span {
  font-size: 1.1rem;
}
.pilot-note {
  margin-top: 14px;
  font-size: 0.8125rem;
  color: var(--muted);
}
.hero-notes {
  border-left: 1px solid var(--line);
  padding-left: 34px;
  align-self: center;
}
.hero-notes > .eyebrow {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.hero-notes dl > div + div {
  margin-top: 25px;
}
.hero-notes dt {
  font-size: 0.8125rem;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.note-number {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--copper);
}
.hero-notes dd {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 5px;
}
.section {
  padding-block: 72px;
}
.how-section {
  border-top: 1px solid var(--line);
}
.section-intro {
  display: grid;
  grid-template-columns: 1fr 3.8fr;
  gap: 32px;
  align-items: start;
}
.section-intro .eyebrow {
  padding-top: 8px;
}
.section-intro > p:last-child {
  font-size: 0.93rem;
  color: var(--muted);
  padding-top: 6px;
}
.steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 35px;
  margin-top: 42px;
}
.steps li {
  border-top: 1px solid var(--line);
  padding-top: 19px;
}
.step-number {
  font-size: 0.76rem;
  color: var(--copper);
  font-weight: 500;
  display: block;
  margin-bottom: 18px;
}
.steps h3 {
  font-size: 1.46rem;
  margin-bottom: 14px;
}
.steps p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--muted);
}
.browser-note {
  font-size: 0.76rem;
  color: var(--muted);
  margin-top: 35px;
}
.coaching-section {
  padding: 64px 0 48px;
  background: var(--ink);
  color: var(--paper);
}
.coaching-section .eyebrow {
  color: var(--light-copper);
}
.coaching-intro {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 10%;
  align-items: end;
  margin-bottom: 28px;
}
.coaching-intro h2 {
  margin-top: 15px;
}
.coaching-intro > p {
  color: #d0d4d5;
  font-size: 0.98rem;
  max-width: 370px;
  line-height: 1.8;
}
.sample-label {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid #65717a;
  border-bottom: 1px solid #65717a;
  font-size: 0.75rem;
  font-weight: 600;
}
.sample-label span {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #c0c6c9;
}
.example {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 35px;
}
.answer-example {
  padding: 12px 64px 10px 0;
}
.answer-example h3 {
  font-size: 1.8rem;
  margin-top: 18px;
  line-height: 1.35;
}
.answer-example blockquote {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.43rem;
  line-height: 1.65;
  color: #e6e5df;
  margin-top: 24px;
}
.sample-context {
  font-size: 0.8125rem;
  color: #bcc3c8;
  margin-top: 25px;
}
.feedback-example {
  border-left: 1px solid #65717a;
  padding-left: 56px;
}
.feedback-item {
  padding: 10px 0 24px;
}
.feedback-item h3 {
  font-size: 1.45rem;
  margin: 10px 0 4px;
}
.feedback-item > p:last-child {
  font-size: 0.9375rem;
  margin-top: 6px;
  color: #d0d4d5;
  line-height: 1.85;
}
.feedback-item a {
  color: #f0c8aa;
  text-decoration-thickness: 1px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  min-height: 48px;
  padding-block: 8px;
  font-size: 0.9375rem;
}
.source-reference span {
  font-size: 0.75rem;
  color: #d0d4d5;
}
.quote-return {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  margin-top: 12px;
  font-size: 0.8125rem;
  color: #f0c8aa;
}
.answer-example span[id] {
  text-decoration: underline;
  text-decoration-color: #65717a;
  text-underline-offset: 5px;
  scroll-margin-block: 6rem;
}
#sample-feedback {
  scroll-margin-block: 3rem;
}
.hero .browser-note {
  margin-top: 8px;
  max-width: 510px;
  font-size: 0.8125rem;
}
.coaching-section a:focus-visible,
.coaching-section [tabindex]:focus-visible {
  outline-color: #f0c8aa;
}
.answer-example span:target {
  background: #374b59;
  outline: 2px solid var(--light-copper);
  outline-offset: 3px;
}
#sample-feedback:target {
  outline: 2px solid var(--light-copper);
  outline-offset: 5px;
}
.next-step {
  background: #2b3b49;
  border-left: 2px solid var(--light-copper);
  padding: 22px 26px;
}
.next-step > p:last-child {
  font-size: 0.96rem;
  line-height: 1.8;
  margin-top: 10px;
}
.next-step strong {
  font-weight: 600;
}
.coaching-caveat {
  font-size: 0.8125rem;
  color: #c0c6c9;
  margin-top: 28px;
}
.takeaway-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14%;
  padding-block: 76px;
}
.takeaway-intro h2 {
  margin-top: 16px;
}
.takeaway-intro > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
  max-width: 410px;
}
.takeaway-rule {
  display: block;
  background: var(--copper);
  height: 2px;
  width: 52px;
  margin-top: 36px;
}
.takeaways > div {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.takeaways dt {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.3;
}
.takeaways dd {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 9px;
}
.takeaways strong {
  font-weight: 500;
  color: var(--ink);
}
.closing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 10%;
  padding-block: 65px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.closing h2 {
  margin-top: 15px;
  font-size: clamp(2.2rem, 3vw, 2.8rem);
}
.closing-action {
  justify-self: end;
}
.closing-action > p {
  font-size: 0.79rem;
  color: var(--muted);
  margin-top: 14px;
}
.closing-action > p + p {
  margin-top: 4px;
}
.closing-action a:not(.button) {
  display: inline-block;
  min-height: 32px;
  padding-block: 5px;
  color: var(--copper);
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-block: 38px 42px;
}
.site-footer p {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 8px;
}
.site-footer .wordmark {
  font-size: 1.35rem;
}
.footer-details {
  text-align: right;
  font-size: 0.76rem;
}
.footer-details > a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}
.legal-links {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.legal-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
@media (min-width: 1550px) {
  .hero {
    padding-block: 80px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 6%;
    padding-block: 56px;
  }
  .hero-notes {
    padding-left: 24px;
  }
  .section-intro {
    grid-template-columns: 1fr 2fr;
  }
  .section-intro > p:last-child {
    grid-column: 2;
  }
  .steps {
    gap: 24px;
  }
  .answer-example {
    padding-right: 35px;
  }
  .feedback-example {
    padding-left: 35px;
  }
  .coaching-intro {
    gap: 8%;
  }
  .takeaway-section {
    gap: 8%;
  }
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    min-height: 88px;
    gap: 12px;
  }
  .wordmark {
    font-size: 1.22rem;
  }
  .nav-link {
    display: none;
  }
  nav {
    gap: 0;
  }
  .button-small {
    padding-inline: 16px;
    font-size: 0.8125rem;
  }
  .hero {
    display: block;
    padding-block: 58px 48px;
  }
  .hero > .hero-copy > .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }
  h1 {
    font-size: clamp(2.85rem, 8.6vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }
  .hero-description {
    font-size: 1rem;
    margin-top: 25px;
    max-width: 550px;
  }
  .actions {
    gap: 22px;
    margin-top: 25px;
  }
  .button {
    min-height: 50px;
    padding-inline: 23px;
  }
  .button-small {
    min-height: 44px;
    padding-inline: 16px;
  }
  .text-link {
    font-size: 0.8rem;
  }
  .hero-notes {
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 24px 0 0;
    margin-top: 37px;
  }
  .hero-notes > .eyebrow {
    display: none;
  }
  .hero-notes dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .hero-notes dl > div + div {
    margin: 0;
  }
  .hero-notes dt {
    display: block;
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .note-number {
    font-size: 1.6rem;
    display: block;
    margin-bottom: 5px;
  }
  .hero-notes dd {
    font-size: 0.75rem;
    line-height: 1.6;
    margin-top: 9px;
  }
  .section {
    padding-block: 50px;
  }
  .section-intro {
    display: block;
  }
  .section-intro h2 {
    margin-top: 15px;
  }
  .section-intro > p:last-child {
    margin-top: 20px;
    max-width: 450px;
  }
  h2 {
    font-size: 2.15rem;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 30px 26px;
    margin-top: 34px;
  }
  .step-number {
    margin-bottom: 17px;
  }
  .steps h3 {
    font-size: 1.28rem;
  }
  .steps p {
    font-size: 0.9375rem;
  }
  .browser-note {
    font-size: 0.8125rem;
    margin-top: 28px;
  }
  .coaching-section {
    padding-block: 51px 42px;
  }
  .coaching-intro {
    display: block;
    margin-bottom: 29px;
  }
  .coaching-intro h2 {
    margin-top: 15px;
  }
  .coaching-intro > p {
    font-size: 0.89rem;
    margin-top: 22px;
    max-width: 450px;
  }
  .sample-label {
    display: block;
    line-height: 1.8;
  }
  .sample-label span {
    display: block;
    margin-top: 5px;
    max-width: 290px;
  }
  .example {
    display: block;
    margin-top: 26px;
  }
  .answer-example {
    padding: 0 0 30px;
  }
  .answer-example h3 {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .answer-example blockquote {
    font-size: 1.22rem;
    line-height: 1.7;
    margin-top: 21px;
  }
  .sample-context {
    font-size: 0.8125rem;
  }
  .feedback-example {
    border-left: none;
    border-top: 1px solid #65717a;
    padding: 25px 0 0;
  }
  .feedback-item h3 {
    font-size: 1.38rem;
  }
  .feedback-item > p:last-child {
    font-size: 0.9375rem;
  }
  .next-step {
    padding: 20px;
  }
  .coaching-caveat {
    font-size: 0.8125rem;
    line-height: 1.8;
    margin-top: 27px;
  }
  .takeaway-section {
    display: block;
    padding-block: 54px;
  }
  .takeaway-intro > p:not(.eyebrow) {
    font-size: 0.94rem;
    margin-top: 20px;
  }
  .takeaway-rule {
    margin-top: 25px;
  }
  .takeaways {
    margin-top: 33px;
  }
  .takeaways > div {
    padding-block: 20px;
  }
  .takeaways dt {
    font-size: 1.36rem;
  }
  .takeaways dd {
    font-size: 0.9375rem;
  }
  .closing {
    display: block;
    padding-block: 43px;
  }
  .closing h2 {
    font-size: 2rem;
  }
  .closing-action {
    margin-top: 25px;
  }
  .site-footer {
    display: block;
    padding-block: 27px;
  }
  .footer-details {
    text-align: left;
    margin-top: 20px;
  }
  .site-footer p {
    font-size: 0.75rem;
  }
  .footer-details > a {
    font-size: 0.75rem;
  }
  .legal-links {
    justify-content: flex-start;
  }
}
@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .wordmark {
    font-size: 1.14rem;
  }
  .button-small {
    padding-inline: 12px;
  }
  .actions {
    gap: 16px;
  }
  .actions .button {
    padding-inline: 20px;
  }
  .steps {
    gap: 26px 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
