:root {
  --ink: #10241f;
  --paper: #e4f1e6;
  --white: #ffffff;
  --muted: #415850;
  --forest: #006b5a;
  --forest-dark: #062c26;
  --forest-black: #071915;
  --emerald: #05836d;
  --moss: #597c37;
  --copper: #5f3328;
  --sea: #2f786d;
  --mint: #dff3df;
  --sky: #166f81;
  --plum: #5b4a6e;
  --line: rgba(6, 44, 38, 0.22);
  --surface: #ffffff;
  --surface-alt: #d8ead8;
  --surface-cool: #eff7e8;
  --surface-panel: #f7fcf5;
  --paper-warm: #e4f1e6;
  --section-shadow: 0 1px 0 rgba(255, 255, 255, 0.46) inset;
  --dark: #071915;
  --paper-grid: url("assets/synapticraft-paper-grid.png");
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(10, 72, 62, 0.08), rgba(7, 25, 21, 0.12)),
    var(--paper-grid) repeat;
  background-size: auto, 1128px 240px;
  font-family: "Aptos", "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.58;
}

a {
  color: inherit;
}

code {
  padding: 0.12em 0.32em;
  border: 1px solid rgba(21, 23, 20, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.78);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.92em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px 28px;
  border-bottom: 2px solid rgba(0, 107, 90, 0.34);
  background:
    linear-gradient(90deg, rgba(235, 249, 235, 0.92), rgba(226, 244, 225, 0.86)),
    var(--paper-grid) repeat-x;
  background-size: auto, 1128px 240px;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
}

.brand span {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand strong {
  font-family: Georgia, "Palatino Linotype", Palatino, serif;
  font-size: 21px;
  font-weight: 700;
}

.brand small {
  color: var(--forest);
  font: 900 10px/1 "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 900;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(23, 72, 61, 0.22);
  border-radius: 6px;
  background: var(--forest);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(23, 72, 61, 0.16);
}

.header-phone:hover,
.header-phone:focus-visible {
  background: #0f352d;
  color: #fff;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: clamp(620px, 78vh, 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 8px solid rgba(0, 107, 90, 0.42);
  background:
    linear-gradient(90deg, rgba(236, 246, 229, 0.94) 0%, rgba(211, 232, 213, 0.88) 48%, rgba(0, 107, 90, 0.3) 100%),
    var(--paper-grid) repeat;
  background-size: auto, 1128px 240px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 42px 42px;
  border: 2px solid rgba(0, 107, 90, 0.35);
  border-bottom-width: 10px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9px;
  background: rgba(0, 107, 90, 0.42);
  pointer-events: none;
}

.signal-board {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 83% 24%, rgba(0, 107, 90, 0.22), transparent 28%),
    repeating-linear-gradient(0deg, transparent 0 46px, rgba(0, 107, 90, 0.14) 46px 48px),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(0, 107, 90, 0.1) 46px 48px);
  background-size: auto, auto, auto;
}

.signal-line {
  display: none;
}

.line-a {
  top: 36%;
}

.line-b {
  top: 58%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 102px 28px 92px;
  display: block;
}

.hero-copy {
  position: relative;
  max-width: 900px;
}

.hero-copy::after {
  content: "";
  display: block;
  width: min(560px, 100%);
  height: 12px;
  margin-top: 42px;
  border-top: 2px solid rgba(0, 107, 90, 0.62);
  border-bottom: 6px solid rgba(0, 107, 90, 0.18);
  background: none;
}

.hero-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 980px;
  margin-top: 32px;
}

.hero-route-grid a {
  display: grid;
  gap: 9px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(0, 107, 90, 0.28);
  border-radius: 8px;
  background: rgba(247, 252, 245, 0.84);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(7, 25, 21, 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hero-route-grid a:hover,
.hero-route-grid a:focus-visible {
  border-color: rgba(0, 107, 90, 0.56);
  box-shadow: 0 18px 42px rgba(7, 25, 21, 0.12);
  transform: translateY(-1px);
}

.hero-route-grid span {
  color: var(--forest);
  font: 900 11px/1.2 "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  text-transform: uppercase;
}

.hero-route-grid strong {
  font-size: 17px;
  line-height: 1.32;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--forest);
  font: 900 12px/1.2 "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  font-family: Georgia, "Palatino Linotype", Palatino, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  color: var(--forest-dark);
  font-size: clamp(62px, 7.6vw, 100px);
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(241, 252, 245, 0.72);
}

h2 {
  max-width: 860px;
  font-size: 39px;
  font-weight: 700;
}

h3 {
  font-size: 20px;
  font-family: "Aptos", "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.lede {
  max-width: 800px;
  margin: 18px 0 0;
  font-size: 25px;
  font-weight: 850;
  color: #061a16;
}

.support,
.proofsignal-line,
.section-intro,
.about p,
.contact p,
.split p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.support {
  margin: 16px 0 0;
  color: #284940;
}

.proofsignal-line {
  margin: 20px 0 0;
  color: var(--forest);
  font-weight: 850;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button.primary {
  color: #fff;
  background: var(--forest);
  box-shadow: 0 14px 36px rgba(6, 92, 78, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #004d41;
  box-shadow: 0 20px 44px rgba(0, 77, 65, 0.28);
}

.button.secondary {
  border: 1px solid rgba(0, 107, 90, 0.42);
  background: rgba(255, 250, 237, 0.88);
  color: var(--forest-dark);
}

.button:hover,
.text-link:hover,
.topic-list a:hover,
.insight-channel:hover,
.article-card:hover {
  transform: translateY(-1px);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--forest);
  font-weight: 900;
}

.text-link.on-dark {
  color: #b8f0de;
}

.content {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 88px 28px;
}

.band {
  position: relative;
  background: var(--surface);
  border-top: 1px solid rgba(0, 107, 90, 0.3);
  box-shadow: var(--section-shadow);
}

.starter-offer {
  background:
    linear-gradient(90deg, rgba(0, 107, 90, 0.9), rgba(6, 44, 38, 0.92)),
    var(--paper-grid) repeat;
  background-size: auto, 1128px 240px;
  color: #fff;
}

.quick-review {
  background:
    linear-gradient(180deg, rgba(247, 252, 245, 0.96), rgba(223, 243, 223, 0.86)),
    var(--paper-grid) repeat;
  background-size: auto, 1128px 240px;
}

.quick-review-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: start;
}

.quick-review-form {
  box-shadow: 0 24px 64px rgba(7, 25, 21, 0.12);
}

.quick-review-form textarea {
  min-height: 96px;
}

.starter-offer .eyebrow,
.proofsignal .eyebrow,
.section-process .eyebrow,
.about .eyebrow,
.contact .eyebrow {
  color: #b8f0de;
}

.starter-offer h2,
.starter-offer p,
.proofsignal h2,
.proofsignal p,
.section-process h2,
.section-process p {
  color: #f3fbf5;
}

.starter-offer .button.secondary,
.proofsignal .button.secondary,
.section-process .button.secondary,
.contact .button.secondary {
  border-color: rgba(184, 240, 222, 0.54);
  background: rgba(255, 250, 237, 0.96);
  color: var(--forest-dark);
}

.course-spotlight {
  background:
    radial-gradient(circle at 85% 28%, rgba(0, 107, 90, 0.2), transparent 26%),
    linear-gradient(135deg, #dff3df 0%, #bddfc6 58%, #e8f4df 100%);
}

.proofsignal {
  background:
    linear-gradient(135deg, rgba(7, 25, 21, 0.96), rgba(0, 107, 90, 0.92)),
    var(--paper-grid) repeat;
  background-size: auto, 1128px 240px;
  color: #fff;
}

.section-routes {
  background:
    linear-gradient(180deg, rgba(255, 250, 237, 0.84), rgba(223, 243, 223, 0.82)),
    var(--paper-grid) repeat;
  background-size: auto, 1128px 240px;
}

.section-process {
  background:
    linear-gradient(90deg, rgba(6, 44, 38, 0.95), rgba(0, 107, 90, 0.86)),
    var(--paper-grid) repeat;
  background-size: auto, 1128px 240px;
  color: #fff;
}

.section-insights {
  background:
    linear-gradient(135deg, rgba(0, 107, 90, 0.16), rgba(22, 111, 129, 0.18)),
    var(--paper-grid) repeat;
  background-size: auto, 1128px 240px;
}

.section-trust {
  background:
    linear-gradient(180deg, #e8f4df 0%, #dcefd8 100%);
}

.starter-offer::before,
.course-spotlight::before,
.proofsignal::before,
.section-routes::before,
.section-process::before,
.section-insights::before,
.section-trust::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0;
  border-top: 2px solid rgba(0, 107, 90, 0.48);
  border-bottom: 8px solid rgba(0, 107, 90, 0.08);
  background: none;
  opacity: 1;
  pointer-events: none;
}

.course-spotlight::before,
.section-process::before,
.section-trust::before {
  opacity: 0.42;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: start;
  gap: 44px;
}

.method-panel,
.offer-panel,
.report-card,
.contact-panel {
  border: 1px solid rgba(6, 44, 38, 0.18);
  border-radius: 8px;
  background: var(--surface-panel);
  box-shadow: 0 24px 64px rgba(7, 25, 21, 0.16);
}

.method-panel {
  padding: 8px;
}

.outcome-panel {
  padding: 18px;
}

.outcome-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.outcome-list p {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 108px;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(0, 107, 90, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 237, 0.78), rgba(223, 243, 223, 0.5)),
    rgba(0, 107, 90, 0.12);
  color: var(--forest);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
}

.outcome-list p:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 250, 237, 0.72), rgba(223, 243, 223, 0.44)),
    rgba(0, 107, 90, 0.2);
  color: #064d42;
}

.outcome-list p:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 250, 237, 0.78), rgba(184, 240, 222, 0.26)),
    rgba(89, 124, 55, 0.18);
  color: #36521f;
}

.outcome-list p:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(255, 250, 237, 0.82), rgba(0, 107, 90, 0.16)),
    rgba(22, 111, 129, 0.14);
  color: #063b48;
}

.proof-map {
  padding: 18px;
}

.proofsignal .method-panel {
  border-color: rgba(184, 240, 222, 0.28);
  background: rgba(6, 44, 38, 0.42);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.proof-map-grid {
  display: grid;
  gap: 10px;
}

.proof-map-grid p {
  position: relative;
  margin: 0;
  padding: 13px 14px 13px 42px;
  border: 1px solid rgba(223, 243, 223, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 237, 0.08);
  color: #f3fbf5;
  font-weight: 800;
  line-height: 1.3;
}

.proof-map-grid p::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 18px;
  width: 10px;
  height: 10px;
  border: 3px solid #b8f0de;
  border-radius: 50%;
  background: var(--forest-dark);
}

.offer-panel {
  padding: 28px;
  color: var(--ink);
  background: #fbfff7;
}

.offer-summary {
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
  padding-bottom: 16px;
}

.price-line {
  margin: 0;
}

.renewal-line {
  margin: 10px 0 0;
}

.price-line,
.renewal-line {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.price-line span,
.renewal-line span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-line strong,
.renewal-line strong {
  color: var(--forest);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  text-align: right;
}

.offer-line {
  margin: 0 0 12px;
  padding: 13px 14px;
  border: 1px solid rgba(0, 107, 90, 0.2);
  border-left: 6px solid var(--forest);
  border-radius: 7px;
  background: #ffffff;
  color: #18352e;
  font-size: 16px;
  font-weight: 760;
}

.starter-offer .offer-line {
  color: #18352e;
}

.offer-line strong {
  color: #062c26;
}

.offer-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.offer-chip {
  border: 1px solid rgba(23, 72, 61, 0.18);
  border-radius: 6px;
  background: rgba(23, 72, 61, 0.06);
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
  padding: 9px 10px;
  text-align: center;
}

.method-panel ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-panel li {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.method-panel li:last-child {
  border-bottom: 0;
}

.method-panel span,
.process-grid span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--forest);
  border-radius: 50%;
  font: 900 12px/1 "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
}

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

.service-card,
.price-card,
.process-grid article,
.blog-feature,
.insight-channel,
.article-card,
.trust-grid article {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(6, 44, 38, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 237, 0.92);
}

.service-card {
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  min-height: 190px;
  box-shadow: 0 18px 42px rgba(7, 25, 21, 0.08);
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(23, 72, 61, 0.46);
  box-shadow: 0 18px 50px rgba(17, 23, 19, 0.1);
  transform: translateY(-2px);
}

.service-card:focus-visible {
  outline: 3px solid rgba(47, 111, 159, 0.36);
  outline-offset: 3px;
}

.card-action {
  margin-top: auto;
  color: var(--forest);
  font-weight: 900;
}

.service-card:hover .card-action,
.service-card:focus-visible .card-action {
  text-decoration: underline;
}

.service-card:nth-child(4n + 1) {
  color: #fff;
  background: linear-gradient(160deg, #006b5a, #063d34);
  border-top: 4px solid #8dd8bc;
}

.service-card:nth-child(4n + 2) {
  color: #fff;
  background: linear-gradient(160deg, #0d7b58, #36521f);
  border-top: 4px solid #8dd8bc;
}

.service-card:nth-child(4n + 3) {
  color: #fff;
  background: linear-gradient(160deg, #166f81, #064d42);
  border-top: 4px solid #8dd8bc;
}

.service-card:nth-child(4n + 4) {
  color: #fff;
  background: linear-gradient(160deg, #597c37, #062c26);
  border-top: 4px solid #8dd8bc;
}

.service-card:nth-child(4n + 1) p,
.service-card:nth-child(4n + 2) p,
.service-card:nth-child(4n + 3) p,
.service-card:nth-child(4n + 4) p,
.service-card:nth-child(4n + 1) .card-action,
.service-card:nth-child(4n + 2) .card-action,
.service-card:nth-child(4n + 3) .card-action,
.service-card:nth-child(4n + 4) .card-action {
  color: #f3fbf5;
}

.service-grid p,
.supporting-links,
.price-card p,
.process-grid p,
.blog-feature p,
.insight-channel p,
.article-card p,
.trust-grid p {
  color: var(--muted);
}

.supporting-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  max-width: 900px;
  margin: 24px 0 0;
}

.supporting-links a {
  border: 1px solid rgba(0, 107, 90, 0.28);
  border-radius: 6px;
  background: rgba(0, 107, 90, 0.08);
  color: var(--forest-dark);
  font-weight: 800;
  padding: 6px 9px;
  text-decoration: none;
}

.supporting-links a:hover,
.supporting-links a:focus-visible {
  text-decoration: underline;
}

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

.price-card {
  min-height: 250px;
}

.price-card.featured {
  color: #fff;
  background: var(--forest);
  border-color: var(--forest);
}

.price-card.featured p,
.price-card.featured .price-label {
  color: #dbe8dd;
}

.price-card.featured code {
  color: var(--ink);
}

.price-label {
  margin: 0 0 10px;
  color: var(--copper);
  font: 900 11px/1.2 "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  text-transform: uppercase;
}

.price {
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 900;
}

.featured .price {
  color: #fff;
}

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

.process-grid article {
  min-height: 240px;
  background: rgba(255, 250, 237, 0.1);
  border-color: rgba(184, 240, 222, 0.24);
  color: #fff;
}

.section-process .process-grid p,
.section-process .process-grid h3 {
  color: #f3fbf5;
}

.process-grid span {
  margin-bottom: 20px;
  background: #b8f0de;
  color: var(--forest-dark);
}

.report-card {
  padding: 24px;
}

.report-card p {
  margin-top: 0;
  color: var(--ink);
}

.report-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.report-card li + li {
  margin-top: 8px;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.topic-list {
  display: grid;
  gap: 10px;
}

.topic-list a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.insight-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.insight-start {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.insight-start h2 {
  max-width: 760px;
  font-size: 30px;
}

.intent-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.insight-topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.insight-topic-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--forest);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.insight-topic-nav a:hover,
.insight-topic-nav a:focus-visible {
  border-color: rgba(23, 72, 61, 0.46);
  box-shadow: 0 10px 24px rgba(17, 23, 19, 0.08);
}

.intent-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.intent-link:hover,
.intent-link:focus-visible {
  border-color: rgba(23, 72, 61, 0.46);
  box-shadow: 0 14px 38px rgba(17, 23, 19, 0.08);
  transform: translateY(-1px);
}

.intent-link:focus-visible {
  outline: 3px solid rgba(47, 111, 159, 0.36);
  outline-offset: 3px;
}

.intent-link span {
  color: var(--copper);
  font: 900 11px/1.2 "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  text-transform: uppercase;
}

.intent-link strong {
  font-size: 16px;
  line-height: 1.38;
}

.insight-channel {
  min-height: 260px;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.insight-channel:hover,
.insight-channel:focus-visible,
.article-card:hover,
.article-card:focus-within {
  border-color: rgba(23, 72, 61, 0.46);
  box-shadow: 0 18px 50px rgba(17, 23, 19, 0.1);
}

.insight-channel:focus-visible,
.article-card a:focus-visible {
  outline: 3px solid rgba(47, 111, 159, 0.36);
  outline-offset: 3px;
}

.insight-channel:nth-child(4n + 1) {
  border-top: 4px solid var(--forest);
}

.insight-channel:nth-child(4n + 2) {
  border-top: 4px solid var(--copper);
}

.insight-channel:nth-child(4n + 3) {
  border-top: 4px solid var(--sky);
}

.insight-channel:nth-child(4n + 4) {
  border-top: 4px solid var(--plum);
}

.channel-label,
.article-meta span {
  color: var(--copper);
  font: 900 11px/1.2 "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  text-transform: uppercase;
}

.channel-label {
  margin-bottom: 14px;
}

.article-stream {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.article-cluster-heading {
  margin-top: 20px;
  padding: 24px 0 4px;
  border-top: 1px solid var(--line);
}

.article-cluster-heading h2 {
  max-width: 860px;
  font-size: 30px;
}

.article-card {
  min-height: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.article-card h3 {
  max-width: 820px;
  font-size: 25px;
}

.article-card h2 {
  max-width: 820px;
  font-size: 25px;
}

.article-card h3 a,
.article-card h2 a {
  text-decoration: none;
}

.article-card h3 a:hover,
.article-card h2 a:hover {
  color: var(--forest);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--muted);
  font: 800 12px/1.2 "JetBrains Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  text-transform: uppercase;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid rgba(182, 98, 45, 0.28);
  border-radius: 999px;
  background: rgba(182, 98, 45, 0.08);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.insights-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.insights-preview h2 {
  max-width: 820px;
}

.insights-preview .section-intro {
  margin-bottom: 0;
}

.insights-preview .button {
  flex: 0 0 auto;
}

.insights-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.insights-cta p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.about {
  background:
    linear-gradient(115deg, rgba(7, 25, 21, 0.96), rgba(6, 77, 66, 0.9)),
    var(--paper-grid) repeat;
  background-size: auto, 1128px 240px;
  color: #fff;
}

.about .eyebrow,
.contact .eyebrow {
  color: #b8f0de;
}

.about p {
  color: #d5ddd7;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: stretch;
}

.about-panel {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(184, 240, 222, 0.28);
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(184, 240, 222, 0.08) 0 1px, transparent 1px 22px),
    rgba(0, 107, 90, 0.22);
}

.about-panel p {
  margin: 0;
  color: #f3fbf5;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.28;
}

.about-panel ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.about-panel li {
  padding: 12px 14px;
  border-left: 5px solid #8dd8bc;
  background: rgba(255, 255, 255, 0.08);
  color: #edf8ef;
  font-weight: 800;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.trust-grid article:nth-child(1) {
  border-top: 4px solid var(--forest);
  background: #f7fcf5;
}

.trust-grid article:nth-child(2) {
  border-top: 4px solid var(--moss);
  background: #e8f4df;
}

.trust-grid article:nth-child(3) {
  border-top: 4px solid var(--sky);
  background: #e4f3ef;
}

.contact {
  color: #fff;
  background:
    linear-gradient(125deg, rgba(6, 44, 38, 0.98), rgba(0, 107, 90, 0.86)),
    var(--paper-grid) repeat;
  background-size: auto, 1128px 240px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.82fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: start;
}

.contact p {
  color: #d5ddd7;
}

.phone-cta-wrap {
  margin-top: 22px;
}

.contact .phone-button,
.site-footer .footer-phone {
  border-color: #8dd8bc;
  background: #8dd8bc;
  color: #0b100d;
  box-shadow: 0 18px 46px rgba(0, 107, 90, 0.2);
}

.contact .phone-button:hover,
.contact .phone-button:focus-visible,
.site-footer .footer-phone:hover,
.site-footer .footer-phone:focus-visible {
  background: #b8f0de;
  color: #0b100d;
}

.contact-panel {
  padding: clamp(22px, 3vw, 30px);
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 250, 237, 0.98), rgba(223, 243, 223, 0.92)),
    var(--paper-grid) repeat;
  background-size: auto, 1128px 240px;
}

.contact-panel p {
  color: var(--muted);
}

.contact-panel p:first-child {
  margin-top: 0;
  color: var(--ink);
}

.contact-panel .button {
  margin-top: 8px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.contact-form .full-row,
.contact-form .form-status {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(21, 23, 20, 0.18);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form .form-actions {
  display: grid;
}

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

.check-field,
.consent-row {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.check-field input,
.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.trap-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
}

.form-status.is-error {
  color: #9f1d2f;
}

.form-status.is-success {
  color: var(--forest);
}

.fine-print {
  font-size: 13px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 28px;
  color: #d5ddd7;
  background: #0b100d;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.site-footer .footer-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid #8dd8bc;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.service-page .site-header nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 900;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.breadcrumbs a {
  color: var(--forest);
  text-decoration: none;
}

.service-hero {
  background:
    linear-gradient(90deg, rgba(23, 72, 61, 0.08), transparent 44%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.service-hero .content {
  padding-top: 74px;
  padding-bottom: 74px;
}

.service-hero h1 {
  max-width: 880px;
  font-size: 58px;
}

.service-hero .lede {
  max-width: 840px;
  font-size: 24px;
}

.service-hero .support {
  max-width: 820px;
}

.offer-landing .service-hero {
  background:
    linear-gradient(110deg, rgba(6, 44, 38, 0.92), rgba(0, 107, 90, 0.76)),
    var(--paper-grid) repeat;
  background-size: auto, 1128px 240px;
  color: #fff;
}

.offer-landing .service-hero .breadcrumbs,
.offer-landing .service-hero .breadcrumbs a,
.offer-landing .service-hero .support,
.offer-landing .service-hero .lede {
  color: #f3fbf5;
}

.offer-landing .service-hero .eyebrow {
  color: #b8f0de;
}

.offer-landing .service-hero h1 {
  color: #fff;
  text-shadow: none;
}

.offer-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.offer-strip span {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(184, 240, 222, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #f3fbf5;
  font-weight: 900;
  text-align: center;
}

.service-body {
  background: var(--white);
}

.detail-grid,
.faq-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.detail-panel,
.faq-card,
.related-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fcf5;
}

.detail-panel:nth-child(3n + 1),
.related-card:nth-child(3n + 1) {
  border-top: 4px solid var(--forest);
}

.detail-panel:nth-child(3n + 2),
.related-card:nth-child(3n + 2) {
  border-top: 4px solid var(--copper);
}

.detail-panel:nth-child(3n + 3),
.related-card:nth-child(3n + 3) {
  border-top: 4px solid var(--sky);
}

.detail-panel p,
.faq-card p,
.related-card p {
  color: var(--muted);
}

.check-list,
.deliverable-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.check-list li + li,
.deliverable-list li + li {
  margin-top: 9px;
}

.service-band {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.service-cta {
  color: #fff;
  background: var(--dark);
}

.service-cta .content {
  padding-top: 62px;
  padding-bottom: 62px;
}

.service-cta p {
  max-width: 760px;
  color: #d5ddd7;
  font-size: 18px;
}

.service-cta .button.secondary {
  color: var(--ink);
}

.service-cta .eyebrow {
  color: #b8f0de;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.service-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.related-card {
  color: var(--ink);
  text-decoration: none;
}

.course-lab-page {
  background: #edf7ef;
}

.course-lab-hero {
  background:
    linear-gradient(120deg, rgba(17, 23, 19, 0.92), rgba(23, 72, 61, 0.82)),
    radial-gradient(circle at 84% 22%, rgba(141, 216, 188, 0.28), transparent 28%),
    var(--dark);
  color: #fff;
}

.course-lab-hero .breadcrumbs,
.course-lab-hero .breadcrumbs a,
.course-lab-hero .support,
.course-lab-hero .lede {
  color: #e9efe9;
}

.course-lab-hero .eyebrow {
  color: #b8f0de;
}

.course-lab-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.course-lab-status span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
}

.course-lab-shell {
  background: #edf7ef;
}

.course-lab-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.course-lab-heading h2 {
  max-width: 780px;
}

.course-lab-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.course-lab-grid {
  display: grid;
  grid-template-columns: minmax(210px, 0.74fr) minmax(0, 2.1fr) minmax(260px, 0.92fr);
  gap: 18px;
  align-items: start;
}

.lesson-rail,
.lesson-panel,
.course-output-panel {
  min-width: 0;
}

.lesson-rail {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 12px;
}

.progress-card,
.output-card,
.lesson-panel,
.activity-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(17, 23, 19, 0.06);
}

.progress-card {
  padding: 16px;
}

.progress-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.progress-card strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
}

.progress-track {
  height: 8px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6e2d6;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--forest), var(--sky));
  transition: width 180ms ease;
}

.lesson-list {
  display: grid;
  gap: 8px;
}

.lesson-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.lesson-tab span {
  font-weight: 900;
}

.lesson-tab small {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.lesson-tab.is-active {
  border-color: var(--forest);
  background: #edf4ee;
}

.lesson-tab.is-complete small {
  color: var(--forest);
}

.lesson-panel {
  padding: 28px;
}

.lesson-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.lesson-kicker span,
.activity-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7fcf5;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.lesson-panel h2 {
  margin-top: 0;
  font-size: 34px;
}

.lesson-objective {
  max-width: 760px;
  color: var(--forest);
  font-size: 20px;
  font-weight: 850;
}

.lesson-reading {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.lesson-reading p {
  max-width: 800px;
  margin: 0;
  color: var(--muted);
}

.activity-card {
  scroll-margin-top: 96px;
  margin-top: 26px;
  padding: 22px;
  background: #f7fcf5;
}

.activity-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.activity-card-header h3 {
  margin-top: 0;
}

.activity-chip {
  max-width: 320px;
  border-color: rgba(47, 111, 159, 0.28);
  background: rgba(47, 111, 159, 0.08);
  color: #244f70;
}

.choice-grid,
.sorter-grid,
.slider-grid,
.decision-grid,
.moodle-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.choice-card,
.sort-card,
.decision-grid fieldset,
.moodle-plan-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.choice-card {
  display: grid;
  gap: 8px;
  min-height: 154px;
  padding: 18px;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.choice-card strong,
.sort-card p {
  font-weight: 900;
}

.choice-card span {
  color: var(--muted);
}

.choice-card.is-selected {
  border-color: var(--forest);
  background: #eef5ef;
}

.activity-result,
.tool-path-result,
.audit-meter {
  display: grid;
  gap: 4px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 107, 90, 0.2);
  border-radius: 8px;
  background: #f0faf4;
  color: #064d42;
  font-weight: 800;
}

.activity-result.is-good,
.tool-path-result,
.audit-meter {
  border-color: rgba(23, 72, 61, 0.24);
  background: #edf4ee;
  color: var(--forest);
}

.activity-result.is-warning,
.sort-card.is-warning {
  border-color: rgba(22, 111, 129, 0.32);
  background: #eef8ef;
}

.sort-card {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.sort-card.is-good {
  border-color: rgba(23, 72, 61, 0.28);
  background: #edf4ee;
}

.sort-card div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.sort-card button,
.wiki-toolbar button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.sort-card button.is-selected,
.wiki-toolbar button {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
}

.form-lab-grid,
.wiki-template-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-lab-grid label,
.wiki-template-grid label,
.slider-field {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.form-lab-grid input,
.form-lab-grid select,
.wiki-template-grid textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.form-lab-grid input,
.form-lab-grid select {
  min-height: 44px;
  padding: 9px 11px;
}

.wiki-template-grid textarea {
  resize: vertical;
  padding: 11px;
}

.slider-field {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.slider-field span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.slider-field input {
  width: 100%;
  accent-color: var(--forest);
}

.workflow-map-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.workflow-map-preview div {
  min-height: 112px;
  padding: 12px;
  border: 1px solid rgba(23, 72, 61, 0.2);
  border-radius: 8px;
  background: #edf4ee;
}

.workflow-map-preview strong,
.workflow-map-preview span {
  display: block;
}

.workflow-map-preview span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.wiki-toolbar {
  margin: 14px 0;
}

.decision-grid fieldset {
  margin: 0;
  padding: 16px;
}

.decision-grid legend {
  padding: 0 4px;
  color: var(--forest);
  font-weight: 900;
}

.decision-grid label {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.lesson-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-top: 22px;
}

.lesson-controls button[disabled] {
  cursor: not-allowed;
  opacity: 0.48;
}

.course-output-panel {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 12px;
}

.output-card {
  padding: 18px;
}

.output-card h3 {
  margin-top: 0;
}

.output-card p,
.moodle-map {
  color: var(--muted);
}

.moodle-map {
  margin: 12px 0 0;
  padding-left: 18px;
}

.moodle-map li + li {
  margin-top: 8px;
}

.course-moodle-plan {
  padding-top: 72px;
}

.moodle-plan-grid article {
  padding: 22px;
}

.moodle-plan-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-weight: 900;
}

.moodle-plan-grid article:nth-child(2) span {
  background: var(--sky);
}

.moodle-plan-grid article:nth-child(3) span {
  background: var(--copper);
}

.moodle-plan-grid article:nth-child(4) span {
  background: var(--plum);
}

.moodle-plan-grid p {
  color: var(--muted);
}

.article-hero {
  background:
    linear-gradient(90deg, rgba(47, 111, 159, 0.08), transparent 48%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.article-hero .content {
  padding-top: 74px;
  padding-bottom: 58px;
}

.article-hero h1 {
  max-width: 880px;
  font-size: 58px;
}

.article-body {
  background: var(--white);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: 44px;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fcf5;
}

.article-toc p {
  margin: 0 0 4px;
}

.article-toc a {
  color: var(--forest);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.article-toc a:hover {
  text-decoration: underline;
}

.article-content {
  max-width: 760px;
}

.article-content h2 {
  margin-top: 42px;
  font-size: 31px;
}

.article-content h3 {
  margin-top: 0;
}

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

.article-content a {
  color: var(--forest);
  font-weight: 850;
}

.article-answer {
  margin-top: 0;
  padding: 22px;
  border-left: 5px solid var(--forest);
  background: #f7fcf5;
}

.callout-panel,
.article-cta {
  margin: 30px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fcf5;
}

.callout-panel {
  border-top: 4px solid var(--sky);
}

.article-steps {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style-position: inside;
}

.article-steps li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fcf5;
}

.article-cta {
  color: #fff;
  background: var(--dark);
}

.article-cta p {
  color: #d5ddd7;
}

.article-cta .eyebrow {
  color: #b8f0de;
}

@media (max-width: 980px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 32px;
  }

  .split,
  .hero-inner,
  .about-layout,
  .blog-layout,
  .article-layout,
  .contact-layout,
  .quick-review-layout {
    grid-template-columns: 1fr;
  }

  .insights-preview {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-toc {
    position: static;
  }

  .service-grid,
  .hero-route-grid,
  .offer-strip,
  .offer-chip-grid,
  .outcome-list,
  .pricing-grid,
  .process-grid,
  .trust-grid,
  .insight-channel-grid,
  .intent-link-grid,
  .detail-grid,
  .faq-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .course-lab-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .course-lab-grid {
    grid-template-columns: 1fr;
  }

  .lesson-rail,
  .course-output-panel {
    position: static;
  }

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

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

  .workflow-map-preview {
    grid-template-columns: repeat(4, minmax(130px, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-phone {
    width: 100%;
  }

  .site-header,
  .hero-inner,
  .content {
    padding-inline: 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: 100%;
    padding-top: 52px;
    padding-bottom: 56px;
  }

  h1 {
    font-size: 44px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .service-hero h1 {
    font-size: 40px;
  }

  .article-hero h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  .lede {
    font-size: 22px;
  }

  .hero .lede {
    font-size: 19px;
  }

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

  .service-grid,
  .hero-route-grid,
  .offer-strip,
  .offer-chip-grid,
  .outcome-list,
  .pricing-grid,
  .process-grid,
  .trust-grid,
  .insight-channel-grid,
  .intent-link-grid,
  .detail-grid,
  .faq-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .signal-line {
    display: none;
  }

  .method-panel li {
    align-items: flex-start;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .course-lab-status,
  .course-lab-actions,
  .lesson-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .course-lab-actions .button,
  .lesson-controls .button {
    width: 100%;
  }

  .lesson-list,
  .course-output-panel,
  .choice-grid,
  .sorter-grid,
  .slider-grid,
  .decision-grid,
  .form-lab-grid,
  .wiki-template-grid,
  .moodle-plan-grid {
    grid-template-columns: 1fr;
  }

  .lesson-panel,
  .activity-card {
    padding: 18px;
  }

  .lesson-panel h2 {
    font-size: 28px;
  }

  .lesson-objective {
    font-size: 18px;
  }

  .activity-card-header {
    flex-direction: column;
  }

  .activity-chip {
    max-width: none;
  }

  .workflow-map-preview {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .sort-card div {
    grid-template-columns: 1fr;
  }
}
