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

:root {
  --black: #0a0a0a;
  --white: #f5f3ee;
  --accent: #e8571a;
  --muted: #555;
}

html, body {
  height: 100%;
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow: auto;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

/* Grid background */
.grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,87,26,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,87,26,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
  z-index: 0;
}

@keyframes gridMove {
  0%   { transform: translateY(0); }
  100% { transform: translateY(60px); }
}

/* Glow blob */
.blob {
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,87,26,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50%       { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
}

/* Nozzle drip */
.nozzle-drip {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: drip 2s ease-out forwards 0.1s;
  z-index: 0;
}

@keyframes drip {
  to { height: 40vh; }
}

/* Corner labels */
.corner {
  position: fixed;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.8s;
}

.corner-tl { top: 2rem; left: 2rem; }
.corner-br { bottom: 2rem; right: 2rem; }

/* Container */
.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 700px;
  width: 100%;
}

/* Logo */
.logo-mark {
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}

.logo-mark img {
  width: 200px;
  height: 200px;
  object-fit: contain;
}

/* Brand name */
.brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 15vw, 10rem);
  letter-spacing: 0.05em;
  line-height: 0.9;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}

.brand span {
  color: var(--accent);
}

/* Divider */
.divider {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 1.5rem auto;
  animation: expandLine 1s ease forwards 0.9s;
}

@keyframes expandLine {
  to { width: 300px; }
}

/* Tagline */
.tagline {
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1s;
}

/* Coming soon */
.coming-soon {
  margin-top: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.2s;
}

.coming-soon p {
  font-size: 1rem;
  color: var(--white);
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.7;
}

.coming-soon p strong {
  color: var(--accent);
  font-weight: 500;
}

/* Social links */
.social {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 1.4s;
}

.social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  background: rgba(255,255,255,0.03);
}

.social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232,87,26,0.08);
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Mobile */
@media (max-width: 600px) {
  .corner-br { display: none; }
  .social { flex-direction: column; align-items: center; }
  .social a { width: 80%; justify-content: center; }
  .logo-mark img { width: 140px; height: 140px; }
}

.logo-mark img {
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.3));
}