:root {
  --ink: #172528;
  --ink-soft: #435457;
  --paper: #fffdf9;
  --sand: #f3ecdf;
  --sand-deep: #e6dac8;
  --petrol: #1f625d;
  --petrol-dark: #123f3d;
  --lime: #b7dc3c;
  --lime-soft: #e9f4bb;
  --violet: #685294;
  --violet-soft: #eee8fa;
  --coral: #df7657;
  --coral-soft: #f9e2d8;
  --white: #ffffff;
  --line: rgba(23, 37, 40, 0.14);
  --shadow-sm: 0 12px 36px rgba(25, 48, 49, 0.08);
  --shadow-lg: 0 30px 80px rgba(18, 63, 61, 0.14);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 42px;
  --container: 1180px;
  --font: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

:where(a, button, summary):focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--lime);
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  hyphens: none;
  overflow-wrap: normal;
  line-height: 1.1;
  letter-spacing: -0.028em;
}

h1 {
  font-size: clamp(2.85rem, 5.2vw, 5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.95rem, 3.5vw, 3.4rem);
  font-weight: 680;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 670;
  margin-bottom: 0.7rem;
}

p {
  margin-bottom: 1.25rem;
}

strong {
  font-weight: 720;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 0.65rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  transform: translateY(-160%);
}

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

.skip-link:focus {
  transform: translateY(0);
}

.skip-link:focus-visible {
  outline-color: var(--white);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.section-tight {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-sand {
  background: var(--sand);
}

.section-petrol {
  background: var(--petrol-dark);
  color: var(--white);
}

.section-violet {
  background: var(--violet-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  color: var(--petrol);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 0.72rem;
  height: 0.72rem;
  background: var(--lime);
  border-radius: 3px 50% 50% 50%;
  content: "";
  transform: rotate(18deg);
}

.section-petrol .eyebrow {
  color: var(--lime);
}

.section-petrol .eyebrow::before {
  background: var(--coral);
}

.lead {
  max-width: 750px;
  color: var(--ink-soft);
  font-size: clamp(1.18rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.section-petrol .lead,
.section-petrol .muted {
  color: rgba(255, 255, 255, 0.75);
}

.muted {
  color: var(--ink-soft);
}

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

.accent-lime {
  position: relative;
  white-space: nowrap;
}

.accent-lime::after {
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: 0.08em;
  left: -0.04em;
  height: 0.25em;
  background: var(--lime);
  border-radius: 999px;
  content: "";
  opacity: 0.78;
  transform: rotate(-1.5deg);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--petrol);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 720;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--petrol-dark);
  box-shadow: 0 10px 26px rgba(18, 63, 61, 0.2);
  transform: translateY(-2px);
}

.button::after {
  content: "→";
}

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

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

.button-light {
  background: var(--lime);
  color: var(--ink);
}

.button-light:hover {
  background: #c8eb55;
  color: var(--ink);
}

.button-plain::after {
  content: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--petrol);
  font-weight: 720;
  text-decoration: none;
}

.text-link::after {
  content: "↗";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translate(2px, -2px);
}

.section-petrol .text-link {
  color: var(--lime);
}

.section-petrol .text-link:hover {
  color: #c8eb55;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.4rem;
  margin-top: 1.5rem;
}

.topbar {
  background: var(--petrol-dark);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
}

.topbar .container {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar p {
  margin: 0;
}

.topbar a {
  color: var(--lime);
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 32px rgba(22, 41, 42, 0.07);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 790;
  letter-spacing: -0.03em;
  line-height: 1;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border-radius: 13px 13px 13px 5px;
  background: var(--petrol);
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: -0.08em;
}

.brand-mark::after {
  position: absolute;
  width: 16px;
  height: 16px;
  right: -4px;
  bottom: -4px;
  background: var(--lime);
  border-radius: 50%;
  content: "";
}

.brand-domain {
  color: var(--petrol);
}

.brand-text {
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.site-nav a {
  padding: 0.65rem 0.78rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 680;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--sand);
}

.site-nav .nav-cta {
  margin-left: 0.45rem;
  padding-inline: 1rem;
  background: var(--ink);
  color: var(--white);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  background: var(--petrol);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 6vw, 5.6rem) 0 clamp(4.5rem, 8vw, 7rem);
}

.hero::before {
  position: absolute;
  width: min(45vw, 620px);
  height: min(45vw, 620px);
  top: -28%;
  right: -11%;
  background: radial-gradient(circle at 32% 35%, var(--lime-soft), transparent 66%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.85fr);
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3rem, 4.5vw, 4.5rem);
}

.hero-copy,
.section-head > *,
.split-grid > *,
.logo-panel > *,
.profile-grid > *,
.cta-band-inner > * {
  min-width: 0;
}

.hero-copy .lead {
  max-width: 680px;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2.1rem;
}

.trust-chip {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 690;
}

.signal-map {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(31, 98, 93, 0.16);
  border-radius: 46% 54% 42% 58% / 52% 42% 58% 48%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(243, 236, 223, 0.72)),
    radial-gradient(circle at 24% 22%, var(--lime-soft), transparent 25%),
    radial-gradient(circle at 80% 70%, var(--violet-soft), transparent 24%);
  box-shadow: var(--shadow-lg);
}

.signal-map::before,
.signal-map::after {
  position: absolute;
  border: 1px dashed rgba(31, 98, 93, 0.3);
  border-radius: 50%;
  content: "";
}

.signal-map::before {
  inset: 14% 12%;
  transform: rotate(16deg);
}

.signal-map::after {
  inset: 27% 20%;
  border-color: rgba(104, 82, 148, 0.34);
  transform: rotate(-11deg);
}

.signal-core,
.signal-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.signal-core {
  width: 164px;
  height: 164px;
  top: 34%;
  left: 34%;
  padding: 1.4rem;
  border-radius: 36px 36px 36px 10px;
  background: var(--petrol);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 750;
  line-height: 1.2;
  transform: rotate(-3deg);
}

.signal-core span {
  display: block;
  color: var(--lime);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-node {
  min-width: 112px;
  min-height: 74px;
  padding: 0.8rem 1rem;
  border-radius: 22px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.25;
}

.signal-node-1 {
  top: 10%;
  left: 10%;
  border-bottom-left-radius: 5px;
}

.signal-node-2 {
  top: 13%;
  right: 9%;
  background: var(--lime-soft);
  border-top-right-radius: 5px;
}

.signal-node-3 {
  right: 7%;
  bottom: 14%;
  background: var(--violet-soft);
  border-bottom-right-radius: 5px;
}

.signal-node-4 {
  bottom: 11%;
  left: 8%;
  background: var(--coral-soft);
  border-bottom-left-radius: 5px;
}

.hero-note {
  position: absolute;
  z-index: 3;
  right: -18px;
  bottom: 18%;
  max-width: 170px;
  padding: 0.75rem 0.95rem;
  border-radius: 15px 15px 4px 15px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.73rem;
  line-height: 1.35;
  transform: rotate(3deg);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 6vw, 5.5rem) 0 clamp(3.8rem, 6vw, 5.25rem);
  background: var(--sand);
}

.page-hero::after {
  position: absolute;
  width: 250px;
  height: 250px;
  right: 7%;
  bottom: -105px;
  border: 44px solid var(--lime);
  border-radius: 50% 50% 12% 50%;
  content: "";
  opacity: 0.55;
  transform: rotate(18deg);
}

.page-hero h1 {
  max-width: 940px;
  font-size: clamp(2.8rem, 4.6vw, 4.3rem);
}

.page-hero .lead {
  max-width: 780px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb span::before {
  margin-right: 0.55rem;
  content: "/";
  opacity: 0.45;
}

.section-head {
  display: grid;
  align-items: end;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head p {
  margin-bottom: 0.4rem;
}

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

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

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

.card {
  position: relative;
  min-height: 100%;
  padding: clamp(1.45rem, 2.7vw, 2.2rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.card:nth-child(3n + 1) {
  border-top-left-radius: 7px;
}

.card:nth-child(3n + 2) {
  border-bottom-right-radius: 7px;
}

.card:nth-child(3n) {
  border-top-right-radius: 7px;
}

.card-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 2rem;
  place-items: center;
  border-radius: 13px;
  background: var(--lime-soft);
  color: var(--petrol-dark);
  font-size: 0.76rem;
  font-weight: 780;
}

.card-number.scope-label {
  width: auto;
  min-height: 42px;
  height: auto;
  padding: 0.55rem 0.75rem;
  line-height: 1.2;
  text-align: left;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.service-card {
  display: flex;
  min-height: 370px;
  flex-direction: column;
}

.service-card h3 {
  font-size: clamp(1.15rem, 1.35vw, 1.35rem);
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 1.5rem;
}

.service-card:nth-child(2) .card-number {
  background: var(--coral-soft);
}

.service-card:nth-child(3) .card-number {
  background: var(--violet-soft);
}

.service-card:nth-child(4) .card-number {
  background: var(--sand);
}

.service-followup {
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
}

.blog-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
}

.blog-card .text-link {
  margin-top: auto;
  padding-top: 1.5rem;
}

.blog-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 680;
}

.blog-meta {
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.blog-empty {
  max-width: 760px;
}

.article-shell {
  max-width: 780px;
}

.article-meta {
  margin-bottom: 2.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.article-body h2 {
  margin-top: 2.8rem;
}

.article-body h3 {
  margin-top: 2rem;
}

.article-body a {
  color: var(--petrol);
  font-weight: 680;
}

.article-body ul,
.article-body ol {
  margin: 1rem 0 1.5rem;
  padding-left: 1.4rem;
}

.article-body li + li {
  margin-top: 0.5rem;
}

.article-back {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.problem-card {
  min-height: 260px;
  box-shadow: none;
}

.problem-card::after {
  position: absolute;
  width: 72px;
  height: 72px;
  right: -28px;
  bottom: -28px;
  border: 16px solid var(--lime);
  border-radius: 50%;
  content: "";
  opacity: 0.7;
}

.problem-card:nth-child(2)::after {
  border-color: var(--coral);
}

.problem-card:nth-child(3)::after {
  border-color: var(--violet);
}

.problem-card:nth-child(4)::after {
  border-color: var(--petrol);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 0.58rem 0.82rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 650;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
}

.check-list li::before {
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  top: 0.35em;
  left: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
}

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

.process-step {
  position: relative;
  padding: 2rem 2rem 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step:not(:last-child)::after {
  position: absolute;
  width: 36px;
  height: 1px;
  top: -1px;
  right: 1rem;
  background: var(--lime);
  content: "";
}

.process-step .step-index {
  display: block;
  margin-bottom: 3.3rem;
  color: var(--lime);
  font-size: 0.77rem;
  font-weight: 780;
  letter-spacing: 0.1em;
}

.process-step p {
  color: rgba(255, 255, 255, 0.7);
}

.logo-panel {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.logo-panel h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

.logo-wall {
  display: grid;
  gap: 1rem;
}

.cert-logo {
  display: grid;
  min-height: 180px;
  padding: 1.5rem 2rem;
  align-content: center;
  justify-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.cert-logo img {
  width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.cert-logo:first-child img {
  max-width: 420px;
}

.cert-logo:last-child img {
  max-width: 500px;
}

.cert-logo-label {
  justify-self: start;
  margin: 0;
  color: var(--petrol);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

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

.industry-item {
  min-height: 190px;
  padding: 2rem;
  background: var(--paper);
}

.industry-item span {
  display: block;
  margin-bottom: 2.7rem;
  color: var(--petrol);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.industry-item p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.profile-grid {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
}

.profile-photo-wrap {
  position: relative;
  max-width: 430px;
}

.profile-photo-wrap::before {
  position: absolute;
  z-index: 0;
  inset: 12% -8% -8% 12%;
  background: var(--lime);
  border-radius: 36% 64% 52% 48% / 55% 40% 60% 45%;
  content: "";
  transform: rotate(-5deg);
}

.media-picture {
  display: block;
}

.profile-photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  border: 10px solid var(--white);
  border-radius: 42% 58% 38% 62% / 46% 38% 62% 54%;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.profile-tag {
  position: absolute;
  z-index: 2;
  right: -24px;
  bottom: 8%;
  max-width: 190px;
  padding: 0.75rem 1rem;
  border-radius: 16px 16px 5px 16px;
  background: var(--violet);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  transform: rotate(3deg);
}

.stats-row {
  display: grid;
  gap: 1px;
  margin: 2.2rem 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat {
  padding: 1.2rem;
  background: var(--white);
}

.stat strong {
  display: block;
  color: var(--petrol);
  font-size: 1.45rem;
}

.stat span {
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.35;
}

.specialty-card {
  display: flex;
  min-height: 355px;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.specialty-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px) rotate(-0.25deg);
}

.specialty-card .domain-label {
  margin-bottom: 2.4rem;
  color: var(--petrol);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.specialty-card .text-link {
  margin-top: auto;
  padding-top: 1.4rem;
}

.specialty-card:nth-child(2) {
  background: var(--violet-soft);
}

.specialty-card:nth-child(3) {
  background: var(--coral-soft);
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.faq-list summary {
  position: relative;
  padding: 1.25rem 3.5rem 1.25rem 1.35rem;
  cursor: pointer;
  font-weight: 720;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  width: 28px;
  height: 28px;
  top: 50%;
  right: 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sand);
  content: "+";
  font-size: 1.1rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 1.35rem 1.35rem;
  color: var(--ink-soft);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.split-grid {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.sticky-side {
  position: sticky;
  top: 120px;
}

.content-stack {
  display: grid;
  gap: 1rem;
}

.content-block {
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.content-block:nth-child(2n) {
  border-bottom-right-radius: 7px;
}

.note-box {
  padding: 1.4rem 1.5rem;
  border-left: 5px solid var(--lime);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--lime-soft);
}

.note-box p:last-child {
  margin-bottom: 0;
}

.funding-status {
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid rgba(223, 118, 87, 0.34);
  border-radius: var(--radius-md);
  background: var(--coral-soft);
}

.funding-status h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.funding-status p:last-child {
  margin-bottom: 0;
}

.funding-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
}

.funding-card .card-number {
  margin-bottom: 1.5rem;
}

.funding-card:nth-child(2) .card-number {
  background: var(--coral-soft);
}

.funding-card:nth-child(3) .card-number {
  background: var(--violet-soft);
}

.funding-rate {
  display: grid;
  gap: 0.12rem;
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.funding-rate strong {
  color: var(--petrol);
  font-size: 1.15rem;
}

.funding-rate span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.funding-prerequisite {
  margin-top: 1rem;
}

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

.source-links {
  display: grid;
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding-left: 1.25rem;
}

.source-links a {
  color: var(--petrol);
  font-weight: 680;
}

.contact-grid {
  display: grid;
  align-items: stretch;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card {
  min-height: 230px;
}

.contact-card a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: var(--petrol);
  font-weight: 720;
  overflow-wrap: anywhere;
}

.legal-content h2 {
  margin-top: 3rem;
  font-size: 2rem;
}

.legal-content h3 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.legal-content a {
  color: var(--petrol);
}

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--petrol-dark);
  color: var(--white);
}

.cta-band::before {
  position: absolute;
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: -180px;
  border: 56px solid var(--lime);
  border-radius: 50% 45% 10% 55%;
  content: "";
  opacity: 0.9;
  transform: rotate(-20deg);
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: 2rem;
  padding: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr);
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.cta-band .eyebrow {
  color: var(--lime);
}

.cta-band .eyebrow::before {
  background: var(--coral);
}

.cta-band .muted {
  color: rgba(255, 255, 255, 0.78);
}

.cta-band .button-row {
  justify-content: flex-end;
  margin: 0;
}

.site-footer {
  padding: 5rem 0 2rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(150px, 0.55fr));
}

.footer-brand .brand {
  margin-bottom: 1.4rem;
  color: var(--white);
}

.footer-brand .brand-domain {
  color: var(--lime);
}

.footer-brand p {
  max-width: 420px;
}

.footer-column h3 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: inherit;
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
}

.footer-bottom a {
  color: var(--white);
}

.footer-bottom a:hover {
  color: var(--lime);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .site-nav a:not(.nav-cta) {
    padding-inline: 0.55rem;
    font-size: 0.8rem;
  }

  .hero-grid {
    gap: 3.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  }

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

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

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

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(150px, 0.6fr));
  }

  .footer-column:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 980px) {
  body {
    font-size: 16px;
  }

  .topbar {
    display: none;
  }

  .header-inner {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: 74px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: calc(100dvh - 74px);
    align-content: start;
    gap: 0.35rem;
    overflow-y: auto;
    padding: 1.4rem 20px 2rem;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav a {
    padding: 0.95rem 1rem;
    border-radius: 14px;
    font-size: 1rem;
  }

  .site-nav .nav-cta {
    margin: 0.6rem 0 0;
    text-align: center;
  }

  .hero-grid,
  .section-head,
  .logo-panel,
  .profile-grid,
  .split-grid,
  .cta-band-inner {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 4.4rem;
  }

  .signal-map {
    min-height: 470px;
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }

  .section-head {
    align-items: start;
    gap: 0;
  }

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

  .profile-photo-wrap {
    width: min(82%, 410px);
    margin-inline: auto;
  }

  .sticky-side {
    position: static;
  }

  .cta-band .button-row {
    justify-content: flex-start;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  h1,
  h2,
  h3 {
    hyphens: auto;
    overflow-wrap: anywhere;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.1rem, 8.7vw, 2.55rem);
  }

  h2 {
    font-size: clamp(1.75rem, 7.6vw, 2.3rem);
  }

  h3 {
    font-size: 1.22rem;
  }

  .section {
    padding-block: 3.75rem;
  }

  .section-tight {
    padding-block: 2.75rem;
  }

  .section-head {
    margin-bottom: 2.4rem;
  }

  .green-topics {
    grid-template-columns: 1fr;
  }

  .header-inner {
    gap: 1rem;
  }

  .brand-text {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-note {
    right: -6px;
  }

  .signal-map {
    min-height: 405px;
  }

  .signal-core {
    width: 132px;
    height: 132px;
    top: 34%;
    left: calc(50% - 66px);
    font-size: 0.88rem;
  }

  .signal-node {
    min-width: 92px;
    min-height: 62px;
    padding: 0.65rem 0.75rem;
    font-size: 0.66rem;
  }

  .card-grid,
  .card-grid-3,
  .card-grid-2,
  .industry-grid,
  .contact-grid,
  .process-grid,
  .stats-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .problem-card,
  .funding-card,
  .industry-item,
  .contact-card {
    min-height: 0;
  }

  .process-step {
    padding-right: 0;
  }

  .process-step .step-index {
    margin-bottom: 1.5rem;
  }

  .cert-logo {
    min-height: 140px;
    padding: 1.25rem;
  }

  .profile-tag {
    right: -8px;
  }

  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .topbar,
  .site-header,
  .button-row,
  .site-footer {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .section,
  .section-tight,
  .page-hero {
    padding: 2rem 0;
  }
}
