/* =============================================
   Base & Reset
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:          #0a1a0f;
  --lime:        #aaff00;
  --lime-dim:    rgba(170, 255, 0, 0.12);
  --lime-glow:        rgba(170, 255, 0, 0.35);
  --lime-glow-strong: rgba(170, 255, 0, 0.55);
  --white:       #ffffff;
  --white-dim:   rgba(255, 255, 255, 0.55);
  --white-border: rgba(255, 255, 255, 0.12);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-italic:  'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

html, body {
  height: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* =============================================
   Top Status Bar
   ============================================= */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  position: sticky;
  top: 0;
  z-index: 50;
  animation: fadeDown 0.7s ease both;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--lime);
  border-radius: 999px;
  padding: 0.4rem 1.1rem;
}

.topbar-icon {
  font-size: 0.85rem;
}

.topbar-location {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* =============================================
   Hero
   ============================================= */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  text-align: center;
  gap: 3rem;
}

/* =============================================
   Headline Block
   ============================================= */
.headline-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeUp 0.9s ease 0.1s both;
}

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

.hl-white {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
}

.hl-subtitle {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.2rem, 4vw, 2.2rem);
  color: var(--lime);
}

/* =============================================
   Bottom Row
   ============================================= */
.bottom-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  animation: fadeUp 0.9s ease 0.4s both;
}

.bottom-desc {
  max-width: 500px;
}

.bottom-desc p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--white-dim);
  line-height: 1.6;
}

.bottom-desc strong {
  color: var(--white);
  font-weight: 600;
}

/* =============================================
   CTA Buttons
   ============================================= */
.bottom-cta {
  display: flex;
  justify-content: center;
}

.cta-fallback {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--white-dim);
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--lime);
  border-radius: 999px;
  padding: 1rem 2rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 20px var(--lime-glow);
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--lime-glow-strong);
}

.btn-arrow {
  font-size: 1.1rem;
}

/* =============================================
   Footer
   ============================================= */
.footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--white-border);
}

.footer p {
  font-size: 0.8rem;
  color: var(--white-dim);
  letter-spacing: 0.04em;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 480px) {
  .hero {
    padding: 1.5rem;
    gap: 2rem;
  }

  .hl-white {
    font-size: 2.8rem;
  }

  .hl-subtitle {
    font-size: 1.4rem;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
  }
}
