:root {
  --bg: #0a0e1a;
  --ink: #ffffff;
  --ink-dim: rgba(255, 255, 255, 0.72);
  --ink-faint: rgba(255, 255, 255, 0.55);
  --accent: #06b6d4;
  --accent-hover: #22d3ee;
  --border: rgba(255, 255, 255, 0.12);
}

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

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: slow-zoom 30s ease-in-out infinite alternate;
}

@keyframes slow-zoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,14,26,0.55) 0%, rgba(10,14,26,0.75) 60%, rgba(10,14,26,0.92) 100%),
    linear-gradient(90deg, rgba(10,14,26,0.6) 0%, rgba(10,14,26,0.2) 50%, rgba(10,14,26,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 780px;
  margin: auto 0;
}

.brand {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.tagline {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: var(--ink-dim);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.notify {
  max-width: 520px;
  margin-bottom: 3rem;
}

.notify-label {
  font-size: 0.875rem;
  color: var(--ink-faint);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.notify-form {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.375rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.notify-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  outline: none;
}

.notify-form input[type="email"]::placeholder {
  color: var(--ink-faint);
}

.notify-form button {
  background: var(--accent);
  color: #03212c;
  border: none;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease;
}

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

.hp { position: absolute; left: -10000px; }

.notify-success {
  font-size: 1rem;
  color: var(--accent);
  padding: 1rem 0;
}

.categories {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.categories li {
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.hero-footer {
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--ink-faint);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.hero-footer a { color: var(--ink-dim); text-decoration: none; border-bottom: 1px solid var(--border); }
.hero-footer a:hover { color: var(--ink); }
.hero-footer .dot { color: var(--ink-faint); }

@media (max-width: 600px) {
  .notify-form { flex-direction: column; padding: 0.5rem; }
  .notify-form button { width: 100%; padding: 0.9rem; }
  .hero-footer { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .hero-footer .dot { display: none; }
}
