@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000000;
  --ink: #171515;
  --blue: #00aeef;
  --blue-deep: #007cad;
  --blue-light: #c7eafb;
  --gray: #808285;
  --gray-soft: #eef2f4;
  --orange: #fbb040;
  --white: #ffffff;
  --max-width: 1180px;
  --header-height: 76px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--black);
  border-radius: 4px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(128, 130, 133, 0.18);
  backdrop-filter: blur(14px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: min(220px, 54vw);
}

.brand-mark img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: #2f3032;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue-deep);
  border-bottom-color: var(--blue);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(128, 130, 133, 0.35);
  border-radius: 4px;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--black);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: calc(100svh - 118px);
  overflow: hidden;
  color: var(--white);
  background: #050708;
}

.hero-canvas,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-canvas {
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.78) 42%, rgba(0, 174, 239, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.hero-inner {
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4rem, 15vw, 10.5rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  overflow-wrap: break-word;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--black);
  background: var(--orange);
  border-color: var(--orange);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffc069;
  border-color: #ffc069;
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(0, 174, 239, 0.22);
  border-color: var(--blue);
}

.button-secondary.light {
  color: var(--white);
}

.button-secondary.dark {
  color: var(--black);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(128, 130, 133, 0.55);
}

.button-secondary.dark:hover,
.button-secondary.dark:focus-visible {
  background: var(--white);
  border-color: var(--blue);
}

.signal-band {
  background: var(--black);
  color: var(--white);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.signal-grid div {
  min-width: 0;
  padding: 24px clamp(18px, 3vw, 30px);
  background: var(--black);
}

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

.signal-grid strong {
  font-size: 0.94rem;
}

.signal-grid span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

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

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

.section-tint {
  background: linear-gradient(180deg, var(--gray-soft), #ffffff);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.18), rgba(251, 176, 64, 0.08)),
    #0b0f10;
}

.section-contact {
  color: var(--white);
  background: var(--black);
}

.section-inner {
  width: min(var(--max-width), calc(100% - 36px));
  margin: 0 auto;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 38px;
}

.section-heading.compact {
  margin: 0;
}

.section-heading h2,
.safety-layout h2,
.contact-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.safety-copy p,
.contact-panel p {
  color: #4d5256;
  font-size: 1.05rem;
}

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

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

.product-card,
.service-card,
.principle-list article,
.launch-grid article {
  border: 1px solid rgba(128, 130, 133, 0.22);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  padding: clamp(24px, 3vw, 32px);
  border-top: 5px solid var(--orange);
}

.service-card span {
  display: block;
  margin-bottom: 20px;
  color: var(--blue-deep);
  font-weight: 900;
}

.product-card {
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
}

.product-featured {
  border-top: 6px solid var(--blue);
}

.product-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: var(--black);
  background: var(--blue-light);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3,
.service-card h3,
.principle-list h3,
.launch-grid h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: 1.45rem;
  line-height: 1.14;
  font-weight: 900;
}

.product-card p,
.service-card p,
.principle-list p,
.launch-grid p {
  margin: 0;
  color: #4d5256;
}

.service-reference {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  margin-top: 22px;
  padding: clamp(24px, 4vw, 40px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 174, 239, 0.14), rgba(251, 176, 64, 0.12)),
    #0b0f10;
  border-radius: 8px;
}

.service-reference .eyebrow {
  color: var(--orange);
}

.service-reference h3 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.05;
  font-weight: 900;
}

.service-reference p:not(.eyebrow) {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.reference-list {
  display: grid;
  gap: 10px;
}

.reference-item {
  display: block;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  font-weight: 900;
}

.reference-item strong,
.reference-item span {
  display: block;
}

.reference-item a {
  color: var(--white);
  text-decoration-color: rgba(0, 174, 239, 0.55);
  text-underline-offset: 4px;
}

.reference-item a:hover,
.reference-item a:focus-visible {
  color: var(--orange);
  outline: none;
}

.reference-item span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 400;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: #2f3032;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--blue-light);
}

.inline-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--blue-deep);
  font-weight: 900;
  text-decoration-color: rgba(0, 174, 239, 0.4);
  text-underline-offset: 5px;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--black);
  outline: none;
}

.page-hero {
  padding-top: clamp(54px, 7vw, 86px);
  padding-bottom: clamp(58px, 8vw, 96px);
}

.page-hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(2.55rem, 6.4vw, 5.9rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: #4d5256;
  font-size: clamp(1.05rem, 1.6vw, 1.26rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: #4d5256;
  font-size: 0.88rem;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--blue-deep);
  text-decoration-color: rgba(0, 174, 239, 0.35);
  text-underline-offset: 4px;
}

.breadcrumbs span::before {
  content: "/";
  margin-right: 8px;
  color: var(--gray);
}

.service-directory,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-tile {
  display: block;
  min-height: 100%;
  padding: clamp(24px, 3vw, 32px);
  color: inherit;
  text-decoration: none;
  background: var(--white);
  border: 1px solid rgba(128, 130, 133, 0.22);
  border-top: 5px solid var(--blue);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.06);
}

.service-tile:nth-child(even) {
  border-top-color: var(--orange);
}

.service-tile:hover,
.service-tile:focus-visible {
  border-color: rgba(0, 174, 239, 0.62);
  outline: none;
  transform: translateY(-1px);
}

.service-tile span,
.step-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-weight: 900;
}

.service-tile h3,
.step-grid h3,
.service-facts h2,
.service-main-copy h2 {
  margin: 0 0 12px;
  color: var(--black);
  font-weight: 900;
  line-height: 1.08;
}

.service-tile h3,
.step-grid h3 {
  font-size: 1.38rem;
}

.service-tile p,
.step-grid p,
.service-main-copy p,
.service-facts p {
  margin: 0;
  color: #4d5256;
}

.service-detail-grid,
.work-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.service-main-copy h2 {
  font-size: clamp(2rem, 4.6vw, 4.2rem);
}

.service-main-copy p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  font-size: 1.05rem;
}

.service-facts,
.step-grid article {
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  border: 1px solid rgba(128, 130, 133, 0.22);
  border-radius: 8px;
}

.service-facts {
  border-top: 5px solid var(--orange);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
}

.service-facts h2 {
  font-size: 1.35rem;
}

.service-facts .check-list {
  margin-top: 18px;
}

.contact-page {
  min-height: calc(100svh - var(--header-height));
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.contact-page-copy h1 {
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5.25rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.contact-page-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: #4d5256;
  font-size: 1.08rem;
}

.contact-detail-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-detail-list div {
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(128, 130, 133, 0.22);
  border-radius: 8px;
}

.contact-detail-list strong,
.contact-detail-list span,
.contact-detail-list a {
  display: block;
}

.contact-detail-list strong {
  color: var(--black);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.contact-detail-list span,
.contact-detail-list a {
  margin-top: 4px;
  color: #4d5256;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid rgba(128, 130, 133, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
}

.contact-page-copy,
.contact-form {
  min-width: 0;
}

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

.form-row label {
  color: var(--black);
  font-weight: 900;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(128, 130, 133, 0.45);
  border-radius: 4px;
  font: inherit;
}

.form-row textarea {
  min-height: 154px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--blue-deep);
  outline: 3px solid rgba(0, 174, 239, 0.18);
}

.form-note {
  margin: 0;
  color: #4d5256;
  font-size: 0.92rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

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

.principle-list article {
  padding: 26px;
}

.principle-list span {
  display: block;
  margin-bottom: 20px;
  color: var(--blue-deep);
  font-weight: 900;
}

.safety-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.safety-layout .eyebrow,
.contact-panel .eyebrow {
  color: var(--orange);
}

.safety-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.safety-copy p + p {
  margin-top: 18px;
}

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

.launch-grid article {
  padding: 24px;
  border-top: 5px solid var(--orange);
}

.contact-panel {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
}

.contact-panel img {
  width: 112px;
}

.contact-panel p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-actions {
  justify-content: flex-end;
  margin: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 44px);
  color: #4d5256;
  background: var(--white);
  border-top: 1px solid rgba(128, 130, 133, 0.18);
}

.site-footer img {
  width: 170px;
}

.site-footer p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .product-grid,
  .service-grid,
  .service-directory,
  .step-grid,
  .service-reference,
  .service-detail-grid,
  .work-layout,
  .contact-page-layout,
  .split-layout,
  .safety-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    min-height: var(--header-height);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(128, 130, 133, 0.24);
    transform: translateY(-120%);
    transition: transform 180ms ease;
  }

  .site-nav[data-open="true"] {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 2px;
    border-bottom: 1px solid rgba(128, 130, 133, 0.2);
  }

  .hero {
    min-height: calc(100svh - 96px);
  }

  .signal-grid,
  .principle-list,
  .launch-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .button,
  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .contact-page-copy h1 {
    font-size: 2.18rem;
    line-height: 1.04;
  }
}

@media (max-width: 460px) {
  .hero-inner,
  .section-inner,
  .signal-grid {
    width: min(100% - 28px, var(--max-width));
  }

  .hero h1 {
    font-size: clamp(3rem, 20vw, 4.75rem);
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.6rem);
    line-height: 1;
  }

  .product-card,
  .service-card,
  .service-tile,
  .service-facts,
  .step-grid article,
  .principle-list article,
  .launch-grid article {
    padding: 22px;
  }
}

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