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

:root {
  --accent: #E21A25;
  --text: #111;
  --muted: #6b6b6b;
}

html, body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: #fff;
}

.bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: url('img/bgs/glass-background-with-reeded-pattern.jpg') center / cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

.container {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.container.loaded {
  opacity: 1;
}

.logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 20px;
  font-weight: 500;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

.subtitle {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 36px;
  font-weight: 400;
}

.waitlist {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  width: min(520px, 92vw);
  gap: 6px;
}

.waitlist input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 14px 20px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
}

.waitlist input::placeholder {
  color: #999;
}

.waitlist button {
  border: none;
  background: #111;
  color: #fff;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
}

.waitlist button:hover {
  background: var(--accent);
}

.waitlist button:disabled {
  cursor: default;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
