@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("assets/fonts/space-grotesk-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/raleway-latin.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --paper: #f4f0e9;
  --muted: rgba(244, 240, 233, 0.66);
  --line: rgba(244, 240, 233, 0.28);
  --edge: clamp(1.5rem, 4.1vw, 5rem);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: #171411;
}

body {
  color: var(--paper);
  font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #302820;
}

.hero__image,
.hero__shade,
.hero__split {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -3;
  background-image: url("assets/delta-aerial-v2.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(1.02) contrast(1.24) brightness(0.7);
  transform: scale(1.015);
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11, 13, 15, 0.62) 0%, rgba(15, 15, 15, 0.28) 25%, transparent 46%),
    linear-gradient(270deg, rgba(15, 12, 10, 0.58) 0%, rgba(16, 13, 12, 0.26) 25%, transparent 47%),
    linear-gradient(180deg, rgba(8, 9, 10, 0.25) 0%, transparent 30%, transparent 68%, rgba(8, 8, 8, 0.36) 100%);
}

.hero__split {
  z-index: -1;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(214, 105, 38, 0.26) 0%, rgba(139, 58, 19, 0.14) 30%, transparent 58%),
    linear-gradient(90deg, rgba(91, 36, 13, 0.34) 0%, rgba(65, 25, 10, 0.16) 50%, transparent 50%),
    linear-gradient(
      90deg,
      transparent calc(50% - 0.5px),
      rgba(137, 215, 233, 0.24) 50%,
      transparent calc(50% + 0.5px)
    ),
    linear-gradient(
      90deg,
      transparent 0 50%,
      rgba(0, 32, 40, 0.55) 50%,
      rgba(2, 5, 6, 0.7) 100%
    );
}

.hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
  content: "";
  opacity: 0.06;
  pointer-events: none;
}

.brand-marks {
  position: absolute;
  top: clamp(1.4rem, 3vw, 3rem);
  right: var(--edge);
  left: var(--edge);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.brand-mark {
  display: block;
  width: clamp(4.7rem, 6.3vw, 7.6rem);
  height: clamp(4.7rem, 6.3vw, 7.6rem);
  object-fit: contain;
  opacity: 0.9;
}

.brand-mark--fuzzygoat {
  mix-blend-mode: screen;
  transform: translateX(-28%) scale(1.4);
  transform-origin: left center;
}

.brand-mark--blkdelta {
  transform: translateX(28%) scale(1.4);
  transform-origin: right center;
}

.telemetry {
  position: absolute;
  top: 0.25rem;
  right: clamp(8.5rem, 11vw, 13rem);
  left: clamp(8.5rem, 11vw, 13rem);
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr 0.72fr;
  gap: clamp(1.1rem, 3vw, 4rem);
  color: rgba(244, 240, 233, 0.68);
  font-family: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

.telemetry__item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.55rem;
}

.telemetry__item b,
.telemetry__item em {
  overflow: hidden;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.telemetry__item b {
  color: rgba(244, 240, 233, 0.38);
  font-size: clamp(0.5rem, 0.58vw, 0.68rem);
  letter-spacing: 0.24em;
}

.telemetry__item em {
  font-size: clamp(0.58rem, 0.72vw, 0.84rem);
}

.title-mark {
  display: none;
}

.identity {
  position: absolute;
  top: 45%;
  width: min(40rem, 40vw);
  transform: none;
}

.identity--left {
  left: var(--edge);
  text-align: left;
}

.identity--right {
  right: var(--edge);
  text-align: right;
}

.eyebrow,
.location,
.status {
  font-size: clamp(0.62rem, 0.64vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2 {
  margin: 0;
  font-family: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(2.75rem, 5.35vw, 6.6rem);
  font-weight: 500;
  letter-spacing: 0.125em;
  line-height: 0.92;
  text-transform: uppercase;
  text-wrap: nowrap;
}

h1 sup,
h2 sup {
  position: relative;
  top: -0.42em;
  margin-left: 0.12em;
  font-size: 0.25em;
  letter-spacing: 0.06em;
}

.statement,
.profile {
  max-width: 31rem;
  color: rgba(244, 240, 233, 0.86);
  font-size: clamp(0.92rem, 1vw, 1.18rem);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 1.6;
}

.statement {
  margin: 1.45rem 0 0 auto;
}

.profile {
  max-width: 38rem;
  margin: 1.55rem 0 0;
  color: rgba(244, 240, 233, 0.78);
}

.development {
  margin: 1.15rem 0 0;
  color: rgba(244, 240, 233, 0.46);
  font-family: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(0.5rem, 0.58vw, 0.68rem);
  font-weight: 400;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.profile strong,
.statement strong {
  color: var(--paper);
  font-weight: 650;
  letter-spacing: 0.04em;
}

.location {
  margin: 1.2rem 0 0;
  color: var(--muted);
}

.location span {
  display: inline-block;
  margin: 0 0.35em;
}

.status {
  position: absolute;
  right: var(--edge);
  bottom: clamp(1.4rem, 3vw, 3rem);
  left: var(--edge);
  display: grid;
  align-items: start;
  grid-template-columns: 0.8fr 1.3fr 1fr;
  gap: clamp(1.4rem, 3vw, 4rem);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: rgba(244, 240, 233, 0.68);
  font-family: "Space Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.status__item {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status__label,
.status__value {
  overflow: hidden;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status__label {
  color: rgba(244, 240, 233, 0.38);
  font-size: clamp(0.5rem, 0.58vw, 0.68rem);
  letter-spacing: 0.24em;
}

.status__value {
  font-size: clamp(0.58rem, 0.72vw, 0.84rem);
}

@media (max-width: 800px) {
  .hero {
    min-height: 120svh;
  }

  .hero__image {
    background-position: 51% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(10, 10, 11, 0.52) 0%, rgba(12, 11, 10, 0.1) 40%, rgba(9, 9, 9, 0.56) 100%),
      linear-gradient(90deg, rgba(10, 11, 12, 0.38), transparent 55%);
  }

  .hero__split {
    background:
      radial-gradient(ellipse at 12% 0%, rgba(214, 105, 38, 0.27) 0%, rgba(139, 58, 19, 0.14) 28%, transparent 52%),
      linear-gradient(180deg, rgba(91, 36, 13, 0.32) 0%, rgba(65, 25, 10, 0.14) 50%, transparent 50%),
      linear-gradient(
        180deg,
        transparent calc(50% - 0.5px),
        rgba(137, 215, 233, 0.24) 50%,
        transparent calc(50% + 0.5px)
      ),
      linear-gradient(
        180deg,
        transparent 0 50%,
        rgba(0, 32, 40, 0.55) 50%,
        rgba(2, 5, 6, 0.72) 100%
      );
  }

  .identity {
    width: auto;
    transform: none;
  }

  .identity--left {
    top: 8rem;
    right: var(--edge);
  }

  .identity--right {
    top: calc(50% + 1.25rem);
    right: var(--edge);
    bottom: auto;
    left: var(--edge);
    text-align: left;
    transform: none;
  }

  .brand-marks .brand-mark--blkdelta {
    visibility: hidden;
  }

  .telemetry {
    top: 0.25rem;
    right: 0;
    left: auto;
    width: min(48vw, 12rem);
    grid-template-columns: 1fr 0.72fr;
    gap: 0.9rem;
  }

  .telemetry__item--carrier,
  .telemetry__item--phase {
    display: none;
  }

  .telemetry__item b {
    font-size: 0.46rem;
  }

  .telemetry__item em {
    font-size: 0.55rem;
  }

  .title-mark--blkdelta {
    display: block;
    width: 6.6rem;
    height: 6.6rem;
    margin: 0 0 1.25rem -0.52rem;
    object-fit: contain;
  }

  h1,
  .identity--right h2 {
    font-size: clamp(2rem, 9vw, 3.7rem);
    letter-spacing: 0.1em;
  }

  .statement {
    max-width: 27rem;
    margin-right: auto;
    margin-left: 0;
  }

  .profile {
    max-width: 30rem;
    margin-top: 1rem;
  }

  .development {
    margin-top: 0.85rem;
    font-size: 0.48rem;
    letter-spacing: 0.1em;
  }

  .status {
    grid-template-columns: 0.75fr 1.3fr 1fr;
    gap: clamp(0.65rem, 2.6vw, 1.25rem);
  }

}

@media (max-width: 430px) {
  .eyebrow {
    margin-bottom: 0.7rem;
  }

  .identity--right {
    top: calc(50% + 1rem);
    bottom: auto;
  }

  .statement,
  .profile {
    margin-top: 0.95rem;
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .profile {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .location {
    margin-top: 0.85rem;
  }

  .status {
    gap: 0.6rem;
  }

  .status__item {
    gap: 0.4rem;
  }

  .status__label {
    font-size: 0.46rem;
  }

  .status__value {
    font-size: 0.55rem;
  }
}
