
:root {
  --red: #ef1b23;
  --red-dark: #d90811;
  --ink: #0c0c0d;
  --paper: #f5f3ef;
  --line: #d8d5cf;
  --muted: #66645f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: var(--red);
  color: white;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid #e8e5df;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 86px;
  padding: 0 4.5vw;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  width: 145px;
}

.brand img,
.footer-brand img {
  display: block;
  height: auto;
  width: 100%;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 36px;
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  text-transform: uppercase;
}

.desktop-nav a::after {
  background: var(--red);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

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

.site-header > .button {
  justify-self: end;
}

.button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 34px;
  justify-content: space-between;
  letter-spacing: 0.06em;
  min-height: 54px;
  padding: 0 22px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-small {
  min-height: 44px;
  padding: 0 18px;
}

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

.button-dark:hover {
  background: var(--red);
}

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

.button-primary:hover {
  background: var(--red-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: calc(100vh - 86px);
}

.hero-copy {
  align-self: center;
  padding: 80px 5vw 70px 7vw;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.17em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.eyebrow > span {
  background: var(--red);
  display: inline-block;
  height: 8px;
  transform: skewX(-16deg);
  width: 8px;
}

.hero h1,
.section h2 {
  font-size: clamp(56px, 6.1vw, 98px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.91;
  margin: 0;
  text-transform: uppercase;
}

.hero h1 span {
  color: var(--red);
}

.hero-lead {
  color: #494844;
  font-size: 18px;
  line-height: 1.65;
  margin: 34px 0 0;
  max-width: 625px;
}

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

.text-link {
  border-bottom: 1px solid #aaa7a0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.hero-trust {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  margin-top: 54px;
  max-width: 590px;
  padding-top: 25px;
}

.hero-trust p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.hero-trust strong {
  color: var(--ink);
}

.avatars {
  display: flex;
}

.avatars span {
  align-items: center;
  background: var(--ink);
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 11px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-left: -8px;
  width: 34px;
}

.avatars span:first-child {
  background: var(--red);
  margin-left: 0;
}

.avatars span:last-child {
  background: #e5e1da;
  color: var(--ink);
}

.hero-visual {
  background: var(--red);
  min-height: 650px;
  overflow: hidden;
  position: relative;
}

.visual-grid {
  background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 52px 52px;
  inset: 0;
  position: absolute;
}

.hero-visual::before {
  background: var(--ink);
  clip-path: polygon(54% 0, 100% 0, 100% 100%, 12% 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-visual::after {
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  content: "";
  height: 500px;
  left: 44%;
  position: absolute;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 500px;
}

.product-tag {
  align-items: center;
  background: white;
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
  display: flex;
  font-size: 10px;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: .12em;
  padding: 12px 12px 12px 15px;
  position: absolute;
  width: 145px;
  z-index: 4;
}

.product-tag b {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.tag-electro {
  left: 9%;
  top: 18%;
}

.tag-tech {
  left: 5%;
  top: 60%;
}

.route {
  border-top: 2px dashed rgba(255,255,255,.8);
  left: 28%;
  position: absolute;
  transform-origin: left;
  width: 34%;
  z-index: 3;
}

.route i {
  background: white;
  border: 4px solid var(--red);
  border-radius: 50%;
  height: 13px;
  position: absolute;
  right: -4px;
  top: -7px;
  width: 13px;
}

.route-one {
  top: 28%;
  transform: rotate(25deg);
}

.route-two {
  top: 67%;
  transform: rotate(-20deg);
}

.destination-card {
  background: white;
  box-shadow: 0 24px 60px rgba(0,0,0,.3);
  color: var(--ink);
  padding: 28px;
  position: absolute;
  right: 7%;
  top: 34%;
  transform: rotate(-2deg);
  width: min(290px, 42%);
  z-index: 5;
}

.destination-flag {
  align-items: center;
  background: var(--red);
  color: white;
  display: flex;
  font-size: 12px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 22px;
  top: -18px;
  width: 42px;
}

.destination-card p {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .2em;
  margin: 0 0 16px;
}

.destination-card strong {
  font-size: clamp(28px, 3.3vw, 52px);
  letter-spacing: -.06em;
  line-height: .88;
}

.destination-card small {
  border-top: 1px solid var(--line);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  margin-top: 24px;
  padding-top: 13px;
  text-transform: uppercase;
}

.visual-caption {
  bottom: 25px;
  color: white;
  display: flex;
  font-size: 9px;
  font-weight: 800;
  justify-content: space-between;
  left: 30px;
  letter-spacing: .14em;
  position: absolute;
  right: 30px;
  z-index: 5;
}

.signal-bar {
  background: var(--ink);
  color: white;
  overflow: hidden;
  padding: 17px 0;
}

.signal-bar > div {
  align-items: center;
  display: flex;
  gap: 38px;
  justify-content: center;
  white-space: nowrap;
}

.signal-bar span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.signal-bar i {
  color: var(--red);
  font-size: 8px;
}

.metrics {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 7vw;
}

.metrics article {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  gap: 25px;
  min-height: 160px;
  padding: 25px 7%;
}

.metrics article:last-child {
  border-right: 0;
}

.metrics strong {
  font-size: clamp(54px, 5vw, 80px);
  letter-spacing: -.07em;
  line-height: 1;
}

.metrics p {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
  margin: 0;
  text-transform: uppercase;
}

.section {
  padding: 125px 7vw;
}

.about {
  display: grid;
  gap: 10vw;
  grid-template-columns: 1fr .8fr;
}

.about h2,
.section-heading h2,
.quote h2 {
  font-size: clamp(52px, 5vw, 80px);
}

.about-copy {
  padding-top: 50px;
}

.about-copy > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 22px;
  max-width: 570px;
}

.about-copy .about-lead {
  color: var(--ink);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.35;
}

.about-signature {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
  max-width: 570px;
  padding-top: 16px;
}

.about-signature span {
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
}

.about-signature small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

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

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
}

.section-heading > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 8px;
  max-width: 390px;
}

.light-heading > p {
  color: #a6a39d;
}

.solution-grid {
  border-left: 1px solid #353535;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
}

.solution-card {
  border-bottom: 1px solid #353535;
  border-right: 1px solid #353535;
  border-top: 1px solid #353535;
  min-height: 390px;
  padding: 25px 26px 35px;
  position: relative;
  transition: background 200ms ease, transform 200ms ease;
}

.solution-card:hover {
  background: var(--red);
  transform: translateY(-8px);
}

.solution-number {
  color: #777;
  font-size: 11px;
  font-weight: 700;
}

.solution-card:hover .solution-number,
.solution-card:hover p {
  color: white;
}

.solution-mark {
  align-items: center;
  border: 1px solid #5c5c5c;
  border-radius: 50%;
  color: var(--red);
  display: flex;
  font-size: 24px;
  height: 65px;
  justify-content: center;
  margin-top: 50px;
  width: 65px;
}

.solution-card:hover .solution-mark {
  border-color: rgba(255,255,255,.6);
  color: white;
}

.solution-card h3 {
  font-size: 30px;
  letter-spacing: -.04em;
  margin: 50px 0 18px;
  text-transform: uppercase;
}

.solution-card p {
  color: #999;
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

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

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 100px;
  position: relative;
}

.process::before {
  background: #b9b6b0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 48px;
}

.process-step {
  position: relative;
}

.process-step > span {
  color: #8d8a84;
  font-size: 10px;
  font-weight: 800;
}

.process-dot {
  background: var(--paper);
  border: 5px solid var(--red);
  border-radius: 50%;
  height: 17px;
  margin-top: 26px;
  position: relative;
  width: 17px;
  z-index: 2;
}

.process-step h3 {
  font-size: 21px;
  letter-spacing: -.03em;
  margin: 35px 0 8px;
  text-transform: uppercase;
}

.process-step p {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.audiences {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 40px;
  grid-template-columns: 200px 1fr;
  margin-top: 105px;
  padding-top: 35px;
}

.audiences > p {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  margin: 0;
  text-transform: uppercase;
}

.audiences > div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.audiences span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  padding: 11px 17px;
}

.quote {
  background: var(--red);
  color: white;
  display: grid;
  gap: 9vw;
  grid-template-columns: .8fr 1fr;
}

.quote-copy > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.7;
  margin: 28px 0 0;
  max-width: 500px;
}

.quote .eyebrow > span {
  background: white;
}

.quote-stamp {
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.35);
  display: flex;
  gap: 16px;
  margin-top: 50px;
  max-width: 500px;
  padding-top: 22px;
}

.quote-stamp > span {
  align-items: center;
  background: white;
  color: var(--red);
  display: flex;
  font-size: 13px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.quote-stamp p {
  font-size: 11px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.quote-form {
  background: white;
  color: var(--ink);
  padding: 36px;
}

.form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.quote-form label {
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.quote-form label small {
  color: #8a8781;
  font-weight: 500;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  background: #f5f3ef;
  border: 1px solid transparent;
  border-radius: 0;
  color: var(--ink);
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 8px;
  outline: none;
  padding: 15px 16px;
  text-transform: none;
  transition: border 160ms ease, background 160ms ease;
  width: 100%;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  background: white;
  border-color: var(--red);
}

.form-button {
  width: 100%;
}

.form-note,
.form-status {
  color: #77746e;
  font-size: 10px;
  line-height: 1.5;
  margin: 12px 0 0;
}

.form-status {
  background: #f5f3ef;
  color: var(--ink);
  font-weight: 700;
  padding: 12px;
}

footer {
  background: var(--ink);
  color: white;
  padding: 65px 7vw 25px;
}

.footer-top {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  padding-bottom: 70px;
}

.footer-brand {
  background: white;
  display: block;
  padding: 10px 14px;
  width: 155px;
}

.footer-top > p {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.35;
  margin: 0;
}

.back-top {
  align-items: center;
  border: 1px solid #555;
  border-radius: 50%;
  display: flex;
  font-size: 22px;
  height: 54px;
  justify-content: center;
  transition: background 160ms ease;
  width: 54px;
}

.back-top:hover {
  background: var(--red);
}

.footer-bottom {
  border-top: 1px solid #303030;
  color: #858585;
  display: flex;
  font-size: 9px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: .12em;
  padding-top: 24px;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 0.8fr;
  }

  .hero h1 {
    font-size: clamp(52px, 6vw, 70px);
  }

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

  .destination-card {
    right: 4%;
    width: 48%;
  }
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 72px;
    padding: 0 20px;
  }

  .brand {
    width: 120px;
  }

  .desktop-nav {
    display: none;
  }

  .site-header .button {
    font-size: 10px;
    gap: 10px;
    min-height: 40px;
    padding: 0 13px;
  }

  .hero {
    display: block;
  }

  .hero-copy {
    padding: 70px 22px 55px;
  }

  .hero h1 {
    font-size: clamp(47px, 13vw, 68px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .tag-electro,
  .tag-tech {
    left: 6%;
  }

  .destination-card {
    right: 6%;
    width: 50%;
  }

  .signal-bar > div {
    justify-content: flex-start;
    padding-left: 20px;
  }

  .metrics {
    display: block;
    padding: 0 22px;
  }

  .metrics article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    justify-content: space-between;
    min-height: 125px;
    padding: 20px 0;
  }

  .section {
    padding: 90px 22px;
  }

  .about,
  .quote {
    display: block;
  }

  .about-copy {
    padding-top: 55px;
  }

  .section-heading {
    align-items: flex-start;
    display: block;
  }

  .section-heading > p {
    margin-top: 30px;
  }

  .solution-grid {
    display: block;
    margin-top: 55px;
  }

  .solution-card {
    min-height: 340px;
  }

  .process {
    display: block;
    margin-top: 70px;
    padding-left: 35px;
  }

  .process::before {
    bottom: 25px;
    height: auto;
    left: 7px;
    right: auto;
    top: 5px;
    width: 1px;
  }

  .process-step {
    margin-bottom: 52px;
  }

  .process-step > span {
    display: none;
  }

  .process-dot {
    left: -35px;
    margin: 0;
    position: absolute;
    top: 4px;
  }

  .process-step h3 {
    margin: 0 0 7px;
  }

  .audiences {
    display: block;
    margin-top: 70px;
  }

  .audiences > div {
    margin-top: 22px;
  }

  .quote-form {
    margin-top: 55px;
    padding: 24px 18px;
  }

  .form-row {
    display: block;
  }

  .footer-top {
    align-items: flex-start;
    gap: 35px;
    grid-template-columns: 1fr auto;
  }

  .footer-top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

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

  * {
    transition: none !important;
  }
}
