:root {
  --white: #ffffff;
  --black: #0b0b0c;
  --red: #ff3830;
  --blue: #2d7bff;
  --sky: #eaf2ff;
  --grey-900: #111316;
  --grey-700: #33363a;
  --grey-500: #6b7177;
  --grey-300: #d5dadf;
  --grey-200: #eceef1;
  --grey-50: #fafafb;
  --shadow: 0 22px 60px rgba(17, 19, 22, 0.11);
  --soft-shadow: 0 14px 34px rgba(17, 19, 22, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--grey-900);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(250, 250, 251, 0.92)),
    url("assets/backgrounds/letz-bg-architectural.jpg") center top / cover fixed,
    var(--grey-50);
}

body.menu-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

button {
  font: inherit;
}

input,
textarea,
select {
  font: inherit;
}

svg {
  display: block;
}

.site-canvas {
  width: min(1500px, calc(100% - 40px));
  margin: 18px auto 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.9)),
    url("assets/backgrounds/letz-bg-minimal.jpg") right top / min(56vw, 760px) auto no-repeat,
    var(--white);
  border: 1px solid rgba(17, 19, 22, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(17, 19, 22, 0.12);
  overflow: hidden;
}

.header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 28px 54px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark,
.mini-mark {
  position: relative;
  display: inline-flex;
  width: 36px;
  height: 26px;
}

.brand-mark span,
.mini-mark::before,
.mini-mark::after {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 30px;
  border-radius: 999px;
  transform: rotate(31deg);
  transform-origin: center;
}

.brand-mark span:first-child,
.mini-mark::before {
  left: 8px;
  background: var(--blue);
}

.brand-mark span:last-child,
.mini-mark::after {
  left: 23px;
  background: var(--red);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 58px;
  font-size: 13px;
  font-weight: 500;
}

.desktop-nav a {
  color: var(--grey-900);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--grey-500);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switcher select {
  min-height: 42px;
  padding: 0 22px 0 0;
  border: 0;
  border-radius: 0;
  color: var(--grey-900);
  background: transparent;
  font: inherit;
  letter-spacing: 0;
  cursor: pointer;
}

.outline-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 42px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
}

.outline-button {
  min-width: auto;
  padding: 0;
  border: 0;
  color: var(--grey-900);
  background: transparent;
  box-shadow: none;
}

.primary-button {
  position: relative;
  min-width: 236px;
  min-height: 58px;
  padding: 0 24px;
  border: 1px solid rgba(17, 19, 22, 0.18);
  color: var(--grey-900);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(17, 19, 22, 0.06);
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.primary-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0 55%, var(--blue) 55% 100%);
}

.primary-button:hover {
  border-color: rgba(17, 19, 22, 0.34);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(17, 19, 22, 0.1);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 22px;
  height: 2px;
  background: var(--grey-900);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  padding: 16px;
  background: rgba(250, 250, 251, 0.96);
}

.mobile-menu-inner {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(17, 19, 22, 0.1);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-close {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--grey-900);
  background: var(--white);
  cursor: pointer;
}

.mobile-links {
  display: grid;
  gap: 14px;
  margin-top: 64px;
}

.mobile-links a {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.mobile-language {
  margin-top: 42px;
}

.section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  border-top: 1px solid rgba(17, 19, 22, 0.08);
}

.anchor-target {
  position: absolute;
  top: -80px;
}

.section:first-of-type {
  border-top: 0;
}

.section-rail {
  display: none;
  padding: 68px 0 0 50px;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.section-rail span {
  font-size: 14px;
  font-weight: 600;
}

.section-rail i {
  width: 28px;
  height: 1px;
  background: var(--grey-500);
}

.section-rail b {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--grey-300);
}

.section-rail b:first-of-type {
  background: var(--red);
}

.hero-section {
  min-height: 560px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  padding: 0 72px 52px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.66)),
    url("assets/backgrounds/letz-bg-diagonal.jpg") right center / auto 100% no-repeat;
}

.hero-copy {
  align-self: center;
  max-width: 620px;
  padding-top: 42px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--grey-900);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.eyebrow.red {
  color: var(--red);
}

.eyebrow.blue {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;
}

.hero-body {
  max-width: 520px;
  margin-top: 24px;
  color: var(--grey-500);
  font-size: 17px;
  line-height: 1.65;
}

.hero-copy .primary-button {
  margin-top: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.hero-actions .primary-button {
  margin-top: 0;
}

.hero-link {
  margin-top: 0;
}

.signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 46px;
  padding-left: 34px;
  border-left: 1px solid var(--grey-300);
  color: var(--grey-500);
  font-size: 13px;
}

.mini-mark {
  width: 28px;
  height: 22px;
  flex: 0 0 auto;
}

.mini-mark::before,
.mini-mark::after {
  height: 20px;
  width: 2px;
}

.mini-mark::before {
  left: 8px;
}

.mini-mark::after {
  left: 18px;
}

.hero-visual {
  position: relative;
  min-height: 480px;
  align-self: stretch;
  overflow: hidden;
}

.diagonal-shape {
  position: absolute;
  top: 72px;
  left: 44%;
  width: 190px;
  height: 390px;
  background: linear-gradient(90deg, rgba(45, 123, 255, 0.11), rgba(45, 123, 255, 0.26));
  transform: skewX(-30deg);
}

.dot-field,
.corner-dots {
  position: absolute;
  background-image: radial-gradient(var(--grey-300) 1.2px, transparent 1.2px);
  background-size: 12px 12px;
}

.dot-field-left {
  left: 86px;
  top: 180px;
  width: 190px;
  height: 190px;
  opacity: 0.52;
}

.corner-dots {
  right: 118px;
  bottom: 70px;
  width: 104px;
  height: 92px;
  background-image: radial-gradient(var(--blue) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
}

.floating-card {
  position: absolute;
  border: 1px solid rgba(17, 19, 22, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.scenario-carousel {
  position: absolute;
  inset: 58px 34px 42px 68px;
  overflow: visible;
}

.scenario-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(17, 19, 22, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
    radial-gradient(circle at 12% 12%, rgba(45, 123, 255, 0.16), transparent 36%),
    radial-gradient(circle at 88% 18%, rgba(255, 56, 48, 0.14), transparent 32%);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(18px) scale(0.98);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  backdrop-filter: blur(16px);
  pointer-events: none;
  overflow: hidden;
}

.scenario-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.scenario-phone,
.scenario-board,
.scenario-market {
  flex: 1 1 auto;
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 9px;
  width: min(100%, 340px);
  max-height: 100%;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(17, 19, 22, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  overflow: auto;
  overscroll-behavior: contain;
}

.scenario-phone {
  border-radius: 30px;
}

.bubble,
.scenario-board span,
.scenario-market span {
  position: relative;
  display: block;
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 15px;
  color: var(--grey-700);
  background: var(--grey-100);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.32;
}

.bubble.bot,
.scenario-market span:first-child,
.scenario-board span:last-child {
  padding-left: 34px;
  color: var(--white);
  background: var(--blue);
}

.bubble.bot::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 15px;
  height: 15px;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at 35% 48%, rgba(255, 255, 255, 0.95) 0 2px, transparent 2.2px),
    radial-gradient(circle at 65% 48%, rgba(255, 255, 255, 0.95) 0 2px, transparent 2.2px);
}

.bubble.bot::after {
  content: "";
  position: absolute;
  left: 16px;
  top: calc(50% - 13px);
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.bubble.user,
.scenario-market span:nth-child(2),
.scenario-board span:nth-child(2) {
  justify-self: end;
  color: var(--white);
  background: var(--red);
}

.scenario-board,
.scenario-market {
  position: relative;
  border-radius: var(--radius);
}

.scenario-board::before,
.scenario-market::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(17, 19, 22, 0.12);
  pointer-events: none;
}

.scenario-caption {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
}

.scenario-caption span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-caption h2 {
  margin-top: 10px;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.12;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.scenario-caption p {
  margin-top: 12px;
  color: var(--grey-500);
  font-size: 13px;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.scenario-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: -26px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid rgba(17, 19, 22, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
  transform: translateX(-50%);
}

.scenario-dots button {
  position: relative;
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.scenario-dots button::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 8px;
  height: 8px;
  border-radius: inherit;
  background: var(--grey-300);
  transform: scale(1);
  transform-origin: center;
  transition:
    width 360ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 220ms ease,
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    background 260ms ease,
    box-shadow 260ms ease;
}

.scenario-dots button.is-active {
  width: 18px;
}

.scenario-dots button.is-active::before {
  width: 18px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  box-shadow: 0 5px 14px rgba(45, 123, 255, 0.2);
  transform: scale(1);
}

.scenario-dots button.is-pulse::before {
  animation: dotMorphPulse 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.scenario-slide.is-entering .scenario-phone,
.scenario-slide.is-entering .scenario-caption {
  animation: scenarioPanelIn 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scenario-slide.is-entering .bubble {
  animation: bubbleIn 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.scenario-slide.is-entering .bubble:nth-child(2) {
  animation-delay: 80ms;
}

.scenario-slide.is-entering .bubble:nth-child(3) {
  animation-delay: 160ms;
}

@keyframes scenarioPanelIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bubbleIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes dotMorphPulse {
  0% {
    transform: scaleX(0.82);
  }
  60% {
    transform: scaleX(1.08);
  }
  100% {
    transform: scaleX(1);
  }
}

.performance-card {
  top: 112px;
  left: 170px;
  width: 286px;
  padding: 22px 22px 16px;
}

.performance-card div:first-child {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.floating-card h2 {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.performance-card strong {
  font-size: 28px;
  line-height: 1;
}

.performance-card p {
  margin-top: -10px;
  text-align: right;
  color: var(--grey-500);
  font-size: 11px;
}

.chart {
  margin-top: 14px;
}

.chart svg {
  width: 100%;
  height: 86px;
}

.grid-line {
  fill: none;
  stroke: var(--grey-200);
  stroke-width: 1;
}

.chart-line {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
}

.chart circle {
  fill: var(--blue);
}

.insight-card {
  top: 250px;
  right: 116px;
  width: 218px;
  padding: 22px;
}

.insight-card p {
  margin-top: 12px;
  color: var(--grey-500);
  font-size: 13px;
  line-height: 1.55;
}

.insight-card span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
}

.automation-card {
  left: 98px;
  bottom: 70px;
  width: 286px;
  padding: 22px;
}

.automation-card small {
  display: block;
  margin-top: 12px;
  color: var(--grey-500);
  font-size: 12px;
}

.progress-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
  font-size: 12px;
  font-weight: 700;
}

.progress-row i {
  height: 4px;
  background: var(--grey-200);
}

.progress-row b {
  display: block;
  width: 76%;
  height: 100%;
  background: var(--blue);
}

.map-card {
  top: 98px;
  right: 18px;
  width: 158px;
  height: 160px;
  display: grid;
  place-items: center;
}

.lux-map {
  width: 96px;
  height: 126px;
  background-image: radial-gradient(var(--grey-300) 1.8px, transparent 1.8px);
  background-size: 8px 8px;
  clip-path: polygon(44% 0, 58% 6%, 61% 20%, 73% 27%, 67% 43%, 84% 54%, 72% 70%, 76% 88%, 54% 100%, 39% 89%, 18% 94%, 7% 72%, 14% 51%, 5% 33%, 28% 21%);
  position: relative;
}

.lux-map::before,
.lux-map::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 18px;
  bottom: 18px;
}

.lux-map::before {
  right: 22px;
  background: var(--red);
}

.lux-map::after {
  right: 15px;
  background: var(--blue);
}

.lux-map.large {
  width: 128px;
  height: 170px;
}

.plus-button {
  position: absolute;
  left: 48%;
  top: 52%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--grey-500);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--soft-shadow);
}

.services-section,
.clarity-section,
.funding-section,
.use-cases-section,
.private-section,
.faq-section {
  grid-template-columns: 360px 1fr;
  padding: 36px 72px 48px;
}

.funding-section {
  grid-template-columns: minmax(0, 1fr);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.94)),
    url("assets/backgrounds/letz-bg-flow.jpg") center center / cover no-repeat;
}

.funding-article {
  grid-column: 1;
  padding: 34px;
  border: 1px solid rgba(17, 19, 22, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(45, 123, 255, 0.10), transparent 62%),
    linear-gradient(120deg, transparent 0 72%, rgba(255, 56, 48, 0.08) 72% 100%),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.sales-aid-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: 28px;
  align-items: center;
}

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

.funding-article h2 {
  max-width: 780px;
  margin-top: 10px;
  font-size: 34px;
  line-height: 1.18;
}

.funding-article > p {
  max-width: 780px;
  margin-top: 18px;
  color: var(--grey-500);
  line-height: 1.7;
}

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

.funding-grid div {
  padding: 22px;
  border: 1px solid rgba(17, 19, 22, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
}

.funding-grid strong {
  font-size: 18px;
}

.funding-grid p,
.funding-note {
  margin-top: 12px;
  color: var(--grey-500);
  line-height: 1.6;
}

.funding-note {
  font-size: 13px;
}

.funding-link {
  margin-top: 18px;
}

.eligibility-checker {
  padding: 26px;
  border: 1px solid rgba(17, 19, 22, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.eligibility-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-bottom: 22px;
}

.eligibility-progress span {
  height: 5px;
  border-radius: 999px;
  background: var(--grey-200);
}

.eligibility-progress span.is-active {
  background: linear-gradient(90deg, var(--blue), var(--red));
}

.eligibility-step,
.eligibility-result {
  display: none;
}

.eligibility-step.is-active,
.eligibility-result.is-active {
  display: block;
}

.eligibility-step strong,
.eligibility-result strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.eligibility-step div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.eligibility-step button {
  min-height: 48px;
  border: 1px solid var(--grey-900);
  border-radius: 999px;
  color: var(--grey-900);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.eligibility-step button:hover {
  color: var(--white);
  background: var(--grey-900);
}

.eligibility-result p {
  margin-top: 14px;
  color: var(--grey-500);
  line-height: 1.6;
}

.eligibility-result .primary-button {
  width: 100%;
  margin-top: 18px;
  text-align: center;
}

.section-intro {
  align-self: center;
}

.section-intro h2,
.approach-title h2,
.trust-copy h2,
.cta-copy h2 {
  font-size: 36px;
  line-height: 1.22;
}

.section-intro p,
.clarity-card p,
.why-list p,
.private-card p,
.cta-copy p {
  margin-top: 22px;
  color: var(--grey-500);
  line-height: 1.7;
}

.text-link {
  display: inline-flex;
  gap: 24px;
  margin-top: 26px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  font-size: 14px;
  font-weight: 600;
}

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

.service-card {
  min-height: 276px;
  padding: 28px 24px;
  border: 1px solid rgba(17, 19, 22, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: var(--radius);
}

.icon-box svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-box.blue {
  color: var(--blue);
  background: var(--sky);
}

.icon-box.red {
  color: var(--red);
  background: rgba(255, 56, 48, 0.1);
}

.service-card h3 {
  margin-top: 28px;
  font-size: 20px;
  line-height: 1.2;
}

.service-card p {
  margin-top: 16px;
  color: var(--grey-700);
  font-size: 14px;
  line-height: 1.55;
}

.service-card a {
  display: inline-flex;
  margin-top: 24px;
  font-size: 22px;
}

.clarity-grid,
.use-case-grid,
.why-list,
.faq-list {
  display: grid;
  gap: 18px;
}

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

.clarity-card,
.private-card,
.why-list article,
.faq-list details {
  border: 1px solid rgba(17, 19, 22, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.clarity-card {
  min-height: 210px;
  padding: 26px;
}

.clarity-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.clarity-card h3,
.why-list h3 {
  font-size: 20px;
  line-height: 1.2;
}

.approach-section {
  grid-template-columns: 300px 1fr;
  padding: 34px 72px 48px;
}

.approach-title {
  align-self: center;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
  padding-top: 24px;
}

.timeline.five-steps {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.timeline::before {
  content: "";
  position: absolute;
  left: 58px;
  right: 58px;
  top: 54px;
  height: 1px;
  background: var(--grey-300);
}

.timeline-step {
  position: relative;
  text-align: center;
}

.timeline-step::after {
  content: "";
  position: absolute;
  top: 52px;
  right: -13px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--grey-500);
}

.timeline-step:last-child::after {
  display: none;
}

.timeline-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 68px;
  height: 68px;
  margin: 0 auto 14px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: var(--white);
}

.timeline-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.timeline-icon.blue {
  color: var(--blue);
}

.timeline-icon.red {
  color: var(--red);
}

.timeline-step strong {
  display: block;
  color: var(--grey-500);
  font-size: 12px;
}

.timeline-step h3 {
  margin-top: 8px;
  font-size: 17px;
}

.timeline-step p {
  max-width: 190px;
  margin: 12px auto 0;
  color: var(--grey-500);
  font-size: 13px;
  line-height: 1.55;
}

.trust-section {
  grid-template-columns: 170px 300px 1fr;
  align-items: center;
  padding: 36px 72px 42px;
}

.trust-copy h2 {
  max-width: 280px;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  border-left: 1px solid var(--grey-300);
}

.logo-row span {
  display: grid;
  min-height: 92px;
  place-items: center;
  border-right: 1px solid var(--grey-300);
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}

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

.why-list article {
  min-height: 180px;
  padding: 24px;
}

.use-case-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.use-case-grid span {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 18px 20px;
  border: 1px solid rgba(17, 19, 22, 0.08);
  border-radius: var(--radius);
  color: var(--grey-700);
  background: var(--white);
  box-shadow: var(--soft-shadow);
  font-size: 14px;
  line-height: 1.45;
}

.use-case-grid span::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-right: 12px;
  border-radius: 999px;
  background: var(--blue);
}

.use-case-grid span:nth-child(even)::before {
  background: var(--red);
}

.private-card {
  align-self: center;
  padding: 28px;
  background:
    linear-gradient(120deg, rgba(45, 123, 255, 0.10), transparent 70%),
    var(--white);
}

.private-card p {
  margin-top: 0;
  font-size: 18px;
  line-height: 1.55;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--grey-900);
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--blue);
}

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

.faq-list p {
  padding: 0 24px 22px;
  color: var(--grey-500);
  line-height: 1.65;
}

.cta-section {
  grid-template-columns: minmax(0, 1fr) auto 220px;
  align-items: center;
  padding: 44px 72px;
  background:
    linear-gradient(120deg, transparent 0 70%, rgba(45, 123, 255, 0.12) 70% 100%),
    var(--white);
}

.cta-copy {
  grid-column: 1;
}

.cta-copy p {
  max-width: 430px;
}

.contact-section {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.9fr);
  align-items: start;
}

.contact-form {
  grid-column: 2;
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(17, 19, 22, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--grey-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--grey-300);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--grey-900);
  background: var(--white);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input[name="_honey"] {
  position: absolute;
  left: -9999px;
}

.contact-form .primary-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

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

.pricing-hero,
.pricing-section {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  padding: 58px 72px;
}

.pricing-hero-copy {
  grid-column: 1;
  align-self: center;
}

.pricing-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 5vw, 74px);
  line-height: 0.96;
}

.pricing-hero-copy p,
.pricing-note-card p {
  max-width: 650px;
  margin-top: 22px;
  color: var(--grey-500);
  line-height: 1.7;
}

.pricing-note-card {
  grid-column: 2;
  align-self: center;
  padding: 28px;
  border: 1px solid rgba(17, 19, 22, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(45, 123, 255, 0.10), transparent 72%),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.pricing-note-card strong {
  font-size: 22px;
}

.pricing-section {
  grid-template-columns: 340px minmax(0, 1fr);
}

.pricing-section .section-intro {
  grid-column: 1;
}

.pricing-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.maintenance-pricing-grid,
.corporate-pricing-grid {
  margin-top: 22px;
}

.pricing-subhead,
.pricing-disclaimer {
  grid-column: 2;
}

.pricing-subhead {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(17, 19, 22, 0.08);
}

.pricing-subhead h3 {
  font-size: 26px;
}

.pricing-subhead p,
.pricing-disclaimer {
  max-width: 720px;
  margin-top: 10px;
  color: var(--grey-500);
  line-height: 1.65;
}

.pricing-disclaimer {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(17, 19, 22, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 650;
}

.pricing-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(17, 19, 22, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.pricing-card.highlighted {
  background:
    linear-gradient(140deg, rgba(45, 123, 255, 0.10), transparent 70%),
    var(--white);
}

.pricing-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.pricing-card h3 {
  font-size: 21px;
  line-height: 1.2;
}

.pricing-card p {
  margin-top: 14px;
  color: var(--grey-500);
  line-height: 1.6;
}

.pricing-card small {
  display: block;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
  color: var(--grey-700);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.cta-map {
  justify-self: end;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 28px;
  padding: 34px 54px;
  border-top: 1px solid rgba(17, 19, 22, 0.08);
  color: var(--grey-500);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.82);
}

.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 520px;
}

.footer-brand .brand {
  width: fit-content;
  font-size: 22px;
}

.footer-brand p {
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 18px;
  color: var(--grey-900);
  font-size: 13px;
  font-weight: 700;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(17, 19, 22, 0.08);
  color: var(--grey-500);
}

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

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

.hero-visual .floating-card {
  animation: floatCard 7s ease-in-out infinite;
}

.hero-visual .insight-card {
  animation-delay: 800ms;
}

.hero-visual .automation-card {
  animation-delay: 1400ms;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scenario-slide {
    opacity: 0 !important;
  }

  .scenario-slide.is-active {
    opacity: 1 !important;
  }
}

@media (max-width: 1180px) {
  .site-canvas {
    width: min(100% - 24px, 1100px);
  }

  .header {
    padding: 24px 32px;
  }

  .desktop-nav {
    gap: 28px;
  }

  .hero-section {
    grid-template-columns: minmax(0, 1fr);
    padding-left: 48px;
    padding-right: 48px;
  }

  .hero-visual {
    grid-column: 1;
    min-height: 430px;
  }

  .services-section,
  .clarity-section,
  .funding-section,
  .approach-section,
  .trust-section,
  .use-cases-section,
  .private-section,
  .faq-section,
  .pricing-hero,
  .pricing-section,
  .cta-section {
    grid-template-columns: minmax(0, 1fr);
    padding-right: 32px;
  }

  .service-grid,
  .clarity-grid,
  .funding-article,
  .timeline,
  .logo-row,
  .use-case-grid,
  .private-card,
  .why-list,
  .faq-list,
  .pricing-grid,
  .pricing-subhead,
  .pricing-disclaimer,
  .pricing-note-card,
  .contact-form,
  .cta-section > .primary-button,
  .cta-map {
    grid-column: 1;
  }

  .section-intro,
  .approach-title,
  .trust-map,
  .trust-copy,
  .pricing-hero-copy {
    grid-column: 1;
  }

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

  .clarity-grid,
  .why-list,
  .use-case-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
  }

  .pricing-note-card {
    margin-top: 24px;
  }

  .timeline {
    margin-top: 20px;
  }

  .trust-section {
    gap: 20px;
  }

  .logo-row {
    margin-top: 20px;
  }

  .cta-section > .primary-button {
    width: fit-content;
    margin-top: 26px;
  }

  .cta-map {
    justify-self: start;
    margin-top: 18px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .site-canvas {
    width: min(100% - 20px, 520px);
    margin-top: 12px;
  }

  .header {
    display: flex;
    padding: 22px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    transform: scale(0.78);
    transform-origin: left center;
  }

  .desktop-nav,
  .desktop-cta,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: grid;
    margin-left: auto;
  }

  .section,
  .hero-section,
  .services-section,
  .clarity-section,
  .funding-section,
  .approach-section,
  .trust-section,
  .use-cases-section,
  .private-section,
  .faq-section,
  .pricing-hero,
  .pricing-section,
  .cta-section {
    display: block;
    padding: 42px 28px;
  }

  .section-rail {
    display: none;
  }

  .hero-section {
    padding-top: 48px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .scenario-carousel {
    inset: 28px 20px;
  }

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

  .sales-aid-card {
    grid-template-columns: 1fr;
  }

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

  .pricing-subhead,
  .pricing-disclaimer {
    margin-top: 24px;
  }

  .contact-form,
  .pricing-note-card,
  .pricing-grid {
    margin-top: 28px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero-body {
    font-size: 15px;
  }

  .primary-button {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
  }

  .hero-actions {
    display: grid;
    gap: 18px;
  }

  .hero-link {
    width: fit-content;
  }

  .signature {
    margin-top: 34px;
    padding-left: 0;
    border-left: 0;
  }

  .hero-visual {
    min-height: 520px;
    margin-top: 40px;
    overflow: visible;
  }

  .diagonal-shape {
    top: 28px;
    left: 48%;
    height: 420px;
  }

  .performance-card,
  .insight-card,
  .automation-card,
  .map-card {
    left: auto;
    right: auto;
  }

  .performance-card {
    top: 40px;
    width: min(100%, 260px);
  }

  .automation-card {
    top: 262px;
    bottom: auto;
    width: min(100%, 300px);
    right: 0;
  }

  .insight-card {
    top: 392px;
    width: min(100%, 230px);
    left: 20px;
  }

  .map-card,
  .plus-button,
  .dot-field-left,
  .corner-dots {
    display: none;
  }

  .section-intro h2,
  .approach-title h2,
  .trust-copy h2,
  .cta-copy h2 {
    font-size: 31px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .clarity-grid,
  .why-list,
  .use-case-grid,
  .faq-list {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .service-card {
    min-height: 0;
  }

  .timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 34px;
    padding-left: 36px;
  }

  .timeline::before {
    left: 34px;
    top: 18px;
    bottom: 18px;
    width: 1px;
    height: auto;
  }

  .timeline.five-steps {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    display: grid;
    grid-template-columns: 68px 1fr;
    column-gap: 18px;
    text-align: left;
  }

  .timeline-step::after {
    display: none;
  }

  .timeline-icon {
    grid-row: span 4;
    margin: 0;
  }

  .timeline-step p {
    margin-left: 0;
  }

  .trust-map {
    margin-bottom: 24px;
  }

  .logo-row {
    grid-template-columns: 1fr;
    margin-top: 24px;
    border-top: 1px solid var(--grey-300);
    border-left: 0;
  }

  .logo-row span {
    min-height: 70px;
    border-right: 0;
    border-bottom: 1px solid var(--grey-300);
  }

  .cta-map {
    display: none;
  }

  .footer {
    padding: 28px;
  }

  .footer-meta {
    display: grid;
  }
}

@media (max-width: 420px) {
  .site-canvas {
    width: calc(100% - 14px);
  }

  .section,
  .hero-section,
  .services-section,
  .clarity-section,
  .funding-section,
  .approach-section,
  .trust-section,
  .use-cases-section,
  .private-section,
  .faq-section,
  .pricing-hero,
  .pricing-section,
  .cta-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mobile-links a {
    font-size: 30px;
  }

  .scenario-caption h2 {
    font-size: 20px;
  }

  .scenario-slide {
    padding: 16px;
  }

  .funding-article {
    padding: 24px 20px;
  }

  .eligibility-step div {
    grid-template-columns: 1fr;
  }

  .funding-article h2 {
    font-size: 27px;
  }

  .pricing-hero h1 {
    font-size: 42px;
  }

  .contact-form {
    padding: 22px 18px;
  }
}
