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

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255,77,184,0.26), transparent 36%),
    radial-gradient(circle at top right, rgba(44,230,255,0.18), transparent 28%),
    radial-gradient(circle at bottom center, rgba(255,180,50,0.16), transparent 34%),
    #11060d;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.landing {
  min-height: 100vh;
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 8px;
}

.brand-name {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 1px;
}

.brand-tagline {
  color: #fff;
  font-size: 13px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(90deg, rgba(255,77,184,0.18), rgba(44,230,255,0.12));
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(3rem, 10vw, 5.5rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

h1 span {
  display: block;
  background: linear-gradient(90deg, #ff4db8 0%, #ff7a18 42%, #ffd93d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  color: #fff;
  margin-bottom: 16px;
  font-size: 18px;
  max-width: 680px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.loader {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff5fb;
  font-size: 14px;
  margin-top: 4px;
}

.loader-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4db8, #2ce6ff);
  box-shadow: 0 0 24px rgba(255,77,184,0.55);
  animation: pulse 1.1s ease-in-out infinite alternate;
}

footer {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: #fff;
}

footer a {
  color: #fff;
  margin-right: 16px;
  text-decoration: none;
}

@keyframes pulse {
  from { transform: scale(0.9); opacity: 0.7; }
  to { transform: scale(1.15); opacity: 1; }
}

/* Load-error fallback (shown when Flutter bootstrap times out) */
.load-error {
  padding: 40px 24px;
  max-width: 680px;
  margin: 0 auto;
}

.load-error h1 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.load-error .load-error-msg {
  color: #fff;
  margin-bottom: 16px;
}

.load-error .load-error-sub {
  color: #fff;
  font-size: 14px;
}

.load-error a {
  color: #f59e0b;
}

#audio-toggle-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

#audio-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.05);
}
