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

:root {
  --steel: #b0b8be;
  --dark: #0e0f10;
  --mid: #1a1c1e;
  --accent: #c8a850;
  --light: #e8eaec;
}

body {
  background: var(--dark);
  color: var(--light);
  font-family: 'DM Mono', monospace;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(2rem, 8vw, 6rem);
  overflow: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.012) 2px,
    rgba(255,255,255,0.012) 4px
  );
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: 'METALL';
  position: fixed;
  right: -0.1em;
  bottom: -0.15em;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(8rem, 22vw, 22rem);
  color: rgba(176,184,190,0.04);
  line-height: 1;
  letter-spacing: -0.02em;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.rule {
  width: 3rem;
  height: 1px;
  background: var(--accent);
  margin-bottom: 2.5rem;
  animation: expand 1s ease forwards;
  transform-origin: left;
}

@keyframes expand {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

.label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--light);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

h1 span {
  display: block;
  color: var(--accent);
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--mid) 0%, rgba(176,184,190,0.3) 40%, transparent 100%);
  margin: 2rem 0;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.status {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.status::before {
  content: '▸ ';
  color: var(--accent);
}

address {
  font-style: normal;
  font-size: 0.8rem;
  line-height: 2;
  color: var(--steel);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

address a {
  color: var(--light);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,168,80,0.4);
  padding-bottom: 1px;
  transition: border-color 0.2s, color 0.2s;
}

address a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.corner {
  position: fixed;
  width: 18px;
  height: 18px;
  opacity: 0.25;
}
.corner.tl { top: 1.5rem; left: 1.5rem; border-top: 1px solid var(--steel); border-left: 1px solid var(--steel); }
.corner.tr { top: 1.5rem; right: 1.5rem; border-top: 1px solid var(--steel); border-right: 1px solid var(--steel); }
.corner.bl { bottom: 1.5rem; left: 1.5rem; border-bottom: 1px solid var(--steel); border-left: 1px solid var(--steel); }
.corner.br { bottom: 1.5rem; right: 1.5rem; border-bottom: 1px solid var(--steel); border-right: 1px solid var(--steel); }
