: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);
}

.portfolio-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);
}

.blog-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;
}

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

.portfolio-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.92), rgba(3, 3, 3, 0.82) 43%, rgba(3, 3, 3, 0.5)),
    linear-gradient(180deg, rgba(3, 3, 3, 0.08), #030303 100%);
}

.portfolio-bg {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  filter: saturate(0.95) contrast(1.15) brightness(0.66);
}

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

.portfolio-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.94fr 0.82fr;
  gap: 54px;
  align-items: center;
}

.portfolio-page-logo {
  width: 320px;
  margin-bottom: 28px;
}

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

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

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

.portfolio-snapshot {
  min-height: 460px;
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 0, 56, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(8, 8, 8, 0.84);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5), var(--shadow-red);
  backdrop-filter: blur(12px);
}

.portfolio-snapshot > span,
.portfolio-card-copy span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-snapshot strong {
  display: block;
  max-width: 410px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 var(--red);
}

.snapshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.snapshot-grid span {
  min-height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    #111;
}

.snapshot-grid span:nth-child(2),
.snapshot-grid span:nth-child(5) {
  background: linear-gradient(180deg, var(--red), var(--red-dark));
}

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

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

.portfolio-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 560px;
  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.06), rgba(255, 255, 255, 0.02)),
    var(--ink);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.74);
}

.portfolio-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: auto;
  gap: 32px;
  align-items: center;
  min-height: 520px;
  background:
    linear-gradient(120deg, rgba(255, 0, 56, 0.2), rgba(255, 255, 255, 0.035)),
    var(--charcoal);
}

.portfolio-card-screen {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 2px solid #3a3a3a;
  border-radius: 8px;
  background: #070707;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.portfolio-card.featured .portfolio-card-screen {
  min-height: 360px;
}

.portfolio-card-screen img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: top center;
  transition: transform 260ms ease, filter 260ms ease;
}

.portfolio-card:hover .portfolio-card-screen img {
  transform: scale(1.025);
  filter: brightness(1.08);
}

.portfolio-card-copy p,
.portfolio-card-copy li,
.portfolio-brief p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.portfolio-card-copy p {
  margin: 16px 0 0;
}

.portfolio-card-copy ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.portfolio-card-copy li {
  position: relative;
  padding-left: 22px;
}

.portfolio-card-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--red);
  box-shadow: var(--shadow-red);
}

.portfolio-brief {
  margin-top: 24px;
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-left: 4px solid var(--red);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.22);
}

.portfolio-brief strong {
  display: block;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-brief p {
  margin: 8px 0 0;
}

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

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

.metric {
  min-height: 172px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--ink);
}

.metric strong {
  display: block;
  color: var(--red);
  font-family: "Bebas Neue", sans-serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.blog-hero {
  position: relative;
  min-height: 82vh;
  padding: 146px 20px 84px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.blog-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.76) 52%, rgba(3, 3, 3, 0.5)),
    linear-gradient(180deg, rgba(3, 3, 3, 0.08), #030303 100%);
}

.blog-bg {
  position: absolute;
  inset: 0;
  opacity: 0.48;
  filter: saturate(0.9) contrast(1.12) brightness(0.64);
}

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

.blog-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  align-items: center;
  min-height: calc(82vh - 230px);
}

.blog-page-logo {
  width: 320px;
  margin-bottom: 28px;
}

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

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

.blog-feature-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 34px;
  align-items: center;
  padding: 32px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 6px;
  background:
    linear-gradient(120deg, rgba(255, 0, 56, 0.2), rgba(255, 255, 255, 0.035)),
    var(--charcoal);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.blog-feature-visual {
  min-height: 330px;
  padding: 32px;
  display: grid;
  align-content: end;
  border: 2px solid #3a3a3a;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 0, 56, 0.24), transparent 44%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09), transparent 46%),
    #080808;
  box-shadow: var(--shadow-red);
}

.blog-feature-visual span {
  width: fit-content;
  margin-bottom: 28px;
  padding: 8px 14px;
  border: 2px solid var(--red);
  border-radius: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.blog-feature-visual strong {
  display: block;
  max-width: 410px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 var(--red);
}

.blog-meta,
.blog-card span {
  margin: 0 0 16px;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
}

.blog-feature-copy p:not(.blog-meta),
.blog-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.blog-feature-copy .btn {
  margin-top: 18px;
}

.blog-list-band {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    #050505;
}

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

.blog-card {
  min-height: 300px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  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);
}

.article-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 148px 0 80px;
}

.article-hero {
  max-width: 960px;
  padding: 0 0 44px;
}

.article-back {
  display: inline-flex;
  margin-bottom: 26px;
  border-bottom: 2px solid var(--red);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-hero h1 {
  max-width: 900px;
  font-size: 86px;
  text-shadow: 3px 3px 0 var(--red), 7px 7px 0 #242424;
}

.article-intro {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
  line-height: 1.7;
}

.article-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 112px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 0, 56, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(8, 8, 8, 0.9);
}

.article-sidebar span {
  display: block;
  margin-bottom: 14px;
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-sidebar strong {
  display: block;
  margin-bottom: 24px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.article-sidebar .btn {
  width: 100%;
}

.article-content {
  padding: 34px;
  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);
}

.article-content h2 {
  margin-top: 42px;
  font-size: 44px;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p,
.article-content li,
.article-content blockquote {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.78;
}

.article-content ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 26px;
  padding-left: 22px;
}

.article-content li::marker {
  color: var(--red);
}

.article-content blockquote {
  margin: 28px 0 0;
  padding: 20px 22px;
  border-left: 5px solid var(--red);
  background: rgba(0, 0, 0, 0.24);
  color: var(--white);
  font-weight: 700;
}

.article-page .article-shell {
  width: min(calc(100% - 40px), 980px);
  padding: 126px 0 64px;
}

.article-page .article-hero {
  max-width: 860px;
  padding-bottom: 28px;
}

.article-page .article-back {
  margin-bottom: 18px;
}

.article-page .article-hero h1 {
  max-width: 820px;
  font-size: 64px;
}

.article-page .article-intro {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.58;
}

.article-page .article-layout {
  display: block;
}

.article-page .article-sidebar {
  display: none;
}

.article-page .article-content {
  padding: 34px 38px;
}

.article-page .article-content h2 {
  margin: 32px 0 12px;
  font-size: 34px;
  line-height: 1;
}

.article-page .article-content p,
.article-page .article-content li,
.article-page .article-content blockquote {
  font-size: 16px;
  line-height: 1.58;
}

.article-page .article-content p {
  margin: 0 0 13px;
}

.article-page .article-content ul {
  gap: 5px;
  margin: 12px 0 18px;
}

.article-page .article-content blockquote {
  margin-top: 18px;
  padding: 16px 18px;
}

.article-page .reveal {
  opacity: 1;
  transform: none;
}

.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,
  .portfolio-hero-inner,
  .portfolio-metrics,
  .blog-feature-card,
  .blog-grid,
  .article-layout,
  .contact-actions {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-card.featured {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

}

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

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    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,
  .portfolio-hero-inner,
  .portfolio-grid,
  .portfolio-metrics,
  .blog-feature-card,
  .blog-grid,
  .article-layout,
  .contact-actions {
    grid-template-columns: 1fr;
  }

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

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

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

  .portfolio-actions {
    display: grid;
  }

  .portfolio-snapshot {
    min-height: auto;
    padding: 24px;
  }

  .portfolio-snapshot strong {
    font-size: 48px;
  }

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

  .snapshot-grid span {
    min-height: 72px;
  }

  .portfolio-card,
  .portfolio-card.featured {
    min-height: auto;
    padding: 22px;
  }

  .portfolio-card-screen {
    min-height: 220px;
  }

  .portfolio-card.featured .portfolio-card-screen {
    min-height: 240px;
  }

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

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

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

  .blog-feature-card,
  .article-content {
    padding: 22px;
  }

  .blog-feature-visual {
    min-height: 240px;
    padding: 24px;
  }

  .blog-feature-visual strong {
    font-size: 42px;
  }

  .article-shell {
    width: min(calc(100% - 32px), var(--max));
    padding-top: 154px;
  }

  .article-page .article-shell {
    width: min(calc(100% - 32px), var(--max));
    padding: 138px 0 48px;
  }

  .article-page .article-content {
    padding: 22px;
  }

  .article-content h2 {
    font-size: 36px;
  }

  .article-page .article-content h2 {
    font-size: 30px;
  }

  .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;
  }
}
