@font-face {
  font-family: 'Geist';
  src: url('fonts/geist.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Geist Mono';
  src: url('fonts/geist-mono.woff2') format('woff2');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
/* Small browser reset; no CSS framework required. */
html { line-height: 1.5; -webkit-text-size-adjust: 100%; }
h1, h2, h3 { font-size: inherit; font-weight: inherit; }
img, svg { display: block; vertical-align: middle; }
img { max-width: 100%; height: auto; }

:root {
  --font-geist-sans: 'Geist';
  --font-geist-mono: 'Geist Mono';
  --ink: #161b24;
  --blue: #2458ed;
  --muted: #657080;
  --line: #dce0e6;
  --paper: #fff;
  --font-sans: var(--font-geist-sans);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible {
  outline: 3px solid #6489ff;
  outline-offset: 6px;
}
::selection {
  background: #cbd7ff;
  color: #141a26;
}
h1,
h2,
h3,
p {
  margin: 0;
}
svg {
  flex-shrink: 0;
}
.wrap,
.header-inner {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.header {
  height: 88px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #e8eaed;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  width: 140px;
}
.brand-image {
  display: block;
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
nav > a {
  transition: color 0.2s;
}
nav > a:hover {
  color: var(--blue);
}
.nav-contact {
  display: flex;
  align-items: center;
  gap: 25px;
  border: 1px solid var(--line);
  padding: 12px 19px;
  border-radius: 4px;
}
.hero {
  isolation: isolate;
  position: relative;
  background: #101b2a;
  color: #fff;
  min-height: 690px;
  height: calc(100svh - 88px);
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero-image {
  object-fit: cover;
  object-position: 65% top;
  filter: saturate(0.85) brightness(0.9);
  transform-origin: 65% top;
  animation: hero-drift 4.8s cubic-bezier(0.2, 0.6, 0.3, 1) both;
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(10, 20, 34, 0.96) 0%,
      rgba(10, 20, 34, 0.8) 36%,
      rgba(10, 20, 34, 0.2) 100%
    ),
    linear-gradient(0deg, rgba(10, 20, 34, 0.6), transparent 40%);
}
.hero-content {
  padding-block: 42px 110px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  line-height: 1.7;
}
.hero-intro {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d3dcea;
  animation: enter 0.7s 0.05s both;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: #7094ff;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(75px, 8.1vw, 122px);
  font-weight: 550;
  line-height: 1.12;
  letter-spacing: -7px;
  margin: 20px 0 13px;
  animation: enter 0.7s 0.12s both;
}
.hero h1 span {
  color: #7296ff;
}
.hero h2 {
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -1.5px;
  animation: enter 0.7s 0.2s both;
}
.hero-description {
  font-size: 16px;
  line-height: 1.7;
  max-width: 415px;
  color: #c3cbd7;
  margin-top: 22px;
  animation: enter 0.7s 0.28s both;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  font-size: 14px;
  font-weight: 550;
  padding: 17px 21px;
  border-radius: 3px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button-light {
  background: #fff;
  color: var(--ink);
  margin-top: 28px;
  animation: enter 0.7s 0.36s both;
}
.button:hover {
  background: #e5ecff;
  transform: translateY(-2px);
}
.button svg,
.nav-contact svg {
  transition: transform 0.2s;
}
.button:hover svg,
.nav-contact:hover svg {
  transform: translate(2px, -2px);
}
.hero-bottom {
  position: absolute;
  bottom: 29px;
  left: 0;
  right: 0;
  padding-top: 23px;
  border-top: 1px solid #ffffff30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #c0c9d6;
  letter-spacing: 0.3px;
}
.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 18px;
}
.section {
  padding-block: 110px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 45px;
  align-items: start;
}
.section-heading .eyebrow {
  padding-top: 9px;
}
.section-number {
  color: var(--blue);
  margin-right: 10px;
}
.section h2 {
  font-size: clamp(30px, 3.25vw, 46px);
  letter-spacing: -1.7px;
  line-height: 1.18;
  font-weight: 500;
}
.muted {
  color: #838b97;
}
.section-heading p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.75;
  max-width: 570px;
  color: var(--muted);
  margin-top: 23px;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 70px;
}
.service {
  border-top: 1px solid var(--line);
  padding-top: 29px;
}
.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--blue);
  margin-bottom: 32px;
}
.service-top > span {
  color: #8e96a2;
  font-size: 12px;
  font-family: var(--font-geist-mono), monospace;
}
.service h3 {
  font-weight: 500;
  font-size: 27px;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.service > p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 510px;
}
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #edf0f3;
  gap: 16px;
}
.service-footer > span:first-child {
  font-size: 14px;
  font-weight: 550;
}
.service-footer > span:last-child {
  font-size: 10px;
  letter-spacing: 1px;
  color: #737e8c;
}
.industries {
  background: #f3f5f8;
}
.industry-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
}
.industry-intro h2 {
  margin: 30px 0 25px;
  font-size: clamp(36px, 3.8vw, 54px);
}
.industry-intro h2 span {
  color: var(--blue);
}
.industry-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 405px;
}
.industry-caption {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 39px;
}
.small-cross {
  font-size: 25px;
  color: var(--blue);
}
.industry-list article {
  padding: 35px 0;
  border-top: 1px solid #cfd6e0;
}
.industry-list article:first-child {
  padding-top: 6px;
  border-top: none;
}
.industry-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.industry-title svg {
  color: var(--blue);
}
.industry-title h3 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.8px;
}
.industry-list p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
}
.industry-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 19px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  font-size: 12px;
  color: #495363;
}
.industry-list li:before {
  content: '↳';
  color: var(--blue);
  margin-right: 6px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 65px;
}
.steps article {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.steps article > span {
  font-size: 11px;
  letter-spacing: 1.4px;
  color: var(--blue);
  font-weight: 600;
}
.steps h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.6px;
  margin: 24px 0 13px;
}
.steps p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.contact {
  background: var(--blue);
  color: white;
  padding-block: 85px;
}
.contact-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: center;
}
.contact .eyebrow {
  font-size: 11px;
  color: #d3dfff;
}
.contact h2 {
  font-size: clamp(35px, 4.5vw, 62px);
  line-height: 1.12;
  letter-spacing: -2px;
  font-weight: 450;
  margin: 24px 0;
}
.contact p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.8;
  color: #e1e8ff;
}
.contact-action {
  min-width: 255px;
}
.contact-arrow {
  margin-bottom: 28px;
}
.contact-action > span {
  display: block;
  color: #d3dfff;
  font-size: 12px;
  margin-top: 9px;
}
.footer {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-footer .brand-logo {
  width: 100px;
}
.brand-footer .brand-image {
  filter: grayscale(1);
  opacity: 0.65;
}
.footer > p,
.footer > a:last-child {
  font-size: 12px;
  color: var(--muted);
}
.footer > a:last-child {
  display: flex;
  align-items: center;
  gap: 18px;
}
.skip-link {
  position: fixed;
  top: -70px;
  left: 20px;
  padding: 12px 20px;
  background: #fff;
  color: #111;
  z-index: 99;
}
.skip-link:focus {
  top: 12px;
}
@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* One gentle movement, then still; no continuous animation or scripts. */
@keyframes hero-drift {
  from {
    transform: scale(1.075) translateX(-0.7%);
  }
  to {
    transform: scale(1.01) translateX(0);
  }
}
@supports (animation-timeline: view()) {
  .service,
  .steps article {
    animation: enter linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 22%;
  }
}
@media (min-width: 1600px) {
  .hero-content,
  .hero-bottom {
    width: min(1280px, calc(100% - 112px));
  }
}
@media (max-width: 950px) {
  .wrap,
  .header-inner {
    width: calc(100% - 64px);
  }
  .section {
    padding-block: 80px;
  }
  .section-heading {
    grid-template-columns: 1fr 2fr;
    gap: 25px;
  }
  .industry-layout {
    gap: 45px;
  }
  .service-grid {
    gap: 40px;
  }
  .steps {
    gap: 28px;
  }
  .hero {
    min-height: 650px;
  }
  .hero h1 {
    font-size: 100px;
  }
  .hero h2 {
    font-size: 38px;
  }
  .hero-image {
    object-position: 60% top;
  }
  .contact-inner {
    gap: 30px;
  }
  .contact-action {
    min-width: 210px;
  }
  .service-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 78px;
  }
  .wrap,
  .header-inner {
    width: calc(100% - 40px);
  }
  .header {
    height: 74px;
  }
  .brand-logo {
    width: 120px;
  }
  nav {
    gap: 0;
  }
  nav > a:not(.nav-contact) {
    display: none;
  }
  .nav-contact {
    padding: 10px 13px;
    gap: 14px;
    font-size: 13px;
  }
  .hero {
    height: calc(100svh - 74px);
    min-height: 650px;
    max-height: 820px;
  }
  .hero-content {
    padding-block: 45px 100px;
  }
  .hero-intro {
    font-size: 9px;
    letter-spacing: 1px;
    gap: 8px;
  }
  .hero h1 {
    font-size: 90px;
    letter-spacing: -5px;
    margin-top: 24px;
  }
  .hero h2 {
    font-size: 35px;
    letter-spacing: -1.3px;
  }
  .hero-description {
    font-size: 15px;
    max-width: 330px;
    margin-top: 23px;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #0a1422eb, #0a142280),
      linear-gradient(0deg, #0a1422aa, transparent);
  }
  .hero-image {
    object-position: 58% top;
  }
  .hero-bottom {
    bottom: 23px;
    font-size: 11px;
  }
  .hero-bottom > span {
    max-width: 140px;
    line-height: 1.6;
  }
  .hero-bottom a {
    gap: 8px;
  }
  .button {
    font-size: 13px;
    padding: 16px 19px;
  }
  .section {
    padding-block: 65px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .section h2 {
    font-size: 31px;
    letter-spacing: -1.1px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .section-heading p:not(.eyebrow) {
    font-size: 15px;
    margin-top: 20px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
    gap: 38px;
  }
  .service-top {
    margin-bottom: 23px;
  }
  .service h3 {
    font-size: 25px;
  }
  .service > p {
    font-size: 15px;
  }
  .service-footer {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
  }
  .service-footer > span:last-child {
    font-size: 9px;
  }
  .industry-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .industry-intro h2 {
    font-size: 40px;
    margin-top: 22px;
  }
  .industry-intro > p:not(.eyebrow),
  .industry-list p {
    font-size: 15px;
  }
  .industry-caption {
    margin-top: 22px;
    font-size: 11px;
  }
  .industry-title h3 {
    font-size: 25px;
  }
  .industry-list article:last-child {
    padding-bottom: 0;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 36px;
  }
  .steps h3 {
    margin-top: 15px;
  }
  .steps p {
    max-width: 390px;
  }
  .contact {
    padding-block: 60px;
  }
  .contact-inner {
    display: block;
  }
  .contact h2 {
    font-size: 40px;
    letter-spacing: -1.4px;
  }
  .contact-action {
    margin-top: 30px;
    min-width: 0;
  }
  .contact-arrow {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }
  .desktop-break {
    display: none;
  }
  .footer {
    flex-wrap: wrap;
    padding-block: 28px;
    gap: 22px;
  }
  .footer .brand {
    width: 100%;
  }
  .footer > p {
    font-size: 11px;
  }
  .footer > a:last-child {
    margin-left: auto;
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}

.email-link {
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
  font-size: 24px;
  letter-spacing: -0.5px;
  border-bottom: 1px solid #ffffff80;
  padding-bottom: 10px;
  transition: border-color 0.2s;
}
.email-link:hover {
  border-color: #fff;
}
.email-link svg {
  transition: transform 0.2s;
}
.email-link:hover svg {
  transform: translate(2px, -2px);
}

/* Lightweight vector product illustration layered over the photograph. */
.hero-visual {
  position: absolute;
  width: min(47vw, 660px);
  right: max(32px, calc((100% - 1320px) / 2));
  top: 50%;
  transform: translateY(-55%);
  pointer-events: none;
}
.hero-visual img {
  width: 100%;
  height: auto;
  animation: mockup-enter 1.1s 0.3s both;
}
@keyframes mockup-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .hero-visual { width: 45vw; right: 14px; }
  .hero-description { max-width: 380px; }
}
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    min-height: 0;
    max-height: none;
    padding-bottom: 106px;
  }
  .hero-content { padding-block: 48px 8px; }
  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: min(540px, calc(100% - 32px));
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .hero-content { padding-top: 36px; }
  .hero-visual { width: calc(100% - 20px); margin-top: 12px; }
}
