:root {
  --ink: #10212c;
  --muted: #53656f;
  --soft: #f4f8f7;
  --line: #dbe8e5;
  --line-strong: #bfd5d0;
  --teal: #00746b;
  --teal-2: #0a8278;
  --teal-deep: #00524d;
  --teal-ink: #073f3a;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(20, 65, 61, 0.14);
  --shadow-soft: 0 12px 28px rgba(22, 57, 55, 0.12);
  --radius: 10px;
  --radius-sm: 7px;
  --shell: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #fbfdfc 0%, #f5f9f8 42%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(0, 116, 107, 0.38);
  outline-offset: 3px;
}

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

#what-to-send {
  scroll-margin-top: 86px;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 10px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 800;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(190, 211, 207, 0.72);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  align-items: center;
  min-height: 72px;
  gap: 18px;
}

.brand {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(145deg, #005c56 0%, #00847b 100%);
  box-shadow: 0 11px 22px rgba(0, 103, 94, 0.2);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-text strong {
  font-size: clamp(1.06rem, 2.1vw, 1.34rem);
  line-height: 1;
  letter-spacing: 0;
}

.brand-text span {
  color: var(--teal-deep);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.25;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.desktop-nav a {
  color: #314650;
  font-size: 0.92rem;
  font-weight: 800;
}

.desktop-nav a:hover {
  color: var(--teal);
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-button,
.menu-disclosure summary {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: var(--teal-deep);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(33, 76, 72, 0.08);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.icon-button:hover,
.menu-disclosure summary:hover {
  transform: translateY(-1px);
  border-color: var(--teal);
  background: #f4fbf9;
}

.icon-button svg,
.menu-disclosure summary svg {
  width: 21px;
  height: 21px;
}

.menu-disclosure {
  position: relative;
}

.menu-disclosure summary {
  list-style: none;
}

.menu-disclosure summary::-webkit-details-marker {
  display: none;
}

.mobile-nav {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  display: grid;
  min-width: 184px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.mobile-nav a {
  border-radius: 6px;
  padding: 11px 12px;
  color: #23353e;
  font-size: 0.92rem;
  font-weight: 800;
}

.mobile-nav a:hover {
  color: var(--teal);
  background: #f0faf8;
}

.hero {
  border-bottom: 1px solid rgba(219, 232, 229, 0.95);
  background:
    radial-gradient(circle at 93% 12%, rgba(0, 116, 107, 0.08) 0, rgba(0, 116, 107, 0) 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfa 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  align-items: start;
  gap: clamp(16px, 5vw, 72px);
  padding: clamp(28px, 6vw, 66px) 0 clamp(26px, 5vw, 58px);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 14px;
  border-radius: 999px;
  background: #edf8f5;
  color: #174f49;
  padding: 6px 10px;
  font-size: clamp(0.58rem, 1.4vw, 0.74rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--teal);
}

.hero h1 {
  max-width: 610px;
  margin: 0;
  color: #12222d;
  font-size: clamp(2rem, 7.2vw, 4.12rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1::first-line {
  color: #12222d;
}

.hero h1 {
  text-wrap: balance;
}

.hero h1,
.hero h1 + .hero-lede {
  min-width: 0;
}

.hero h1 span,
.hero h1 em {
  color: var(--teal);
}

.hero-lede {
  max-width: 515px;
  margin: clamp(12px, 2.3vw, 22px) 0 0;
  color: #40515a;
  font-size: clamp(0.76rem, 1.7vw, 1.04rem);
  line-height: 1.68;
  font-weight: 560;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: clamp(16px, 3vw, 27px) 0 0;
  list-style: none;
}

.service-chips li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 7px 10px;
  color: #1b343c;
  font-size: clamp(0.62rem, 1.45vw, 0.78rem);
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(37, 74, 70, 0.06);
  white-space: nowrap;
}

.service-chips svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  color: var(--teal);
}

.hero-contacts,
.contact-panel-actions {
  display: grid;
  gap: 10px;
}

.hero-contacts {
  width: min(100%, 440px);
  margin-top: clamp(16px, 3vw, 28px);
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 46px;
  gap: 10px;
  border: 1px solid var(--teal);
  border-radius: 8px;
  padding: 11px 18px;
  font-size: clamp(0.83rem, 1.9vw, 1.04rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.contact-button svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.contact-button span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 28px rgba(0, 92, 85, 0.16);
}

.contact-button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
}

.contact-button-secondary {
  color: var(--teal-deep);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--teal-deep);
  font-size: clamp(0.78rem, 1.8vw, 0.98rem);
  font-weight: 950;
}

.text-link:hover {
  color: var(--teal);
}

.text-link span {
  font-size: 1.08em;
}

.hero-visual {
  min-width: 0;
}

.workflow-canvas {
  position: relative;
  width: 100%;
  min-height: 238px;
  aspect-ratio: 1.26 / 1;
}

.workflow-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(205, 221, 218, 0.96);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 28px rgba(21, 55, 52, 0.13);
  color: #13232c;
}

.workflow-card strong {
  display: block;
  line-height: 1.15;
  font-weight: 950;
}

.workflow-card-small {
  padding: clamp(7px, 1.4vw, 14px);
  font-size: clamp(0.43rem, 1.05vw, 0.78rem);
}

.workflow-card-small strong {
  margin-bottom: 7px;
}

.workflow-card ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-card li {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #2d3f47;
  font-weight: 760;
  line-height: 1.08;
}

.workflow-card li svg {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  color: var(--teal);
}

.workflow-publisher {
  top: 3%;
  left: 5%;
  width: 30%;
}

.workflow-opportunity {
  top: 11%;
  right: 2%;
  width: 31%;
  min-height: 25%;
}

.workflow-metrics {
  left: 5%;
  bottom: 0;
  width: 31%;
}

.workflow-terms {
  right: 4%;
  bottom: 4%;
  width: 28%;
  min-height: 22%;
}

.workflow-card-main {
  top: 35%;
  left: 41%;
  width: 31%;
  transform: translateX(-50%);
  padding: clamp(10px, 2vw, 20px);
  text-align: center;
  font-size: clamp(0.5rem, 1.2vw, 0.94rem);
}

.workflow-card-main strong {
  margin-top: 8px;
  font-size: 1.1em;
}

.workflow-card-main > span:not(.workflow-mark) {
  display: block;
  margin: 9px 0;
  color: #6b7a81;
  font-size: 0.82em;
  font-weight: 700;
}

.workflow-mark {
  display: grid;
  width: clamp(32px, 5vw, 54px);
  height: clamp(32px, 5vw, 54px);
  margin: -7px auto 0;
  place-items: center;
  border-radius: 9px;
  color: var(--white);
  background: linear-gradient(145deg, #00605a, #008a80);
  box-shadow: 0 12px 24px rgba(0, 92, 85, 0.2);
  font-size: 1.35em;
  font-weight: 950;
}

.mini-chart {
  position: relative;
  display: flex;
  align-items: end;
  gap: 4px;
  height: 28px;
  margin-top: 10px;
}

.mini-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(0, 116, 107, 0.08), rgba(0, 116, 107, 0.02));
}

.mini-chart span {
  position: relative;
  width: 22%;
  border-radius: 2px 2px 0 0;
  background: rgba(0, 116, 107, 0.18);
}

.mini-chart span:nth-child(1) { height: 30%; }
.mini-chart span:nth-child(2) { height: 48%; }
.mini-chart span:nth-child(3) {
  height: 64%;
  background: var(--teal);
}

.round-check {
  position: absolute;
  right: -12px;
  top: 50%;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 10px 18px rgba(0, 92, 85, 0.22);
}

.round-check svg {
  width: 14px;
  height: 14px;
}

.bars {
  display: flex;
  align-items: end;
  height: 34px;
  gap: 5px;
  margin-top: 11px;
}

.bars span {
  flex: 1 1 auto;
  min-width: 5px;
  border-radius: 3px 3px 0 0;
  background: rgba(0, 116, 107, 0.16);
}

.bars span:nth-child(1) { height: 35%; }
.bars span:nth-child(2) { height: 62%; }
.bars span:nth-child(3) { height: 46%; }
.bars span:nth-child(4) { height: 78%; background: rgba(0, 116, 107, 0.3); }

.axis-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 5px;
  color: #7f8c90;
  font-size: 0.68em;
  font-weight: 800;
}

.terms-lines {
  display: grid;
  gap: 5px;
  margin-top: 13px;
}

.terms-lines span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: #dfeae7;
}

.terms-lines span:nth-child(2) {
  width: 78%;
}

.terms-lines span:nth-child(3) {
  width: 56%;
}

.connector {
  position: absolute;
  z-index: 1;
  opacity: 0.72;
  pointer-events: none;
}

.connector-v {
  border-left: 2px dotted rgba(0, 116, 107, 0.35);
}

.connector-h {
  border-top: 2px dotted rgba(0, 116, 107, 0.35);
}

.connector-left {
  left: 29%;
  top: 26%;
  height: 48%;
}

.connector-right {
  right: 18%;
  top: 31%;
  height: 40%;
}

.connector-top {
  left: 30%;
  right: 19%;
  top: 31%;
}

.connector-mid {
  left: 39%;
  right: 25%;
  top: 57%;
}

.connector-dot {
  position: absolute;
  z-index: 1;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(0, 116, 107, 0.38);
  box-shadow: 0 -13px 0 rgba(0, 116, 107, 0.16), 0 13px 0 rgba(0, 116, 107, 0.16);
}

.connector-dot-a {
  left: 73%;
  top: 23%;
}

.connector-dot-b {
  left: 56%;
  top: 18%;
}

.link-node {
  position: absolute;
  z-index: 3;
  left: 27%;
  top: 48%;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 9px 18px rgba(0, 92, 85, 0.22);
}

.link-node svg {
  width: 14px;
  height: 14px;
}

.next-step-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 14px;
  max-width: 420px;
  margin: clamp(14px, 3vw, 25px) 0 0 auto;
  color: #40515a;
  font-size: clamp(0.74rem, 1.6vw, 1.02rem);
  font-weight: 650;
  line-height: 1.56;
}

.next-step-note svg {
  width: 27px;
  height: 27px;
  padding: 6px;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal);
  stroke-width: 2.5;
}

.partner-reasons {
  padding: clamp(22px, 4vw, 46px) 0 10px;
  background: #ffffff;
}

h2 {
  margin: 0;
  color: #152630;
  font-size: clamp(1.05rem, 2.5vw, 1.85rem);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.partner-reasons h2 {
  margin-bottom: 18px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid #eef3f1;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(24, 55, 52, 0.04);
}

.benefit-grid article {
  display: grid;
  align-content: start;
  justify-items: center;
  min-width: 0;
  min-height: 138px;
  padding: clamp(13px, 2.2vw, 22px) clamp(5px, 1.5vw, 15px);
  text-align: center;
}

.benefit-grid article + article {
  border-left: 1px solid #eef3f1;
}

.benefit-grid svg {
  width: clamp(29px, 4vw, 45px);
  height: clamp(29px, 4vw, 45px);
  margin-bottom: 9px;
  color: var(--teal);
  stroke-width: 1.65;
}

.benefit-grid h3 {
  margin: 0 0 5px;
  font-size: clamp(0.6rem, 1.4vw, 0.96rem);
  line-height: 1.12;
  font-weight: 950;
}

.benefit-grid p {
  margin: 0;
  color: #53656f;
  font-size: clamp(0.54rem, 1.18vw, 0.82rem);
  font-weight: 610;
  line-height: 1.34;
}

.formats,
.what-to-send,
.contact-section {
  background: #ffffff;
}

.formats {
  padding: 18px 0 0;
}

.section-card {
  border: 1px solid #e7efed;
  border-radius: var(--radius);
  background: var(--white);
  padding: clamp(15px, 2.5vw, 24px);
  box-shadow: 0 13px 24px rgba(27, 62, 59, 0.05);
}

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

.format-card {
  display: grid;
  grid-template-columns: clamp(38px, 5vw, 58px) minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  min-height: clamp(90px, 11vw, 126px);
  gap: clamp(9px, 1.7vw, 17px);
  border: 1px solid #edf3f2;
  border-radius: 9px;
  background: linear-gradient(180deg, #ffffff, #fcfefd);
  padding: clamp(12px, 2vw, 22px);
}

.format-card > svg {
  width: clamp(34px, 5vw, 58px);
  height: clamp(34px, 5vw, 58px);
  color: var(--teal);
  stroke-width: 1.55;
}

.format-card h3 {
  margin: 0 0 4px;
  font-size: clamp(0.68rem, 1.45vw, 1rem);
  line-height: 1.12;
  font-weight: 950;
}

.format-card p {
  margin: 0;
  color: #53656f;
  font-size: clamp(0.57rem, 1.18vw, 0.82rem);
  line-height: 1.33;
  font-weight: 620;
}

.what-to-send {
  padding: clamp(22px, 4vw, 44px) 0 0;
}

.send-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(16px, 4vw, 46px);
  align-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(237, 248, 245, 0.95), rgba(255, 255, 255, 0.95)),
    radial-gradient(circle at 88% 10%, rgba(0, 116, 107, 0.12), transparent 32%);
  border: 1px solid #e0ebe8;
  padding: clamp(16px, 3.6vw, 34px);
}

.send-layout .eyebrow {
  margin-bottom: 11px;
}

.send-layout p:not(.eyebrow) {
  max-width: 390px;
  margin: 12px 0 0;
  color: #4b5d66;
  font-size: clamp(0.74rem, 1.6vw, 0.98rem);
  font-weight: 620;
  line-height: 1.55;
}

.send-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.send-list li {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 8px;
  border: 1px solid rgba(190, 213, 208, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  padding: 10px 12px;
  color: #223840;
  font-size: clamp(0.64rem, 1.3vw, 0.88rem);
  font-weight: 850;
  line-height: 1.1;
}

.send-list svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--teal);
  stroke-width: 2.4;
}

.contact-section {
  padding: clamp(22px, 4vw, 42px) 0 0;
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(12px, 2vw, 30px);
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 86% 19%, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(135deg, #00514d, #006f66 56%, #005852);
  color: var(--white);
  padding: clamp(19px, 3.2vw, 40px);
  box-shadow: 0 24px 50px rgba(0, 76, 70, 0.2);
}

.map-dots {
  position: absolute;
  top: 10%;
  right: 3%;
  width: min(52%, 480px);
  height: auto;
  opacity: 0.28;
  pointer-events: none;
}

.contact-copy,
.contact-perks {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  color: var(--white);
  font-size: clamp(1.14rem, 3vw, 2.25rem);
}

.contact-copy p {
  max-width: 360px;
  margin: 9px 0 17px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.74rem, 1.55vw, 0.98rem);
  font-weight: 650;
  line-height: 1.55;
}

.contact-panel-actions {
  width: min(100%, 390px);
}

.contact-button-light {
  color: var(--teal-deep);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.78);
}

.contact-button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.54);
}

.contact-perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: auto;
}

.contact-perks article {
  display: grid;
  min-width: 0;
  align-items: center;
  justify-items: center;
  gap: 9px;
  padding: 6px 14px;
  text-align: center;
}

.contact-perks article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.23);
}

.contact-perks svg {
  width: clamp(27px, 4vw, 42px);
  height: clamp(27px, 4vw, 42px);
  color: rgba(255, 255, 255, 0.88);
  stroke-width: 1.55;
}

.contact-perks span {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.62rem, 1.25vw, 0.92rem);
  font-weight: 850;
  line-height: 1.2;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #edf3f1;
  border-top: 0;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 24px rgba(27, 62, 59, 0.04);
}

.stats-strip article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "icon value"
    "icon label";
  align-items: center;
  column-gap: clamp(7px, 1.4vw, 14px);
  min-width: 0;
  padding: clamp(12px, 2.4vw, 22px);
}

.stats-strip article + article {
  border-left: 1px solid #edf3f1;
}

.stats-strip svg {
  grid-area: icon;
  width: clamp(26px, 4vw, 44px);
  height: clamp(26px, 4vw, 44px);
  color: var(--teal);
  stroke-width: 1.55;
}

.stats-strip strong {
  grid-area: value;
  font-size: clamp(0.83rem, 2vw, 1.28rem);
  line-height: 1.05;
  font-weight: 950;
}

.stats-strip span {
  grid-area: label;
  color: #41545d;
  font-size: clamp(0.58rem, 1.2vw, 0.82rem);
  font-weight: 740;
  line-height: 1.22;
}

.site-footer {
  padding: 26px 0 34px;
  color: #647780;
  background: #ffffff;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 650;
}

@media (min-width: 1120px) {
  .workflow-card-main {
    left: 43%;
  }

  .workflow-canvas {
    min-height: 330px;
  }
}

@media (min-width: 900px) {
  .hero-grid {
    padding: 48px 0 46px;
  }

  .menu-disclosure {
    display: none;
  }

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

@media (max-width: 899px) {
  .desktop-nav {
    display: none;
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .format-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (min-width: 721px) and (max-width: 899px) {
  .hero-grid {
    gap: 28px;
    padding: 36px 0 38px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 7.3vw, 4rem);
  }

  .workflow-canvas {
    min-height: 310px;
  }

  .benefit-grid p,
  .format-card p,
  .stats-strip span {
    font-size: 0.78rem;
  }
}

@media (max-width: 720px) {
  .page-shell,
  .header-shell {
    width: min(100% - 28px, var(--shell));
  }

  .header-shell {
    min-height: 66px;
    gap: 10px;
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 1.16rem;
  }

  .brand-text strong {
    font-size: 1.03rem;
  }

  .brand-text span {
    font-size: 0.66rem;
  }

  .header-actions {
    gap: 8px;
  }

  .icon-button,
  .menu-disclosure summary {
    width: 38px;
    height: 38px;
  }

  .hero-grid {
    gap: clamp(11px, 3.2vw, 18px);
    padding-top: 24px;
  }

  .workflow-canvas {
    min-height: 220px;
  }

  .next-step-note {
    gap: 9px;
  }

  .next-step-note svg {
    width: 23px;
    height: 23px;
    padding: 5px;
  }
}

@media (max-width: 560px) {
  .page-shell,
  .header-shell {
    width: min(100% - 24px, var(--shell));
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  }

  .hero h1 {
    font-size: clamp(1.72rem, 7.1vw, 2.35rem);
  }

  .hero-lede {
    line-height: 1.56;
  }

  .service-chips {
    gap: 6px;
  }

  .service-chips li {
    max-width: 100%;
    padding: 6px 8px;
  }

  .hero-contacts,
  .contact-panel-actions {
    gap: 8px;
  }

  .contact-button {
    min-height: 43px;
    padding: 10px 11px;
    gap: 8px;
  }

  .contact-button svg {
    width: 19px;
    height: 19px;
  }

  .workflow-canvas {
    min-height: 205px;
  }

  .workflow-card-small {
    border-radius: 7px;
  }

  .workflow-card-main {
    left: 43%;
    width: 34%;
  }

  .workflow-publisher,
  .workflow-metrics {
    left: 0;
    width: 34%;
  }

  .workflow-opportunity {
    right: 0;
    width: 34%;
  }

  .workflow-terms {
    right: 1%;
    width: 31%;
  }

  .next-step-note {
    margin-top: 12px;
    font-size: clamp(0.6rem, 2vw, 0.74rem);
    line-height: 1.46;
  }

  .benefit-grid article {
    min-height: 128px;
  }

  .format-grid {
    gap: 8px;
  }

  .format-card {
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 8px;
    min-height: 91px;
    padding: 11px;
  }

  .send-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .send-list {
    gap: 7px;
  }

  .send-list li {
    padding: 8px 9px;
    gap: 6px;
  }

  .contact-panel {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    padding: 20px;
  }

  .contact-perks article {
    padding: 4px 8px;
  }

  .stats-strip article {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "icon"
      "value"
      "label";
    justify-items: center;
    text-align: center;
    row-gap: 3px;
    padding: 11px 5px;
  }
}

@media (max-width: 420px) {
  .page-shell,
  .header-shell {
    width: min(100% - 22px, var(--shell));
  }

  .header-shell {
    min-height: 64px;
  }

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

  .brand-text strong {
    font-size: 0.98rem;
  }

  .brand-text span {
    font-size: 0.62rem;
  }

  .icon-button,
  .menu-disclosure summary {
    width: 36px;
    height: 36px;
  }

  .icon-button svg,
  .menu-disclosure summary svg {
    width: 19px;
    height: 19px;
  }

  .hero-grid {
    gap: 10px;
    padding-top: 21px;
    padding-bottom: 22px;
  }

  .eyebrow {
    margin-bottom: 10px;
    padding: 5px 8px;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 6.75vw, 1.86rem);
    line-height: 1.02;
  }

  .hero-lede {
    font-size: 0.67rem;
    line-height: 1.5;
  }

  .service-chips li {
    font-size: 0.55rem;
  }

  .service-chips svg {
    width: 12px;
    height: 12px;
  }

  .contact-button {
    min-height: 40px;
    border-radius: 7px;
    font-size: 0.68rem;
    padding-inline: 9px;
  }

  .contact-button svg {
    width: 17px;
    height: 17px;
  }

  .text-link {
    margin-top: 13px;
    font-size: 0.68rem;
  }

  .workflow-canvas {
    min-height: 194px;
  }

  .workflow-card-small {
    padding: 6px;
  }

  .workflow-card-small strong {
    margin-bottom: 5px;
  }

  .workflow-card ul {
    gap: 3px;
  }

  .mini-chart {
    height: 21px;
    margin-top: 7px;
  }

  .bars {
    height: 23px;
    gap: 3px;
    margin-top: 7px;
  }

  .round-check {
    width: 20px;
    height: 20px;
    right: -8px;
  }

  .link-node {
    width: 22px;
    height: 22px;
  }

  .next-step-note {
    font-size: 0.69rem;
    line-height: 1.42;
  }

  .partner-reasons h2 {
    margin-bottom: 12px;
  }

  .benefit-grid {
    border-radius: 9px;
  }

  .benefit-grid article {
    min-height: 145px;
    padding: 13px 5px;
  }

  .benefit-grid svg {
    margin-bottom: 7px;
  }

  .benefit-grid p {
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .section-card {
    padding: 12px;
  }

  .format-card {
    min-height: 100px;
  }

  .format-card h3 {
    font-size: 0.72rem;
  }

  .format-card p {
    font-size: 0.68rem;
    line-height: 1.26;
  }

  .send-layout {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 15px;
  }

  .send-list li {
    font-size: 0.61rem;
  }

  .contact-panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 9px;
    padding: 18px 14px;
  }

  .contact-copy h2 {
    font-size: 1.03rem;
  }

  .contact-copy p {
    font-size: 0.66rem;
    line-height: 1.45;
  }

  .contact-perks {
    align-self: end;
  }

  .contact-perks span {
    font-size: 0.68rem;
  }

  .stats-strip strong {
    font-size: 0.82rem;
  }

  .stats-strip span {
    font-size: 0.66rem;
  }

  .workflow-card li:nth-child(n+3),
  .workflow-card-main > span:not(.workflow-mark) {
    display: none;
  }
}

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

  .header-actions {
    gap: 6px;
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  .brand-text span {
    font-size: 0.56rem;
  }

  .icon-button,
  .menu-disclosure summary {
    width: 34px;
    height: 34px;
  }

  .hero h1 {
    font-size: 1.36rem;
  }

  .hero-lede {
    font-size: 0.63rem;
  }

  .workflow-canvas {
    min-height: 178px;
  }

  .benefit-grid h3 {
    font-size: 0.64rem;
  }

  .benefit-grid p {
    font-size: 0.65rem;
  }

  .format-card {
    grid-template-columns: 29px minmax(0, 1fr);
    padding: 9px;
    min-height: 104px;
  }

  .format-card > svg {
    width: 29px;
    height: 29px;
  }

  .format-card h3 {
    font-size: 0.7rem;
  }

  .format-card p {
    font-size: 0.65rem;
  }
}
