:root {
  --red: #ff2435;
  --ink: #080808;
  --line: #292929;
  --muted: #999;
  --white: #f4f4f2;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.nav {
  height: 92px;
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition: 0.35s;
}
.nav-scrolled {
  height: 74px;
  background: #050505e8;
  backdrop-filter: blur(18px);
  border-color: #242424;
}
.nav > a img {
  width: 210px;
  height: 70px;
  object-fit: contain;
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.nav nav > a:not(.nav-apply) {
  color: #bbb;
}
.nav nav > a:hover {
  color: #fff;
}
.nav-apply {
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid #4a4a4a;
  padding: 14px 18px;
}
.menu {
  display: none;
  background: none;
  border: 0;
  color: #fff;
}
.hero {
  height: min(900px, 100vh);
  min-height: 720px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 115px 7vw 70px;
  background: radial-gradient(
    circle at 72% 45%,
    #252525 0,
    #0a0a0a 31%,
    #050505 63%
  );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff0a 1px, transparent 1px),
    linear-gradient(90deg, #ffffff0a 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, #000, transparent 80%);
}
.hero:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 49.8%,
    #ffffff12 50%,
    transparent 50.2%
  );
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: 60%;
  max-width: 850px;
}
.eyebrow,
.section-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #aaa;
  font-weight: bold;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.eyebrow span {
  height: 2px;
  width: 38px;
  background: var(--red);
}
h1,
h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.88;
}
h1 {
  font-size: clamp(60px, 7.4vw, 122px);
}
h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px #777;
}
.hero-copy > p {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.8;
  color: #aaa;
  margin: 30px 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
}
.btn {
  height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid #484848;
  background: transparent;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: 0.3s;
}
.primary {
  border-color: var(--red);
  background: var(--red);
}
.primary:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.hero-mark {
  position: absolute;
  right: 6vw;
  width: 34vw;
  height: 34vw;
  max-width: 500px;
  max-height: 500px;
  display: grid;
  place-items: center;
  z-index: 2;
}
.mark-ring {
  width: 75%;
  height: 75%;
  border: 1px solid #ffffff2c;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 90px #ffffff13;
  animation: spin 25s linear infinite;
}
.mark-ring:before,
.mark-ring:after {
  content: "";
  position: absolute;
  border: 1px solid #ffffff14;
  border-radius: 50%;
}
.mark-ring:before {
  inset: 2%;
}
.mark-ring:after {
  inset: 19%;
}
.mark-core {
  font-weight: 900;
  font-style: italic;
  font-size: 80px;
  letter-spacing: -0.15em;
  color: #ddd;
  text-shadow: 0 15px 35px #000;
}
.float-card {
  position: absolute;
  padding: 15px 18px;
  background: #111c;
  border: 1px solid #ffffff24;
  backdrop-filter: blur(14px);
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--red);
  font-size: 9px;
  letter-spacing: 0.14em;
}
.float-card svg {
  width: 18px;
}
.float-card b {
  color: #eee;
}
.card-a {
  left: -4%;
  top: 18%;
  animation: float 4s ease-in-out infinite;
}
.card-b {
  right: -2%;
  bottom: 18%;
  animation: float 4s 1s ease-in-out infinite;
}
.scroll {
  position: absolute;
  left: 7vw;
  bottom: 28px;
  display: flex;
  gap: 13px;
  align-items: center;
  color: #777;
  font-size: 9px;
  letter-spacing: 0.25em;
}
.ticker {
  height: 64px;
  background: var(--red);
  overflow: hidden;
  display: flex;
  align-items: center;
  transform: rotate(-1.2deg) scale(1.02);
  position: relative;
  z-index: 3;
}
.ticker > div {
  display: flex;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}
.ticker span {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.12em;
  margin-right: 44px;
}
.ticker i {
  font-style: normal;
  margin-left: 44px;
  color: #1b1b1b;
}
.section {
  padding: 130px 7vw;
}
.about {
  background: #0b0b0b;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 10vw;
  margin-top: 32px;
}
.about h2,
.section-head h2,
.apply h2 {
  font-size: clamp(46px, 6vw, 91px);
}
h2 span {
  color: var(--red);
}
.about-copy p {
  color: #8d8d8d;
  line-height: 1.8;
}
.about-copy .lead {
  color: #e2e2e2;
  font-size: 20px;
  line-height: 1.6;
}
.about-copy a {
  margin-top: 24px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--red);
  padding-bottom: 8px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 100px;
}
.stats div {
  padding: 35px 25px 5px;
  border-right: 1px solid var(--line);
}
.stats b {
  display: block;
  font-size: 32px;
}
.stats span {
  display: block;
  color: #777;
  font-size: 10px;
  letter-spacing: 0.1em;
  margin-top: 10px;
  text-transform: uppercase;
}
.solutions {
  background: #e7e7e5;
  color: #111;
}
.solutions .section-label {
  color: #555;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 320px;
  align-items: end;
  gap: 40px;
}
.section-head > p {
  color: #666;
  line-height: 1.8;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid #bbb;
}
.service-grid article {
  position: relative;
  padding: 36px 26px 42px;
  border-right: 1px solid #bbb;
  min-height: 345px;
  transition: 0.35s;
}
.service-grid article:hover {
  background: #111;
  color: #fff;
  transform: translateY(-8px);
}
.service-top {
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 12px;
}
.service-top svg {
  color: var(--red);
  width: 28px;
}
.service-grid h3 {
  font-size: 22px;
  margin: 85px 0 16px;
}
.service-grid p {
  font-size: 13px;
  line-height: 1.8;
  color: #777;
}
.service-line {
  position: absolute;
  bottom: 0;
  left: 26px;
  right: 26px;
  height: 2px;
  background: #aaa;
}
.service-grid article:hover .service-line {
  background: var(--red);
}
.why {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: radial-gradient(circle at 26% 50%, #272727, #080808 36%);
}
.why-art {
  position: relative;
  height: 520px;
  display: grid;
  place-items: center;
}
.wire-sphere {
  width: 390px;
  height: 390px;
  border: 1px solid #ffffff40;
  border-radius: 50%;
  background:
    repeating-radial-gradient(ellipse, transparent 0 22px, #ffffff13 23px 24px),
    repeating-linear-gradient(90deg, transparent 0 35px, #ffffff10 36px);
  box-shadow:
    inset 0 0 100px #000,
    0 0 100px #ffffff0a;
  animation: float 6s ease-in-out infinite;
}
.pulse-dot {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
  box-shadow:
    0 0 0 18px #ff24351c,
    0 0 55px var(--red);
}
.why-copy {
  max-width: 550px;
}
.why h2 {
  font-size: clamp(58px, 6.5vw, 98px);
  margin: 30px 0;
}
.why-copy > p,
.apply-copy > p {
  color: #8d8d8d;
  line-height: 1.8;
  max-width: 500px;
}
.why ul {
  list-style: none;
  padding: 15px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why li {
  display: flex;
  gap: 10px;
  color: #c4c4c4;
  font-size: 12px;
}
.why li svg {
  color: var(--red);
  width: 16px;
}
.apply {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  background: #121212;
}
.apply h2 {
  margin: 30px 0;
}
.form-shell {
  position: relative;
  min-height: 490px;
  background: #090909;
  border: 1px solid #292929;
  padding: 45px;
}
.form-shell form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 18px;
  transition: 0.3s;
}
.form-shell label {
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #888;
}
.form-shell input {
  display: block;
  width: 100%;
  margin-top: 12px;
  background: #151515;
  border: 1px solid #303030;
  color: #fff;
  padding: 17px;
  outline: none;
}
.form-shell input:focus {
  border-color: var(--red);
}
.form-shell .btn,
.form-shell small {
  grid-column: 1/-1;
  width: 100%;
}
.form-shell small {
  color: #555;
  text-align: center;
  font-size: 9px;
}
.form-hidden {
  opacity: 0;
  pointer-events: none;
}
.success {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.success > div {
  width: 62px;
  height: 62px;
  border: 1px solid var(--red);
  color: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.success h3 {
  font-size: 27px;
  margin: 25px 0 6px;
}
.success p {
  color: #888;
  line-height: 1.6;
}
.success button {
  background: none;
  border: 0;
  border-bottom: 1px solid var(--red);
  color: #fff;
  padding: 10px 0;
}
footer {
  padding: 70px 7vw 30px;
  background: #050505;
}
.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-top {
  border-bottom: 1px solid #222;
  padding-bottom: 60px;
}
.footer-top img {
  width: 270px;
}
.footer-top > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-top span {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: #666;
}
.footer-top a {
  font-size: 18px;
  display: flex;
  gap: 12px;
}
.footer-top svg {
  color: var(--red);
  width: 20px;
}
.footer-bottom {
  padding-top: 25px;
  color: #555;
  font-size: 10px;
}
.footer-bottom div {
  display: flex;
  gap: 25px;
}
.footer-bottom b {
  color: #aaa;
  letter-spacing: 0.2em;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes float {
  50% {
    transform: translateY(-16px);
  }
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 900px) {
  .nav {
    height: 72px;
    padding: 0 20px;
  }
  .nav > a img {
    width: 160px;
  }
  .menu {
    display: block;
  }
  .nav nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    background: #090909;
    padding: 30px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .nav nav.open {
    display: flex;
  }
  .hero {
    height: auto;
    min-height: 780px;
    padding: 120px 24px 75px;
    align-items: flex-start;
  }
  .hero-copy {
    width: 100%;
    z-index: 3;
  }
  .hero-mark {
    width: 350px;
    height: 350px;
    right: -110px;
    bottom: 20px;
    opacity: 0.4;
  }
  .hero-actions {
    flex-direction: column;
  }
  .scroll {
    display: none;
  }
  .section {
    padding: 90px 24px;
  }
  .about-grid,
  .section-head,
  .why,
  .apply {
    grid-template-columns: 1fr;
  }
  .about-grid {
    gap: 35px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-grid article {
    min-height: 260px;
    border-bottom: 1px solid #bbb;
  }
  .service-grid h3 {
    margin-top: 50px;
  }
  .why-art {
    height: 360px;
    order: 2;
  }
  .wire-sphere {
    width: 280px;
    height: 280px;
  }
  .why ul {
    grid-template-columns: 1fr;
  }
  .apply {
    gap: 55px;
  }
  .form-shell {
    padding: 26px;
  }
  .form-shell form {
    grid-template-columns: 1fr;
  }
  .form-shell .btn,
  .form-shell small {
    grid-column: auto;
  }
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-bottom div {
    flex-wrap: wrap;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 52px;
  }
  .about h2,
  .section-head h2,
  .apply h2 {
    font-size: 43px;
  }
  .stats b {
    font-size: 25px;
  }
  .ticker {
    height: 52px;
  }
  .ticker span {
    font-size: 14px;
  }
  .form-shell {
    min-height: 610px;
  }
  .linkedin-float span {
    display: none;
  }
  .linkedin-float {
    width: 50px;
    padding: 0;
    justify-content: center;
    right: 16px;
    bottom: 16px;
  }
}

.footer-linkedin {
  font-size: 12px !important;
  color: #aaa;
}
.linkedin-float {
  position: fixed;
  z-index: 40;
  right: 24px;
  bottom: 24px;
  height: 50px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0a66c2;
  color: #fff;
  border: 1px solid #ffffff33;
  box-shadow: 0 12px 35px #0008;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.08em;
  transition: 0.3s;
}
.linkedin-float:hover {
  transform: translateY(-4px);
  background: #fff;
  color: #0a66c2;
}
.linkedin-float svg {
  width: 19px;
}
.linkedin-icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 2px;
  background: #fff;
  color: #0a66c2;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}
@media (max-width: 520px) {
  .linkedin-float span { display: none; }
  .linkedin-float { width: 50px; padding: 0; justify-content: center; right: 16px; bottom: 16px; }
}
