:root{
  --bg:#050505;
  --panel:#0b0b0d;
  --fg:#f4f1ec;
  --muted:#aaa49d;
  --red:#d20a17;
  --hot:#ff2638;
  --line:rgba(255,255,255,.10);
  --line-strong:rgba(255,255,255,.18);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--fg);
  font-family:Arial,Helvetica,sans-serif;
  overflow-x:hidden;
}

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

#fx{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:2;
  opacity:.34;
}

/* TOP BAR */

.topbar{
  position:fixed;
  z-index:50;
  top:0;
  left:0;
  right:0;
  height:80px;
  padding:0 6vw;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.58);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
}

.brand{
  font-size:15px;
  font-weight:900;
  letter-spacing:.24em;
}

.topbar nav{
  display:flex;
  gap:34px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:#d8d3cc;
}

.topbar nav a{
  position:relative;
  transition:color .25s ease;
}

.topbar nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:-8px;
  height:1px;
  background:var(--hot);
  transition:right .25s ease;
}

.topbar nav a:hover{
  color:#fff;
}

.topbar nav a:hover::after{
  right:0;
}

/* HERO */

.hero{
  position:relative;
  min-height:100vh;
  height:100vh;
  display:flex;
  align-items:center;
  padding:120px 7vw 76px;
  overflow:hidden;
  isolation:isolate;
}

.heroVideo{
  position:absolute;
  z-index:-4;
  top:50%;
  left:50%;
  width:100%;
  height:100%;
  min-width:100%;
  min-height:100%;
  transform:translate(-50%,-50%);
  object-fit:cover;
  object-position:center center;
  filter:
    brightness(.68)
    contrast(1.18)
    saturate(1.05);
}

.shade{
  position:absolute;
  z-index:-3;
  inset:0;
  background:
    radial-gradient(
      circle at 74% 42%,
      rgba(255,38,56,.18),
      transparent 30%
    ),
    linear-gradient(
      90deg,
      rgba(0,0,0,.97) 0%,
      rgba(0,0,0,.84) 34%,
      rgba(0,0,0,.46) 61%,
      rgba(0,0,0,.28) 78%,
      rgba(0,0,0,.48) 100%
    ),
    linear-gradient(
      to top,
      #050505 0%,
      rgba(5,5,5,.78) 14%,
      transparent 46%
    );
}

.hero::before{
  content:"";
  position:absolute;
  z-index:-2;
  inset:0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.26),
      transparent 22%
    );
}

.hero::after{
  content:"";
  position:absolute;
  z-index:-1;
  left:7vw;
  bottom:38px;
  width:220px;
  height:1px;
  background:linear-gradient(
    90deg,
    var(--hot),
    transparent
  );
}

.heroCopy{
  position:relative;
  z-index:5;
  width:min(880px,90vw);
  padding-left:6px;
  animation:heroEnter 1s ease both;
}

@keyframes heroEnter{
  from{
    opacity:0;
    transform:translateY(26px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.kicker{
  margin-bottom:20px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.34em;
  color:#ded9d2;
}

h1{
  margin:0;
  max-width:980px;
  font-size:clamp(60px,7.8vw,116px);
  line-height:.88;
  letter-spacing:-.06em;
  text-shadow:0 12px 36px rgba(0,0,0,.46);
}

h1 span{
  display:block;
  color:var(--hot);
}

.heroCopy p{
  max-width:700px;
  margin:30px 0 0;
  font-size:clamp(16px,1.45vw,20px);
  line-height:1.7;
  color:#d4cfc8;
  text-shadow:0 4px 16px rgba(0,0,0,.72);
}

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

.btn{
  display:inline-flex;
  min-height:54px;
  align-items:center;
  justify-content:center;
  padding:0 28px;
  border:1px solid var(--line-strong);
  background:rgba(0,0,0,.26);
  backdrop-filter:blur(10px);
  font-size:12px;
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.btn:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.42);
  background:rgba(255,255,255,.07);
}

.primary{
  background:linear-gradient(
    135deg,
    var(--hot),
    var(--red)
  );
  border-color:var(--hot);
  box-shadow:0 14px 40px rgba(210,10,23,.26);
}

.primary:hover{
  box-shadow:0 18px 48px rgba(210,10,23,.38);
}

/* CONTENT SECTIONS */

.section{
  position:relative;
  z-index:3;
  width:min(1240px,90vw);
  margin:auto;
  padding:128px 0;
}

.section h2,
.statement h2,
.cta h2{
  margin:0 0 48px;
  font-size:clamp(40px,5vw,72px);
  line-height:.98;
  letter-spacing:-.046em;
}

/* CAPABILITY CARDS */

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

.cards article,
.steps div{
  min-height:300px;
  padding:32px;
  border:1px solid var(--line);
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.035),
      rgba(255,255,255,.018)
    );
  transition:
    transform .3s ease,
    border-color .3s ease,
    background .3s ease,
    box-shadow .3s ease;
}

.cards article:hover,
.steps div:hover{
  transform:translateY(-6px);
  border-color:rgba(255,38,56,.44);
  background:rgba(255,255,255,.045);
  box-shadow:0 18px 45px rgba(0,0,0,.28);
}

.cards b,
.steps b{
  color:var(--hot);
  font-size:12px;
  letter-spacing:.12em;
}

.cards h3{
  margin-top:110px;
  font-size:26px;
}

.cards p,
.steps p{
  color:var(--muted);
  line-height:1.65;
}

/* STATEMENT */

.statement{
  position:relative;
  z-index:3;
  min-height:58vh;
  padding:110px 7vw;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-block:1px solid var(--line);
  background:
    radial-gradient(
      circle at 82% 48%,
      rgba(210,10,23,.24),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #0a0a0b,
      #101013
    );
}

/* PROCESS */

.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}

.steps div{
  min-height:260px;
}

.steps h3{
  margin-top:58px;
  font-size:22px;
}

/* CTA */

.cta{
  position:relative;
  z-index:3;
  width:min(1240px,90vw);
  margin:40px auto 100px;
  padding:74px;
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:40px;
  border:1px solid var(--line);
  background:
    linear-gradient(
      135deg,
      rgba(210,10,23,.16),
      transparent 44%
    ),
    rgba(255,255,255,.025);
}

/* FOOTER */

footer{
  position:relative;
  z-index:3;
  width:min(1240px,90vw);
  margin:auto;
  padding:30px 0 48px;
  border-top:1px solid var(--line);
  color:#77716b;
  font-size:10px;
  letter-spacing:.16em;
}

/* MOBILE */

@media(max-width:900px){

  .topbar{
    height:68px;
    padding:0 5vw;
  }

  .topbar nav{
    gap:18px;
  }

  .topbar nav a:not(:last-child){
    display:none;
  }

  .hero{
    min-height:100svh;
    height:100svh;
    padding:110px 6vw 64px;
    align-items:flex-end;
  }

  .heroVideo{
    object-position:center center;
  }

  .shade{
    background:
      linear-gradient(
        to top,
        rgba(0,0,0,.99) 0%,
        rgba(0,0,0,.88) 34%,
        rgba(0,0,0,.42) 68%,
        rgba(0,0,0,.45) 100%
      );
  }

  h1{
    font-size:clamp(52px,15vw,78px);
  }

  .heroCopy p{
    font-size:16px;
    line-height:1.58;
  }

  .cards,
  .steps{
    grid-template-columns:1fr;
  }

  .cards article,
  .steps div{
    min-height:auto;
  }

  .cards h3{
    margin-top:60px;
  }

  .cta{
    padding:44px 26px;
    flex-direction:column;
    align-items:flex-start;
  }
}