:root {
  --red: #ff0038;
  --red-dark: #b60028;
  --black: #030303;
  --ink: #101010;
  --charcoal: #181818;
  --steel: #9ea2a8;
  --line: rgba(255, 255, 255, 0.18);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --shadow-red: 0 0 34px rgba(255, 0, 56, 0.32);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--black);
  font-family: "Manrope", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(140deg, #030303 0%, #101010 46%, #050505 100%);
  background-size: 72px 72px, 72px 72px, auto;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255, 0, 56, 0.18), transparent 32%),
    linear-gradient(275deg, rgba(255, 255, 255, 0.08), transparent 28%);
  pointer-events: none;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 3, 3, 0.9);
  border-color: var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.contact-page .site-header {
  background: rgba(3, 3, 3, 0.9);
  border-color: var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 160px;
  /*filter: drop-shadow(0 0 14px rgba(255, 0, 56, 0.42));*/
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.18) 0%, rgba(3, 3, 3, 0.48) 42%, rgba(3, 3, 3, 0.94) 68%, #030303 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.1), #030303 100%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background: repeating-linear-gradient(90deg, var(--red) 0 90px, var(--white) 90px 170px, #272727 170px 240px);
  z-index: 2;
}

.hero-media {
  position: absolute;
  inset: 0 auto 0 0;
  width: 70%;
  opacity: 0.72;
  filter: saturate(0.95) contrast(1.14) brightness(0.74);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 130px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.82fr);
  align-items: center;
  min-height: 92vh;
}

.hero-copy-panel {
  grid-column: 2;
  padding: 28px 0 28px 36px;
  border-left: 5px solid var(--red);
}

.hero-logo {
  width: 330px;
  margin-bottom: 22px;
  /*filter:*/
  /*  drop-shadow(0 0 2px var(--white))*/
  /*  drop-shadow(0 0 20px rgba(255, 0, 56, 0.42));*/
}

.kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", "Barlow Condensed", sans-serif;
  font-weight: 400;
  line-height: 0.92;
}

h1 {
  max-width: 600px;
  font-size: 82px;
  text-shadow: 3px 3px 0 var(--red), 7px 7px 0 #242424;
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn,
.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 2px solid var(--white);
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible,
.contact-pill:hover,
.contact-pill:focus-visible {
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  box-shadow: var(--shadow-red);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
}

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--red);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 38px;
  padding: 13px 0;
  animation: ticker 22s linear infinite;
}

.ticker span {
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding: 86px 20px;
}

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

.split,
.showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

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

h2 {
  font-size: 64px;
  text-transform: uppercase;
}

h3 {
  font-size: 34px;
  text-transform: uppercase;
}

.lead,
.section-copy p,
.service-card p,
.process-step p,
.ecosystem-card p,
.monitor-screen p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.intro-band,
.ecosystem-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
}

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

.service-card,
.process-step,
.ecosystem-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--ink);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.74);
}

.service-card {
  border-top: 5px solid var(--red);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 38px;
  margin-bottom: 22px;
  padding: 0 10px;
  border: 2px solid var(--red);
  border-radius: 4px;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  box-shadow: var(--shadow-red);
}

.showcase-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 0, 56, 0.18), transparent 48%),
    #070707;
}

.monitor {
  position: relative;
  border: 2px solid #3a3a3a;
  border-radius: 8px;
  background: #0b0b0b;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5), var(--shadow-red);
}

.monitor::after {
  content: "";
  position: absolute;
  left: 24%;
  right: 24%;
  bottom: -30px;
  height: 30px;
  background: #2b2b2b;
  border-radius: 0 0 4px 4px;
}

.monitor-top {
  display: flex;
  gap: 7px;
  padding: 11px 14px;
  border-bottom: 1px solid #2d2d2d;
}

.monitor-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.monitor-screen {
  min-height: 360px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(255, 0, 56, 0.2), transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 38%),
    #070707;
}

.monitor-screen img {
  width: 210px;
  margin-bottom: 26px;
}

.monitor-screen strong {
  display: block;
  max-width: 360px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 58px;
  line-height: 0.92;
  text-shadow: 3px 3px 0 var(--red);
}

.screen-bars {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.65fr;
  gap: 9px;
  margin-top: 28px;
}

.screen-bars span {
  height: 46px;
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  border-radius: 4px 4px 0 0;
}

.process-step span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
}

.ecosystem-card.active {
  border-color: var(--red);
  background:
    linear-gradient(145deg, rgba(255, 0, 56, 0.24), rgba(255, 255, 255, 0.04)),
    var(--charcoal);
  box-shadow: var(--shadow-red);
}

.partners-band {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 0, 56, 0.14), transparent 42%),
    #050505;
}

.partners-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: center;
}

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

.partner-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--ink);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.72);
}

.contact-section {
  padding: 78px 20px 34px;
  background: var(--red);
  color: var(--white);
}

.contact-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
  align-items: center;
}

.contact-inner img {
  width: 230px;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.6));
}

.contact-inner .kicker {
  color: var(--white);
}

.contact-inner h2 {
  max-width: 760px;
  text-shadow: 3px 3px 0 #151515;
}

.contact-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.contact-pill {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
  text-transform: none;
  overflow-wrap: anywhere;
}

.contact-hero {
  position: relative;
  min-height: 100vh;
  padding: 142px 20px 76px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.82) 44%, rgba(3, 3, 3, 0.68)),
    linear-gradient(180deg, rgba(3, 3, 3, 0.14), #030303 100%);
}

.contact-bg {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  filter: saturate(0.9) contrast(1.12) brightness(0.62);
}

.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.contact-page-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 54px;
  align-items: start;
}

.contact-page-logo {
  width: 320px;
  margin-bottom: 28px;
  filter:
    drop-shadow(0 0 2px var(--white))
    drop-shadow(0 0 20px rgba(255, 0, 56, 0.42));
}

.contact-page-copy h1 {
  max-width: 620px;
  font-size: 84px;
  text-shadow: 3px 3px 0 var(--red), 7px 7px 0 #242424;
}

.contact-page-copy p:not(.kicker) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.7;
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-direct a {
  width: fit-content;
  border-bottom: 2px solid var(--red);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(8, 8, 8, 0.88);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45), var(--shadow-red);
  backdrop-filter: blur(12px);
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.split-fields {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.52);
  color: var(--white);
  font: inherit;
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 0, 56, 0.2);
}

select option {
  background: var(--ink);
  color: var(--white);
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.form-note.is-success {
  color: var(--white);
}

.form-note.is-error {
  color: #ffb8c6;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

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

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

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 20px;
  }

  .site-nav {
    gap: 16px;
    font-size: 16px;
  }

  .hero-media {
    width: 100%;
    opacity: 0.36;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(3, 3, 3, 0.58) 0%, rgba(3, 3, 3, 0.78) 46%, rgba(3, 3, 3, 0.96) 100%),
      linear-gradient(180deg, rgba(3, 3, 3, 0.12), #030303 100%);
  }

  .hero-inner {
    padding-top: 170px;
    grid-template-columns: 1fr 1fr;
  }

  h1 {
    font-size: 72px;
  }

  h2 {
    font-size: 52px;
  }

  .split,
  .showcase,
  .partners-layout,
  .solution-grid,
  .process-grid,
  .ecosystem-grid,
  .partner-grid,
  .contact-inner,
  .contact-page-inner,
  .contact-actions {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 680px) {
  .brand img {
    width: 128px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 15px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-inner {
    padding-top: 155px;
  }

  .hero-logo {
    width: min(100%, 330px);
  }

  .hero-copy-panel {
    grid-column: 1 / -1;
    max-width: 560px;
    margin-left: auto;
    padding: 24px 0 24px 24px;
  }

  .hero-media img {
    object-position: 30% center;
  }

  h1 {
    font-size: 56px;
    text-shadow: 2px 2px 0 var(--red), 5px 5px 0 #242424;
  }

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 30px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .btn,
  .contact-pill {
    width: 100%;
  }

  .section {
    padding: 62px 16px;
  }

  .split,
  .showcase,
  .partners-layout,
  .solution-grid,
  .process-grid,
  .ecosystem-grid,
  .partner-grid,
  .contact-inner,
  .contact-page-inner,
  .contact-actions {
    grid-template-columns: 1fr;
  }

  .partner-badge {
    min-height: 74px;
  }

  .contact-hero {
    padding-top: 154px;
  }

  .contact-page-logo {
    width: min(100%, 300px);
  }

  .contact-page-copy h1 {
    font-size: 56px;
    text-shadow: 2px 2px 0 var(--red), 5px 5px 0 #242424;
  }

  .contact-form {
    padding: 22px;
  }

  .split-fields {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-step,
  .ecosystem-card {
    min-height: auto;
  }

  .monitor-screen {
    min-height: 300px;
    padding: 28px;
  }

  .monitor-screen strong {
    font-size: 44px;
  }
}

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

  .ticker-track,
  .reveal,
  .btn,
  .contact-pill {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
