:root {
  --ink: #0b1628;
  --ink-2: #14243a;
  --cobalt: #2f5bff;
  --cobalt-dark: #1d43d8;
  --cyan: #00b8d9;
  --coral: #d93355;
  --coral-dark: #b32345;
  --mint: #12b886;
  --mint-soft: #eafaf6;
  --yellow: #f4b942;
  --paper: #ffffff;
  --surface: #f5f8fb;
  --surface-2: #edf2f7;
  --line: #d7e0e9;
  --text: #25364d;
  --muted: #5f6f82;
  --shadow: 0 20px 50px rgba(11, 22, 40, 0.12);
  --shadow-soft: 0 12px 30px rgba(11, 22, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

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

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

p {
  margin: 0 0 1.2em;
}

h1,
h2,
h3 {
  margin: 0 0 0.45em;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  font-size: 66px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 27px;
}

section[id] {
  scroll-margin-top: 92px;
}

.wrap {
  width: min(calc(100% - 48px), 1220px);
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  top: 16px;
}

:focus-visible {
  outline: 3px solid rgba(47, 91, 255, 0.35);
  outline-offset: 3px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cobalt-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #75ecdc;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 14px;
}

.button.primary {
  background: var(--cobalt);
  color: var(--paper);
}

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

.button.ghost {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(11, 22, 40, 0.25);
  color: var(--paper);
}

.button.ghost:hover {
  border-color: var(--paper);
  background: rgba(11, 22, 40, 0.55);
}

.button.dark {
  background: var(--ink);
  color: var(--paper);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cobalt-dark);
  font-weight: 800;
}

.text-link span,
.service-panel a span {
  transition: transform 160ms ease;
}

.text-link:hover span,
.service-panel a:hover span {
  transform: translateX(4px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(11, 22, 40, 0.12);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 26px rgba(11, 22, 40, 0.06);
}

.home-header {
  isolation: isolate;
}

.nav-row {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 190px;
  height: auto;
}

.main-nav {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: #223249;
  font-size: 14px;
  font-weight: 750;
}

.main-nav > a,
.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
}

.main-nav > a::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--coral);
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav > a:hover::after,
.nav-trigger:hover::after,
.nav-trigger[aria-expanded="true"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-group {
  display: flex;
  align-items: center;
}

.nav-chevron {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-trigger[aria-expanded="true"] .nav-chevron {
  transform: translateY(2px) rotate(225deg);
}

.nav-mobile-only,
.nav-mobile-cta {
  display: none !important;
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}

.portal-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.portal-link span {
  color: var(--cobalt);
  transition: transform 160ms ease;
}

.portal-link:hover span {
  transform: translateX(3px);
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 35;
  display: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--text);
  box-shadow: 0 24px 48px rgba(11, 22, 40, 0.14);
}

.nav-group.is-open .mega-menu {
  display: block;
}

.mega-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.78fr) minmax(410px, 1.55fr) minmax(180px, 0.72fr) minmax(220px, 0.86fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 34px;
  padding-bottom: 38px;
}

.mega-intro {
  padding-right: 22px;
  border-right: 1px solid var(--line);
}

.mega-kicker,
.mega-heading {
  margin: 0 0 12px;
  color: var(--cobalt-dark);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.mega-title {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 850;
  line-height: 1.18;
}

.mega-copy {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.mega-phone {
  display: grid;
  gap: 2px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.mega-phone span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.mega-phone strong {
  font-size: 16px;
}

.mega-section {
  min-width: 0;
}

.mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.mega-link {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  padding: 15px 14px 15px 0;
  border-bottom: 1px solid var(--line);
}

.mega-link:nth-child(odd) {
  margin-right: 14px;
}

.mega-index {
  color: var(--coral);
  font-size: 12px;
  font-weight: 850;
}

.mega-link strong,
.mega-stack strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.mega-link small,
.mega-stack small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 550;
  line-height: 1.42;
}

.mega-link:hover strong,
.mega-stack a:hover strong {
  color: var(--cobalt-dark);
}

.mega-stack {
  border-top: 1px solid var(--line);
}

.mega-stack a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.mega-support {
  padding: 24px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
}

.mega-support .mega-heading {
  color: #75ecdc;
}

.mega-support > strong {
  display: block;
  margin-bottom: 9px;
  font-size: 20px;
  line-height: 1.2;
}

.mega-support > p:not(.mega-heading) {
  margin-bottom: 18px;
  color: #dfeaf7;
  font-size: 13px;
  line-height: 1.5;
}

.mega-support .button {
  width: 100%;
}

.mega-support-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  color: #dfeaf7;
  font-size: 13px;
  font-weight: 750;
}

.mega-support-link span {
  color: #75ecdc;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(650px, calc(100svh - 112px));
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: 1;
  background: rgba(5, 14, 28, 0.12);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(650px, calc(100svh - 112px));
  align-items: center;
  padding: 58px 0 68px;
}

.hero-copy {
  width: min(625px, 50%);
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--paper);
  text-wrap: balance;
  text-shadow: 0 3px 20px rgba(5, 14, 28, 0.35);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  color: #edf6ff;
  font-size: 21px;
  line-height: 1.55;
  text-shadow: 0 2px 14px rgba(5, 14, 28, 0.45);
}

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

.hero-assurances {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: #edf6ff;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
  list-style: none;
}

.hero-assurances li {
  position: relative;
  padding: 0 18px 0 16px;
}

.hero-assurances li:first-child {
  padding-left: 16px;
}

.hero-assurances li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #75ecdc;
}

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

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

.service-rail a {
  position: relative;
  display: grid;
  min-height: 126px;
  align-content: center;
  gap: 2px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
  box-shadow: inset 0 4px 0 var(--cobalt);
  transition: background-color 160ms ease;
}

.service-rail a:first-child {
  border-left: 1px solid var(--line);
}

.service-rail a:nth-child(2) {
  box-shadow: inset 0 4px 0 var(--cyan);
}

.service-rail a:nth-child(3) {
  box-shadow: inset 0 4px 0 var(--coral);
}

.service-rail a:nth-child(4) {
  box-shadow: inset 0 4px 0 var(--mint);
}

.service-rail a:hover {
  background: var(--surface);
}

.service-rail span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.service-rail strong {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.service-rail small {
  color: var(--muted);
  font-size: 14px;
}

.statement-section {
  background: var(--surface);
}

.statement-grid {
  display: grid;
  grid-template-columns: 210px minmax(0, 1.2fr) minmax(280px, 0.7fr);
  gap: 44px;
  align-items: start;
}

.statement-grid .eyebrow {
  margin-top: 10px;
}

.statement-grid h2,
.statement-copy {
  margin-bottom: 0;
}

.statement-copy {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  margin-bottom: 44px;
}

.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.65fr);
  gap: 54px;
  align-items: end;
}

.heading-split > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 18px;
}

.featured-service {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.featured-service-media {
  min-height: 520px;
}

.featured-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-service-copy {
  display: grid;
  align-content: center;
  padding: 54px;
}

.featured-service-copy h3 {
  color: var(--paper);
  font-size: 38px;
}

.featured-service-copy p {
  color: #d9e6f2;
  font-size: 18px;
}

.service-index {
  display: block;
  margin-bottom: 20px;
  color: #75ecdc;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.plain-checks {
  display: grid;
  gap: 9px;
  margin: 8px 0 28px;
  padding: 0;
  color: #eef5fb;
  font-size: 15px;
  list-style: none;
}

.plain-checks li {
  position: relative;
  padding-left: 22px;
}

.plain-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  background: var(--coral);
}

.featured-service .text-link {
  color: #75ecdc;
}

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

.service-panel {
  display: grid;
  min-height: 320px;
  align-content: start;
  padding: 34px;
  border-radius: 8px;
}

.service-panel h3 {
  font-size: 30px;
}

.service-panel p {
  margin-bottom: 28px;
  font-size: 16px;
}

.service-panel a {
  display: inline-flex;
  align-self: end;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-weight: 850;
}

.service-panel-blue {
  background: var(--cobalt);
  color: var(--paper);
}

.service-panel-blue h3,
.service-panel-blue .service-index,
.service-panel-blue a {
  color: var(--paper);
}

.service-panel-light {
  border: 1px solid var(--line);
  background: var(--surface);
}

.service-panel-light .service-index,
.service-panel-light a {
  color: var(--cobalt-dark);
}

.service-panel-coral {
  background: var(--coral);
  color: var(--paper);
}

.service-panel-coral h3,
.service-panel-coral .service-index,
.service-panel-coral a {
  color: var(--paper);
}

.operations-section {
  background: var(--surface);
}

.operations-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 68px;
  align-items: center;
}

.operations-media {
  overflow: hidden;
  aspect-ratio: 1500 / 823;
  border-radius: 8px;
  background: #eef3f7;
  box-shadow: var(--shadow);
}

.operations-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.operations-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.operations-list {
  margin-top: 34px;
  border-top: 1px solid #cbd5df;
}

.operations-list div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #cbd5df;
}

.operations-list span {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.operations-list div:nth-child(2) span {
  color: var(--cobalt-dark);
}

.operations-list div:nth-child(3) span {
  color: #006b80;
}

.operations-list div:nth-child(4) span {
  color: #06684f;
}

.operations-list strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
}

.compliance-section {
  border-top: 1px solid #c9eee4;
  border-bottom: 1px solid #c9eee4;
  background: var(--mint-soft);
}

.compliance-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: start;
}

.compliance-copy {
  padding-right: 20px;
}

.compliance-copy > p:not(.eyebrow) {
  color: #405d58;
  font-size: 18px;
}

.compliance-copy .button {
  margin-top: 10px;
}

.compliance-measures {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #a8dcd0;
  border-left: 1px solid #a8dcd0;
}

.compliance-measures article {
  min-height: 228px;
  padding: 28px;
  border-right: 1px solid #a8dcd0;
  border-bottom: 1px solid #a8dcd0;
}

.compliance-measures span {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
}

.compliance-measures article:nth-child(2) span {
  color: var(--cobalt-dark);
}

.compliance-measures article:nth-child(3) span {
  color: #006b80;
}

.compliance-measures article:nth-child(4) span {
  color: #06684f;
}

.compliance-measures h3 {
  margin-top: 18px;
  font-size: 22px;
}

.compliance-measures p {
  margin-bottom: 0;
  color: #46645e;
  font-size: 15px;
}

.process-section {
  background: var(--ink);
  color: var(--paper);
}

.process-section h2,
.process-section h3 {
  color: var(--paper);
}

.process-section .heading-split > p {
  color: #c8d7e5;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.process-track li {
  position: relative;
  min-height: 230px;
  padding: 32px 30px 0 0;
  border-top: 2px solid rgba(255, 255, 255, 0.28);
}

.process-track li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.process-track li:nth-child(2)::before {
  background: var(--cyan);
}

.process-track li:nth-child(3)::before {
  background: var(--yellow);
}

.process-track li:nth-child(4)::before {
  background: var(--mint);
}

.process-track span {
  color: #75ecdc;
  font-size: 13px;
  font-weight: 900;
}

.process-track h3 {
  margin-top: 16px;
  font-size: 27px;
}

.process-track p {
  max-width: 245px;
  color: #c8d7e5;
  font-size: 15px;
}

.faq-section {
  background: var(--paper);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 80px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 48px 23px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 19px;
  width: 30px;
  height: 30px;
  color: var(--cobalt);
  font-size: 26px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
}

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

.faq-list details p {
  max-width: 720px;
  margin: -3px 50px 24px 0;
  color: var(--muted);
}

.contact-section {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
  gap: 72px;
  align-items: start;
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.contact-details {
  margin-top: 36px;
  border-top: 1px solid #cbd5df;
}

.contact-details p {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid #cbd5df;
}

.contact-details span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-details a {
  color: var(--cobalt-dark);
  font-weight: 800;
}

.contact-details strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 38px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--coral);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

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

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #bfcbd7;
  border-radius: 4px;
  background: var(--paper);
  color: var(--text);
  font-size: 16px;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cobalt);
  outline: 3px solid rgba(47, 91, 255, 0.18);
}

.contact-form .button {
  width: fit-content;
  min-width: 170px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  padding: 66px 0 28px;
  border-top: 5px solid var(--coral);
  background: var(--ink);
  color: var(--paper);
}

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

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid strong {
  margin-bottom: 5px;
  color: var(--paper);
  font-size: 14px;
}

.footer-grid a,
.footer-privacy-choice,
.footer-grid p {
  color: #c8d7e5;
  font-size: 14px;
}

.footer-privacy-choice {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.footer-grid a:hover,
.footer-privacy-choice:hover {
  color: #75ecdc;
}

.footer-brand img {
  width: 188px;
  height: auto;
}

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

.social-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-shortcut {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 9px;
  padding: 6px 11px 6px 7px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.social-mark {
  position: relative;
  display: inline-grid;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}

.social-mark-facebook {
  padding-top: 4px;
  background: #1877f2;
}

.social-mark-instagram {
  border: 2px solid #fff;
  background: #d62976;
}

.social-mark-instagram::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.social-mark-instagram::after {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
}

.social-mark-fiverr,
.social-mark-upwork,
.social-mark-whatsapp {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0;
}

.social-mark-fiverr {
  background: #1dbf73;
}

.social-mark-upwork {
  background: #14a800;
}

.social-mark-whatsapp {
  background: #25d366;
  text-transform: uppercase;
}

.footer-social-shortcuts {
  margin-top: 12px;
}

.footer-social-shortcuts .social-shortcut {
  border-color: rgba(255, 255, 255, 0.24);
  color: #e7f1f8;
}

.footer-social-shortcuts .social-shortcut:hover {
  border-color: #75ecdc;
  color: #75ecdc;
}

.contact-social-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: start;
  padding-top: 8px;
}

.contact-social-row > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-social-shortcuts .social-shortcut {
  border-color: var(--line);
  color: var(--ink);
}

.contact-social-shortcuts .social-shortcut:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.copyright {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #9fb0c2;
  font-size: 13px;
}

.analytics-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1200;
  display: grid;
  width: min(960px, calc(100% - 36px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid #b9c8d5;
  border-top: 4px solid var(--teal);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(11, 22, 40, 0.24);
  color: var(--ink);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent strong {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

.analytics-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.analytics-consent p a {
  color: var(--cobalt-dark);
  font-weight: 750;
  text-decoration: underline;
}

.analytics-consent-actions {
  display: flex;
  gap: 9px;
}

.analytics-consent .button {
  min-height: 44px;
  padding: 9px 15px;
  font-size: 14px;
}

.analytics-consent .button.ghost {
  border-color: #9aabba;
  background: #fff;
  color: var(--ink);
}

.analytics-consent .button.ghost:hover {
  border-color: var(--cobalt);
  background: #eef5fb;
  color: var(--cobalt-dark);
}

.landing-hero {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  overflow: hidden;
  background: var(--ink);
}

.landing-hero-media,
.landing-hero-media img,
.landing-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landing-hero-media img {
  object-fit: cover;
  object-position: center;
}

.landing-hero-shade {
  z-index: 1;
  background: rgba(5, 14, 28, 0.62);
}

.landing-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 620px;
  align-content: center;
  padding: 68px 0 76px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 34px;
  color: #d9e6f2;
  font-size: 13px;
  font-weight: 750;
}

.breadcrumb a:hover {
  color: #75ecdc;
}

.breadcrumb span[aria-hidden="true"] {
  color: #75ecdc;
}

.landing-hero-copy {
  width: min(760px, 68%);
}

.landing-hero h1 {
  margin-bottom: 22px;
  color: var(--paper);
  font-size: 62px;
  text-wrap: balance;
  text-shadow: 0 3px 20px rgba(5, 14, 28, 0.35);
}

.landing-lede {
  max-width: 700px;
  margin-bottom: 30px;
  color: #edf6ff;
  font-size: 21px;
  line-height: 1.55;
  text-shadow: 0 2px 14px rgba(5, 14, 28, 0.45);
}

.landing-proof {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.landing-proof-grid > div {
  display: grid;
  align-content: center;
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.landing-proof-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.landing-proof-grid strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.landing-proof-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.landing-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.68fr);
  gap: 80px;
  align-items: start;
}

.landing-prose h2 {
  max-width: 760px;
}

.landing-prose > p:not(.eyebrow) {
  max-width: 790px;
  color: var(--muted);
  font-size: 18px;
}

.landing-fit {
  padding: 34px;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.landing-fit .mega-heading {
  color: #75ecdc;
}

.landing-fit .plain-checks {
  margin: 20px 0 28px;
  color: #e6f0f8;
  font-size: 15px;
}

.landing-fit .plain-checks li::before {
  background: var(--cyan);
}

.landing-fit .text-link {
  color: #75ecdc;
}

.landing-detail-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.landing-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--line);
}

.landing-detail-grid article {
  min-height: 330px;
  padding: 38px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.landing-detail-grid article > span {
  display: block;
  margin-bottom: 24px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
}

.landing-detail-grid article:nth-child(2) > span {
  color: var(--cobalt-dark);
}

.landing-detail-grid article:nth-child(3) > span {
  color: #006b80;
}

.landing-detail-grid article:nth-child(4) > span {
  color: #06684f;
}

.landing-detail-grid h3 {
  font-size: 26px;
}

.landing-detail-grid p,
.landing-detail-grid li {
  color: var(--muted);
  font-size: 15px;
}

.landing-detail-grid ul {
  display: grid;
  gap: 7px;
  margin: 20px 0 0;
  padding-left: 19px;
}

.landing-buyer {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.landing-buyer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.landing-buyer-grid article {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 4px 0 var(--coral);
}

.landing-buyer-grid article:nth-child(2) {
  box-shadow: inset 0 4px 0 var(--cobalt);
}

.landing-buyer-grid article:nth-child(3) {
  box-shadow: inset 0 4px 0 var(--cyan);
}

.landing-buyer-grid article:nth-child(4) {
  box-shadow: inset 0 4px 0 var(--mint);
}

.landing-buyer-grid h3 {
  margin-bottom: 13px;
  font-size: 22px;
}

.landing-buyer-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

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

.landing-use-grid article {
  padding-top: 26px;
  border-top: 4px solid var(--coral);
}

.landing-use-grid article:nth-child(2) {
  border-top-color: var(--cobalt);
}

.landing-use-grid article:nth-child(3) {
  border-top-color: var(--mint);
}

.landing-use-grid h3 {
  font-size: 24px;
}

.landing-use-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.landing-faq {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.landing-guide-band {
  padding: 72px 0;
  border-top: 5px solid var(--cyan);
  background: #142b4c;
  color: var(--paper);
}

.landing-guide-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: center;
}

.landing-guide-band h2 {
  max-width: 820px;
  color: var(--paper);
  font-size: 38px;
}

.landing-guide-band p:not(.eyebrow) {
  max-width: 780px;
  margin-bottom: 0;
  color: #cbd9e8;
}

.resources-preview {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.resources-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.resources-preview-grid a {
  display: grid;
  min-height: 225px;
  align-content: start;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background-color 160ms ease, color 160ms ease;
}

.resources-preview-grid a:hover {
  background: var(--mint-soft);
}

.resources-preview-grid span {
  margin-bottom: 30px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.resources-preview-grid a:nth-child(2) span {
  color: var(--cobalt-dark);
}

.resources-preview-grid a:nth-child(3) span {
  color: #006b80;
}

.resources-preview-grid a:nth-child(4) span {
  color: #06684f;
}

.resources-preview-grid a:nth-child(5) span {
  color: var(--coral-dark);
}

.resources-preview-grid a:nth-child(6) span {
  color: var(--cobalt-dark);
}

.resources-preview-grid strong {
  max-width: 500px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.resources-preview-grid small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.resources-preview-all {
  display: inline-flex;
  margin-top: 28px;
}

.landing-related {
  padding: 82px 0;
  border-top: 1px solid #c9eee4;
  border-bottom: 1px solid #c9eee4;
  background: var(--mint-soft);
}

.landing-related-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 72px;
  align-items: start;
}

.landing-related h2 {
  margin-bottom: 0;
  font-size: 36px;
}

.landing-related-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #a8dcd0;
  border-left: 1px solid #a8dcd0;
}

.landing-related-links a {
  display: grid;
  min-height: 150px;
  align-content: center;
  padding: 24px;
  border-right: 1px solid #a8dcd0;
  border-bottom: 1px solid #a8dcd0;
  transition: background-color 160ms ease;
}

.landing-related-links a:hover {
  background: var(--paper);
}

.landing-related-links strong {
  color: var(--ink);
  font-size: 17px;
}

.landing-related-links span {
  color: #46645e;
  font-size: 14px;
}

.landing-cta {
  padding: 82px 0;
  background: var(--ink);
  color: var(--paper);
}

.landing-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
}

.landing-cta h2 {
  color: var(--paper);
  font-size: 42px;
}

.landing-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: #c8d7e5;
}

.resource-hero {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  overflow: hidden;
  background: var(--ink);
}

.resource-hero-media,
.resource-hero-media img,
.resource-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.resource-hero-media img {
  object-fit: cover;
  object-position: center;
}

.resource-hero-shade {
  z-index: 1;
  background: rgba(5, 14, 28, 0.68);
}

.resource-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 590px;
  align-content: center;
  padding: 64px 0 70px;
}

.resource-hero-copy {
  width: min(830px, 72%);
}

.resource-hero h1 {
  max-width: 840px;
  margin-bottom: 22px;
  color: var(--paper);
  font-size: 58px;
  text-wrap: balance;
  text-shadow: 0 3px 20px rgba(5, 14, 28, 0.35);
}

.resource-lede {
  max-width: 760px;
  color: #edf6ff;
  font-size: 20px;
  line-height: 1.55;
  text-shadow: 0 2px 14px rgba(5, 14, 28, 0.45);
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 28px;
  color: #c9d8e8;
  font-size: 13px;
  font-weight: 750;
}

.resource-meta span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 18px 3px 0;
  border-radius: 50%;
  background: var(--cyan);
}

.resource-proof {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.resource-proof-grid > div {
  display: grid;
  min-height: 112px;
  align-content: center;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}

.resource-proof-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.resource-proof-grid strong {
  color: var(--ink);
  font-size: 15px;
}

.resource-proof-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.resource-content {
  background: var(--paper);
}

.resource-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 860px);
  gap: 84px;
  justify-content: center;
  align-items: start;
}

.resource-toc {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 0;
  padding-left: 20px;
  border-left: 2px solid var(--line);
}

.resource-toc strong {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.resource-toc a {
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.resource-toc a:hover,
.resource-toc .resource-toc-cta {
  color: var(--cobalt-dark);
}

.resource-toc .resource-toc-cta {
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 850;
}

.resource-article {
  min-width: 0;
}

.resource-intro,
.resource-section,
.resource-faq {
  scroll-margin-top: 115px;
}

.resource-intro h2,
.resource-section h2,
.resource-checklist h2,
.resource-faq h2 {
  max-width: 800px;
  font-size: 42px;
  text-wrap: balance;
}

.resource-intro > p:not(.eyebrow),
.resource-section > p:not(.resource-section-index, .resource-note) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.resource-section {
  margin-top: 78px;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.resource-section-index {
  margin-bottom: 14px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.resource-subgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.resource-subgrid > div {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.resource-subgrid h3 {
  margin-bottom: 12px;
  font-size: 19px;
}

.resource-subgrid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.resource-note {
  margin-top: 28px;
  padding: 19px 22px;
  border-left: 4px solid var(--cyan);
  background: var(--surface);
  color: #41566c;
  font-size: 15px;
}

.resource-checklist {
  scroll-margin-top: 115px;
  margin-top: 82px;
  padding: 42px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
}

.resource-checklist h2 {
  color: var(--paper);
  font-size: 36px;
}

.resource-checklist > p:not(.eyebrow) {
  color: #c8d7e5;
}

.resource-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 30px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.resource-checklist li {
  position: relative;
  padding-left: 22px;
  color: #e3edf6;
  font-size: 14px;
  line-height: 1.5;
}

.resource-checklist li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.resource-faq {
  margin-top: 82px;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.resource-faq .faq-list {
  margin-top: 32px;
}

.resource-related {
  padding: 82px 0;
  border-top: 1px solid #c9eee4;
  border-bottom: 1px solid #c9eee4;
  background: var(--mint-soft);
}

.resource-related-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.4fr);
  gap: 70px;
  align-items: start;
}

.resource-related h2 {
  font-size: 36px;
}

.resource-related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #a8dcd0;
  border-left: 1px solid #a8dcd0;
}

.resource-related-links a {
  display: grid;
  min-height: 170px;
  align-content: center;
  padding: 22px;
  border-right: 1px solid #a8dcd0;
  border-bottom: 1px solid #a8dcd0;
}

.resource-related-links a:hover {
  background: var(--paper);
}

.resource-related-links strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 16px;
}

.resource-related-links span {
  color: #46645e;
  font-size: 13px;
}

.resource-hub-hero .resource-hero-copy {
  width: min(860px, 74%);
}

.resource-hub-hero .button {
  margin-top: 16px;
}

.resource-catalog {
  background: var(--surface);
}

.resource-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.resource-card {
  display: grid;
  min-height: 330px;
  align-content: start;
  padding: 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background-color 160ms ease;
}

.resource-card:hover {
  background: var(--mint-soft);
}

.resource-card-index {
  margin-bottom: 36px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
}

.resource-card:nth-child(2) .resource-card-index {
  color: var(--cobalt-dark);
}

.resource-card:nth-child(3) .resource-card-index {
  color: #006b80;
}

.resource-card:nth-child(4) .resource-card-index {
  color: #06684f;
}

.resource-card:nth-child(5) .resource-card-index {
  color: var(--coral-dark);
}

.resource-card:nth-child(6) .resource-card-index {
  color: var(--cobalt-dark);
}

.resource-card-topic {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.resource-card > strong {
  max-width: 520px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 27px;
  line-height: 1.25;
}

.resource-card-copy {
  max-width: 530px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.resource-card-meta {
  align-self: end;
  margin-top: 28px;
  color: var(--cobalt-dark);
  font-size: 13px;
  font-weight: 850;
}

.resource-service-map {
  padding: 82px 0;
  border-top: 5px solid var(--coral);
  background: var(--ink);
  color: var(--paper);
}

.resource-service-map-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 70px;
}

.resource-service-map h2 {
  color: var(--paper);
  font-size: 38px;
}

.resource-service-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.resource-service-links a {
  display: grid;
  min-height: 145px;
  align-content: center;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.resource-service-links a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.resource-service-links strong {
  color: var(--paper);
  font-size: 17px;
}

.resource-service-links span {
  color: #aebed0;
  font-size: 13px;
}

.capacity-tool-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.capacity-calculator {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.capacity-mode {
  margin: 0;
  padding: 28px 40px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.capacity-mode legend {
  float: left;
  width: 100%;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.capacity-mode-control {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #aebdcb;
  border-radius: 6px;
}

.capacity-mode-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.capacity-mode-control label {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.capacity-mode-control label + input + label {
  border-left: 1px solid #aebdcb;
}

.capacity-mode-control input:checked + label {
  background: var(--ink);
  color: var(--paper);
}

.capacity-mode-control input:focus-visible + label {
  outline: 3px solid rgba(47, 91, 255, 0.4);
  outline-offset: -3px;
}

.capacity-tool-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
}

.capacity-input-panel {
  padding: 42px 40px 46px;
}

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

.capacity-field-grid[hidden] {
  display: none;
}

.capacity-field-grid[data-mode-fields="traffic"] .capacity-field:last-child,
.capacity-common-fields .capacity-field:last-child,
.capacity-field-wide {
  grid-column: 1 / -1;
}

.capacity-common-fields {
  margin-top: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.capacity-field {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 8px;
}

.capacity-field > span:first-child {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.capacity-field input,
.capacity-field select {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 11px 13px;
  border: 1px solid #aebdcb;
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
}

.capacity-field input:focus,
.capacity-field select:focus {
  border-color: var(--cobalt);
  outline: 3px solid rgba(47, 91, 255, 0.16);
}

.capacity-field small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.capacity-input-suffix {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
}

.capacity-input-suffix input {
  border-radius: 5px 0 0 5px;
}

.capacity-input-suffix > span {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #aebdcb;
  border-left: 0;
  border-radius: 0 5px 5px 0;
  background: var(--surface-2);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.capacity-reset {
  margin-top: 30px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--cobalt-dark);
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.capacity-output-panel {
  display: grid;
  align-content: start;
  padding: 44px 40px;
  background: var(--ink);
  color: var(--paper);
}

.capacity-output-panel h3 {
  margin-bottom: 26px;
  color: var(--paper);
  font-size: 28px;
}

.capacity-primary-result {
  display: grid;
  padding: 0 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.capacity-primary-result strong {
  color: #75ecdc;
  font-size: 76px;
  line-height: 0.95;
}

.capacity-primary-result span {
  margin-top: 10px;
  color: #c8d7e5;
  font-size: 15px;
  font-weight: 750;
}

.capacity-result-grid {
  display: grid;
  margin: 0;
}

.capacity-result-grid div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.capacity-result-grid dt {
  color: #aebed0;
  font-size: 13px;
}

.capacity-result-grid dd {
  margin: 0;
  color: var(--paper);
  font-size: 14px;
  font-weight: 850;
  text-align: right;
}

.capacity-summary {
  margin: 24px 0 28px;
  color: #c8d7e5;
  font-size: 13px;
  line-height: 1.6;
}

.capacity-output-panel .button {
  width: 100%;
}

.capacity-method {
  background: var(--paper);
}

.capacity-method-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: start;
}

.capacity-method-intro {
  position: sticky;
  top: 108px;
}

.capacity-method-intro h2 {
  font-size: 40px;
}

.capacity-method-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
}

.capacity-attribution a {
  color: var(--cobalt-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.capacity-factor-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capacity-factor-list article {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.capacity-factor-list span {
  display: block;
  margin-bottom: 30px;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
}

.capacity-factor-list article:nth-child(even) span {
  color: var(--cobalt-dark);
}

.capacity-factor-list h3 {
  font-size: 22px;
}

.capacity-factor-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.capacity-faq {
  background: var(--surface);
}

.capacity-faq .wrap {
  max-width: 980px;
}

.services-section,
.operations-section,
.resources-preview,
.faq-section,
.contact-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.legal-page {
  min-height: 70vh;
  padding: 86px 0 100px;
  background: var(--surface);
}

.legal-page .wrap {
  max-width: 940px;
}

.legal-page h1 {
  font-size: 54px;
}

.legal-card {
  margin-top: 32px;
  padding: 40px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--cobalt);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.legal-card a {
  color: var(--cobalt-dark);
  font-weight: 800;
}

.compliance-page .legal-card {
  border-top-color: var(--mint);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 30px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.policy-grid article {
  padding: 26px;
  background: var(--paper);
}

.policy-grid h2 {
  font-size: 22px;
}

.policy-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.notice-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--surface);
}

.notice-card {
  width: min(620px, 100%);
  padding: 38px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--coral);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.notice-card h1 {
  font-size: 44px;
}

@media (max-width: 1180px) {
  .nav-row {
    gap: 18px;
  }

  .brand img {
    width: 172px;
  }

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

  .portal-link {
    display: none;
  }

  .mega-layout {
    grid-template-columns: minmax(190px, 0.72fr) minmax(390px, 1.45fr) minmax(220px, 0.83fr);
  }

  .mega-operations {
    display: none;
  }

  .hero-copy {
    width: min(610px, 52%);
  }
}

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

  h2 {
    font-size: 41px;
  }

  .home-header .nav-row {
    min-height: 74px;
  }

  .home-header .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    max-height: calc(100svh - 74px);
    padding: 0 24px 22px;
    overflow-y: auto;
    overscroll-behavior: contain;
    overflow-anchor: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 30px rgba(11, 22, 40, 0.12);
  }

  .home-header .main-nav.is-open {
    display: flex;
  }

  .nav-drawer-open {
    overflow: hidden;
  }

  .nav-drawer-open .analytics-consent {
    display: none;
  }

  .home-header .nav-group {
    display: block;
  }

  .home-header .nav-link,
  .home-header .nav-trigger {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #edf1f5;
  }

  .home-header .main-nav > a::after,
  .home-header .nav-trigger::after {
    display: none;
  }

  .home-header .nav-mobile-only {
    display: flex !important;
  }

  .home-header .nav-mobile-cta {
    display: inline-flex !important;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 11px 18px;
    border-radius: 5px;
    background: var(--cobalt);
    color: var(--paper);
    font-size: 14px;
    font-weight: 800;
  }

  .home-header .mega-menu {
    position: static;
    display: none;
    border: 0;
    box-shadow: none;
  }

  .home-header .nav-group.is-open .mega-menu {
    display: block;
  }

  .home-header .mega-layout {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 4px 0 14px;
  }

  .home-header .mega-intro,
  .home-header .mega-support {
    display: none;
  }

  .home-header .mega-operations {
    display: block;
    padding-top: 20px;
  }

  .home-header .mega-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-header .mega-link {
    padding-top: 13px;
    padding-bottom: 13px;
  }

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

  .home-header .mega-stack a {
    min-width: 0;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-copy {
    width: min(640px, 70%);
  }

  .statement-grid {
    grid-template-columns: 1fr 2fr;
    gap: 24px 40px;
  }

  .statement-copy {
    grid-column: 2;
  }

  .featured-service {
    grid-template-columns: 1fr;
  }

  .featured-service-media {
    min-height: auto;
    aspect-ratio: 2 / 1;
  }

  .featured-service-copy {
    padding: 44px;
  }

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

  .service-panel:last-child {
    grid-column: 1 / -1;
  }

  .operations-layout,
  .compliance-layout,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .operations-media {
    aspect-ratio: 1500 / 823;
  }

  .faq-intro {
    position: static;
    max-width: 680px;
  }

  .contact-grid {
    gap: 48px;
  }

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

@media (max-width: 760px) {
  section[id] {
    scroll-margin-top: 82px;
  }

  .wrap {
    width: min(calc(100% - 32px), 1220px);
  }

  .section {
    padding: 78px 0;
  }

  h1 {
    font-size: 47px;
  }

  h2 {
    font-size: 37px;
  }

  .hero,
  .hero-inner {
    min-height: min(640px, calc(100svh - 80px));
  }

  .hero-media {
    bottom: auto;
    height: 280px;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-shade {
    background: rgba(5, 14, 28, 0.08);
  }

  .hero-inner {
    align-items: flex-start;
    padding: 220px 0 54px;
  }

  .hero-copy {
    width: min(620px, 100%);
  }

  .hero h1 {
    max-width: 600px;
  }

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

  .hero-assurances {
    display: none;
  }

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

  .service-rail a:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .service-rail a:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .heading-split,
  .statement-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .statement-copy {
    grid-column: auto;
  }

  .heading-split > p {
    margin-bottom: 0;
  }

  .service-grid,
  .compliance-measures,
  .process-track,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .service-panel:last-child {
    grid-column: auto;
  }

  .service-panel {
    min-height: 280px;
  }

  .operations-media {
    aspect-ratio: 1500 / 823;
  }

  .compliance-measures {
    border-left: 0;
  }

  .compliance-measures article {
    min-height: auto;
    border-left: 1px solid #a8dcd0;
  }

  .process-track {
    gap: 32px;
  }

  .process-track li {
    min-height: auto;
    padding: 28px 0 0;
  }

  .process-track p {
    max-width: none;
  }

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

  .legal-page h1 {
    font-size: 46px;
  }

  .site-header:not(.home-header) .nav-row {
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 0;
  }

  .site-header:not(.home-header) .main-nav {
    width: 100%;
    flex: 1 0 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 5px;
  }
}

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

  .wrap {
    width: min(calc(100% - 28px), 1220px);
  }

  .section {
    padding: 66px 0;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 24px;
  }

  .home-header .nav-row {
    min-height: 68px;
  }

  .home-header .main-nav {
    max-height: calc(100svh - 68px);
    padding-inline: 18px;
  }

  .home-header .mega-links,
  .home-header .mega-stack {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-header .mega-link:nth-child(odd) {
    margin-right: 0;
  }

  .brand img {
    width: 164px;
  }

  .header-actions .button {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: min(610px, calc(100svh - 72px));
  }

  .hero-media {
    bottom: auto;
    height: 220px;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-shade {
    background: rgba(5, 14, 28, 0.08);
  }

  .hero-inner {
    align-items: flex-start;
    padding: 190px 0 42px;
  }

  .hero h1 {
    margin-bottom: 18px;
  }

  .hero-lede {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button {
    min-width: 0;
    padding-inline: 14px;
  }

  .hero-assurances {
    display: none;
  }

  .service-rail a {
    min-height: 114px;
    padding: 20px 16px;
  }

  .service-rail strong {
    font-size: 16px;
  }

  .service-rail small {
    font-size: 12px;
  }

  .featured-service-media {
    aspect-ratio: 4 / 3;
  }

  .featured-service-copy {
    padding: 30px 24px 34px;
  }

  .featured-service-copy h3 {
    font-size: 31px;
  }

  .featured-service-copy p {
    font-size: 16px;
  }

  .service-panel {
    min-height: auto;
    padding: 28px 24px;
  }

  .operations-layout,
  .compliance-layout,
  .faq-layout,
  .contact-grid {
    gap: 38px;
  }

  .operations-list div {
    grid-template-columns: 82px 1fr;
    gap: 12px;
  }

  .compliance-measures article {
    padding: 24px;
  }

  .contact-details p {
    grid-template-columns: 70px 1fr;
    gap: 12px;
  }

  .contact-social-row {
    grid-template-columns: 70px 1fr;
    gap: 12px;
  }

  .contact-form,
  .legal-card,
  .notice-card {
    padding: 26px 22px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .legal-page {
    padding: 64px 0 76px;
  }

  .legal-page h1,
  .notice-card h1 {
    font-size: 38px;
  }
}

@media (max-width: 980px) {
  .landing-hero-copy {
    width: min(720px, 82%);
  }

  .landing-hero h1 {
    font-size: 54px;
  }

  .landing-overview-grid,
  .landing-related-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .landing-fit {
    width: min(660px, 100%);
  }

  .landing-cta-inner {
    gap: 36px;
  }
}

@media (max-width: 760px) {
  .landing-hero,
  .landing-hero-inner {
    min-height: 660px;
  }

  .landing-hero-media,
  .landing-hero-shade {
    bottom: auto;
    height: 260px;
  }

  .landing-hero-shade {
    background: rgba(5, 14, 28, 0.1);
  }

  .landing-hero-inner {
    align-content: start;
    padding: 278px 0 54px;
  }

  .landing-hero .breadcrumb {
    display: none;
  }

  .landing-hero-copy {
    width: 100%;
  }

  .landing-hero h1 {
    font-size: 45px;
  }

  .landing-lede {
    font-size: 18px;
  }

  .landing-overview-grid {
    gap: 36px;
  }

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

  .landing-proof-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .landing-proof-grid > div:nth-child(3) {
    grid-column: 1 / -1;
    border-left: 1px solid var(--line);
  }

  .landing-prose > p:not(.eyebrow) {
    font-size: 17px;
  }

  .landing-detail-grid,
  .landing-use-grid {
    grid-template-columns: 1fr;
  }

  .landing-detail-grid article {
    min-height: auto;
    padding: 32px;
  }

  .landing-use-grid {
    gap: 30px;
  }

  .landing-related,
  .landing-cta {
    padding: 68px 0;
  }

  .landing-cta-inner {
    grid-template-columns: 1fr;
  }

  .landing-cta-inner .button {
    width: fit-content;
  }
}

@media (max-width: 560px) {
  .landing-hero,
  .landing-hero-inner {
    min-height: 650px;
  }

  .landing-hero-media,
  .landing-hero-shade {
    height: 220px;
  }

  .landing-hero-inner {
    padding: 238px 0 44px;
  }

  .landing-hero h1 {
    margin-bottom: 17px;
    font-size: 39px;
  }

  .landing-lede {
    margin-bottom: 23px;
    font-size: 17px;
    line-height: 1.5;
  }

  .landing-hero .hero-actions {
    grid-template-columns: 1fr;
  }

  .landing-proof-grid > div {
    min-height: 104px;
    padding: 18px 16px;
  }

  .landing-proof-grid strong {
    font-size: 14px;
  }

  .landing-proof-grid span {
    font-size: 12px;
  }

  .landing-fit,
  .landing-detail-grid article {
    padding: 26px 22px;
  }

  .landing-detail-grid h3,
  .landing-use-grid h3 {
    font-size: 23px;
  }

  .landing-related h2 {
    font-size: 32px;
  }

  .landing-related-links {
    grid-template-columns: 1fr;
  }

  .landing-related-links a {
    min-height: 126px;
  }

  .landing-cta h2 {
    font-size: 34px;
  }

  .landing-cta-inner .button {
    width: 100%;
  }
}

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

  .landing-buyer-grid article {
    min-height: 220px;
  }

  .resource-layout {
    grid-template-columns: 220px minmax(0, 820px);
    gap: 50px;
  }

  .resource-related-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 980px) {
  .landing-guide-inner,
  .resource-service-map-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .landing-guide-inner .button {
    width: fit-content;
  }

  .resource-hero-copy,
  .resource-hub-hero .resource-hero-copy {
    width: min(780px, 86%);
  }

  .resource-hero h1 {
    font-size: 52px;
  }

  .resource-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .resource-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    padding: 22px 0 0;
    border-top: 2px solid var(--line);
    border-left: 0;
  }

  .resource-toc strong,
  .resource-toc .resource-toc-cta {
    grid-column: 1 / -1;
  }

  .resource-toc .resource-toc-cta {
    width: fit-content;
  }
}

@media (max-width: 760px) {
  .landing-buyer-grid,
  .resources-preview-grid,
  .resource-card-grid,
  .resource-service-links {
    grid-template-columns: 1fr;
  }

  .landing-buyer-grid article,
  .resources-preview-grid a {
    min-height: auto;
    padding: 28px 24px;
  }

  .landing-guide-band {
    padding: 62px 0;
  }

  .landing-guide-band h2 {
    font-size: 34px;
  }

  .landing-guide-inner .button {
    width: 100%;
  }

  .resources-preview-grid span {
    margin-bottom: 22px;
  }

  .resource-hero,
  .resource-hero-inner {
    min-height: 690px;
  }

  .resource-hero-media,
  .resource-hero-shade {
    bottom: auto;
    height: 260px;
  }

  .resource-hero-shade {
    background: rgba(5, 14, 28, 0.12);
  }

  .resource-hero-inner {
    align-content: start;
    padding: 280px 0 54px;
  }

  .resource-hero .breadcrumb {
    display: none;
  }

  .resource-hero-copy,
  .resource-hub-hero .resource-hero-copy {
    width: 100%;
  }

  .resource-hero h1 {
    font-size: 44px;
  }

  .resource-lede {
    font-size: 18px;
  }

  .resource-proof-grid {
    grid-template-columns: 1fr;
  }

  .resource-proof-grid > div,
  .resource-proof-grid > div:first-child {
    min-height: 96px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .resource-intro h2,
  .resource-section h2,
  .resource-faq h2 {
    font-size: 35px;
  }

  .resource-section {
    margin-top: 62px;
    padding-top: 56px;
  }

  .resource-subgrid,
  .resource-checklist ul,
  .resource-related-links {
    grid-template-columns: 1fr;
  }

  .resource-subgrid > div {
    min-height: auto;
  }

  .resource-checklist {
    margin-top: 66px;
    padding: 32px 26px;
  }

  .resource-related,
  .resource-service-map {
    padding: 66px 0;
  }

  .resource-related-links a {
    min-height: 130px;
  }

  .resource-card {
    min-height: 300px;
    padding: 30px 26px;
  }

  .resource-service-links a {
    min-height: 125px;
  }
}

@media (max-width: 560px) {
  .resource-hero,
  .resource-hero-inner {
    min-height: 675px;
  }

  .resource-hero-media,
  .resource-hero-shade {
    height: 220px;
  }

  .resource-hero-inner {
    padding: 240px 0 44px;
  }

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

  .resource-lede {
    font-size: 17px;
  }

  .resource-meta {
    display: grid;
    gap: 5px;
    margin-top: 22px;
  }

  .resource-meta span + span::before {
    display: none;
  }

  .resource-toc {
    grid-template-columns: 1fr;
  }

  .resource-toc strong,
  .resource-toc .resource-toc-cta {
    grid-column: auto;
  }

  .resource-intro h2,
  .resource-section h2,
  .resource-checklist h2,
  .resource-faq h2,
  .resource-service-map h2 {
    font-size: 32px;
  }

  .resource-intro > p:not(.eyebrow),
  .resource-section > p:not(.resource-section-index, .resource-note) {
    font-size: 17px;
  }

  .resource-card > strong {
    font-size: 24px;
  }
}

@media (max-width: 980px) {
  .capacity-tool-grid,
  .capacity-method-layout {
    grid-template-columns: 1fr;
  }

  .capacity-output-panel {
    min-height: 0;
  }

  .capacity-method-intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .analytics-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .analytics-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .capacity-mode,
  .capacity-input-panel,
  .capacity-output-panel {
    padding-right: 24px;
    padding-left: 24px;
  }

  .capacity-mode-control,
  .capacity-field-grid,
  .capacity-factor-list {
    grid-template-columns: 1fr;
  }

  .capacity-mode-control label + input + label {
    border-top: 1px solid #aebdcb;
    border-left: 0;
  }

  .capacity-field-grid[data-mode-fields="traffic"] .capacity-field:last-child,
  .capacity-common-fields .capacity-field:last-child,
  .capacity-field-wide {
    grid-column: auto;
  }

  .capacity-primary-result strong {
    font-size: 64px;
  }

  .capacity-method-intro h2 {
    font-size: 34px;
  }

  .capacity-factor-list article {
    min-height: auto;
  }
}

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

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

.whatsapp-chat-action {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border: 1px solid #168c49;
  border-radius: 8px;
  background: #1fa855;
  box-shadow: 0 10px 28px rgba(11, 31, 46, 0.2);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.whatsapp-chat-action:hover,
.whatsapp-chat-action:focus-visible {
  background: #168c49;
  box-shadow: 0 12px 32px rgba(11, 31, 46, 0.28);
  transform: translateY(-2px);
}

.whatsapp-chat-action:focus-visible {
  outline: 3px solid #f2b84b;
  outline-offset: 3px;
}

.whatsapp-chat-mark {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 680px) {
  .whatsapp-chat-action {
    right: 12px;
    bottom: 12px;
    width: 48px;
    padding: 9px;
    justify-content: center;
  }

  .whatsapp-chat-action > span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}
