/* === Redaction font grades — italic only === */
@font-face {
  font-family: 'Redaction';
  src: url('fonts/Redaction-Italic.woff2') format('woff2');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Redaction 10';
  src: url('fonts/Redaction10-Italic.woff2') format('woff2');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Redaction 20';
  src: url('fonts/Redaction20-Italic.woff2') format('woff2');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Redaction 35';
  src: url('fonts/Redaction35-Italic.woff2') format('woff2');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Redaction 50';
  src: url('fonts/Redaction50-Italic.woff2') format('woff2');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Redaction 70';
  src: url('fonts/Redaction70-Italic.woff2') format('woff2');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Redaction 100';
  src: url('fonts/Redaction100-Italic.woff2') format('woff2');
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  color: #000;
  -webkit-font-smoothing: antialiased;
}



/* === Main content === */
#content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 32px;
}

/* === Logo === */
#logo {
  display: block;
  width: clamp(180px, 22vw, 320px);
  height: auto;
  pointer-events: none;
  user-select: none;
}

/* === Coming Soon text (smaller) === */
#coming-soon {
  position: relative;
  display: inline-block;
  font-family: 'Redaction', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 2.4vw, 36px);
  letter-spacing: 0.06em;
  color: #000;
  user-select: none;
}

/* Keep "Coming Soon" as the centering anchor */
.text-center {
  display: inline;
}

/* === Dots positioned outside the centered text === */
.loading-dots {
  position: absolute;
  left: 100%;
  bottom: 0;
  white-space: nowrap;
}

.loading-dots .dot {
  display: inline-block;
  opacity: 0;
  animation: loadDot 1.5s infinite step-end;
}

.loading-dots .dot:nth-child(1) {
  animation-delay: 0s;
}
.loading-dots .dot:nth-child(2) {
  animation-delay: 0.35s;
}
.loading-dots .dot:nth-child(3) {
  animation-delay: 0.7s;
}

@keyframes loadDot {
  0%   { opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { opacity: 0; }
}

/* === Footer === */
#footer {
  position: fixed;
  bottom: 24px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(0, 0, 0, 0.35);
  user-select: none;
}
