:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #66717d;
  --paper: #f7f8f7;
  --white: #ffffff;
  --line: #dfe4e6;
  --teal: #007b83;
  --teal-dark: #005e66;
  --amber: #c98d32;
  --steel: #384755;
  --shadow: 0 18px 55px rgba(23, 33, 43, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 112px;
  padding: 18px 56px;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(23, 33, 43, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 2px 4px;
  min-width: 0;
  box-shadow: 0 10px 28px rgba(23, 33, 43, 0.12);
}

.brand-logo {
  display: block;
  width: clamp(260px, 28vw, 340px);
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  gap: 8px;
}

.site-nav a {
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.is-scrolled .site-nav a:hover {
  background: rgba(0, 123, 131, 0.09);
}

.site-nav a[href="#contact"] {
  position: relative;
  margin-left: 6px;
  border: 1px solid rgba(201, 141, 50, 0.85);
  background: var(--amber);
  color: #101418;
  box-shadow: 0 10px 26px rgba(201, 141, 50, 0.32);
}

.site-nav a[href="#contact"]::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(201, 141, 50, 0.32);
  border-radius: 9px;
  content: "";
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a[href="#contact"]:hover {
  background: #d99b3f;
  box-shadow: 0 14px 32px rgba(201, 141, 50, 0.42);
  transform: translateY(-1px);
}

.site-nav a[href="#contact"]:hover::after {
  opacity: 1;
  transform: scale(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 720px;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #111a22;
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(17, 26, 34, 0.92) 0%, rgba(17, 26, 34, 0.72) 42%, rgba(17, 26, 34, 0.2) 100%),
    linear-gradient(180deg, rgba(17, 26, 34, 0.35) 0%, rgba(17, 26, 34, 0.15) 70%, rgba(247, 248, 247, 1) 100%);
}

.hero-circuit {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-circuit span {
  position: absolute;
  left: 8%;
  width: 42vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 141, 50, 0.72), transparent);
  opacity: 0.48;
  transform: translateX(-20%);
  animation: signalSweep 5.8s var(--ease) infinite;
}

.hero-circuit span:nth-child(1) {
  top: 28%;
}

.hero-circuit span:nth-child(2) {
  top: 52%;
  animation-delay: 1.2s;
}

.hero-circuit span:nth-child(3) {
  top: 72%;
  animation-delay: 2.4s;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 40px));
  margin-left: 92px;
  padding-top: 152px;
  color: var(--white);
}

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

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 720px;
  font-size: 5.8rem;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

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

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

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

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

.motion-band {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  padding: 12px 0;
}

.ticker {
  display: flex;
  width: max-content;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: max-content;
  padding-right: 14px;
  animation: tickerMove 34s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 7px 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 24px 0;
}

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

.proof-grid div {
  border-left: 3px solid var(--teal);
  padding-left: 16px;
}

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

.proof-grid strong {
  font-size: 0.96rem;
}

.proof-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 96px 0;
}

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

.intro {
  padding-top: 72px;
}

.intro-grid,
.careers-layout,
.contact-layout,
.process-layout,
.quality-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.stacked-copy {
  display: grid;
  gap: 18px;
}

.section h2 {
  max-width: 760px;
  font-size: 3.55rem;
}

.section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.section-heading p:not(.section-kicker) {
  margin-top: 18px;
}

.section-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 34px;
}

.section-feature .section-heading {
  margin-bottom: 0;
}

.feature-image,
.delivery-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(223, 228, 230, 0.78);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.feature-image::after,
.delivery-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 123, 131, 0.18), transparent 46%, rgba(201, 141, 50, 0.18));
  content: "";
  pointer-events: none;
}

.feature-image img,
.delivery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.feature-image {
  aspect-ratio: 4 / 3;
}

.delivery-image {
  aspect-ratio: 16 / 10;
  margin-top: 28px;
}

.feature-image:hover img,
.delivery-image:hover img {
  transform: scale(1.035);
}

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

.service-card {
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.05);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: rgba(0, 123, 131, 0.1);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card h3 {
  margin-top: 24px;
  font-size: 1.28rem;
}

.service-card p {
  margin-top: 12px;
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--steel);
  list-style: none;
  font-size: 0.94rem;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--amber);
  content: "";
  transform: translateY(-50%);
}

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

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

.market-grid article {
  min-height: 244px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(23, 33, 43, 0.08), rgba(23, 33, 43, 0.9)),
    linear-gradient(135deg, rgba(0, 123, 131, 0.4), rgba(201, 141, 50, 0.18));
  color: var(--white);
  padding: 24px;
  overflow: hidden;
}

.market-grid h3 {
  font-size: 1.18rem;
}

.market-grid p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

.process {
  background: #edf1f0;
}

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  gap: 8px;
  border-left: 4px solid var(--teal);
  background: var(--white);
  border-radius: 0 8px 8px 0;
  padding: 22px 24px;
  box-shadow: 0 10px 28px rgba(23, 33, 43, 0.05);
}

.process-list strong {
  font-size: 1.08rem;
}

.process-list span {
  color: var(--muted);
}

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

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

.quality-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.quality-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.04rem;
}

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

.careers .section-kicker,
.careers p {
  color: rgba(255, 255, 255, 0.74);
}

.career-panel {
  display: grid;
  gap: 24px;
  justify-items: start;
}

.career-panel .button {
  background: var(--amber);
  color: #101418;
}

.contact-layout {
  align-items: center;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 34px;
  box-shadow: 0 14px 34px rgba(23, 33, 43, 0.08);
}

.contact-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.contact-email {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 24px;
  border: 1px solid rgba(201, 141, 50, 0.92);
  border-radius: 8px;
  background: var(--amber);
  padding: 16px 18px;
  color: #101418;
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: center;
  box-shadow: 0 16px 32px rgba(201, 141, 50, 0.24);
}

.contact-email:hover {
  background: #d99b3f;
  transform: translateY(-1px);
}

.contact-linkedin {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 68px;
  margin-top: 14px;
  border: 1px solid rgba(0, 123, 131, 0.75);
  border-radius: 8px;
  background: var(--teal-dark);
  padding: 18px 22px;
  color: var(--white);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: left;
  box-shadow: 0 16px 32px rgba(0, 123, 131, 0.22);
}

.contact-linkedin::after {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(0, 123, 131, 0.22);
  border-radius: 12px;
  content: "";
  pointer-events: none;
}

.contact-linkedin span:last-child {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.3rem;
  line-height: 1;
}

.contact-linkedin:hover {
  background: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(0, 123, 131, 0.3);
}

.contact-note {
  margin-top: 16px !important;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 0.92rem !important;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

.word-animate {
  display: inline;
}

.word-animate .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.9em) rotateX(35deg);
  transform-origin: 50% 100%;
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
  transition-delay: calc(var(--word-index) * 54ms);
}

.word-animate.is-visible .word {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes signalSweep {
  0% {
    opacity: 0;
    transform: translateX(-20%) scaleX(0.3);
  }

  18% {
    opacity: 0.58;
  }

  55% {
    opacity: 0.2;
    transform: translateX(90%) scaleX(1);
  }

  100% {
    opacity: 0;
    transform: translateX(130%) scaleX(0.4);
  }
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 24px 0;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.93rem;
}

.footer-layout p {
  margin: 0;
}

.footer-layout a {
  color: var(--teal-dark);
  font-weight: 800;
}

@media (max-width: 1120px) {
  .site-header {
    padding: 14px 24px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 8px);
    right: 24px;
    display: none;
    width: min(280px, calc(100vw - 40px));
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(23, 33, 43, 0.96);
    color: var(--white);
    padding: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 12px;
    white-space: normal;
  }

  .site-nav a[href="#contact"] {
    margin-left: 0;
    text-align: center;
  }

  .intro-grid,
  .careers-layout,
  .contact-layout,
  .process-layout,
  .quality-layout,
  .section-feature {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 620px) {
  .site-header {
    min-height: 88px;
    padding: 12px 16px;
  }

  .brand {
    padding: 2px 4px;
  }

  .brand-logo {
    width: 190px;
    max-height: 74px;
  }

  .hero {
    min-height: 680px;
    min-height: 86svh;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(17, 26, 34, 0.92) 0%, rgba(17, 26, 34, 0.76) 100%),
      linear-gradient(180deg, rgba(17, 26, 34, 0.2) 0%, rgba(247, 248, 247, 1) 100%);
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-top: 126px;
  }

  h1 {
    font-size: 2.6rem;
    line-height: 1.08;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .section {
    padding: 64px 0;
  }

  .section-inner {
    width: min(100% - 32px, 1160px);
  }

  .section h2 {
    font-size: 2.15rem;
    line-height: 1.1;
  }

  .section-feature {
    gap: 28px;
  }

  .feature-image,
  .delivery-image {
    max-height: 340px;
  }

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

  .proof-grid,
  .market-grid,
  .quality-grid {
    grid-template-columns: 1fr;
  }

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

  .button {
    width: 100%;
  }

  .contact-card {
    padding: 24px;
  }

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

@media (max-width: 380px) {
  .brand-logo {
    width: 156px;
    max-height: 62px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .section h2 {
    font-size: 1.95rem;
  }

  .contact-email {
    padding: 14px;
    font-size: 0.92rem;
  }
}

@media (max-height: 640px) and (min-width: 621px) {
  .hero {
    min-height: 680px;
  }

  h1 {
    font-size: 4.7rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .word-animate .word {
    opacity: 1;
    transform: none;
  }
}
