:root {
  --ink: #083f88;
  --ink-soft: #0b5daa;
  --paper: #f4f8ff;
  --paper-bright: #ffffff;
  --lime: #f06018;
  --lime-soft: #ffb17c;
  --blue: #0090f8;
  --blue-soft: #dff3ff;
  --purple: #503080;
  --line: rgba(8, 63, 136, 0.18);
  --muted: #687ca0;
  --font-sans: "Helvetica Neue", "Neue Haas Grotesk", Arial, sans-serif;
  --font-serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

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

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

::selection {
  background: var(--lime);
  color: #ffffff;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--lime);
  color: var(--ink);
  transition: top 0.2s ease;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 92px;
  padding: 0 4vw;
  color: var(--ink);
  border-bottom: 1px solid rgba(8, 63, 136, 0.14);
}

.brand {
  justify-self: start;
  display: grid;
  place-items: center;
  width: 64px;
  height: 80px;
}

.brand img {
  display: block;
  width: 56px;
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: 2.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.desktop-nav a,
.footer-links a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--lime);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-cta:hover {
  background: var(--lime);
  border-color: var(--lime);
  color: #ffffff;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  overflow: hidden;
  background: #f4f8ff;
  color: var(--ink);
}

.hero::after {
  display: none;
}

.hero-glow {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(92vw, 1440px);
  height: 100%;
  margin: 0 auto;
  padding-top: clamp(9rem, 18vh, 12rem);
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 22px rgba(240, 96, 24, 0.85);
}

.hero h1 {
  max-width: 1000px;
  margin: clamp(2.5rem, 6vh, 4.8rem) 0 0;
  font-size: clamp(4.25rem, 8.4vw, 9.2rem);
  font-weight: 540;
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.hero h1 em {
  color: var(--lime);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
  width: calc(100% - min(31vw, 460px) - 5vw);
  margin-top: clamp(3.3rem, 8vh, 6rem);
}

.hero-copy {
  max-width: 500px;
  margin: 0;
  color: rgba(8, 63, 136, 0.72);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 250px;
  padding: 1rem 1.1rem;
  background: var(--lime);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease;
}

.primary-button:hover {
  background: var(--ink);
  color: #ffffff;
  transform: translateY(-2px);
}

.signal-panel {
  position: absolute;
  right: 4vw;
  bottom: 0;
  z-index: 4;
  width: min(31vw, 460px);
  min-height: 390px;
  padding: 1.2rem;
  border: 1px solid rgba(8, 63, 136, 0.16);
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 -18px 60px rgba(8, 63, 136, 0.12);
}

.signal-topline {
  display: flex;
  justify-content: space-between;
  color: rgba(8, 63, 136, 0.55);
  font-family: monospace;
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

.live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--lime);
}

.live i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
}

.signal-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 200px;
  height: 200px;
  margin: 2.2rem auto 1.7rem;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(240,96,24,0.58);
  border-radius: 50%;
}

.orbit-one { inset: 0; }
.orbit-two { inset: 26px; border-style: dashed; }
.orbit-three { inset: 54px; border-color: rgba(0, 144, 248, 0.45); }

.orbit-one::after,
.orbit-two::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 15px rgba(240,96,24,0.8);
}

.orbit-one::after { top: 28px; right: 24px; }
.orbit-two::after { bottom: 8px; left: 36px; }

.core {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--lime);
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-style: italic;
}

.signal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
}

.signal-stats div {
  padding-top: 0.7rem;
  border-top: 1px solid rgba(8, 63, 136, 0.15);
}

.signal-stats span,
.signal-stats strong {
  display: block;
}

.signal-stats span {
  margin-bottom: 0.25rem;
  color: rgba(8, 63, 136, 0.5);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.signal-stats strong {
  color: var(--ink);
  font-family: monospace;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.ticker {
  overflow: hidden;
  background: var(--lime);
  color: #ffffff;
}

.ticker div {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  padding: 0.9rem 0;
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.18em;
}

.ticker i {
  font-style: normal;
}

.section-shell {
  width: min(92vw, 1440px);
  margin: 0 auto;
}

.products-section {
  padding: clamp(6rem, 9vw, 9rem) 0;
}

.products-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr 0.85fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
}

.products-heading h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.3vw, 5.8rem);
  font-weight: 530;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.products-heading > p:last-child {
  margin: 0;
  color: #596f96;
  font-size: 1rem;
  line-height: 1.65;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 1.55rem;
  overflow: hidden;
  border: 1px solid rgba(8, 63, 136, 0.14);
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(8, 63, 136, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--product-accent);
}

.product-card::after {
  content: "";
  position: absolute;
  right: -8rem;
  top: -9rem;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: var(--product-accent);
  opacity: 0.07;
  pointer-events: none;
}

.product-card.orange { --product-accent: var(--lime); }
.product-card.blue { --product-accent: var(--blue); }
.product-card.purple { --product-accent: var(--purple); }

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(8, 63, 136, 0.14);
}

.product-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-family: monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.product-topline span {
  color: var(--product-accent);
  font-size: clamp(1.9rem, 2.4vw, 2.8rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.product-topline i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--product-accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--product-accent) 60%, transparent);
}

.product-showcase {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 250px;
  margin: 1.8rem 0 2.2rem;
  padding: 1.15rem;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--product-accent) 22%, transparent);
  background: linear-gradient(135deg, #ffffff 15%, color-mix(in srgb, var(--product-accent) 10%, #ffffff));
}

.product-showcase::after {
  content: "";
  position: absolute;
  right: -4.5rem;
  bottom: -5.5rem;
  width: 13rem;
  height: 13rem;
  border: 1px solid color-mix(in srgb, var(--product-accent) 20%, transparent);
  border-radius: 50%;
}

.product-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: min(52%, 210px);
  height: auto;
  margin: 0;
}

.product-logo img {
  display: block;
  width: 100%;
  max-height: 92px;
  object-fit: contain;
  object-position: left center;
}

.product-logo.purple {
  width: min(46%, 180px);
  height: auto;
}

.product-card.has-multiple-product-images .product-logo {
  width: min(43%, 170px);
}

.product-preview-group {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.product-preview {
  position: relative;
  width: clamp(92px, 7.6vw, 118px);
  margin: 0;
  overflow: hidden;
  border: 5px solid #ffffff;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(8, 63, 136, 0.2);
  transform: rotate(2deg);
}

.product-preview-group.multiple .product-preview {
  width: clamp(82px, 6.8vw, 102px);
}

.product-preview-group.multiple .product-preview:first-child {
  transform: rotate(-3deg);
}

.product-preview-group.multiple .product-preview + .product-preview {
  z-index: 1;
  margin-top: 1.2rem;
  margin-left: -1.7rem;
  transform: rotate(3deg);
}

.product-preview::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  z-index: 1;
  width: 32%;
  height: 4px;
  border-radius: 999px;
  background: rgba(8, 63, 136, 0.28);
  transform: translateX(-50%);
}

.product-preview img {
  display: block;
  width: 100%;
  height: auto;
}

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

.product-card.has-product-image .product-card-copy,
.product-card.has-multiple-product-images .product-card-copy {
  padding-right: 0;
}

.product-card-copy {
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 3.2rem;
}

.product-card-copy > p:first-child {
  margin: 0 0 1rem;
  color: var(--product-accent);
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 1.3rem;
  font-size: clamp(2rem, 3.1vw, 3.4rem);
  font-weight: 560;
  line-height: 1;
  letter-spacing: -0.055em;
}

.product-card-copy > p:last-child {
  max-width: 34rem;
  margin: 0;
  color: #516a94;
  font-size: 0.98rem;
  line-height: 1.65;
}

.product-card > a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(8, 63, 136, 0.14);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-card > a span {
  color: var(--product-accent);
  font-size: 1rem;
}

.services-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr 0.85fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.section-kicker {
  color: var(--purple);
}

.section-kicker.light {
  color: var(--lime);
}

.section-heading h2,
.fit-intro h2,
.about-grid h2,
.contact-inner h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.3vw, 5.8rem);
  font-weight: 530;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.section-heading > p:last-child {
  margin: 0;
  color: #596f96;
  font-size: 1rem;
  line-height: 1.65;
}

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

.service-row {
  display: grid;
  grid-template-columns: 0.35fr 1fr 1.15fr;
  gap: 3rem;
  min-height: 245px;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.25s ease, background 0.25s ease;
}

.service-row:hover {
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  background: rgba(223,243,255,0.72);
}

.service-number {
  color: var(--lime);
  font-family: monospace;
  font-size: clamp(2.6rem, 4.2vw, 4.8rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.09em;
}

.service-row h3 {
  max-width: 380px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.35rem);
  font-weight: 560;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.service-detail {
  max-width: 630px;
}

.service-detail > p {
  margin: 0 0 2.2rem;
  color: #516a94;
  font-size: 1.02rem;
  line-height: 1.65;
}

.service-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-detail li {
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.value-statement {
  min-height: 760px;
  padding: clamp(6rem, 10vw, 10rem) 0;
  background:
    radial-gradient(circle at 75% 45%, rgba(240,96,24,0.2), transparent 28%),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: auto, 80px 80px, 80px 80px;
}

.value-statement blockquote {
  max-width: 1180px;
  margin: clamp(4rem, 8vw, 7rem) 0;
  font-size: clamp(3.5rem, 7.4vw, 8rem);
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.value-copy {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-left: 28%;
}

.value-copy > p {
  margin: 0;
  color: rgba(250,249,245,0.67);
  font-size: 1.18rem;
  line-height: 1.65;
}

.principles {
  display: grid;
}

.principles span {
  padding: 0.8rem 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  color: var(--lime-soft);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.approach-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.approach-heading {
  grid-template-columns: 0.55fr 2.3fr;
}

.approach-heading h2 {
  max-width: 1000px;
}

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

.process-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

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

.process-card > span {
  color: var(--lime);
  font-family: monospace;
  font-size: clamp(2.8rem, 4vw, 4.6rem);
  font-weight: 700;
  line-height: 0.84;
  letter-spacing: -0.09em;
}

.process-card h3 {
  margin: 0 0 1rem;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.process-card p {
  margin: 0;
  color: #5c7197;
  font-size: 0.94rem;
  line-height: 1.6;
}

.fit-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 8vw;
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.fit-intro h2 {
  margin-top: 3rem;
  max-width: 690px;
  font-size: clamp(2.7rem, 4.7vw, 5.2rem);
}

.fit-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.fit-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.fit-list span {
  color: var(--lime);
  font-family: monospace;
  font-size: clamp(2.4rem, 3.3vw, 3.8rem);
  font-weight: 700;
  line-height: 0.84;
  letter-spacing: -0.09em;
}

.fit-list p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.52;
}

.about-section {
  background: linear-gradient(135deg, #083f88 0%, #0b6fc5 100%);
  color: var(--paper-bright);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10vw;
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.about-grid h2 {
  max-width: 750px;
  margin-top: 3rem;
}

.about-copy {
  padding-top: 4.4rem;
}

.about-copy p {
  margin: 0 0 1.8rem;
  color: rgba(250,249,245,0.68);
  font-size: 1.08rem;
  line-height: 1.72;
}

.contact-section {
  background: var(--lime);
  color: #ffffff;
}

.contact-inner {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.contact-inner .section-kicker {
  color: #ffffff;
}

.contact-inner h2 {
  max-width: 1120px;
  margin-top: 3.2rem;
  font-size: clamp(3.4rem, 7vw, 7.4rem);
}

.contact-bottom {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 6rem;
  align-items: end;
  margin-top: 5rem;
}

.contact-channels {
  display: grid;
}

.contact-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.25rem 0;
  border-bottom: 2px solid #ffffff;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-value {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: clamp(1.25rem, 2.2vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.contact-bottom p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr auto;
  gap: 3rem;
  align-items: start;
  padding: 4rem 4vw 2rem;
  background: var(--ink);
  color: var(--paper-bright);
}

.footer-brand {
  width: 84px;
  height: 104px;
}

.footer-brand img {
  width: 76px;
}

.footer-meta {
  display: grid;
  gap: 0.8rem;
  color: rgba(250,249,245,0.56);
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.copyright {
  grid-column: 1 / -1;
  margin: 5rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  color: rgba(250,249,245,0.36);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .hero {
    min-height: 760px;
  }

  .hero-inner {
    padding-top: 10rem;
  }

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

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
    width: calc(100% - 390px);
  }

  .signal-panel {
    width: 340px;
    min-height: 250px;
  }

  .signal-orbit {
    width: 120px;
    height: 120px;
    margin: 1.2rem auto;
  }

  .orbit-two { inset: 17px; }
  .orbit-three { inset: 34px; }

  .section-heading {
    grid-template-columns: 0.5fr 1.5fr;
  }

  .products-heading {
    grid-template-columns: 0.5fr 1.5fr;
  }

  .products-heading > p:last-child {
    grid-column: 2;
  }

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

  .product-card {
    min-height: 360px;
  }

  .product-showcase {
    height: 280px;
  }

  .product-preview {
    width: 132px;
  }

  .product-preview-group.multiple .product-preview {
    width: 106px;
  }

  .product-card.has-product-image .product-card-copy,
  .product-card.has-multiple-product-images .product-card-copy {
    max-width: 760px;
    padding-right: 0;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .service-row {
    grid-template-columns: 0.2fr 0.8fr 1fr;
  }

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

  .process-card {
    min-height: 320px;
    border-bottom: 1px solid var(--line);
  }

  .process-card:nth-child(2) {
    border-right: 0;
  }

  .process-card:nth-child(3),
  .process-card:nth-child(4) {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 74px;
    padding: 0 5vw;
  }

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

  .mobile-menu {
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    cursor: pointer;
    list-style: none;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

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

  .mobile-menu[open] nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0 5vw;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(8, 63, 136, 0.16);
    box-shadow: 0 18px 35px rgba(8, 63, 136, 0.12);
  }

  .mobile-menu nav a {
    padding: 1.2rem 0;
    border-top: 1px solid rgba(8, 63, 136, 0.12);
    color: var(--ink);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .hero {
    height: auto;
    min-height: 780px;
  }

  .hero-inner {
    width: 90vw;
    padding-top: 8.8rem;
  }

  .hero h1 {
    margin-top: 2.8rem;
    font-size: clamp(3.4rem, 16vw, 5.5rem);
    line-height: 0.91;
  }

  .hero-bottom {
    width: 100%;
    margin-top: 3rem;
    gap: 2rem;
  }

  .hero-copy {
    max-width: 92%;
    font-size: 1rem;
  }

  .primary-button {
    width: 100%;
  }

  .signal-panel {
    display: none;
  }

  .ticker div {
    gap: 1.5rem;
  }

  .section-shell {
    width: 90vw;
  }

  .services-section,
  .products-section,
  .approach-section {
    padding: 5.5rem 0;
  }

  .section-heading,
  .products-heading,
  .approach-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .section-heading > p:last-child {
    grid-column: 1;
  }

  .products-heading > p:last-child {
    grid-column: 1;
  }

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

  .product-showcase {
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    height: auto;
    min-height: 0;
    padding: 1.5rem;
  }

  .product-logo,
  .product-card.has-product-image .product-logo {
    justify-content: center;
    width: min(100%, 240px);
    min-height: 86px;
  }

  .product-logo img {
    object-position: center;
  }

  .product-logo.purple,
  .product-card.has-multiple-product-images .product-logo {
    width: min(100%, 210px);
  }

  .product-preview-group,
  .product-preview-group.multiple {
    position: relative;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }

  .product-preview {
    width: min(62vw, 220px);
    margin: 0;
    border-width: 7px;
    border-radius: 28px;
    transform: rotate(1deg);
  }

  .product-preview-group.multiple .product-preview {
    width: min(42vw, 160px);
  }

  .product-preview-group.multiple .product-preview + .product-preview {
    margin-top: 1.2rem;
    margin-left: -1rem;
  }

  .product-card.has-product-image .product-card-copy {
    max-width: none;
    padding-right: 0;
  }

  .product-card h3 {
    font-size: 2.55rem;
  }

  .section-heading h2,
  .products-heading h2,
  .fit-intro h2,
  .about-grid h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .service-row {
    grid-template-columns: 72px 1fr;
    gap: 1rem;
    min-height: 0;
    padding: 2rem 0;
  }

  .service-number {
    font-size: 2.6rem;
  }

  .service-row h3 {
    font-size: 2rem;
  }

  .service-detail {
    grid-column: 2;
  }

  .service-detail > p {
    margin-bottom: 1.4rem;
    font-size: 0.95rem;
  }

  .service-detail li {
    font-size: 0.6rem;
  }

  .value-statement {
    min-height: 0;
    padding: 5.5rem 0;
  }

  .value-statement blockquote {
    margin: 4rem 0;
    font-size: clamp(3.3rem, 14vw, 5.5rem);
  }

  .value-copy {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-left: 0;
  }

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

  .process-card {
    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line) !important;
  }

  .process-card:last-child {
    border-bottom: 0 !important;
  }

  .fit-section,
  .about-grid,
  .contact-bottom {
    grid-template-columns: 1fr;
  }

  .fit-section {
    gap: 4rem;
    padding-bottom: 5.5rem;
  }

  .about-grid {
    gap: 1.5rem;
    padding: 5.5rem 0;
  }

  .about-copy {
    padding-top: 1rem;
  }

  .contact-inner {
    padding: 5rem 0;
  }

  .contact-inner h2 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .contact-bottom {
    gap: 2rem;
    margin-top: 3.5rem;
  }

  .contact-link {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }

  .contact-value {
    font-size: clamp(1.25rem, 6vw, 1.8rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 5vw 2rem;
  }

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

  .copyright {
    margin-top: 2rem;
  }
}

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

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