:root {
  --color-background: #000;
  --color-surface: #fff;
  --color-text: #111;
  --color-text-muted: #565656;
  --color-border: rgba(255, 255, 255, 0.12);
  --color-accent: #c9ae73;
  --color-accent-deep: #8b6b2f;
  --color-accent-soft: #efe3c0;
  --shadow-card: 0 24px 48px rgba(0, 0, 0, 0.24);
  --page-max: 1180px;
  --radius-pill: 999px;
  --radius-card: 6px;
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-background);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  background: var(--color-background);
}

.container {
  width: min(100% - 32px, var(--page-max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.site-header__logo img {
  width: 116px;
  height: auto;
}

.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0;
}

.site-header__nav a {
  position: relative;
}

.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.hero {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.88) 45%, rgba(0, 0, 0, 0.2) 100%),
    var(--hero-image) right 18% top / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto auto -36px 0;
  width: 480px;
  height: 220px;
  background: radial-gradient(circle, rgba(201, 174, 115, 0.2) 0%, rgba(201, 174, 115, 0) 72%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  padding: 54px 0 96px;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: #fff;
}

.hero__kicker,
.kicker {
  margin: 0 0 14px;
  color: var(--color-accent-soft);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__heading {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 5vw, 5.25rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__heading-line {
  display: block;
}

.hero__highlight {
  color: var(--color-accent);
}

.hero__accent {
  width: min(360px, 72vw);
  margin: 4px 0 12px 0;
}

.hero__support {
  max-width: 620px;
  margin-top: 20px;
}

.hero__support-title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
}

.hero__support-title span,
.hero__support-copy strong {
  color: var(--color-accent);
}

.hero__support-copy {
  margin: 0;
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.55;
  font-weight: 600;
  text-transform: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-accent);
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(201, 174, 115, 0.28);
}

.button--ghost {
  background: transparent;
  color: var(--color-accent);
}

.hero__cta {
  margin-top: 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__actions .hero__cta {
  margin-top: 0;
}

.hero__secondary {
  color: #fff;
}

.hero__band {
  height: 68px;
  background:
    linear-gradient(90deg, #7d5d1f 0%, #ad8641 16%, #f0deb2 42%, #cfa45d 68%, #7d5d1f 100%);
  box-shadow:
    inset 0 14px 22px rgba(255, 255, 255, 0.22),
    inset 0 -16px 20px rgba(0, 0, 0, 0.18);
}

.section {
  padding: 56px 0;
}

.section--dark {
  background: #000;
  color: #fff;
}

.section--light {
  background: #fff;
  color: #000;
}

.proof-strip {
  background: #fffaf0;
  color: #111;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(17, 17, 17, 0.12);
}

.proof-stat {
  min-height: 120px;
  padding: 22px 18px;
  background: #fffaf0;
}

.proof-stat strong,
.result-card h3,
.contrast-card h3 {
  display: block;
  font-family: var(--font-heading);
  letter-spacing: 0;
}

.proof-stat strong {
  color: var(--color-accent-deep);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1;
}

.proof-stat span {
  display: block;
  margin-top: 8px;
  color: var(--color-text-muted);
  font-size: 0.94rem;
  line-height: 1.4;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-intro h2,
.positioning h2,
.journey h2,
.results-preview h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-intro p:not(.kicker),
.positioning p,
.journey p {
  color: var(--color-text-muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

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

.positioning__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: start;
}

.contrast__grid,
.results-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contrast-card,
.result-card {
  border-radius: var(--radius-card);
}

.contrast-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contrast-card h3,
.result-card h3 {
  margin: 0 0 18px;
  font-size: 1.32rem;
}

.contrast-card ul,
.apply-sidebar ul {
  padding-left: 20px;
}

.contrast-card li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.journey__steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
  counter-reset: journey;
}

.journey__steps li {
  min-height: 150px;
  padding: 18px 14px;
  background: #111;
  color: #fff;
  counter-increment: journey;
  border-radius: var(--radius-card);
}

.journey__steps li::before {
  content: counter(journey, decimal-leading-zero);
  display: block;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
}

.journey__steps span {
  display: block;
  font-weight: 700;
  line-height: 1.35;
}

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

.result-card {
  padding: 26px;
  background: #f7f2e8;
}

.result-card p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.center-cta {
  margin-top: 28px;
  text-align: center;
}

.opportunity__grid,
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 42px;
  align-items: start;
}

.opportunity__lead h2,
.faq h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.opportunity__lead h2 {
  color: var(--color-surface);
}

.opportunity__lead p:not(.kicker),
.faq p {
  color: var(--color-text-muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

.opportunity__lead p:not(.kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.opportunity__cards {
  display: grid;
  gap: 14px;
}

.opportunity-card {
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-surface);
}

.opportunity-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.32rem;
  line-height: 1;
  text-transform: uppercase;
}

.opportunity-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.faq {
  background: #f7f2e8;
}

.faq .button {
  margin-top: 10px;
}

.faq__items {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #fff;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 18px 20px;
  color: #111;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.faq-item summary::after {
  content: "+";
  color: var(--color-accent-deep);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--color-text-muted);
}

.services {
  position: relative;
  overflow: clip;
}

.services::before,
.services::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
}

.services::before {
  top: 36px;
  left: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 174, 115, 0.18) 0%, rgba(201, 174, 115, 0) 70%);
}

.services::after {
  right: -100px;
  bottom: 20px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201, 174, 115, 0.12) 0%, rgba(201, 174, 115, 0) 74%);
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 32px;
  text-align: center;
}

.section-heading__image {
  width: min(220px, 50vw);
}

.section-heading__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 26px 22px;
  background: #fff;
  color: #111;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.service-card__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
}

.service-card__title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.service-card__description {
  margin: 0 0 20px;
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.service-card__cta {
  margin-top: auto;
}

.featured {
  text-align: center;
  background: #fff;
}

.featured .section-intro {
  margin-bottom: 28px;
}

.featured__media {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.featured__title {
  margin: 0 0 28px;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.featured__logo-strip {
  width: min(100%, 1080px);
  margin: 0 auto;
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 12px;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.logo-cloud span {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 14px 12px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: #fff;
  color: #202020;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.logo-cloud img {
  width: min(100%, 142px);
  max-height: 42px;
  object-fit: contain;
}

.logo-cloud--placements {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.logo-cloud--placements span {
  min-height: 82px;
  background: #f7f5ef;
  color: #2a2a2a;
}

.newsletter {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
    #e8e5de;
}

.newsletter__panel {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  align-items: stretch;
  min-height: 420px;
  overflow: hidden;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.24);
}

.newsletter__card {
  position: relative;
  z-index: 1;
  padding: 34px 28px 28px;
  background: rgba(255, 255, 255, 0.96);
}

.newsletter__title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.newsletter__copy {
  margin: 0 0 12px;
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.newsletter__form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.newsletter__field,
.newsletter__input {
  width: 100%;
}

.newsletter__input {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  background: #fff;
}

.newsletter__disclaimer {
  margin: 16px 0 0;
  color: #8f8f8f;
  font-size: 0.84rem;
}

.newsletter__media {
  min-height: 100%;
  background:
    linear-gradient(90deg, rgba(35, 27, 15, 0.18) 0%, rgba(35, 27, 15, 0) 30%),
    var(--newsletter-image) center center / cover no-repeat;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.site-footer__inner {
  display: grid;
  gap: 18px;
  align-items: center;
  justify-items: center;
  padding: 18px 0 28px;
}

.site-footer__logo img {
  width: 132px;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  font-size: 12px;
}

.site-footer__copyright {
  font-size: 12px;
  color: #5a5a5a;
}

@media (max-width: 959px) {
  .services__grid,
  .proof-strip__grid,
  .contrast__grid,
  .positioning__grid,
  .results-preview__grid {
    grid-template-columns: 1fr;
  }

  .journey__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .newsletter__media {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 18px, var(--page-max));
  }

  .site-header__inner {
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0;
  }

  .site-header__logo img {
    width: 76px;
  }

  .site-header__nav {
    max-width: 230px;
    gap: 7px 10px;
    font-size: 9px;
    line-height: 1.2;
  }

  .hero {
    background-position: 78% 0;
  }

  .hero__inner {
    padding: 42px 0 54px;
  }

  .hero__content {
    max-width: 318px;
  }

  .hero__heading {
    font-size: 2.34rem;
    line-height: 1;
  }

  .hero__accent {
    width: 210px;
  }

  .hero__support {
    max-width: 304px;
  }

  .hero__support-copy {
    font-size: 1rem;
  }

  .hero__cta {
    margin-top: 20px;
  }

  .hero__band {
    height: 58px;
  }

  .section {
    padding: 42px 0;
  }

  .proof-stat {
    min-height: auto;
    padding: 18px 14px;
  }

  .contrast-card,
  .result-card {
    padding: 22px 18px;
  }

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

  .journey__steps li {
    min-height: auto;
  }

  .service-card {
    padding: 18px 14px;
  }

  .service-card__description {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .button {
    min-height: 34px;
    padding: 0 12px;
    font-size: 9px;
  }

  .newsletter__card {
    padding: 24px 18px;
  }

  .newsletter__media {
    min-height: 240px;
  }
}

.inner-page {
  background: #fff;
  color: #111;
}

.page-hero,
.about-hero,
.contact-hero,
.simple-download {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.72)),
    #111;
  color: #fff;
}

.page-hero__grid,
.about-hero__grid,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 38px;
  align-items: center;
}

.page-hero {
  padding: 64px 0;
}

.page-hero--center {
  text-align: center;
}

.page-hero--center .container,
.page-hero--samples .container {
  max-width: 900px;
}

.page-hero--services img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.page-hero h1,
.about-hero h1,
.contact-hero h1,
.simple-download h1,
.sample-letter h2,
.about-coaching h2,
.fit-card h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.page-hero p,
.about-hero p,
.contact-hero p,
.simple-download p {
  max-width: 680px;
  margin: 0 0 18px;
  font-size: 1.08rem;
  line-height: 1.65;
}

.kicker {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.package-card,
.resource-card,
.sample-card,
.testimonial-card,
.fit-card,
.simple-download__card,
.contact-hero__panel {
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 22px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.package-card h2,
.resource-card h2,
.sample-card h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.package-card__price {
  margin-bottom: 8px;
  color: var(--color-accent-deep);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.package-card__eyebrow {
  color: #111;
  font-weight: 700;
}

.package-card p,
.resource-card p,
.testimonial-card,
.story-copy p,
.two-column p {
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.package-card ul,
.fit-card ul {
  padding-left: 18px;
  margin: 8px 0 22px;
}

.package-card li,
.fit-card li {
  margin: 0 0 8px;
  line-height: 1.45;
}

.package-card .button {
  margin-top: auto;
}

.proof-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(17, 17, 17, 0.12);
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.proof-ledger__item {
  min-height: 190px;
  padding: 28px 24px;
  background: #fffaf0;
}

.proof-ledger__item h2,
.resource-feature h2 {
  margin: 0 0 12px;
  color: var(--color-accent-deep);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.7vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.proof-ledger__item p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.resource-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 30px;
  background: #f6f1e6;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-card);
}

.resource-feature img {
  width: 100%;
  max-height: 340px;
  object-fit: contain;
}

.resource-feature p {
  color: var(--color-text-muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button--secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(26, 38, 56, 0.18);
  box-shadow: none;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: rgba(26, 38, 56, 0.36);
}

.offer-section-heading {
  margin-bottom: 26px;
}

.offer-section-heading h2,
.offer-band__intro h2,
.offer-process__copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.offer-section-heading p,
.offer-band__intro p,
.offer-process__copy p,
.offer-card p,
.offer-process__list li {
  color: var(--color-text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.offer-band,
.offer-process {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.offer-card {
  padding: 22px 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.offer-card--muted {
  background: #f7f3eb;
}

.offer-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.offer-process__list {
  margin: 0;
  padding: 28px 28px 28px 48px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.offer-process__list li + li {
  margin-top: 12px;
}

.resource-grid,
.sample-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.resource-card,
.sample-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.resource-card img,
.sample-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f4f1ea;
}

.resource-card h2,
.resource-card p,
.resource-card .button,
.resource-card__price,
.sample-card h2 {
  margin-left: 20px;
  margin-right: 20px;
}

.resource-card h2,
.sample-card h2 {
  margin-top: 20px;
}

.resource-card .button {
  margin-bottom: 22px;
}

.resource-card__price {
  margin-bottom: 18px;
  color: var(--color-accent-deep);
  font-weight: 700;
}

.free-guides {
  text-align: center;
}

.free-guides h2 {
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.free-guides__grid,
.sample-tabs,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.sample-tabs {
  margin-top: 22px;
}

.sample-tabs a {
  min-height: 40px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonial-card {
  padding: 24px;
  background: #fff;
  color: #111;
}

.testimonial-card img {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card blockquote {
  margin: 0 0 18px;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

.testimonial-card__name,
.signature {
  color: #111 !important;
  font-weight: 700;
}

.sample-letter {
  text-align: center;
}

.sample-letter .container {
  max-width: 820px;
}

.sample-letter h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.sample-letter p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-hero {
  padding: 56px 0;
}

.about-hero img,
.two-column img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.story-copy {
  max-width: 820px;
}

.story-copy p {
  font-size: 1.02rem;
}

.about-coaching h2,
.fit-card h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.fit-card {
  padding: 28px;
  background: #f6f1e6;
}

.fit-card h3 {
  margin-top: 22px;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

.contact-hero,
.simple-download {
  min-height: 62vh;
  display: grid;
  align-items: center;
  padding: 64px 0;
}

.contact-hero__panel,
.simple-download__card {
  max-width: 760px;
  padding: 42px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  text-align: center;
}

.contact-hero__panel p,
.simple-download__card p {
  margin-left: auto;
  margin-right: auto;
}

.simple-download hr {
  width: 160px;
  margin: 22px auto;
  border: 0;
  border-top: 1px solid var(--color-accent);
}

.recruiter-hero {
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.72)),
    url("/images/00ea67a-d87f-4dfc-a8a2-6bb4f7c44f8_b07980b6-84d3-4763-967e-e6e0c2b38af9.jpg") center / cover;
  color: var(--color-surface);
}

.recruiter-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  gap: 32px;
  align-items: center;
}

.recruiter-hero h1 {
  max-width: 860px;
  color: var(--color-surface);
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}

.recruiter-hero p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.75;
}

.recruiter-hero__proof {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.recruiter-hero__proof h2 {
  margin-top: 0;
  color: var(--color-surface);
  font-size: 1.35rem;
}

.recruiter-hero__proof ul {
  margin: 0;
  padding-left: 19px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.section-intro--light h2,
.section-intro--light p {
  color: var(--color-surface);
}

.section-intro--light p {
  color: rgba(255, 255, 255, 0.8);
}

.recruiter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.recruiter-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 24px;
  background: #fff;
  color: #111;
  box-shadow: var(--shadow-card);
}

.recruiter-card__eyebrow,
.recruiter-card__pending {
  color: var(--color-accent-deep);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recruiter-card h3 {
  margin: 10px 0 12px;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.recruiter-card p {
  color: var(--color-text-muted);
  line-height: 1.65;
}

.recruiter-card__pending {
  display: inline-flex;
  margin-top: auto;
  padding-top: 18px;
}

.recruiter-cta {
  max-width: 820px;
  text-align: center;
}

.recruiter-cta h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.recruiter-cta p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.apply-hero {
  padding: 64px 0;
  background: #111;
  color: var(--color-surface);
}

.apply-hero__grid,
.apply-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 32px;
  align-items: start;
}

.apply-hero h1 {
  max-width: 860px;
  color: var(--color-surface);
  font-size: clamp(2.3rem, 4.4vw, 4.8rem);
}

.apply-hero p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.apply-note,
.apply-sidebar,
.apply-form {
  border: 1px solid rgba(30, 44, 53, 0.14);
  background: #fffaf0;
}

.apply-note {
  padding: 24px;
  color: var(--color-text);
}

.apply-note h2,
.apply-sidebar h2 {
  margin-top: 0;
  font-size: 1.28rem;
}

.apply-note p {
  color: var(--color-text-muted);
}

.apply-form,
.apply-sidebar {
  padding: 28px;
}

.apply-form {
  display: grid;
  gap: 20px;
}

.apply-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.apply-form label {
  display: grid;
  gap: 8px;
  color: var(--color-text);
  font-weight: 700;
}

.apply-form label span {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(30, 44, 53, 0.28);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-text);
  font: inherit;
}

.apply-form textarea {
  resize: vertical;
}

.apply-form input:disabled,
.apply-form select:disabled,
.apply-form textarea:disabled,
.apply-options input:disabled,
.apply-form button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.apply-options {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(30, 44, 53, 0.18);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.48);
}

.apply-options legend {
  padding: 0 8px;
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.4;
}

.apply-options label {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  color: var(--color-text-muted);
  font-weight: 600;
  line-height: 1.5;
}

.apply-options input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.apply-options--inline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.apply-options--inline legend {
  grid-column: 1 / -1;
}

.apply-form__status {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.apply-sidebar p {
  color: var(--color-text-muted);
  line-height: 1.65;
}

.apply-sidebar .button {
  margin: 4px 0 26px;
}

.apply-sidebar ul {
  margin-bottom: 26px;
}

.copilot-page {
  min-height: 100vh;
  background: #f4f3ef;
  color: #171717;
}

.copilot-hero {
  background: #111;
  color: #fff;
  border-bottom: 6px solid var(--color-accent);
}

.copilot-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 28px;
  align-items: end;
  padding: 42px 0;
}

.copilot-hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
}

.copilot-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.55;
}

.copilot-workspace {
  padding: 28px 0 36px;
}

.copilot-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 18px;
  align-items: start;
}

.copilot-main,
.copilot-sidebar {
  display: grid;
  gap: 14px;
}

.copilot-panel {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.copilot-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.copilot-panel__header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.copilot-panel__header span,
.copilot-label {
  color: #707070;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.copilot-status-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px;
}

.copilot-status-card div {
  display: grid;
  gap: 6px;
}

.copilot-status-card strong {
  color: #111;
  font-family: var(--font-heading);
  font-size: 1.02rem;
}

.copilot-status-card strong[data-tone="good"] {
  color: #1d7f4e;
}

.copilot-status-card strong[data-tone="warn"] {
  color: #a36f00;
}

.copilot-status-card strong[data-tone="risk"] {
  color: #b42318;
}

.copilot-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.copilot-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #111;
  border-radius: 4px;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-weight: 700;
}

.copilot-button:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.copilot-button--primary {
  background: #111;
  color: #fff;
}

.copilot-button--quiet {
  border-color: rgba(0, 0, 0, 0.2);
  color: #555;
}

.copilot-scoreboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.copilot-meter {
  position: relative;
  min-height: 104px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-card);
  background: #fff;
  padding: 14px;
}

.copilot-meter::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: var(--value);
  background: rgba(29, 127, 78, 0.16);
  transition: height 220ms ease;
}

.copilot-meter--risk::before {
  background: rgba(180, 35, 24, 0.16);
}

.copilot-meter--value::before {
  background: rgba(201, 174, 115, 0.26);
}

.copilot-meter span,
.copilot-meter strong {
  position: relative;
  z-index: 1;
  display: block;
}

.copilot-meter span {
  color: #656565;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.copilot-meter strong {
  margin-top: 18px;
  font-family: var(--font-heading);
  font-size: 2.25rem;
}

.copilot-interim {
  min-height: 24px;
  margin: 0;
  padding: 12px 16px 0;
  color: #8b6b2f;
  font-weight: 700;
}

.copilot-transcript {
  min-height: 280px;
  max-height: 48vh;
  overflow: auto;
  padding: 16px;
  color: #2d2d2d;
  line-height: 1.65;
  white-space: pre-wrap;
}

.copilot-note-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
}

.copilot-note-box textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 4px;
  padding: 12px;
  background: #fff;
}

.copilot-alerts ul,
.copilot-prompts ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px 16px 16px;
}

.copilot-alerts li,
.copilot-prompts li {
  border-left: 4px solid #707070;
  border-radius: 3px;
  background: #f7f7f5;
  padding: 10px 12px;
  line-height: 1.45;
}

.copilot-alerts li {
  display: grid;
  gap: 3px;
  list-style: none;
}

.copilot-alerts li[data-tone="good"] {
  border-left-color: #1d7f4e;
}

.copilot-alerts li[data-tone="warn"] {
  border-left-color: #a36f00;
}

.copilot-alerts li[data-tone="risk"] {
  border-left-color: #b42318;
}

.copilot-alerts strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.copilot-alerts span,
.copilot-prompts li {
  color: #3f3f3f;
  font-size: 0.92rem;
}

.copilot-prompts li {
  font-size: 1.22rem;
  line-height: 1.38;
}

.copilot-brief {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 14px 16px 16px;
}

.copilot-brief span {
  display: grid;
  gap: 2px;
  min-width: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 9px 6px;
  text-align: center;
  color: #666;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.copilot-brief strong {
  color: #111;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.copilot-privacy {
  padding: 0 0 34px;
}

.copilot-privacy p {
  margin: 0;
  color: #5a5a5a;
  font-size: 0.9rem;
  line-height: 1.55;
}

.copilot-kitten {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 80;
  display: grid;
  grid-template-columns: 180px minmax(340px, 520px);
  align-items: end;
  gap: 0;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.24));
  animation: kitten-pop 260ms ease-out both;
}

.copilot-kitten[hidden] {
  display: none;
}

.copilot-kitten__mascot {
  position: relative;
  z-index: 2;
  transform-origin: bottom center;
  animation: kitten-live-wave 1100ms ease-in-out infinite;
}

.copilot-kitten__mascot::before,
.copilot-kitten__mascot::after {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.copilot-kitten__mascot::before {
  inset: -38px -30px auto auto;
  width: 154px;
  height: 154px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 238, 150, 0.95) 0 4px, transparent 5px),
    conic-gradient(from 0deg, transparent 0 8deg, rgba(245, 171, 53, 0.95) 9deg 12deg, transparent 13deg 28deg, rgba(201, 174, 115, 0.9) 29deg 32deg, transparent 33deg 48deg);
  opacity: 0.9;
  animation: kitten-firework 1200ms ease-out infinite;
}

.copilot-kitten__mascot::after {
  inset: auto auto 26px -30px;
  width: 124px;
  height: 124px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0 3px, transparent 4px),
    conic-gradient(from 18deg, transparent 0 10deg, rgba(180, 35, 24, 0.82) 11deg 14deg, transparent 15deg 34deg, rgba(29, 127, 78, 0.8) 35deg 38deg, transparent 39deg 55deg);
  opacity: 0.72;
  animation: kitten-firework 1450ms ease-out infinite 160ms;
}

.copilot-kitten__mascot img {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center 44%;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #fff;
}

.copilot-kitten__card {
  position: relative;
  margin-left: -18px;
  border: 3px solid #111;
  border-radius: 6px;
  background: #fffdf4;
  padding: 22px 22px 20px 30px;
}

.copilot-kitten__card::before {
  content: "";
  position: absolute;
  left: -12px;
  bottom: 34px;
  width: 20px;
  height: 20px;
  border-left: 3px solid #111;
  border-bottom: 3px solid #111;
  background: #fffdf4;
  transform: rotate(45deg);
}

.copilot-kitten__close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.copilot-kitten__label {
  margin: 0 30px 8px 0;
  color: #8b6b2f;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.copilot-kitten__sign {
  display: block;
  margin: 0 26px 10px 0;
  color: #111;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.copilot-kitten__card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: #303030;
  font-size: 1.35rem;
  line-height: 1.35;
}

@keyframes kitten-pop {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes kitten-live-wave {
  0%,
  100% {
    transform: rotate(-2deg) translateY(0) scale(1);
  }
  50% {
    transform: rotate(3deg) translateY(-8px) scale(1.03);
  }
}

@keyframes kitten-firework {
  0% {
    opacity: 0;
    transform: scale(0.32) rotate(0deg);
  }
  25% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: scale(1.18) rotate(28deg);
  }
}

.blog-hero {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.62)),
    url("/images/e453646-558e-028-1ef6-7f338d205fcc_KAJABI_background_images_3_.png") center / cover no-repeat;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 30px;
  align-items: start;
}

.blog-list {
  display: grid;
  gap: 18px;
}

.blog-card,
.blog-sidebar,
.blog-post__content {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
}

.blog-card {
  padding: 28px;
}

.blog-card__meta,
.blog-post__meta {
  color: var(--color-accent-deep);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h2,
.blog-sidebar h2,
.blog-post h1 {
  font-family: var(--font-heading);
  letter-spacing: 0;
}

.blog-card h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.12;
}

.blog-card p {
  margin: 0 0 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.blog-card__button {
  margin-top: 16px;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: var(--color-accent-soft);
  color: #4c3916;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.blog-sidebar {
  position: sticky;
  top: 92px;
  padding: 24px;
}

.blog-sidebar h2 {
  margin: 0 0 14px;
  font-size: 1.1rem;
}

.blog-sidebar__cta {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-sidebar__cta p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

.blog-post__header {
  padding: 64px 0 48px;
  background: #0b0b0b;
  color: #fff;
}

.blog-post__header .container {
  max-width: 900px;
}

.blog-post__back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-post h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.blog-post__header .blog-tags {
  margin-top: 18px;
}

.blog-post__content {
  max-width: 860px;
  padding: clamp(28px, 5vw, 56px);
}

.blog-post__content p {
  margin: 0 0 1.15em;
  color: #202020;
  font-size: 1.05rem;
  line-height: 1.85;
}

.blog-post__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 1100px) {
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-ledger {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-band,
  .offer-process {
    grid-template-columns: 1fr;
  }

  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruiter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 820px) {
  .copilot-hero__grid,
  .copilot-layout,
  .copilot-note-box {
    grid-template-columns: 1fr;
  }

  .copilot-status-card,
  .copilot-scoreboard,
  .copilot-brief {
    grid-template-columns: 1fr;
  }

  .copilot-kitten {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .copilot-kitten__mascot img {
    width: 122px;
    height: 122px;
  }

  .copilot-kitten__sign {
    font-size: 1.72rem;
  }

  .copilot-kitten__card ul {
    font-size: 1.08rem;
  }

  .page-hero__grid,
  .about-hero__grid,
  .recruiter-hero__grid,
  .opportunity__grid,
  .faq__grid,
  .apply-hero__grid,
  .apply-layout,
  .two-column,
  .resource-grid,
  .sample-grid,
  .testimonial-grid,
  .recruiter-grid,
  .package-grid,
  .proof-ledger,
  .resource-feature {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .about-hero,
  .recruiter-hero,
  .contact-hero,
  .simple-download {
    padding: 42px 0;
  }

  .contact-hero__panel,
  .simple-download__card,
  .fit-card {
    padding: 26px 18px;
  }

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

  .offer-process__list {
    padding: 24px 22px 24px 40px;
  }

  .apply-form,
  .apply-sidebar,
  .apply-note {
    padding: 22px 18px;
  }

  .apply-form__grid {
    grid-template-columns: 1fr;
  }

  .apply-options--inline {
    grid-template-columns: 1fr;
  }
}
