@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --bg:        #0a0a0a;
  --surface:   #131313;
  --lime:      #c2ed00;
  --lime-dim:  #8fb000;
  --white:     #ffffff;
  --muted:     rgba(255,255,255,0.45);
}

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

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

/* ── Background layers ── */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(194,237,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(194,237,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  animation: orb-drift 18s ease-in-out infinite alternate;
}

.bg-orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(194,237,0,0.12) 0%, transparent 70%);
  animation-duration: 20s;
}

.bg-orb-2 {
  width: 500px; height: 500px;
  bottom: -180px; right: -120px;
  background: radial-gradient(circle, rgba(194,237,0,0.10) 0%, transparent 70%);
  animation-duration: 26s;
  animation-delay: -8s;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 40px) scale(1.15); }
}

/* ── Layout ── */
.page {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
}

/* ── Logo ── */
.logo-wrap {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.logo-wrap img {
  width: clamp(200px, 50vw, 380px);
  height: auto;
  display: block;
}

/* ── Divider ── */
.divider {
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, transparent, var(--lime), transparent);
  margin: 40px auto;
  animation: line-grow 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

@keyframes line-grow {
  to { height: 64px; }
}

/* ── Headline ── */
.headline {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  animation: reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

.headline em {
  font-style: normal;
  color: var(--lime);
}

/* ── Subline ── */
.subline {
  margin-top: 16px;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  opacity: 0;
  transform: translateY(16px);
  animation: reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.0s forwards;
}

/* ── Status pill ── */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  padding: 10px 20px;
  border: 1px solid rgba(194,237,0,0.25);
  border-radius: 999px;
  background: rgba(194,237,0,0.06);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  opacity: 0;
  animation: reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
}

.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(194,237,0,0.6);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(194,237,0,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(194,237,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(194,237,0,0); }
}

/* ── Contact ── */
.contact {
  position: fixed;
  bottom: 36px;
  left: 0;
  right: 0;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  animation: reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.5s forwards;
  white-space: nowrap;
}

.contact a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact a:hover { color: var(--lime); }

.contact a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
  border-radius: 4px;
}

.contact a:active { opacity: 0.7; }

.contact-sep {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
}

.contact svg {
  width: 14px; height: 14px;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── Shared reveal ── */
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .contact {
    flex-direction: column;
    gap: 16px;
    bottom: 28px;
  }
  .contact-sep { display: none; }
}
