:root {
  --ink: #101827;
  --ink-deep: #0a111c;
  --ink-soft: #223044;
  --paper: #f3f5f2;
  --paper-strong: #e8ece8;
  --white: #fffefa;
  --line: #d7dedb;
  --muted: #66737d;
  --muted-light: #aab8c0;
  --teal: #42d5c4;
  --teal-deep: #1aa89e;
  --amber: #f0b35b;
  --radius: 6px;
  --display: "Space Grotesk", "Arial Narrow", Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-size: 16px;
}

::selection {
  background: var(--teal);
  color: var(--ink);
}

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

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

button {
  cursor: pointer;
}

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

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

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--amber);
  color: var(--ink);
  font-weight: 700;
  transition: top 160ms ease;
}

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

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  color: var(--white);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.brand-word {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.brand-note {
  padding-left: 11px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 600;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.76);
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: var(--white);
}

.site-nav .nav-cta span {
  color: var(--teal);
  font-size: 17px;
  line-height: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: transparent;
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  background: var(--white);
}

.hero-section {
  position: relative;
  min-height: min(900px, 100svh);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--ink-deep);
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(10, 17, 28, 0.99) 0%, rgba(10, 17, 28, 0.93) 36%, rgba(10, 17, 28, 0.46) 73%, rgba(10, 17, 28, 0.68) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: min(900px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 72px;
  padding-top: 130px;
  padding-bottom: 114px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--teal-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--teal);
}

.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(58px, 7vw, 100px);
}

h1 span {
  color: var(--teal);
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 254, 250, 0.76);
  font-size: 19px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  background: var(--amber);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f5c87e;
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  border-color: rgba(255, 255, 255, 0.65);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--ink-soft);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-proof strong {
  color: var(--amber);
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.hero-proof span {
  max-width: 126px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.25;
}

.hero-card {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: var(--radius);
  background: rgba(16, 24, 39, 0.75);
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.hero-card-top,
.hero-card-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card-arrow {
  margin-left: auto;
  color: var(--teal);
  font-size: 17px;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(66, 213, 196, 0.13);
}

.hero-card-line {
  height: 1px;
  margin: 20px 0 8px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-card-product {
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 10px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.product-index {
  color: var(--amber);
  font-family: var(--display);
  font-size: 13px;
}

.hero-card-product strong,
.hero-card-product small {
  display: block;
}

.hero-card-product strong {
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.03em;
}

.hero-card-product small {
  color: var(--muted-light);
  font-size: 12px;
}

.hero-card-foot {
  justify-content: space-between;
  padding-top: 18px;
  color: var(--teal);
}

.hero-bottom {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-bottom i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
}

.hero-location {
  margin-left: auto;
}

.hero-location span {
  margin: 0 6px;
  color: var(--teal);
}

.signal-strip {
  background: var(--ink);
  color: var(--white);
}

.signal-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.signal-label {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.signal-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.signal-items span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
}

.section {
  padding: 122px 0;
}

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

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

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 80px;
  align-items: end;
  margin-bottom: 54px;
}

.section-intro h2 {
  max-width: 650px;
  font-size: clamp(42px, 5vw, 68px);
}

.section-intro > p {
  max-width: 390px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.section-intro-dark > p {
  color: var(--muted-light);
}

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

.solution-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.solution-card-dark {
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--ink-deep);
  color: var(--white);
}

.solution-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 26px;
}

.chip {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid #c7e9e3;
  border-radius: 999px;
  color: var(--teal-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip-dark {
  border-color: rgba(66, 213, 196, 0.35);
  color: var(--teal);
}

.solution-number {
  color: var(--muted);
  font-family: var(--display);
  font-size: 13px;
}

.solution-card-dark .solution-number {
  color: var(--muted-light);
}

.solution-card h3 {
  margin-bottom: 13px;
  font-size: 35px;
}

.solution-card > p {
  min-height: 76px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.solution-card-dark > p {
  color: var(--muted-light);
}

.product-screen {
  position: relative;
  height: 235px;
  overflow: hidden;
  margin: 28px 0 25px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.workshop-screen {
  background: #e9eeee;
}

.screen-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border-bottom: 1px solid #d4dcda;
  background: #f8faf7;
}

.screen-brand {
  color: var(--ink);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.screen-pill {
  width: 88px;
  height: 7px;
  margin-left: auto;
  border-radius: 999px;
  background: #d8e2df;
}

.screen-avatar {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--amber);
}

.screen-content {
  display: grid;
  grid-template-columns: 48px 1fr;
  height: calc(100% - 38px);
}

.screen-sidebar {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 18px 15px;
  background: var(--ink);
}

.screen-sidebar i {
  width: 17px;
  height: 17px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.28);
}

.screen-sidebar i:first-child {
  background: var(--teal);
}

.screen-main {
  padding: 18px;
}

.screen-title {
  width: 130px;
  height: 13px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--ink);
}

.screen-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 15px;
}

.screen-metrics b {
  height: 51px;
  border: 1px solid #d8e2df;
  border-radius: 3px;
  background: #f8faf7;
}

.screen-metrics b:nth-child(2) {
  border-color: #c5ece4;
  background: #e0f5f0;
}

.screen-metrics b:nth-child(3) {
  border-color: #f4ddb8;
  background: #fff4df;
}

.screen-table {
  display: grid;
  gap: 9px;
}

.screen-table i {
  height: 11px;
  border-radius: 999px;
  background: #d4ddda;
}

.screen-table i:nth-child(2) {
  width: 82%;
}

.screen-table i:nth-child(3) {
  width: 67%;
}

.screen-table i:nth-child(4) {
  width: 91%;
}

.fleet-screen {
  background: #142235;
  border-color: #2c4052;
}

.fleet-map {
  position: absolute;
  inset: 0;
  background-color: #16283b;
  background-image: linear-gradient(30deg, transparent 48%, rgba(66, 213, 196, 0.1) 49%, transparent 51%), linear-gradient(118deg, transparent 48%, rgba(255, 255, 255, 0.08) 49%, transparent 51%);
  background-size: 56px 56px, 72px 72px;
}

.route {
  position: absolute;
  height: 2px;
  transform-origin: left center;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(66, 213, 196, 0.1);
}

.route-one {
  top: 65px;
  left: 34px;
  width: 160px;
  transform: rotate(21deg);
}

.route-two {
  top: 120px;
  left: 161px;
  width: 122px;
  background: var(--amber);
  transform: rotate(-20deg);
}

.route-three {
  top: 82px;
  right: 32px;
  width: 105px;
  transform: rotate(34deg);
}

.map-point {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 3px solid var(--ink-deep);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(66, 213, 196, 0.18);
}

.point-one {
  top: 54px;
  left: 29px;
}

.point-two {
  top: 113px;
  left: 278px;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(240, 179, 91, 0.17);
}

.fleet-summary {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 170px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  background: rgba(10, 17, 28, 0.87);
}

.fleet-summary small,
.fleet-summary strong,
.fleet-summary div {
  display: block;
}

.fleet-summary small {
  color: var(--muted-light);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.fleet-summary strong {
  margin: 8px 0 10px;
  color: var(--white);
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -0.06em;
}

.fleet-summary div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted-light);
  font-size: 9px;
}

.fleet-summary div span:first-child {
  color: var(--teal);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 13px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 9px;
  height: 5px;
  border-bottom: 1px solid var(--teal-deep);
  border-left: 1px solid var(--teal-deep);
  transform: rotate(-45deg);
}

.feature-list-dark li {
  color: rgba(255, 255, 255, 0.72);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--teal-deep);
  font-size: 13px;
  font-weight: 700;
}

.card-link span,
.card-link-light span {
  font-size: 18px;
  line-height: 1;
}

.card-link-light {
  color: var(--teal);
}

.custom-solution {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 27px 30px;
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

.custom-mark {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--ink);
  font-family: var(--display);
  font-size: 29px;
}

.custom-solution .eyebrow {
  margin-bottom: 8px;
  color: var(--teal-deep);
}

.custom-solution h3 {
  margin-bottom: 7px;
  font-size: 24px;
}

.custom-solution p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 14px;
}

.case-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.case-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--ink-deep);
}

.case-card-wide {
  grid-row: span 2;
}

.case-photo {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.case-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 17, 28, 0.85) 100%);
}

.case-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}

.case-photo-label {
  position: absolute;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(10, 17, 28, 0.48);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.7fr);
  gap: 24px;
  padding: 24px;
}

.case-card-compact .case-body {
  display: block;
  padding-top: 20px;
}

.case-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-body h3 {
  font-size: 25px;
}

.case-body p {
  color: var(--muted-light);
  font-size: 13px;
  line-height: 1.6;
}

.mini-dashboard {
  height: 180px;
  padding: 18px;
  background: #172a3d;
}

.mini-top {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.mini-top span {
  width: 37px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.mini-top span:first-child {
  width: 92px;
  background: var(--teal);
}

.mini-chart {
  height: 76px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mini-chart i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--teal);
}

.mini-chart i:nth-child(1) { height: 28%; }
.mini-chart i:nth-child(2) { height: 52%; }
.mini-chart i:nth-child(3) { height: 43%; }
.mini-chart i:nth-child(4) { height: 68%; background: var(--amber); }
.mini-chart i:nth-child(5) { height: 55%; }
.mini-chart i:nth-child(6) { height: 84%; }

.mini-rows {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.mini-rows i {
  width: 80%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.mini-rows i:nth-child(2) { width: 55%; }
.mini-rows i:nth-child(3) { width: 68%; }

.case-card-accent {
  background: var(--teal);
  color: var(--ink);
}

.case-card-accent .case-kicker {
  color: var(--ink-soft);
}

.case-card-accent .case-body p {
  color: rgba(16, 24, 39, 0.65);
}

.case-quote {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 24px;
}

.quote-mark {
  color: var(--amber);
  font-family: Georgia, serif;
  font-size: 54px;
  line-height: 0.7;
}

.case-quote p {
  max-width: 285px;
  margin: 14px 0;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.quote-line {
  width: 42px;
  height: 2px;
  background: var(--ink);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.process-step {
  min-height: 260px;
  padding: 26px 28px 10px 0;
  border-right: 1px solid var(--line);
}

.process-step + .process-step {
  padding-left: 28px;
}

.process-step:last-child {
  border-right: 0;
}

.step-number {
  color: var(--teal-deep);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
}

.step-line {
  width: 48px;
  height: 1px;
  margin: 34px 0 22px;
  background: var(--amber);
}

.process-step h3 {
  margin-bottom: 11px;
  font-size: 30px;
}

.process-step p {
  max-width: 260px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

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

.investment-list {
  border-top: 1px solid #bec9c5;
}

.investment-row {
  display: grid;
  grid-template-columns: 50px minmax(160px, 0.8fr) minmax(180px, 1fr) 150px 22px;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #bec9c5;
  transition: padding 160ms ease, color 160ms ease;
}

.investment-row:hover,
.investment-row:focus-visible {
  padding-right: 9px;
  padding-left: 9px;
  color: var(--teal-deep);
}

.investment-row-featured {
  color: var(--ink);
}

.investment-number,
.investment-detail,
.investment-price {
  color: var(--muted);
  font-size: 12px;
}

.investment-name {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.investment-price {
  color: var(--ink);
  font-weight: 700;
  text-align: right;
}

.investment-arrow {
  color: var(--teal-deep);
  font-size: 20px;
  text-align: right;
}

.blog-section {
  padding-bottom: 130px;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.note-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border-top: 2px solid var(--ink);
  background: var(--white);
}

.note-type {
  padding: 6px 9px;
  border-radius: 999px;
  background: #dff4ef;
  color: var(--teal-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.note-card h3 {
  max-width: 300px;
  margin: 33px 0 26px;
  font-size: 25px;
  line-height: 1.08;
}

.note-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 700;
}

.note-card a span {
  font-size: 17px;
}

.contact-section {
  padding: 120px 0;
  background: var(--ink-deep);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(450px, 1.15fr);
  gap: 84px;
  align-items: start;
}

.contact-copy h2 {
  max-width: 540px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 68px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 420px;
  color: var(--muted-light);
  font-size: 16px;
  line-height: 1.65;
}

.contact-email {
  display: grid;
  gap: 7px;
  margin-top: 48px;
}

.contact-email span {
  color: var(--muted-light);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-email a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.contact-email a span {
  color: var(--amber);
  font-family: var(--body);
  font-size: 18px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.form-heading {
  display: grid;
  grid-template-columns: 32px 1fr;
  column-gap: 10px;
  align-items: baseline;
  grid-column: 1 / -1;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.form-heading span {
  color: var(--amber);
  font-family: var(--display);
  font-size: 13px;
}

.form-heading strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.04em;
}

.form-heading small {
  grid-column: 2;
  color: var(--muted-light);
  font-size: 11px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
}

.form-full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  outline: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 12px 13px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
}

.contact-form select option {
  color: var(--ink);
}

.contact-form .button {
  border: 0;
}

.form-status {
  min-height: 17px;
  color: var(--muted-light);
  font-size: 11px;
}

.site-footer {
  background: var(--ink-deep);
  color: var(--muted-light);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

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

.footer-top > p {
  font-size: 12px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 19px;
  font-size: 12px;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--teal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.admin-page {
  min-height: 100vh;
  background: var(--paper);
}

.admin-page .site-header {
  position: relative;
  background: var(--ink);
}

.admin-page .admin-hero {
  padding: 84px 0 120px;
}

.admin-page .admin-hero > .container > h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(48px, 6vw, 78px);
}

.admin-lead {
  max-width: 650px;
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.admin-panel {
  display: grid;
  gap: 18px;
  max-width: 760px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.admin-panel label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.admin-panel input,
.admin-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  outline: 0;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 13px;
}

.admin-panel input:focus,
.admin-panel textarea:focus {
  border-color: var(--teal-deep);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 5px;
}

.admin-preview {
  max-width: 760px;
  margin-top: 24px;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.admin-preview h2 {
  max-width: 620px;
  font-size: 34px;
}

.admin-preview p:not(.eyebrow) {
  margin-top: 11px;
  color: var(--muted-light);
}

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

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 40px;
  }

  .hero-card {
    padding: 18px;
  }

  .contact-grid {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 36px, 1180px);
  }

  .brand-note {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: var(--ink);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
  }

  .site-nav.is-open {
    display: grid;
    gap: 0;
  }

  .site-nav a {
    padding: 12px 8px;
  }

  .site-nav .nav-cta {
    margin-top: 6px;
    justify-content: space-between;
  }

  .hero-section,
  .hero-grid {
    min-height: 760px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    align-content: center;
    padding-top: 128px;
    padding-bottom: 100px;
  }

  .hero-card {
    display: none;
  }

  .hero-image img {
    object-position: 64% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(10, 17, 28, 0.96) 0%, rgba(10, 17, 28, 0.8) 100%);
  }

  .section-intro,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .solution-grid,
  .notes-grid {
    grid-template-columns: 1fr;
  }

  .solution-card > p {
    min-height: 0;
  }

  .custom-solution {
    grid-template-columns: 54px 1fr;
  }

  .custom-solution .button {
    grid-column: 2;
    justify-self: start;
  }

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

  .case-card-wide {
    grid-row: auto;
  }

  .case-photo {
    height: 320px;
  }

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

  .process-step,
  .process-step + .process-step {
    min-height: auto;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .step-line {
    margin-top: 22px;
  }

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

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

  .footer-top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

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

  .site-nav {
    top: 70px;
  }

  h1 {
    font-size: clamp(51px, 15vw, 75px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .button {
    justify-content: space-between;
  }

  .hero-proof {
    gap: 16px;
    margin-top: 34px;
  }

  .hero-bottom {
    flex-wrap: wrap;
    bottom: 19px;
    font-size: 9px;
  }

  .hero-location {
    width: 100%;
    margin-left: 0;
    margin-top: 4px;
  }

  .signal-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 19px;
    padding-bottom: 19px;
  }

  .signal-items {
    justify-content: flex-start;
  }

  .section,
  .contact-section {
    padding: 82px 0;
  }

  .section-intro {
    margin-bottom: 34px;
  }

  .section-intro h2,
  .contact-copy h2 {
    font-size: 43px;
  }

  .solution-card {
    padding: 21px;
  }

  .solution-card h3 {
    font-size: 31px;
  }

  .product-screen {
    height: 205px;
  }

  .custom-solution {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .custom-solution .button {
    grid-column: auto;
  }

  .case-body {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .case-photo {
    height: 250px;
  }

  .investment-row {
    grid-template-columns: 34px minmax(0, 1fr) 21px;
    gap: 9px;
    padding: 19px 0;
  }

  .investment-detail,
  .investment-price {
    grid-column: 2;
  }

  .investment-price {
    text-align: left;
  }

  .investment-arrow {
    grid-column: 3;
    grid-row: 1 / span 3;
  }

  .investment-name {
    font-size: 20px;
  }

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

  .contact-form {
    grid-template-columns: 1fr;
    padding: 21px;
  }

  .form-full {
    grid-column: auto;
  }

  .form-heading {
    grid-column: auto;
  }

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

  .footer-top > p {
    grid-column: auto;
    grid-row: auto;
  }

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

  .footer-bottom {
    flex-wrap: wrap;
  }
}
