/* Pixelei Bastian Fink — coming soon
   Palette: accent #f68606 · bg #fcfcfb · text #52514e · hairline #ebe7de */

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', system-ui, sans-serif;
  background: #fcfcfb;
  color: #52514e;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #f68606;
  text-decoration: none;
}

a:hover {
  color: #52514e;
}

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

@keyframes pulseDot {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@keyframes slideBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Layout shell */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fcfcfb;
  position: relative;
  overflow: hidden;
}

/* Subtle grid backdrop echoing the logo's pixel motif */
.page__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#f5f2ec 1px, transparent 1px),
    linear-gradient(90deg, #f5f2ec 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
  pointer-events: none;
}

/* Shared eyebrow treatment: uppercase mono, wide tracking */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Header */

.header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  font-size: 12px;
  color: #a09e97;
}

.header__status {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #f68606;
  animation: pulseDot 2s ease-in-out infinite;
}

/* Main */

.main {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 48px 80px;
  text-align: center;
}

.fade-up {
  animation: fadeUp 0.9s ease-out both;
}

.fade-up--delay-1 { animation-delay: 0.15s; }
.fade-up--delay-2 { animation-delay: 0.3s; }

.logo {
  max-width: 720px;
  width: 100%;
}

.logo__img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto 56px;
}

.intro {
  max-width: 620px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px;
  border: 1px solid #ebe7de;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b8983;
  margin-bottom: 32px;
}

.badge__mark {
  color: #f68606;
}

.headline {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.25;
  color: #2e2d2b;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.headline__accent {
  font-weight: 500;
  color: #f68606;
}

.lead {
  font-size: 17px;
  line-height: 1.6;
  color: #6b6a65;
  margin: 0 auto;
  max-width: 480px;
  text-wrap: pretty;
}

/* Progress bar */

.progress {
  margin-top: 56px;
  width: 100%;
  max-width: 320px;
}

.progress__track {
  position: relative;
  height: 3px;
  background: #ebe7de;
  overflow: hidden;
}

.progress__bar {
  position: absolute;
  inset: 0;
  width: 40%;
  background: #f68606;
  animation: slideBar 2.8s ease-in-out infinite;
}

/* Footer */

.footer {
  position: relative;
  padding: 28px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: flex-start;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #a09e97;
  letter-spacing: 0.04em;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__col--center { text-align: center; }
.footer__col--right { text-align: right; }

.footer__label {
  color: #6b6a65;
  font-size: 11px;
}

.footer__value {
  color: #52514e;
}

.footer__address {
  color: #52514e;
  line-height: 1.7;
}
