@font-face {
  font-family: "Lexend";
  src: url("../fonts/lexend-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Lexend";
  src: url("../fonts/lexend-600.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Lexend";
  src: url("../fonts/lexend-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-400.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../fonts/source-sans-600.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

:root {
  --il-bg: #FFFFFF;
  --il-surface: #F5F6F8;
  --il-ink: #1B1F3B;
  --il-accent: #F2A93B;
  --il-accent-light: #F8BB5D;
  --il-accent-deep: #E79724;
  --il-secondary: #2FA88C;
  --il-muted: #4A4E5A;
  --il-line: rgba(27, 31, 59, .14);
  --il-shadow: 0 20px 48px rgba(27, 31, 59, .12);
  --il-shell: min(1200px, calc(100% - 40px));
  --il-header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--il-header-height) + 20px);
}

body {
  margin: 0;
  color: var(--il-ink);
  background: var(--il-bg);
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.il-menu-open {
  overflow: hidden;
}

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

h1,
h2,
h3,
h4,
.il-brand,
.il-button,
.il-menu {
  font-family: "Lexend", system-ui, sans-serif;
}

h1,
h2,
h3,
h4 {
  color: var(--il-ink);
  font-weight: 700;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.15rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
}

p,
li {
  max-width: 68ch;
}

a {
  color: inherit;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--il-secondary);
  outline-offset: 3px;
}

::selection {
  color: var(--il-ink);
  background: var(--il-accent-light);
}

.il-shell {
  width: var(--il-shell);
  margin-inline: auto;
}

.il-main {
  min-height: 60vh;
  overflow-x: clip;
}

.il-skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--il-bg);
  background: var(--il-ink);
  transform: translateY(-160%);
}

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

.il-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .96);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.il-header.is-scrolled {
  border-bottom-color: var(--il-line);
  box-shadow: 0 10px 28px rgba(27, 31, 59, .07);
}

.il-header__inner {
  display: flex;
  min-height: var(--il-header-height);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.il-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--il-ink);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -.035em;
  text-decoration: none;
}

.il-brand__name > span {
  color: var(--il-secondary);
}

.il-brand__mark {
  display: grid;
  width: 30px;
  height: 30px;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  align-items: end;
  padding: 5px;
  border-radius: 8px;
  background: var(--il-ink);
}

.il-brand__mark span {
  display: block;
  border-radius: 2px 2px 1px 1px;
  background: var(--il-accent);
}

.il-brand__mark span:nth-child(1) { height: 42%; }
.il-brand__mark span:nth-child(2) { height: 75%; background: var(--il-secondary); }
.il-brand__mark span:nth-child(3) { height: 100%; }

.il-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.il-menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  margin: 0;
  padding: 0;
  font-size: .88rem;
  font-weight: 600;
  list-style: none;
}

.il-menu a {
  position: relative;
  text-decoration: none;
}

.il-menu a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--il-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .18s ease;
}

.il-menu a:hover::after,
.il-menu .current-menu-item > a::after {
  transform: scaleX(1);
}

.il-menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border: 0;
  color: var(--il-ink);
  background: transparent;
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 600;
}

.il-menu-toggle__icon,
.il-menu-toggle__icon::before,
.il-menu-toggle__icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}

.il-menu-toggle__icon {
  position: relative;
}

.il-menu-toggle__icon::before { position: absolute; top: -7px; }
.il-menu-toggle__icon::after { position: absolute; top: 7px; }

.il-menu-toggle[aria-expanded="true"] .il-menu-toggle__icon {
  background: transparent;
}

.il-menu-toggle[aria-expanded="true"] .il-menu-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.il-menu-toggle[aria-expanded="true"] .il-menu-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.il-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid var(--il-accent);
  border-radius: 10px;
  color: var(--il-ink);
  background: var(--il-accent);
  font-size: .96rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.il-button:hover {
  border-color: var(--il-ink);
  color: var(--il-bg);
  background: var(--il-ink);
  transform: translateY(-2px);
}

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

.il-button--outline {
  border-color: var(--il-ink);
  background: transparent;
}

.il-button--ink {
  border-color: var(--il-ink);
  color: var(--il-bg);
  background: var(--il-ink);
}

.il-button--ink:hover {
  border-color: var(--il-bg);
  color: var(--il-ink);
  background: var(--il-bg);
}

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

.il-kicker,
.il-page-hero__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--il-secondary);
  font-family: "Lexend", system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .085em;
  line-height: 1.2;
  text-transform: uppercase;
}

.il-kicker::before,
.il-page-hero__brand::before {
  width: 30px;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: .7;
}

.il-hero {
  position: relative;
  padding: clamp(46px, 6vw, 76px) 0 clamp(58px, 7vw, 90px);
  background: var(--il-bg);
}

.il-hero__glow {
  position: absolute;
  top: -100px;
  right: -160px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 168, 140, .16), rgba(242, 169, 59, .09) 48%, rgba(255, 255, 255, 0) 72%);
  pointer-events: none;
}

.il-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(380px, .93fr);
  gap: clamp(46px, 7vw, 86px);
  align-items: center;
}

.il-hero h1 {
  max-width: none;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 3.8vw, 3.15rem);
}

.il-hero h1 span {
  position: relative;
  display: block;
  z-index: 0;
}

.il-hero h1 span::before {
  position: absolute;
  z-index: -1;
  right: -.04em;
  bottom: .05em;
  left: -.04em;
  height: .24em;
  background: rgba(242, 169, 59, .52);
  content: "";
}

.il-hero__lead {
  max-width: 52ch;
  margin-bottom: 28px;
  color: var(--il-muted);
  font-size: clamp(1.1rem, 1.6vw, 1.28rem);
}

.il-hero__media,
.il-fit__media {
  position: relative;
  isolation: isolate;
  margin: 0;
}

.il-hero__media img,
.il-fit__media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--il-shadow);
  filter: saturate(.72) contrast(1.04);
  object-fit: cover;
}

.il-hero__media img {
  height: clamp(470px, calc(100vh - 220px), 590px);
  object-position: center;
}

.il-image-frame {
  position: absolute;
  z-index: 0;
  inset: 20px -20px -20px 20px;
  border: 2px solid var(--il-accent);
  border-radius: 24px;
}

.il-image-frame--teal {
  inset: -18px 18px 18px -18px;
  border-color: var(--il-secondary);
}

.il-hero__media figcaption {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 26px;
  width: min(320px, 82%);
  padding: 17px 20px;
  border-left: 5px solid var(--il-accent);
  border-radius: 10px;
  color: var(--il-bg);
  background: var(--il-ink);
  box-shadow: 0 18px 42px rgba(27, 31, 59, .2);
  font-size: .96rem;
  line-height: 1.45;
}

.il-friction {
  padding: 36px 0;
  color: var(--il-bg);
  background: var(--il-ink);
}

.il-friction__grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 54px;
  align-items: center;
}

.il-friction h2 {
  max-width: 23ch;
  margin: 0;
  color: var(--il-bg);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

.il-friction__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.il-friction__items div {
  padding: 17px 15px 5px;
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.il-friction__items strong,
.il-friction__items span {
  display: block;
}

.il-friction__items strong {
  margin-bottom: 6px;
  color: var(--il-accent);
  font-family: "Lexend", system-ui, sans-serif;
  font-size: .74rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.il-friction__items span {
  font-size: .96rem;
  line-height: 1.35;
}

.il-section {
  padding: clamp(76px, 9vw, 118px) 0;
}

.il-section-head {
  max-width: 820px;
  margin-bottom: 46px;
}

.il-section-head h2 {
  max-width: 21ch;
  margin-bottom: 18px;
}

.il-section-head p {
  margin-bottom: 0;
  color: var(--il-muted);
  font-size: 1.12rem;
}

.il-solutions {
  background: var(--il-surface);
}

.il-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.il-tile {
  position: relative;
  display: block;
  min-height: 240px;
  padding: clamp(26px, 3.2vw, 38px);
  overflow: hidden;
  border: 1px solid var(--il-line);
  border-radius: 16px;
  background: var(--il-bg);
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease;
}

.il-tile:hover {
  box-shadow: 0 18px 40px rgba(27, 31, 59, .1);
  transform: translateY(-3px);
}

.il-tile:nth-child(1) { grid-column: 1 / 8; grid-row: 1 / 3; }
.il-tile:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
.il-tile:nth-child(3) { grid-column: 8 / 13; grid-row: 2; }
.il-tile:nth-child(4) { grid-column: 1 / 5; grid-row: 3; }
.il-tile:nth-child(5) { grid-column: 5 / 9; grid-row: 3; }
.il-tile:nth-child(6) { grid-column: 9 / 13; grid-row: 3; }

.il-tile > span {
  display: block;
  margin-bottom: 22px;
  color: var(--il-secondary);
  font-family: "Lexend", system-ui, sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.il-tile h3 {
  margin-bottom: 12px;
}

.il-tile p {
  margin-bottom: 0;
  color: var(--il-muted);
}

.il-tile--featured {
  min-height: 496px;
  padding: clamp(34px, 5vw, 56px);
  background: var(--il-accent);
}

.il-tile--featured > span,
.il-tile--featured p {
  color: var(--il-ink);
}

.il-tile--featured h3 {
  max-width: 13ch;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.il-tile--featured p {
  max-width: 48ch;
  font-size: 1.12rem;
}

.il-tile--featured strong {
  position: absolute;
  bottom: 38px;
  left: clamp(34px, 5vw, 56px);
  padding-bottom: 3px;
  border-bottom: 3px solid var(--il-ink);
  font-family: "Lexend", system-ui, sans-serif;
}

.il-tile--dark {
  color: var(--il-bg);
  background: var(--il-ink);
}

.il-tile--dark h3,
.il-tile--dark > span {
  color: var(--il-bg);
}

.il-tile--dark p {
  color: rgba(255, 255, 255, .76);
}

.il-tile--pattern {
  background-color: var(--il-bg);
  background-image: radial-gradient(rgba(47, 168, 140, .22) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
}

.il-process {
  background: var(--il-bg);
}

.il-process__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(56px, 8vw, 100px);
}

.il-process__intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.il-process__intro h2 {
  max-width: 17ch;
  margin-bottom: 20px;
}

.il-process__intro p {
  color: var(--il-muted);
  font-size: 1.08rem;
}

.il-text-link {
  display: inline-flex;
  margin-top: 10px;
  padding-bottom: 3px;
  border-bottom: 3px solid var(--il-accent);
  font-family: "Lexend", system-ui, sans-serif;
  font-weight: 600;
  text-decoration: none;
}

.il-timeline {
  position: relative;
  border-top: 1px solid var(--il-line);
}

.il-timeline::before {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 7px;
  width: 2px;
  background: linear-gradient(var(--il-accent), rgba(242, 169, 59, .1));
  content: "";
}

.il-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--il-line);
}

.il-timeline article > span {
  position: relative;
  z-index: 1;
  width: 14px;
  height: 14px;
  margin-top: 7px;
  border: 3px solid var(--il-bg);
  border-radius: 50%;
  background: var(--il-accent);
  box-shadow: 0 0 0 4px rgba(242, 169, 59, .22);
}

.il-timeline h3 {
  margin-bottom: 8px;
}

.il-timeline p {
  margin-bottom: 0;
  color: var(--il-muted);
}

.il-safety {
  position: relative;
  overflow: hidden;
  color: var(--il-bg);
  background: var(--il-ink);
}

.il-safety__grain {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  pointer-events: none;
}

.il-safety .il-shell {
  position: relative;
}

.il-safety h2,
.il-safety h3 {
  color: var(--il-bg);
}

.il-safety .il-kicker {
  color: var(--il-accent);
}

.il-safety__head {
  max-width: 860px;
  margin-bottom: 46px;
}

.il-safety__head h2 {
  max-width: 22ch;
  margin-bottom: 18px;
}

.il-safety__head > p:last-child {
  color: rgba(255, 255, 255, .76);
  font-size: 1.12rem;
}

.il-safety__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.il-safety__grid article {
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  background: rgba(255, 255, 255, .055);
}

.il-safety__grid ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.il-safety__grid li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.il-safety__grid li::before,
.il-checks li::before {
  position: absolute;
  left: 3px;
  color: var(--il-secondary);
  content: "✓";
  font-weight: 700;
}

.il-safety__note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 16px;
  padding: 21px 24px;
  border-radius: 10px;
  color: var(--il-ink);
  background: var(--il-accent);
}

.il-safety__note strong {
  flex: 0 0 auto;
  font-family: "Lexend", system-ui, sans-serif;
}

.il-safety__note span {
  max-width: 760px;
}

.il-fit {
  position: relative;
  background: var(--il-bg);
}

.il-fit::before {
  position: absolute;
  top: 60px;
  left: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 168, 140, .13), rgba(255, 255, 255, 0) 70%);
  content: "";
}

.il-fit__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(54px, 8vw, 100px);
  align-items: center;
}

.il-fit__media img {
  height: clamp(430px, 44vw, 540px);
  object-position: center;
}

.il-fit__copy h2 {
  max-width: 17ch;
  margin-bottom: 20px;
}

.il-fit__copy > p {
  color: var(--il-muted);
  font-size: 1.1rem;
}

.il-checks {
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.il-checks li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-top: 1px solid var(--il-line);
}

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

.il-faq__grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(48px, 8vw, 100px);
}

.il-faq__intro h2 {
  max-width: 13ch;
  margin-bottom: 18px;
}

.il-faq__intro p {
  color: var(--il-muted);
}

.il-accordion details {
  padding: 0;
  border-top: 1px solid var(--il-line);
}

.il-accordion details:last-child {
  border-bottom: 1px solid var(--il-line);
}

.il-accordion summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-family: "Lexend", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  list-style: none;
}

.il-accordion summary::-webkit-details-marker {
  display: none;
}

.il-accordion summary::after {
  position: absolute;
  top: 22px;
  right: 2px;
  color: var(--il-secondary);
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
}

.il-accordion details[open] summary::after {
  content: "−";
}

.il-accordion details p {
  margin-bottom: 24px;
  color: var(--il-muted);
}

.il-footer-cta {
  padding: clamp(42px, 6vw, 68px) 0;
  background: var(--il-accent);
}

.il-footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.il-footer-cta h2 {
  max-width: 20ch;
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.il-footer-cta p {
  margin-bottom: 0;
}

.il-footer-main {
  padding: 60px 0 24px;
  color: var(--il-bg);
  background: var(--il-ink);
}

.il-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr .8fr 1fr;
  gap: clamp(28px, 5vw, 70px);
}

.il-brand--light {
  color: var(--il-bg);
}

.il-footer h3 {
  margin-bottom: 17px;
  color: var(--il-bg);
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.il-footer p {
  color: rgba(255, 255, 255, .7);
  font-size: .96rem;
}

.il-footer-brand > p {
  margin-top: 20px;
}

.il-footer .il-footer-note {
  color: rgba(255, 255, 255, .5);
  font-size: .84rem;
}

.il-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.il-footer li {
  margin-bottom: 9px;
}

.il-footer li a,
.il-footer-bottom a {
  color: rgba(255, 255, 255, .72);
  text-decoration-color: rgba(242, 169, 59, .45);
  text-underline-offset: 4px;
}

.il-footer li a:hover,
.il-footer-bottom a:hover {
  color: var(--il-bg);
}

.il-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  font-size: .86rem;
}

.il-footer-bottom p {
  margin: 0;
  font-size: inherit;
}

.il-page-hero,
.il-article-hero {
  position: relative;
  padding: clamp(56px, 7vw, 92px) 0 clamp(52px, 6vw, 72px);
  overflow: hidden;
  background: var(--il-surface);
}

.il-page-hero::after,
.il-article-hero::after {
  position: absolute;
  top: -220px;
  right: -140px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 168, 140, .15), rgba(242, 169, 59, .08) 45%, transparent 72%);
  content: "";
}

.il-page-hero .il-shell,
.il-article-hero .il-shell {
  position: relative;
  z-index: 1;
}

.il-page-hero h1 {
  max-width: 15ch;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 5vw, 4.2rem);
}

.il-page-hero .il-shell > p:last-child {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--il-muted);
  font-size: 1.18rem;
}

.il-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: clamp(60px, 8vw, 110px);
  padding-top: clamp(70px, 8vw, 108px);
  padding-bottom: clamp(80px, 9vw, 120px);
}

.il-rich {
  font-size: 1.06rem;
}

.il-rich > :first-child {
  margin-top: 0;
}

.il-rich h2 {
  margin-top: 2.2em;
  margin-bottom: .65em;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.il-rich h3 {
  margin-top: 1.8em;
  margin-bottom: .55em;
}

.il-rich p,
.il-rich li {
  color: var(--il-muted);
}

.il-rich a {
  text-decoration-color: var(--il-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.il-rich ul,
.il-rich ol {
  padding-left: 1.25em;
}

.il-rich li {
  margin-bottom: .45em;
}

.il-rich blockquote {
  margin: 2em 0;
  padding: 1.5em 1.7em;
  border: 0;
  border-left: 5px solid var(--il-accent);
  border-radius: 0 12px 12px 0;
  background: var(--il-surface);
}

.il-rich .wp-block-group {
  margin: 2rem 0;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 16px;
  background: var(--il-surface);
}

.il-rich .wp-block-group h2:first-child,
.il-rich .wp-block-group h3:first-child {
  margin-top: 0;
}

.il-page-aside {
  position: relative;
}

.il-page-aside > div {
  position: sticky;
  top: 120px;
  padding: 28px;
  border: 1px solid var(--il-line);
  border-radius: 16px;
  background: var(--il-surface);
}

.il-page-aside h2 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.il-page-aside p {
  color: var(--il-muted);
  font-size: .96rem;
}

.il-page-aside .il-button {
  width: 100%;
}

.il-contact-hero {
  padding: clamp(66px, 9vw, 112px) 0;
  background: var(--il-surface);
}

.il-contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(50px, 8vw, 100px);
  align-items: start;
}

.il-contact-grid > div:first-child {
  position: sticky;
  top: 128px;
}

.il-contact h1 {
  max-width: none;
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 4.2vw, 3.45rem);
}

.il-contact-grid > div:first-child > p:not(.il-kicker) {
  color: var(--il-muted);
  font-size: 1.12rem;
}

.il-form-card {
  padding: clamp(28px, 4.5vw, 50px);
  border: 1px solid var(--il-line);
  border-radius: 20px;
  background: var(--il-bg);
  box-shadow: var(--il-shadow);
}

.il-form-card h2 {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.il-form {
  display: grid;
  gap: 19px;
}

.il-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.il-form-row {
  display: grid;
  gap: 7px;
}

.il-form-row label {
  color: var(--il-ink);
  font-family: "Lexend", system-ui, sans-serif;
  font-size: .86rem;
  font-weight: 600;
}

.il-form-row label span,
.il-consent strong {
  color: #A34820;
}

.il-form input,
.il-form select,
.il-form textarea {
  width: 100%;
  border: 1px solid rgba(27, 31, 59, .28);
  border-radius: 9px;
  color: var(--il-ink);
  background: var(--il-bg);
}

.il-form input,
.il-form select {
  min-height: 50px;
  padding: 9px 12px;
}

.il-form textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.il-form input:focus,
.il-form select:focus,
.il-form textarea:focus {
  border-color: var(--il-secondary);
  outline: 3px solid rgba(47, 168, 140, .2);
}

.il-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 9px;
  align-items: start;
  color: var(--il-muted);
  font-size: .91rem;
}

.il-consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--il-secondary);
}

.il-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.il-alert {
  margin-bottom: 20px;
  padding: 13px 15px;
  border-left: 4px solid;
  border-radius: 8px;
  font-size: .94rem;
}

.il-alert--success {
  border-color: var(--il-secondary);
  background: rgba(47, 168, 140, .1);
}

.il-alert--error {
  border-color: #A34820;
  background: rgba(163, 72, 32, .09);
}

.il-contact-next h2 {
  max-width: 16ch;
  margin-bottom: 40px;
}

.il-contact-next__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.il-contact-next__grid article {
  padding: 28px;
  border-top: 3px solid var(--il-accent);
  background: var(--il-surface);
}

.il-contact-next__grid article > span {
  display: block;
  margin-bottom: 24px;
  color: var(--il-secondary);
  font-family: "Lexend", system-ui, sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.il-contact-next__grid h3 {
  margin-bottom: 10px;
}

.il-contact-next__grid p {
  margin-bottom: 0;
  color: var(--il-muted);
}

.il-index {
  padding-bottom: 100px;
}

.il-post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 72px;
}

.il-post-card {
  padding: 30px;
  border: 1px solid var(--il-line);
  border-radius: 16px;
}

.il-post-card > p:first-child {
  color: var(--il-secondary);
  font-size: .82rem;
  font-weight: 600;
}

.il-post-card h2 {
  font-size: 1.7rem;
}

.il-post-card h2 a {
  text-decoration: none;
}

.il-post-card p {
  color: var(--il-muted);
}

.il-empty {
  grid-column: 1 / -1;
  padding: 50px;
  border-radius: 16px;
  background: var(--il-surface);
}

.il-empty h2 {
  font-size: 2.2rem;
}

.il-article-hero {
  text-align: left;
}

.il-article-hero__inner {
  max-width: 900px;
}

.il-article-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.6rem, 5.5vw, 4.7rem);
}

.il-article-hero__inner > p:first-child {
  color: var(--il-secondary);
  font-weight: 600;
}

.il-article-lead {
  color: var(--il-muted);
  font-size: 1.2rem;
}

.il-article-content {
  max-width: 800px;
  padding-top: 70px;
  padding-bottom: 100px;
}

.il-error-page {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 80px 0;
  background: var(--il-surface);
}

.il-error-page__code {
  margin: 0;
  color: var(--il-accent);
  font-family: "Lexend", system-ui, sans-serif;
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 700;
  line-height: .9;
}

.il-error-page h1 {
  max-width: 13ch;
  margin: 20px 0;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.il-error-page p:not(.il-error-page__code) {
  color: var(--il-muted);
}

.il-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .58s cubic-bezier(.16, .8, .3, 1), transform .58s cubic-bezier(.16, .8, .3, 1);
}

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

@media (max-width: 1080px) {
  .il-nav .il-button {
    display: none;
  }

  .il-menu {
    gap: 18px;
    font-size: .84rem;
  }

  .il-footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .il-footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --il-header-height: 72px;
  }

  .il-menu-toggle {
    display: flex;
  }

  .il-nav {
    position: fixed;
    z-index: 999;
    top: var(--il-header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    gap: 20px;
    padding: 30px 20px;
    visibility: hidden;
    background: var(--il-bg);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }

  .il-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .il-menu {
    display: grid;
    gap: 0;
  }

  .il-menu li {
    border-bottom: 1px solid var(--il-line);
  }

  .il-menu a {
    display: block;
    padding: 16px 0;
    font-size: 1.12rem;
  }

  .il-nav .il-button {
    display: inline-flex;
    justify-self: start;
  }

  .il-hero__grid,
  .il-friction__grid,
  .il-process__grid,
  .il-fit__grid,
  .il-faq__grid,
  .il-contact-grid,
  .il-page-layout {
    grid-template-columns: 1fr;
  }

  .il-hero__copy {
    max-width: 760px;
  }

  .il-hero__media {
    max-width: 720px;
  }

  .il-friction__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .il-tile {
    grid-column: span 6 !important;
    grid-row: auto !important;
  }

  .il-tile--featured {
    min-height: 430px;
  }

  .il-process__intro,
  .il-contact-grid > div:first-child {
    position: static;
  }

  .il-safety__grid {
    grid-template-columns: 1fr;
  }

  .il-page-layout {
    padding-top: 62px;
  }

  .il-page-aside > div {
    position: static;
  }

  .il-footer-cta__inner {
    display: grid;
  }

  .il-footer-cta__inner .il-button {
    justify-self: start;
  }

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

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

@media (max-width: 640px) {
  :root {
    --il-shell: min(1200px, calc(100% - 28px));
  }

  body {
    font-size: 17px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
  }

  .il-brand {
    font-size: 1.08rem;
  }

  .il-brand__mark {
    width: 27px;
    height: 27px;
  }

  .il-actions {
    display: grid;
  }

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

  .il-hero {
    padding-top: 38px;
  }

  .il-hero__grid {
    gap: 40px;
  }

  .il-hero__media img {
    height: 390px;
  }

  .il-hero__media figcaption {
    right: 10px;
    bottom: 12px;
  }

  .il-image-frame {
    display: none;
  }

  .il-friction__items {
    grid-template-columns: 1fr;
  }

  .il-friction__items div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    border-left: 0;
  }

  .il-bento {
    display: block;
  }

  .il-tile {
    min-height: 0;
    margin-bottom: 14px;
  }

  .il-tile--featured {
    min-height: 410px;
  }

  .il-safety__note {
    display: grid;
  }

  .il-fit__media img {
    height: 370px;
  }

  .il-footer-grid {
    grid-template-columns: 1fr;
  }

  .il-footer-bottom {
    display: grid;
  }

  .il-form-grid,
  .il-contact-next__grid,
  .il-post-grid {
    grid-template-columns: 1fr;
  }

  .il-page-hero,
  .il-article-hero {
    padding-top: 62px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media print {
  .il-header,
  .il-footer,
  .il-page-aside,
  .il-actions {
    display: none !important;
  }

  body {
    color: #1B1F3B;
    background: #FFFFFF;
    font-size: 12pt;
  }

  .il-main {
    overflow: visible;
  }
}
