:root {
  --black: #000;
  --light: #fff;
  --warm-light: #f6efe5;
  --micro: #202020;
  --grey-1: #898989;
  --grey-2: #606060;
  --grey-3: #494949;
  --grey-4: #363636;
  --grey-5: #383838;
  --orange: #ff4c24;
  --red: #ad1a1a;
  --glass: rgba(255, 255, 255, .1);
  --line: rgba(255, 255, 255, .16);
  --radius: .15rem;
  --font: "Inter", Arial, Helvetica, sans-serif;
  --mono: "Inter", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--black);
  color: var(--light);
  font-family: var(--font);
  overflow-x: hidden;
}

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-content: center stretch;
  background: #000;
  transition: opacity .7s ease, visibility .7s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr 2fr 2fr;
  align-items: center;
  gap: 24px;
  padding: 0 3rem;
  color: #383838;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08rem;
  line-height: 1;
  text-transform: uppercase;
}

.loader-grid strong {
  color: var(--light);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -.08em;
  text-align: center;
}

.dots {
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 3rem;
  color: var(--light);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.brand-stack {
  display: grid;
  gap: .18rem;
  line-height: 1;
}

.brand-stack b {
  font-size: .78rem;
}

.brand-stack small {
  color: var(--warm-light);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.mark {
  width: 3.4rem;
  height: 1.25rem;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  font-size: .56rem;
  letter-spacing: .06em;
}

.gate-button {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: .8rem;
  min-height: 2.75rem;
  padding: .5rem 1.25rem;
  border-radius: var(--radius);
  background: var(--glass);
  backdrop-filter: blur(40px);
  color: var(--light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2rem;
  line-height: 1;
  text-transform: uppercase;
}

.gate-button.is-dark {
  background: var(--black);
  color: var(--light);
  justify-content: center;
}

.gate-icon {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 1rem 1rem 0 0;
  position: relative;
}

.gate-icon::before,
.gate-icon::after {
  content: "";
  position: absolute;
  top: 45%;
  bottom: 0;
  width: 2px;
  background: currentColor;
}

.gate-icon::before { left: 32%; }
.gate-icon::after { right: 32%; }

.hero {
  position: relative;
  min-height: 100.5vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero-video,
.hero video,
.section-video video,
.manifesto-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video,
.video-fallback,
.hero-shade {
  position: absolute;
  inset: 0;
}

.video-fallback {
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, .16), transparent 24%),
    linear-gradient(240deg, #080808 9%, #313131 45%, #000);
}

.hero-video {
  z-index: 1;
}

.hero-shade {
  z-index: 2;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 0, 0, .04), rgba(0, 0, 0, .68) 68%, #000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .42), transparent 28%, rgba(0, 0, 0, .62));
}

.hero-content {
  z-index: 3;
  width: min(1180px, calc(100% - 48px));
  text-align: center;
}

.subheading,
.micro {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .2rem;
  line-height: 1;
  text-transform: uppercase;
}

.subheading {
  color: var(--warm-light);
}

.orange {
  color: var(--orange);
}

.micro {
  color: var(--grey-2);
}

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -.07em;
}

h1 {
  margin: 2rem auto 2.4rem;
  font-size: clamp(4.6rem, 10.4vw, 11.8rem);
  line-height: .78;
  max-width: 12ch;
}

h1 span,
h1 em {
  display: block;
  font-style: normal;
}

h1 em {
  margin-top: .34rem;
  color: var(--warm-light);
  font-size: .52em;
  font-weight: 800;
  letter-spacing: .08em;
}

.hero-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  color: var(--warm-light);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .17rem;
  text-transform: uppercase;
}

.hero-nav a {
  opacity: .9;
}

.hero-nav a:hover {
  color: var(--orange);
}

.hero-bottom {
  position: absolute;
  left: 3rem;
  right: 3rem;
  bottom: 3rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: .4rem;
  flex-wrap: wrap;
  color: var(--warm-light);
  font-size: 1.35rem;
  line-height: 1.2;
}

.muted-line,
.gradient-text {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #898989, #494949);
  -webkit-background-clip: text;
  background-clip: text;
}

.divider {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 0 3rem;
  background: #000;
}

.divider span {
  height: 1px;
  background: var(--line);
}

.statement {
  display: grid;
  grid-template-columns: 2fr 7fr 3fr;
  gap: 2rem;
  padding: 12rem 3rem;
}

.statement h2,
.media-copy h2,
.manifesto-copy h2,
.contact h2 {
  font-size: clamp(3.4rem, 7.2vw, 9.8rem);
  line-height: .83;
}

.statement-copy,
.media-copy p,
.manifesto-copy p,
.contact p {
  color: var(--grey-1);
  font-size: 1.15rem;
  line-height: 1.65;
}

.architecture {
  display: grid;
  gap: 1px;
  padding: 0 3rem 10rem;
  background: #000;
}

.arch-layer {
  display: grid;
  grid-template-columns: 8rem 1fr 1.25fr;
  gap: 2rem;
  align-items: center;
  min-height: 10rem;
  padding: 2rem;
  border: 1px solid rgba(239, 238, 236, .12);
  background-image: linear-gradient(240deg, #080808 9%, #252525 45%, #000);
}

.arch-layer span {
  color: var(--orange);
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 800;
  letter-spacing: -.12em;
  line-height: .72;
}

.arch-layer h3 {
  color: var(--warm-light);
  font-size: clamp(2.4rem, 4vw, 5rem);
  line-height: .88;
}

.arch-layer p {
  color: var(--grey-1);
  font-size: 1.08rem;
  line-height: 1.65;
}

.arch-layer.is-core {
  background-image: linear-gradient(240deg, #120400 9%, #313131 42%, #000);
}

.media-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  background: #000;
  overflow: hidden;
}

.section-video {
  position: absolute;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
}

.section-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 50%, rgba(0, 0, 0, .08), rgba(0, 0, 0, .78) 68%, #000 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .28) 52%, rgba(0, 0, 0, .72));
  pointer-events: none;
}

.manifesto-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 100%, transparent 40%, #000);
  pointer-events: none;
}

.media-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 58rem;
  padding: 10rem 3rem;
}

.media-copy h2 {
  margin: 1.2rem 0 2rem;
}

.logo-wall {
  padding: 9rem 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-wall .micro {
  padding: 0 3rem 2rem;
}

.marquee {
  width: 100vw;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee-track span {
  min-width: 17vw;
  height: 10vw;
  margin: 1vw;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background-image: linear-gradient(240deg, #080808 9%, #313131 45%, #000);
  color: var(--warm-light);
  font-size: clamp(1.1rem, 2vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.cards-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 3rem 10rem;
  background: #000;
}

.dark-card {
  min-height: 420px;
  display: grid;
  grid-template-rows: 1.2rem 13.5rem auto;
  align-items: start;
  padding: 2rem;
  background: #080808;
  border: 1px solid rgba(239, 238, 236, .12);
}

.dark-card span {
  color: var(--orange);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .22rem;
}

.dark-card h3 {
  align-self: end;
  max-width: none;
  color: var(--warm-light);
  font-size: clamp(2.1rem, 1.85vw, 2.85rem);
  line-height: .98;
  letter-spacing: 0;
  white-space: nowrap;
}

.dark-card p {
  color: var(--grey-1);
  line-height: 1.6;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 8rem 3rem 10rem;
  background: #000;
}

.solution-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  background: #070707;
  border: 1px solid rgba(239, 238, 236, .12);
}

.solution-card span {
  color: var(--grey-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18rem;
}

.solution-card h3 {
  color: var(--warm-light);
  font-size: clamp(2rem, 3vw, 3.8rem);
  line-height: .92;
}

.solution-card p {
  color: var(--grey-1);
  line-height: 1.65;
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 10rem 3rem;
}

.manifesto-copy h2 {
  margin: 1.3rem 0 2rem;
}

.manifesto-video {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

.contact {
  position: relative;
  min-height: 90vh;
  display: grid;
  align-items: end;
  padding: 10rem 3rem 3rem;
  background: var(--warm-light);
  color: var(--black);
  overflow: hidden;
}

.footer-letterform {
  position: absolute;
  left: -4vw;
  right: -4vw;
  top: 6vh;
  color: rgba(0, 0, 0, .08);
  font-size: 34vw;
  font-weight: 800;
  letter-spacing: -.16em;
  line-height: .75;
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .9fr 1.25fr 1.05fr;
  gap: 3rem;
  align-items: end;
}

.contact p {
  margin-top: 1.3rem;
  color: var(--grey-4);
  max-width: 32rem;
}

.contact-copy {
  align-self: end;
}

.contact-copy h2 {
  font-size: clamp(4.5rem, 6vw, 7.5rem);
  line-height: .9;
  letter-spacing: -.06em;
  white-space: nowrap;
}

.lead-form {
  display: grid;
  gap: .9rem;
  padding: 1.25rem;
  border: 1px solid rgba(0, 0, 0, .18);
  background: rgba(0, 0, 0, .05);
  backdrop-filter: blur(24px);
}

.lead-form label {
  display: grid;
  gap: .45rem;
  color: var(--grey-4);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .28);
  border-radius: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-size: .95rem;
  letter-spacing: 0;
  outline: none;
  padding: .65rem 0;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(0, 0, 0, .38);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-bottom-color: var(--black);
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: .7rem !important;
  color: var(--grey-4);
  font-size: .78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.55;
  text-transform: none !important;
}

.consent input {
  width: 1rem;
  margin-top: .15rem;
}

.lead-form .gate-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.lead-form .gate-button[disabled] {
  cursor: wait;
  opacity: .6;
}

.form-status {
  min-height: 1.2rem;
  margin: 0 !important;
  color: var(--grey-4) !important;
  font-size: .9rem !important;
}

.form-status.is-error {
  color: var(--red) !important;
}

.form-status.is-success {
  color: #1d4b2a !important;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.tech-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  padding: 0 3rem 10rem;
  background: #000;
}

.tech-strip span {
  min-height: 8rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  border: 1px solid rgba(239, 238, 236, .12);
  background: rgba(255, 255, 255, .04);
  color: var(--warm-light);
  font-weight: 800;
  letter-spacing: .08em;
}

.site-footer {
  display: block;
  padding: 3rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
  background: #000;
  color: var(--grey-1);
  font-size: .85rem;
  line-height: 1.7;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.35rem;
  align-items: center;
}

.footer-legal a {
  color: var(--warm-light);
}

.footer-legal span {
  display: inline-flex;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity .75s ease, transform .75s ease;
}

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

@media (max-width: 980px) {
  .loader-grid,
  .site-header,
  .divider,
  .statement,
  .logo-wall .micro,
  .cards-section,
  .manifesto,
  .site-footer,
  .contact {
    padding-left: 35px;
    padding-right: 35px;
  }

  .loader-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .site-header {
    padding-top: 35px;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gate-button {
    width: fit-content;
  }

  .hero-bottom {
    left: 35px;
    right: 35px;
    bottom: 35px;
    font-size: 1.1rem;
  }

  .statement,
  .architecture,
  .media-section,
  .solution-grid,
  .tech-strip,
  .manifesto,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .statement {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .media-copy {
    padding: 5rem 35px 7rem;
  }

  .section-video {
    min-height: 520px;
  }

  .marquee-track span {
    min-width: 44vw;
    height: 24vw;
  }

  .cards-section {
    grid-template-columns: 1fr;
    padding-bottom: 7rem;
  }

  .dark-card h3 {
    white-space: normal;
  }

  .dark-card {
    grid-template-rows: 1.2rem 9rem auto;
  }

  .arch-layer {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .solution-grid {
    padding-top: 5rem;
    padding-bottom: 7rem;
  }

  .tech-strip {
    padding-bottom: 7rem;
  }
}

@media (min-width: 981px) and (max-width: 1500px) {
  .cards-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    display: none;
  }

  h1 {
    font-size: clamp(3.5rem, 16vw, 5rem);
    line-height: .84;
    max-width: 100%;
  }

  h1 em {
    font-size: .48em;
    letter-spacing: .04em;
  }

  .hero-nav {
    gap: .5rem;
    flex-wrap: wrap;
    font-size: .7rem;
  }

  .statement h2,
  .media-copy h2,
  .manifesto-copy h2,
  .contact h2 {
    font-size: clamp(3rem, 16vw, 5.6rem);
  }
}
