:root {
  --primary: #022c43;
  --secondary: #053f5e;
  --accent: #115173;
  --highlight: #ffd700;
  --paper: #f7f8f4;
  --mist: #edf4f5;
  --ink: #102331;
  --muted: #5d7180;
  --white: #fff;
  --radius: 12px;
  --shadow: 0 24px 60px rgba(2, 44, 67, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--paper);
  background: radial-gradient(circle at 50% 0%, var(--accent) 0%, var(--primary) 45%, #01202f 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Decorative background layers */
.bg-glow {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 12%, rgba(255, 215, 0, 0.16) 0%, transparent 55%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
}

/* Header */
.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem clamp(1.25rem, 5vw, 4rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-mark {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
}

.brand-name {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.brand-accent {
  color: var(--highlight);
  margin-left: 2px;
}

.powered {
  font-size: 0.8rem;
  color: rgba(247, 248, 244, 0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 4rem) 3rem;
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
}

.hero-logo {
  width: clamp(72px, 12vw, 96px);
  height: auto;
  margin-bottom: 1.75rem;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.35));
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--highlight);
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.06);
  margin-bottom: 1.75rem;
}

.headline {
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.headline .accent {
  color: var(--highlight);
  font-style: italic;
}

.subhead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(247, 248, 244, 0.78);
  max-width: 640px;
  margin-bottom: 2.75rem;
}

/* Stats */
.stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 720px;
  margin-bottom: 3rem;
}

.stats li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.06), rgba(2, 44, 67, 0.4));
  backdrop-filter: blur(6px);
}

.stats strong {
  font-family: "EB Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--highlight);
  font-weight: 700;
}

.stats span {
  font-size: 0.78rem;
  color: rgba(247, 248, 244, 0.65);
  line-height: 1.35;
}

/* Notify form */
.notify {
  display: flex;
  gap: 0.6rem;
  width: 100%;
  max-width: 460px;
  margin-bottom: 0.85rem;
}

.notify input {
  flex: 1;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}

.notify input::placeholder {
  color: rgba(247, 248, 244, 0.45);
}

.notify input:focus {
  outline: none;
  border-color: var(--highlight);
  background: rgba(255, 255, 255, 0.1);
}

.notify button {
  padding: 0.95rem 1.6rem;
  border: none;
  border-radius: var(--radius);
  background: var(--highlight);
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.notify button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.notify-note {
  font-size: 0.85rem;
  color: rgba(247, 248, 244, 0.55);
  margin-bottom: 2.5rem;
  min-height: 1.2em;
  transition: color 0.2s;
}

.notify-note.success {
  color: var(--highlight);
  font-weight: 600;
}

.cta-secondary {
  color: rgba(247, 248, 244, 0.8);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.cta-secondary:hover {
  color: var(--highlight);
  border-color: var(--highlight);
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.5rem clamp(1.25rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(247, 248, 244, 0.5);
}

.site-footer a {
  color: rgba(247, 248, 244, 0.7);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--highlight);
}

/* Accessibility helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (max-width: 640px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .notify {
    flex-direction: column;
  }
  .powered {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
