:root {
  --blue: #365abd;
  --blue-dark: #263f98;
  --blue-soft: #6f88bd;
  --bordeaux: #7c2855;
  --gray-dark: #53565a;
  --gray-medium: #97999b;
  --gray-light: #c8c9c7;
  --gray-panel: #cfd0cb;
  --paper: #ffffff;
  --ink: #07080a;
  --line: rgba(83, 86, 90, 0.24);
  --radius: 8px;
  --container: min(1090px, calc(100vw - 48px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.48;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 62px;
  padding: 12px max(22px, calc((100vw - 1090px) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  justify-self: start;
}

.brand img {
  width: 154px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 40px);
  color: var(--gray-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links a,
.header-cta,
.button {
  text-decoration: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 0;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  min-width: 86px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.header-cta svg,
.header-cta [data-lucide] {
  display: none;
}

.header-cta:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(600px, calc(100svh - 62px), 860px);
  place-items: start center;
  overflow: hidden;
  isolation: isolate;
  background: var(--blue);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(54, 90, 189, 0.04), rgba(54, 90, 189, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  padding-top: clamp(66px, 8vw, 106px);
}

.hero-logo {
  width: min(420px, 46vw);
  margin: 0 auto;
  filter: grayscale(1) brightness(2.2) opacity(0.72);
}

@media (min-width: 901px) {
  .hero-media {
    object-position: center 30%;
  }

  .hero-content {
    padding-top: clamp(46px, 5vw, 72px);
  }

  .hero-logo {
    width: min(360px, 34vw);
  }
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue-soft);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 0;
  color: var(--gray-dark);
  font-size: clamp(2.18rem, 3.25vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.intro .section-title {
  max-width: 430px;
}

.intro {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 86px) 0 clamp(48px, 7vw, 74px);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(38px, 10vw, 126px);
  align-items: start;
}

.intro-copy {
  max-width: 470px;
  margin-top: clamp(24px, 4vw, 38px);
  color: var(--gray-dark);
  font-size: 1.02rem;
  line-height: 1.38;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.founders {
  display: grid;
  align-self: start;
  justify-items: center;
  gap: clamp(24px, 5vw, 54px);
  padding-top: 42px;
}

.founders img {
  width: min(360px, 100%);
  aspect-ratio: 1.78;
  object-fit: cover;
  object-position: center 36%;
  filter: grayscale(1);
}

.founders blockquote {
  display: grid;
  gap: 8px;
  max-width: 420px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
}

.founders cite {
  color: var(--gray-dark);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.belief {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 4px solid var(--paper);
  border-bottom: 4px solid var(--paper);
  background: var(--blue);
}

.belief-copy {
  display: grid;
  align-content: center;
  min-height: 430px;
  padding: clamp(48px, 7vw, 82px) clamp(32px, 5vw, 74px) clamp(48px, 7vw, 82px) max(32px, calc((100vw - 1090px) / 2));
  color: rgba(255, 255, 255, 0.74);
}

.belief-copy .section-kicker,
.tailor-copy .section-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.belief-copy h2,
.tailor-copy h2 {
  max-width: 520px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(2.18rem, 3.25vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
}

.belief-copy p,
.tailor-copy p {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.02rem;
  line-height: 1.42;
}

.belief-image img,
.tailor-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: grayscale(1);
}

.values {
  padding: clamp(64px, 9vw, 96px) 0;
  background: var(--gray-panel);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: var(--container);
  margin: 0 auto;
}

.value-grid article {
  display: grid;
  min-height: 224px;
  align-content: start;
  gap: 28px;
  padding: 26px 24px;
  background: var(--paper);
}

.value-grid h3 {
  margin-bottom: 0;
  color: var(--gray-dark);
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.value-grid p {
  margin-bottom: 0;
  color: var(--gray-dark);
  font-size: 1rem;
  line-height: 1.32;
}

.tailor {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 4px solid var(--paper);
  background: var(--blue);
}

.tailor-copy {
  display: grid;
  align-content: center;
  min-height: 430px;
  padding: clamp(34px, 4vw, 48px) clamp(24px, 3vw, 42px) clamp(34px, 4vw, 48px) max(32px, calc((100vw - 1090px) / 2));
}

.tailor-copy h2 {
  margin-bottom: 24px;
}

.tailor-copy p + p {
  margin-top: 24px;
}

.tailor-image {
  min-height: 0;
  overflow: hidden;
}

.tailor-image img {
  min-height: 0;
  object-position: center;
}

.products-intro {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 100px) 0;
}

.products-head {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(38px, 8vw, 104px);
  align-items: start;
}

.products-head p {
  max-width: 560px;
  margin-top: 12px;
  margin-bottom: 0;
  color: var(--gray-dark);
  font-size: 1.02rem;
  line-height: 1.34;
}

.technology-list {
  border-top: 4px solid var(--paper);
}

.technology-band {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1fr);
  min-height: 350px;
  border-bottom: 4px solid var(--paper);
  background: var(--gray-panel);
}

.technology-copy {
  display: grid;
  align-content: center;
  justify-self: stretch;
  padding: 54px clamp(32px, 5vw, 74px) 54px max(32px, calc((100vw - 1090px) / 2));
}

.technology-copy h3 {
  margin: 0 0 30px;
  color: var(--ink);
  font-size: clamp(2.18rem, 3.25vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.technology-copy p {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.38;
}

.technology-image {
  min-width: 0;
  background: #020405;
}

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

.certifications {
  border-bottom: 4px solid var(--gray-panel);
  background: var(--paper);
}

.certifications-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 9vw, 104px);
  align-items: center;
  width: var(--container);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 86px) 0;
}

.certifications h2 {
  max-width: 560px;
}

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

.certification-card {
  display: grid;
  min-height: 98px;
  place-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.certification-card img {
  display: block;
  width: min(150px, 100%);
  max-height: 78px;
  object-fit: contain;
  object-position: center;
}

.certification-card:nth-child(3) img {
  width: min(128px, 100%);
}

.certification-card:nth-child(4) img {
  width: min(132px, 100%);
}

.catalog-band {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  width: var(--container);
  margin: clamp(74px, 10vw, 112px) auto;
  padding: clamp(30px, 5vw, 46px);
  border-radius: var(--radius);
  background: var(--blue);
  color: white;
}

.section-divider {
  width: var(--container);
  height: 1px;
  margin: 0 auto clamp(66px, 9vw, 104px);
  background: var(--line);
}

.catalog-band div {
  max-width: 650px;
}

.catalog-band .eyebrow {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.catalog-band h2 {
  margin-bottom: 8px;
  color: white;
  font-size: clamp(2.18rem, 3.25vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
}

.catalog-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.catalog-band .button.primary {
  border-color: white;
  background: transparent;
  min-width: max-content;
  box-shadow: inset 0 0 0 1px rgba(54, 90, 189, 0.28);
  white-space: nowrap;
}

.catalog-band .button.primary:hover {
  background: rgba(255, 255, 255, 0.12);
  opacity: 1;
}

.button:hover {
  opacity: 0.84;
  transform: translateY(-1px);
}

.contact-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 8vw, 96px);
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 clamp(78px, 10vw, 122px);
}

.contact-copy .section-title {
  color: var(--ink);
}

.contact-copy p:not(.eyebrow),
address {
  color: var(--gray-dark);
}

.contact-copy p:not(.eyebrow) {
  margin-top: 34px;
  font-size: 1rem;
  line-height: 1.45;
}

address {
  display: grid;
  gap: 18px;
  margin-top: 26px;
  font-style: normal;
}

.address-block,
.contact-direct {
  display: grid;
  gap: 2px;
}

.contact-direct {
  gap: 6px;
}

address a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

address a:hover {
  color: var(--blue-dark);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(200, 201, 199, 0.22);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 8px;
  color: var(--gray-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.privacy-check {
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 0.78rem;
  line-height: 1.42;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.privacy-check a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  margin: 0;
  padding: 12px 13px;
  border: 1px solid rgba(54, 90, 189, 0.2);
  border-radius: var(--radius);
  background: rgba(54, 90, 189, 0.08);
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status.is-success {
  border-color: rgba(40, 126, 79, 0.26);
  background: rgba(40, 126, 79, 0.1);
  color: #287e4f;
}

.form-status.is-error {
  border-color: rgba(124, 40, 85, 0.26);
  background: rgba(124, 40, 85, 0.1);
  color: var(--bordeaux);
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
}

input:focus,
select:focus,
textarea:focus,
.nav-links a:focus-visible,
.header-cta:focus-visible,
.button:focus-visible,
.back-to-top:focus-visible {
  outline: 3px solid rgba(54, 90, 189, 0.22);
  outline-offset: 3px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: var(--container);
  margin: 0 auto;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--gray-dark);
  font-size: 0.82rem;
  line-height: 1.5;
}

.site-footer > img {
  width: 132px;
}

.footer-legal {
  display: grid;
  gap: 6px;
  justify-items: center;
}

.site-footer p {
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
}

.footer-legal a {
  position: relative;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.footer-legal a + a::before {
  position: absolute;
  left: -11px;
  color: var(--gray);
  content: "/";
  font-weight: 700;
}

.footer-legal a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.agency-link {
  justify-self: end;
}

.agency-link img {
  width: 111px;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue);
  color: white;
  font: inherit;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top svg,
.back-to-top [data-lucide] {
  display: block;
  width: 21px;
  height: 21px;
  stroke-width: 2.4;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

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

  .nav-links a,
  .nav-links a::after,
  .header-cta,
  .button,
  .back-to-top,
  .reveal {
    animation: none;
    transition: none;
  }

  .reveal,
  .reveal.is-revealed {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(1090px, calc(100vw - 36px));
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding-inline: 18px;
  }

  .brand img {
    width: 148px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 64svh;
  }

  .hero-logo {
    width: min(320px, 72vw);
  }

  .intro-grid,
  .belief,
  .tailor,
  .products-head,
  .technology-band,
  .certifications-inner,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    align-items: start;
  }

  .founders {
    justify-items: start;
    padding-top: 0;
  }

  .founders blockquote {
    text-align: left;
  }

  .belief-copy,
  .tailor-copy {
    min-height: 0;
    padding: 48px 24px;
  }

  .belief-image img,
  .tailor-image img {
    min-height: 300px;
  }

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

  .value-grid article {
    min-height: 0;
    gap: 28px;
  }

  .value-grid h3 {
    margin-bottom: 0;
    text-align: left;
  }

  .technology-copy {
    width: var(--container);
    justify-self: center;
    padding: 42px 0;
  }

  .technology-image {
    min-height: 250px;
  }

  .certification-list {
    max-width: 420px;
  }

  .catalog-band {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-band .button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer p {
    white-space: normal;
  }

  .agency-link {
    justify-self: center;
  }
}

@media (max-width: 520px) {
  :root {
    --container: min(1090px, calc(100vw - 32px));
  }

  .site-header {
    padding-inline: 14px;
  }

  .header-cta {
    min-width: 78px;
    padding-inline: 12px;
  }

  .hero {
    min-height: 58svh;
  }

  .intro,
  .products-intro,
  .certifications-inner {
    padding-block: 50px;
  }

  .section-title {
    font-size: 2.15rem;
  }

  .belief-copy h2,
  .tailor-copy h2,
  .technology-copy h3,
  .contact-copy .section-title {
    font-size: 2.15rem;
  }

  .founders img {
    width: 100%;
  }

  .technology-image {
    min-height: 220px;
  }

  .catalog-band,
  .contact-section,
  .site-footer {
    width: min(930px, calc(100vw - 32px));
  }
}
