@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Condensed:wght@500;600&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #07131f;
  --ink-2: #142436;
  --steel: #5f7286;
  --muted: #e8edf2;
  --line: #d6dee6;
  --paper: #f8fafc;
  --white: #ffffff;
  --blue: #075985;
  --cyan: #0f8ead;
  --green: #5d7d6a;
  --shadow: 0 24px 70px rgba(7, 19, 31, .13);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(15, 142, 173, .45);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: rgba(7, 19, 31, .77);
  color: var(--white);
  backdrop-filter: blur(22px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: .01em;
}

.brand img {
  width: 62px;
  height: 42px;
  border-radius: 8px;
  object-fit: contain;
  padding: 4px 5px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: .9rem;
  font-weight: 700;
}

.nav-links a {
  color: rgba(255, 255, 255, .76);
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
}

.language-switch {
  display: inline-grid;
  grid-auto-flow: column;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.language-switch a {
  min-width: 38px;
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  font-size: .78rem;
  font-weight: 800;
  text-align: center;
}

.language-switch a.active {
  color: var(--ink);
  background: var(--white);
}

.icon-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.icon-button svg {
  width: 20px;
  height: 20px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 31, .96) 0%, rgba(7, 19, 31, .76) 37%, rgba(7, 19, 31, .16) 73%),
    linear-gradient(0deg, rgba(7, 19, 31, .92), rgba(7, 19, 31, .08) 44%);
  z-index: 1;
}

.hero picture {
  position: absolute;
  inset: 0;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .86;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 32px));
  min-width: 0;
  margin: 0 auto;
  padding: 134px 0 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .76);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--cyan);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "IBM Plex Sans Condensed", "Manrope", sans-serif;
  line-height: .98;
  letter-spacing: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  font-size: clamp(3.35rem, 8vw, 7.9rem);
  font-weight: 600;
  hyphens: manual;
  overflow-wrap: normal;
}

.hero-lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  max-width: 100%;
  overflow-wrap: anywhere;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button.primary {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}

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

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

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 780px;
  margin-top: 64px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.metric {
  padding: 20px;
  background: rgba(7, 19, 31, .42);
}

.metric strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-family: "IBM Plex Sans Condensed", "Manrope", sans-serif;
  font-size: 1.45rem;
}

.metric span {
  color: rgba(255, 255, 255, .72);
  font-size: .86rem;
  line-height: 1.45;
}

.section {
  padding: 104px 0;
}

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

.section.steel {
  background: #edf2f6;
}

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

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .72fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
  min-width: 0;
}

.section-heading > *,
.card-grid > *,
.industry-band > *,
.hero-actions > * {
  min-width: 0;
}

.section-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(2.45rem, 5vw, 5.25rem);
  font-weight: 600;
}

.section-heading p,
.wide-copy {
  margin: 0;
  color: #516374;
  font-size: 1.04rem;
  line-height: 1.74;
}

.dark .section-heading p,
.dark .wide-copy {
  color: rgba(255, 255, 255, .72);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: stretch;
}

.about-panel {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-panel p {
  margin: 0 0 18px;
  color: #46596b;
  font-size: 1.05rem;
  line-height: 1.78;
}

.capability-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.capability-list span,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.capability-list span::before,
.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: .55em;
  border-radius: 999px;
  background: var(--cyan);
}

.side-note {
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(15, 142, 173, .18), transparent 45%),
    var(--ink-2);
}

.side-note strong {
  display: block;
  margin-bottom: 16px;
  font-family: "IBM Plex Sans Condensed", "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.side-note p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
  line-height: 1.7;
}

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

.product-card,
.industry-card,
.reason-card {
  min-height: 218px;
  min-width: 0;
  padding: 26px;
  border: 1px solid rgba(7, 19, 31, .1);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card:hover,
.industry-card:hover,
.reason-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 142, 173, .32);
  box-shadow: 0 22px 56px rgba(7, 19, 31, .1);
}

.card-number {
  display: block;
  margin-bottom: 32px;
  color: var(--cyan);
  font-family: "IBM Plex Sans Condensed", "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.06;
}

.product-card p,
.industry-card p,
.reason-card p {
  margin: 0;
  color: #526477;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.dark .reason-card {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .055);
}

.dark .reason-card h3 {
  color: var(--white);
}

.dark .reason-card p {
  color: rgba(255, 255, 255, .68);
}

.industry-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.industry-card {
  min-height: 246px;
  border: 0;
  box-shadow: none;
}

.contact-wrap {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 32px;
  align-items: start;
}

.contact-details {
  padding: 38px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.contact-details h2 {
  margin-bottom: 22px;
}

.contact-details p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

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

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-list svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--cyan);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  color: #4b5e70;
  font-size: .88rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd6e0;
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfdff;
}

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

.form-note {
  margin: 0;
  color: #65778a;
  font-size: .86rem;
  line-height: 1.5;
}

.legal-hero {
  padding: 156px 0 74px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 142, 173, .2), transparent 38%),
    var(--ink);
}

.legal-hero h1 {
  max-width: 940px;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
}

.legal-content {
  padding: 70px 0 100px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 56px;
}

.legal-aside {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.legal-aside a {
  display: block;
  padding: 10px 0;
  color: #526477;
  font-weight: 800;
}

.legal-text {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.legal-text h2 {
  margin: 42px 0 14px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text p,
.legal-text li {
  color: #526477;
  line-height: 1.72;
}

.legal-text ul {
  padding-left: 20px;
}

.placeholder {
  border-left: 3px solid var(--cyan);
  padding: 14px 16px;
  background: #edf7fa;
  color: #264657;
  font-weight: 800;
}

.site-footer {
  color: rgba(255, 255, 255, .76);
  background: #050d16;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr .8fr;
  gap: 42px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--white);
  font-weight: 900;
}

.footer-brand img {
  width: 58px;
  height: 40px;
  border-radius: 8px;
  object-fit: contain;
  padding: 4px 5px;
  background: rgba(255, 255, 255, .96);
}

.footer-logo-lockup {
  display: inline-block;
  width: min(310px, 100%);
  margin-bottom: 18px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8faf7;
  box-shadow: 0 24px 58px rgba(0, 0, 0, .22);
}

.footer-logo-lockup img {
  width: 100%;
  height: auto;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.footer-inner p {
  margin: 0;
  line-height: 1.68;
}

.footer-links,
.social-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.social-links a {
  color: rgba(255, 255, 255, .76);
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 18px 0;
  font-size: .86rem;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 960px) {
  .icon-button {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: 74px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 16px 26px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    background: rgba(7, 19, 31, .96);
    pointer-events: none;
    visibility: hidden;
    transform: translateY(calc(-100% - 90px));
    transition: transform .25s ease, visibility 0s linear .25s;
  }

  .menu-open .nav-links {
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
    transition: transform .25s ease;
  }

  .nav-links a {
    padding: 14px 0;
    font-size: 1.05rem;
  }

  .section-heading,
  .about-grid,
  .contact-wrap,
  .legal-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .legal-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 9px;
    padding-bottom: 8px;
  }

  .nav {
    width: min(100% - 28px, var(--max));
    min-height: 58px;
    gap: 12px;
  }

  .nav-links {
    inset: 83px 0 auto;
  }

  .brand {
    flex: 1 1 auto;
    gap: 8px;
  }

  .brand span {
    max-width: min(108px, calc(100vw - 220px));
    white-space: normal;
    line-height: 1.16;
    font-size: .87rem;
    overflow-wrap: normal;
  }

  .brand img {
    width: 48px;
    height: 35px;
    padding: 3px 4px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch a {
    min-width: 31px;
    padding: 6px 7px;
    font-size: .74rem;
  }

  .icon-button {
    width: 39px;
    height: 39px;
  }

  .hero {
    min-height: 96vh;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(7, 19, 31, .96), rgba(7, 19, 31, .7)),
      linear-gradient(0deg, rgba(7, 19, 31, .94), rgba(7, 19, 31, .1) 42%);
  }

  .hero-inner {
    width: min(100% - 24px, var(--max));
    padding: 112px 0 42px;
  }

  h1 {
    font-size: clamp(2.72rem, 13.5vw, 4.1rem);
  }

  .eyebrow {
    font-size: .68rem;
    letter-spacing: .09em;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .button.secondary {
    justify-content: flex-start;
  }

  .hero-metrics,
  .card-grid,
  .industry-band,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    margin-top: 40px;
  }

  .section {
    padding: 72px 0;
  }

  .about-panel,
  .side-note,
  .contact-details,
  .contact-form,
  .legal-text {
    padding: 24px;
  }

  .footer-bottom .container {
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-top: 10px;
    padding-bottom: 9px;
  }

  .nav {
    width: min(100% - 24px, var(--max));
    min-height: 56px;
    gap: 8px;
  }

  .nav-links {
    inset: 84px 0 auto;
  }

  .brand span {
    max-width: 78px;
    font-size: .84rem;
    line-height: 1.16;
  }

  .brand img {
    width: 48px;
    height: 34px;
  }

  .language-switch a {
    min-width: 29px;
    padding: 6px;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }
}
