:root {
  color-scheme: dark;
  background: #020202;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 37% 27%, rgba(164, 164, 154, 0.19), transparent 36%),
    radial-gradient(ellipse at 62% 70%, rgba(78, 78, 73, 0.12), transparent 40%),
    linear-gradient(124deg, #010101 0%, #080808 47%, #020202 100%);
}

body::before {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 64%, rgba(142, 142, 132, 0.12), transparent 14%),
    radial-gradient(ellipse at 36% 72%, rgba(112, 112, 103, 0.14), transparent 19%),
    radial-gradient(ellipse at 69% 62%, rgba(128, 128, 118, 0.11), transparent 18%),
    radial-gradient(ellipse at 77% 72%, rgba(96, 96, 89, 0.13), transparent 14%);
  content: "";
  filter: blur(1.6rem);
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(107deg, transparent 0 31px, rgba(255, 255, 255, 0.009) 32px, transparent 34px),
    repeating-linear-gradient(17deg, transparent 0 47px, rgba(255, 255, 255, 0.006) 48px, transparent 50px);
  content: "";
  mix-blend-mode: soft-light;
  opacity: 0.85;
  pointer-events: none;
}

.concept {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: clamp(1.75rem, 3.5vh, 3.25rem) 1.5rem;
}

.identity {
  display: flex;
  width: min(88vw, 72rem);
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(-1.5vh);
}

.identity__mark {
  position: relative;
  width: min(78vw, 68svh, 46rem);
}

.identity__mark::before {
  position: absolute;
  inset: -12%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 31% 24%, rgba(218, 218, 207, 0.27), transparent 31%),
    radial-gradient(circle at 47% 45%, rgba(122, 122, 114, 0.12), transparent 66%);
  content: "";
  filter: blur(1.8rem);
}

.identity__mark::after {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 29%, transparent 0 38%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.52) 100%);
  content: "";
  mix-blend-mode: multiply;
  pointer-events: none;
}

.identity__symbol {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(1.22) contrast(1.1) drop-shadow(0 0 1.6rem rgba(186, 186, 176, 0.09));
  opacity: 0.94;
}

.identity__title {
  margin: clamp(1.5rem, 3.4vh, 2.6rem) 0 0;
  padding-left: 0.58em;
  background:
    radial-gradient(circle at 29% 14%, rgba(210, 210, 200, 0.82), rgba(137, 137, 128, 0.58) 38%, rgba(70, 70, 65, 0.46) 78%),
    repeating-linear-gradient(113deg, rgba(255, 255, 255, 0.1) 0 1px, rgba(0, 0, 0, 0.16) 2px 4px);
  background-blend-mode: soft-light;
  background-clip: text;
  color: transparent;
  font-size: clamp(1.25rem, 2.45vw, 2.25rem);
  font-weight: 200;
  letter-spacing: 0.58em;
  line-height: 1;
  filter:
    drop-shadow(-0.65px -0.65px 0 rgba(255, 255, 255, 0.075))
    drop-shadow(1px 1px 0.7px rgba(0, 0, 0, 0.98));
  text-transform: uppercase;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ornament {
  display: grid;
  width: min(9rem, 36vw);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.7rem;
  margin-top: clamp(1.3rem, 2.6vh, 2rem);
  opacity: 0.62;
}

.ornament span {
  height: 1px;
  background: linear-gradient(to var(--line-direction, right), transparent, #777772);
}

.ornament span:last-child {
  --line-direction: left;
}

.ornament i {
  width: 0.42rem;
  height: 0.42rem;
  border: 1px solid #777772;
  transform: rotate(45deg);
}

@media (max-width: 36rem) {
  .identity {
    width: 94vw;
    transform: translateY(-1vh);
  }

  .identity__mark {
    width: min(85vw, 60svh, 34rem);
  }

  .identity__title {
    padding-left: 0.42em;
    font-size: clamp(1rem, 5vw, 1.35rem);
    letter-spacing: 0.42em;
  }
}

@media (max-height: 36rem) and (orientation: landscape) {
  .identity__mark {
    width: 52svh;
  }

  .identity__title {
    margin-top: 1rem;
  }

  .ornament {
    margin-top: 0.85rem;
  }
}
