:root {
  --ink: #172321;
  --muted: #64716d;
  --soft: #f3f7f4;
  --line: #d9e4df;
  --green: #0f6b58;
  --green-dark: #0a4c40;
  --teal: #8fcfc3;
  --navy: #213a50;
  --blue: #447c9d;
  --amber: #d59b47;
  --paper: #fffdf7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(18, 37, 32, 0.12);
  --display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

.site-header,
.hero,
.principles,
.directory-section,
.quiz-section,
.guides-section,
.method-section,
.newsletter-section,
.about-section,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-block;
  border-radius: 8px;
  background: url("assets/logo-guidepost-h-v2.svg") center / contain no-repeat;
  font-size: 0;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: 32px;
  width: auto;
}

.main-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 620;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--green-dark);
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 720;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 72px;
  padding: 58px 0 70px;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero p {
  max-width: 610px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfc;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 720;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 760;
  font-size: 15px;
}

.button svg,
.guide-list svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: var(--green);
  color: var(--white);
}

.button-primary:hover {
  background: var(--green-dark);
}

.button-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.hero-visual {
  position: relative;
  min-height: 630px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(23, 35, 33, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 35, 33, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, rgba(143, 207, 195, 0.2), transparent 46%),
    linear-gradient(160deg, #fbfcf9 0%, #edf4f0 100%);
  background-size: 36px 36px, 36px 36px, auto, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.photo-hero {
  min-height: 620px;
  background: #f8fbf9;
  box-shadow: none;
}

.photo-hero::before,
.photo-hero::after {
  content: none;
}

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

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(15, 107, 88, 0.16);
  border-radius: 8px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: -92px;
  bottom: -64px;
  width: 260px;
  height: 260px;
  border: 38px solid rgba(213, 155, 71, 0.22);
  border-radius: 50%;
}

.guide-board,
.source-card,
.work-symbols {
  position: absolute;
  z-index: 1;
}

.guide-board {
  left: 46px;
  top: 48px;
  width: min(450px, calc(100% - 92px));
  padding: 24px;
  border: 1px solid rgba(23, 35, 33, 0.12);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 22px 60px rgba(25, 48, 43, 0.16);
}

.board-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5ded0;
}

.board-header span,
.source-card span,
.career-stack span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.board-header strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
  line-height: 1.05;
}

.board-header small {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.board-focus {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px;
  gap: 18px;
  align-items: center;
  padding: 20px 0 18px;
}

.board-focus p {
  margin: 0;
  color: #42524e;
  font-size: 16px;
  line-height: 1.45;
}

.focus-meter {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 72%, #e8eadf 72% 100%);
}

.focus-meter span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--paper);
}

.career-stack {
  display: grid;
  gap: 10px;
}

.career-stack article {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px 14px;
  align-items: center;
  min-height: 76px;
  padding: 14px 16px;
  border: 1px solid #e5ded0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(27, 42, 37, 0.06);
}

.career-stack strong {
  grid-column: 1;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.1;
}

.career-stack small {
  grid-column: 1;
  grid-row: auto;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 780;
  white-space: nowrap;
}

.path-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: #445350;
  font-size: 12px;
  font-weight: 780;
}

.path-strip span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  background: #edf4f0;
}

.path-strip i {
  width: 24px;
  height: 1px;
  background: #b8c7c0;
}

.source-card {
  right: 34px;
  bottom: 92px;
  width: 238px;
  padding: 18px;
  border: 1px solid rgba(23, 35, 33, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 48px rgba(25, 48, 43, 0.14);
  backdrop-filter: blur(10px);
}

.source-card strong,
.source-card small {
  display: block;
}

.source-card strong {
  margin-top: 5px;
  font-size: 20px;
  line-height: 1.1;
}

.source-card small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.work-symbols {
  right: 44px;
  top: 68px;
  display: grid;
  gap: 12px;
}

.work-symbols span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 35, 33, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-dark);
  box-shadow: 0 12px 34px rgba(25, 48, 43, 0.12);
}

.work-symbols span:nth-child(2) {
  color: var(--amber);
}

.work-symbols span:nth-child(3) {
  color: var(--blue);
}

.work-symbols svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.principles article {
  min-height: 172px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-content: center;
  padding: 28px;
  background: var(--white);
}

.principles svg {
  width: 38px;
  height: 38px;
  grid-row: 1 / span 2;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principles h2,
.section-heading h2,
.about-section h2 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: 0;
  line-height: 1.05;
}

.principles h2 {
  font-size: 23px;
}

.principles p,
.section-heading p,
.about-section p {
  margin: 12px 0 0;
  color: var(--muted);
}

.directory-section,
.quiz-section,
.guides-section,
.method-section,
.newsletter-section,
.about-section {
  padding: 96px 0 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading h2,
.about-section h2 {
  font-size: clamp(34px, 4vw, 52px);
}

.section-heading p,
.about-section p {
  font-size: 18px;
}

.directory-tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.directory-tools label {
  display: grid;
  gap: 7px;
}

.directory-tools span,
.newsletter-form span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 780;
}

.directory-tools select,
.newsletter-form input {
  height: 48px;
  min-width: 0;
  padding: 0 14px;
  border: 1px solid #cfded8;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.career-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.career-row {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1.25fr 1.05fr 1.35fr 0.75fr 0.75fr 0.9fr;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.career-button {
  width: 100%;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.career-row:first-child {
  border-top: 0;
}

.career-head {
  min-height: 48px;
  background: var(--soft);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.career-button:hover,
.career-button.is-selected {
  background: #fbfdfc;
}

.career-button.is-selected {
  box-shadow: inset 4px 0 0 var(--green);
}

.career-row strong {
  color: var(--ink);
}

.career-row small {
  display: block;
  margin-top: 2px;
  color: #7c8985;
  font-size: 12px;
  font-weight: 620;
}

.score {
  color: var(--green-dark);
  font-weight: 760;
}

.moderate {
  color: var(--navy);
}

.empty-state {
  margin: 0;
  padding: 28px 24px;
  color: var(--muted);
}

.career-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 36px;
  margin-top: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.detail-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.career-detail h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.career-detail p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.data-facts {
  margin-top: 20px;
}

.data-facts dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.data-facts div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.data-facts dt {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.data-facts dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 720;
}

.data-facts dd span {
  color: var(--muted);
  font-weight: 600;
}

.data-facts p {
  margin-top: 12px;
  font-size: 13px;
}

.data-facts a {
  color: var(--green-dark);
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.unverified-note {
  padding: 14px;
  border: 1px solid #e1d6b8;
  border-radius: 8px;
  background: #fff9ea;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.detail-list div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-list dt {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
}

.detail-list dd {
  margin: 7px 0 0;
  color: var(--muted);
}

.detail-profile-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-note {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.quiz-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 70px;
  align-items: start;
}

.quiz-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.quiz-card label {
  display: grid;
  gap: 8px;
}

.quiz-card label span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 780;
}

.quiz-card input,
.quiz-card select {
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #cfded8;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
}

.quiz-card button {
  grid-column: 1 / -1;
  width: fit-content;
  margin-top: 8px;
}

.quiz-results {
  grid-column: 2;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quiz-results h3 {
  margin: 0;
  font-size: 24px;
}

.quiz-results p {
  margin: 10px 0 0;
  color: var(--muted);
}

.match-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.quiz-gate {
  display: grid;
  gap: 0;
}

.quiz-gate-preview {
  position: relative;
  overflow: hidden;
}

.quiz-gate-preview::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
}

.quiz-gate-prompt {
  padding: 20px 16px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  margin-top: 12px;
}

.quiz-gate-prompt strong {
  display: block;
  font-size: 16px;
  font-weight: 760;
  margin-bottom: 6px;
}

.quiz-gate-prompt p {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--muted);
}

.quiz-gate-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.quiz-gate-form input[type=email] {
  flex: 1 1 180px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-size: 15px;
  color: var(--ink);
}

.quiz-gate-form input[type=email]:focus {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

.quiz-gate-form .button {
  white-space: nowrap;
  font-size: 14px;
  padding: 10px 18px;
}

.quiz-gate-skip {
  display: block;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.match-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.match-card strong,
.match-card span,
.match-card small {
  display: block;
}

.match-card span,
.match-card small {
  color: var(--muted);
  font-size: 13px;
}

.match-card p {
  margin: 0;
}

.match-card button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 780;
}

.guide-list a {
  min-height: 100%;
  display: grid;
  grid-template-rows: 152px auto 1fr auto;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  font-size: 22px;
  font-weight: 760;
  line-height: 1.1;
}

.guide-list a:hover {
  color: var(--green-dark);
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.guide-list img {
  width: 100%;
  height: 152px;
  object-fit: cover;
}

.guide-list span,
.guide-list p,
.guide-action,
.guide-list svg {
  margin-right: 18px;
  margin-left: 18px;
}

.guide-list img,
.guide-list span,
.guide-list p {
  grid-column: 1 / -1;
}

.guide-list span {
  font-family: var(--display);
}

.guide-list p {
  margin: 0 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.guide-list svg {
  width: 20px;
  height: 20px;
  align-self: center;
  flex: 0 0 auto;
}

.guide-action {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 780;
}

.method-section {
  border-top: 1px solid var(--line);
  margin-top: 96px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.method-grid article {
  min-height: 190px;
  padding: 26px;
  background: var(--soft);
}

.method-grid h3 {
  margin: 0;
  font-size: 21px;
}

.method-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 48px;
  align-items: center;
}

.newsletter-section h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}

.newsletter-section p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-dark);
  font-weight: 760;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.newsletter-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.mailerlite-form-card {
  min-height: 260px;
  align-content: center;
}

.mailerlite-form-card .ml-embedded {
  width: 100%;
}

.newsletter-form label {
  display: grid;
  gap: 7px;
}

.newsletter-form button {
  width: 100%;
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 680;
}

.about-section {
  max-width: 900px;
  text-align: center;
}

.about-section p {
  font-size: 20px;
}

.site-footer {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 86px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer .brand {
  color: var(--ink);
}

.site-footer p {
  margin: 0;
  max-width: 260px;
  font-size: 13px;
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 10px;
}

.article-page {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 110px;
}

.article {
  color: var(--ink);
}

.career-profile-facts {
  margin: 36px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}

.career-profile-facts dl {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin: 0;
}

.career-profile-facts dt {
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

.career-profile-facts dd {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.career-profile-facts .fact-source {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}

.roadmap-waitlist-box {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  margin-top: 48px;
  align-items: start;
}

.roadmap-waitlist-content h2 {
  margin-top: 40px;
  font-size: 22px;
}

.roadmap-fact-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
  margin-bottom: 18px;
}

.roadmap-fact-card h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 760;
  color: var(--ink);
}

.roadmap-fact-card ul {
  margin: 0;
  padding-left: 18px;
}

.roadmap-fact-card li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 4px;
}

.roadmap-fact-card p {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 700px) {
  .roadmap-waitlist-box {
    grid-template-columns: 1fr;
  }
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 760;
}

.article h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.article-lead {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.5;
}

.article h2 {
  margin: 54px 0 0;
  font-size: 30px;
  line-height: 1.1;
}

.article p,
.article li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.article p {
  margin: 16px 0 0;
}

.article ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.related-guides {
  width: min(860px, calc(100% - 40px));
  margin: 72px auto 0;
  padding: 36px 0 0;
  border-top: 1px solid var(--line);
}

.related-guides h2 {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 760;
  color: var(--ink);
}

.related-guides ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.related-guides li a {
  color: var(--green-dark);
  font-size: 16px;
  font-weight: 620;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.related-guides p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

.article strong {
  color: var(--ink);
}

.article a:not(.back-link) {
  color: var(--green-dark);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.resource-kicker {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-callout {
  margin: 34px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.resource-callout h2 {
  margin-top: 0;
}

.starter-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 36px;
}

.starter-map-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.starter-map-grid h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.15;
}

.starter-map-grid p {
  margin: 8px 0;
}

.contact-card {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-card h2 {
  margin-top: 0;
}

.policy-date {
  margin-top: 46px;
  font-size: 14px;
  font-weight: 720;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .quiz-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero {
    min-height: auto;
  }

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

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

  .career-table {
    overflow-x: auto;
  }

  .career-row {
    min-width: 980px;
  }

  .directory-tools,
  .career-detail,
  .method-grid,
  .newsletter-section,
  .starter-map-grid {
    grid-template-columns: 1fr;
  }

  .quiz-results {
    grid-column: auto;
  }

  .guide-list a {
    grid-template-columns: 1fr auto;
    grid-template-rows: 180px auto 1fr auto;
  }

  .guide-list p {
    grid-column: auto;
    grid-row: auto;
  }

  .guide-list {
    grid-template-columns: 1fr;
  }

  .guide-list img {
    height: 180px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 0;
  }

  .article-page {
    padding-top: 56px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .principles,
  .directory-section,
  .quiz-section,
  .guides-section,
  .method-section,
  .newsletter-section,
  .about-section,
  .site-footer {
    width: calc(100% - 28px);
    max-width: 1180px;
  }

  .article-page {
    width: calc(100% - 28px);
  }

  .main-nav {
    gap: 16px;
    font-size: 14px;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    padding-top: 38px;
    overflow: hidden;
  }

  .hero-copy,
  .hero h1,
  .hero p,
  .hero-visual {
    max-width: calc(100vw - 28px);
  }

  .hero-copy {
    width: calc(100vw - 28px);
    min-width: 0;
  }

  .hero h1 {
    width: min(11.5ch, calc(100vw - 28px));
    font-size: 40px;
    line-height: 1;
  }

  .hero p {
    width: min(32ch, calc(100vw - 28px));
    overflow-wrap: break-word;
  }

  .hero p {
    font-size: 18px;
  }

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

  .hero-visual {
    min-height: 600px;
    width: 100%;
  }

  .photo-hero {
    min-height: 370px;
  }

  .hero-visual::before {
    inset: 16px;
  }

  .guide-board {
    left: 16px;
    top: 18px;
    width: calc(100% - 32px);
    padding: 18px;
  }

  .board-header {
    gap: 12px;
  }

  .board-header strong {
    font-size: 20px;
  }

  .board-header small {
    display: none;
  }

  .board-focus {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .board-focus p {
    width: auto;
    margin: 0;
    font-size: 13px;
  }

  .focus-meter {
    display: none;
  }

  .career-stack article {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .career-stack small {
    grid-column: 1;
    grid-row: auto;
    white-space: normal;
  }

  .path-strip {
    flex-wrap: wrap;
    gap: 8px;
  }

  .path-strip i {
    display: none;
  }

  .source-card {
    left: 28px;
    right: auto;
    bottom: 26px;
    width: min(246px, calc(100% - 56px));
  }

  .work-symbols {
    display: none;
  }

  .quiz-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .quiz-card button {
    width: 100%;
  }

  .career-table {
    overflow: visible;
  }

  .career-head {
    display: none;
  }

  .career-row {
    min-width: 0;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
    padding: 18px 16px;
  }

  .career-row strong {
    grid-column: 1 / -1;
    font-size: 16px;
  }

  .career-row span {
    display: grid;
    gap: 2px;
    font-size: 14px;
  }

  .career-row span::before {
    content: attr(data-label);
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .career-detail {
    padding: 20px;
  }

  .data-facts dl {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    padding: 20px;
  }
}

@media (max-width: 380px) {
  .brand {
    gap: 8px;
    font-size: 18px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 7px;
  }

  .main-nav {
    gap: 14px;
    font-size: 13px;
  }

  .header-cta {
    min-height: 40px;
    padding: 10px 14px;
  }
}

/* State wage widget on career profile pages */
.state-wages {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 18px;
  margin: 8px 0 12px;
}

.state-wages-intro {
  margin: 0 0 12px;
}

.state-wages-label {
  display: grid;
  gap: 6px;
  max-width: 320px;
  font-weight: 650;
}

.state-wages-label select {
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font: inherit;
  color: var(--ink);
}

.state-wages-median {
  margin: 14px 0 0;
  font-size: 18px;
}

.state-wages-links {
  margin: 12px 0 0;
  padding-left: 20px;
}

.state-wages-links li {
  margin: 6px 0;
}

.state-wages-links a {
  color: var(--green-dark);
  text-decoration: underline;
}

.state-wages .source-note {
  margin-top: 12px;
  margin-bottom: 0;
}

/* From-role section: start from the job you have now */
.from-role {
  margin: 56px auto 0;
  max-width: 1080px;
  padding: 0 24px;
}

.from-role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.from-role-grid a {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

.from-role-grid a:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.from-role-grid strong {
  font-size: 19px;
  font-weight: 760;
}

.from-role-grid span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

/* Roadmap CTA after quiz results */
.roadmap-cta {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  display: grid;
  gap: 10px;
  justify-items: start;
}

.roadmap-cta strong {
  font-size: 20px;
  font-weight: 760;
}

.roadmap-cta p {
  margin: 0;
  color: var(--muted);
}

/* Link from national career page to state guide */
.tx-page-link {
  border-left: 3px solid var(--green);
  padding: 8px 14px;
  background: var(--soft);
  border-radius: 0 6px 6px 0;
}
