:root {
  color-scheme: dark;
  --night: #0b0b0b;
  --graphite: #1a1a1d;
  --steel: #73777c;
  --bone: #f2f2f2;
  --red: #e6362e;
  --red-dark: #9f1512;
  --line: rgba(242, 242, 242, 0.14);
  --line-strong: rgba(230, 54, 46, 0.62);
  --shadow: rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--night);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Urbanist, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--bone);
  background:
    radial-gradient(circle at 78% 12%, rgba(115, 119, 124, 0.28), transparent 32rem),
    linear-gradient(135deg, rgba(230, 54, 46, 0.12), transparent 28rem),
    var(--night);
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
}

body::before {
  opacity: 0.34;
  background:
    repeating-linear-gradient(135deg, rgba(242, 242, 242, 0.08) 0 1px, transparent 1px 16px),
    linear-gradient(90deg, transparent, rgba(230, 54, 46, 0.11), transparent);
  -webkit-mask-image: linear-gradient(120deg, transparent 0 14%, #000 28% 72%, transparent 88%);
  mask-image: linear-gradient(120deg, transparent 0 14%, #000 28% 72%, transparent 88%);
}

body::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(circle at center, #000, transparent 72%);
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.site-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 40px);
  margin: 20px auto;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.72), rgba(11, 11, 11, 0.94)),
    var(--night);
  box-shadow: 0 30px 80px var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  min-height: 62vh;
  padding: clamp(24px, 4vw, 48px);
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero::before {
  position: absolute;
  top: 0;
  left: clamp(24px, 4vw, 48px);
  width: 118px;
  height: 2px;
  background: var(--red);
  content: "";
}

.hero::after {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 210px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  content: "";
}

.hero__content {
  position: relative;
  z-index: 1;
}

.brand-lockup {
  margin-bottom: clamp(34px, 5vw, 56px);
}

.brand-lockup__logo {
  width: min(100%, 520px);
  max-height: 106px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 20px 38px rgba(0, 0, 0, 0.62));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: clamp(0.74rem, 1vw, 0.88rem);
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
}

.lede {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(242, 242, 242, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.55;
}

.status-panel {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  background: rgba(11, 11, 11, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.status-panel__label,
.status-panel__domain {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-panel__label {
  color: var(--bone);
}

.status-panel__domain {
  color: var(--red);
}

.hero__visual {
  position: relative;
  height: clamp(390px, 43vw, 520px);
  min-height: 390px;
  border: 1px solid var(--line);
  background: var(--graphite);
  overflow: hidden;
  isolation: isolate;
}

.hero__visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.74), transparent 48%),
    linear-gradient(0deg, rgba(11, 11, 11, 0.72), transparent 46%);
  content: "";
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(230, 54, 46, 0.22), transparent 38%),
    repeating-linear-gradient(135deg, rgba(242, 242, 242, 0.08) 0 1px, transparent 1px 20px);
  mix-blend-mode: screen;
  opacity: 0.48;
  content: "";
}

.hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.05);
}

.hero__visual--explorer img {
  filter: grayscale(18%) saturate(0.68) contrast(1.2) brightness(0.78);
  object-position: center 78%;
  transform: scale(1.04);
}

.visual-card {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 2;
  min-width: 178px;
  padding: 18px;
  border-left: 2px solid var(--red);
  background: rgba(11, 11, 11, 0.78);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

.visual-card span,
.visual-card strong {
  display: block;
  text-transform: uppercase;
}

.visual-card span {
  color: rgba(242, 242, 242, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
}

.visual-card strong {
  margin-top: 4px;
  color: var(--red);
  font-size: 1.35rem;
  line-height: 1;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent, rgba(230, 54, 46, 0.08));
}

.pillars article {
  min-height: 150px;
  padding: 28px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.pillars article:last-child {
  border-right: 0;
}

.pillar-marker {
  display: block;
  width: 40px;
  height: 2px;
  margin-bottom: 24px;
  background: var(--red);
}

.pillars h2 {
  margin: 0 0 8px;
  color: var(--bone);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.pillars p {
  margin: 0;
  color: rgba(242, 242, 242, 0.62);
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 24px, 720px);
    min-height: calc(100vh - 24px);
    margin: 12px auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 24px 24px;
  }

  .brand-lockup {
    margin-bottom: 44px;
  }

  .hero__visual {
    height: 320px;
    min-height: 320px;
  }

  .hero__visual img {
    min-height: 320px;
  }

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

  .pillars article:nth-child(2) {
    border-right: 0;
  }

  .pillars article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    border-right: 0;
    border-left: 0;
  }

  .hero {
    padding: 28px 18px 18px;
  }

  .brand-lockup {
    margin-bottom: 34px;
  }

  .brand-lockup__logo {
    max-height: 108px;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }

  .status-panel {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 14px;
  }

  .hero__visual,
  .hero__visual img {
    height: 250px;
    min-height: 250px;
  }

  .visual-card {
    right: 14px;
    top: 14px;
    min-width: 146px;
    padding: 14px;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .pillars article,
  .pillars article:nth-child(2) {
    min-height: 128px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pillars article:last-child {
    border-bottom: 0;
  }
}
