:root {
  --ink: #050506;
  --wine: #5a001c;
  --wine-deep: #24000c;
  --gold: #ffad25;
  --paper: #fffaf2;
  --muted: #c9bec1;
  --rule: rgba(255, 173, 37, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--ink);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: "Manrope", "Avenir Next", Avenir, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 69% 42%, rgba(90, 0, 28, 0.26), transparent 34%),
    var(--ink);
}

.site-shell::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 32%,
    rgba(5, 5, 6, 0.18) 46%,
    rgba(5, 5, 6, 0.92) 66%,
    var(--ink) 88%
  );
}

.brand-stage {
  position: absolute;
  z-index: -2;
  inset: 0 auto 0 0;
  width: min(70vw, 100svh);
  min-width: 680px;
  background: var(--wine-deep) url("assets/tuma-logo.jpg") center / cover no-repeat;
  animation: stage-arrival 1.25s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.brand-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 68%, rgba(5, 5, 6, 0.55)),
    linear-gradient(180deg, rgba(5, 5, 6, 0.1), transparent 24%, transparent 74%, rgba(5, 5, 6, 0.2));
}

.announcement {
  position: relative;
  width: min(100%, 560px);
  min-height: 100svh;
  margin-left: auto;
  padding: clamp(32px, 5vw, 72px) clamp(28px, 5.2vw, 80px) clamp(32px, 4vw, 58px);
  display: flex;
  flex-direction: column;
}

.organization {
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.message {
  width: 100%;
  max-width: 430px;
  margin: auto 0;
  padding: clamp(44px, 8vh, 90px) 0;
}

.status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.equalizer {
  width: 26px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.equalizer i {
  width: 2px;
  height: 100%;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  animation: pulse 1.2s ease-in-out infinite alternate;
}

.equalizer i:nth-child(2) {
  animation-delay: -0.7s;
}

.equalizer i:nth-child(3) {
  animation-delay: -0.35s;
}

.equalizer i:nth-child(4) {
  animation-delay: -0.9s;
}

h1 {
  max-width: 9ch;
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(4.5rem, 6.2vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-wrap: balance;
}

.intro {
  max-width: 34ch;
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: clamp(0.94rem, 1.2vw, 1.04rem);
  line-height: 1.75;
}

.credit {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 16px;
}

.credit > span {
  padding-bottom: 10px;
  color: #b2a7aa;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.digitalroots-card {
  width: 176px;
  height: 99px;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: transparent;
}

.digitalroots-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

@keyframes stage-arrival {
  from {
    opacity: 0;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scaleY(0.26);
  }
  100% {
    transform: scaleY(1);
  }
}

@media (max-width: 840px) {
  .site-shell {
    min-height: 100svh;
    overflow: visible;
    background: var(--ink);
  }

  .site-shell::after {
    background: linear-gradient(
      180deg,
      transparent 32%,
      rgba(5, 5, 6, 0.42) 46%,
      var(--ink) 61%
    );
  }

  .brand-stage {
    inset: 0 0 auto;
    width: 100%;
    min-width: 0;
    height: clamp(300px, 41svh, 390px);
    background-position: center;
  }

  .brand-stage::after {
    background: linear-gradient(180deg, rgba(5, 5, 6, 0.05), transparent 54%, var(--ink));
  }

  .announcement {
    width: 100%;
    min-height: 100svh;
    padding: calc(clamp(300px, 41svh, 390px) - 24px) clamp(22px, 7vw, 54px) 28px;
    display: block;
  }

  .organization {
    position: relative;
    width: fit-content;
    padding: 9px 12px;
    border-left: 2px solid var(--gold);
    background: rgba(5, 5, 6, 0.86);
  }

  .message {
    max-width: 520px;
    margin: 36px 0 24px;
    padding: 0;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3.4rem, 14vw, 4.75rem);
  }

  .intro {
    max-width: 31ch;
    margin-top: 22px;
    padding-top: 20px;
  }

  .credit {
    justify-content: flex-start;
  }
}

@media (max-width: 380px) {
  .announcement {
    padding-right: 18px;
    padding-left: 18px;
  }

  h1 {
    font-size: 3.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-stage,
  .equalizer i {
    animation: none;
  }
}
