:root {
  --bg-deep: #05070d;
  --bg-navy: #0a0e1a;
  --bg-elev: #0f1424;
  --cyan: #00f5ff;
  --cyan-soft: #6df3ff;
  --violet: #8b5cf6;
  --violet-soft: #a78bfa;
  --white: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.55);
  --text-faint: rgba(255, 255, 255, 0.35);
  --glass-bg: rgba(15, 20, 36, 0.45);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-bright: rgba(0, 245, 255, 0.25);
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --sans: "Space Grotesk", system-ui, -apple-system, sans-serif;
}

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

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  background: var(--bg-navy);
  color: var(--white);
  font-family: var(--sans);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(139, 92, 246, 0.12), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 60%, rgba(0, 245, 255, 0.08), transparent 70%),
    radial-gradient(circle at 20% 20%, rgba(0, 245, 255, 0.04), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05), transparent 50%);
  background-color: var(--bg-navy);
  position: relative;
}

/* Subtle scanline / grain feel */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.012) 0px,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 3px
    );
  z-index: 1;
  mix-blend-mode: overlay;
}

#neural-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.85;
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(5, 7, 13, 0.55) 80%,
    rgba(5, 7, 13, 0.9) 100%
  );
}


.scene {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  justify-items: center;
  padding: clamp(20px, 4vh, 48px) clamp(24px, 6vw, 96px);
  gap: clamp(12px, 2.4vh, 32px);
}


.status-panel {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.6vh, 18px);
  animation: fadeInDown 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.status-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 32px rgba(0, 0, 0, 0.3);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan), 0 0 16px var(--cyan);
  animation: dotPulse 1.6s ease-in-out infinite;
}

.status-label {
  color: var(--cyan-soft);
  font-weight: 500;
}

.status-divider {
  width: 1px;
  height: 10px;
  background: var(--glass-border);
}

.status-id {
  color: var(--text-dim);
}

.status-uptime {
  color: var(--violet-soft);
  font-variant-numeric: tabular-nums;
  min-width: 7ch;
  text-align: left;
}

.title {
  font-family: var(--mono);
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  background: linear-gradient(180deg, #ffffff 0%, #b9d6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  text-shadow: 0 0 40px rgba(0, 245, 255, 0.25);
  filter: drop-shadow(0 0 24px rgba(0, 245, 255, 0.35));
}

.title-text {
  display: inline-block;
  animation: titleGlow 3.2s ease-in-out infinite;
}

.title-caret {
  display: inline-block;
  width: 3px;
  height: 0.75em;
  background: var(--cyan);
  -webkit-text-fill-color: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: caretBlink 1s steps(2) infinite;
  align-self: center;
  transform: translateY(2px);
}

.subtitle {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 18px;
}

.subtitle-prefix {
  color: var(--cyan);
  font-weight: 500;
  text-shadow: 0 0 8px var(--cyan);
}

.subtitle-text {
  color: rgba(255, 255, 255, 0.78);
}

.subtitle-caret {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: caretBlink 0.9s steps(2) infinite;
}


.orb-stage {
  position: relative;
  width: min(clamp(220px, 38vmin, 520px), 56vh);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  animation: stageFloat 6s ease-in-out infinite,
             fadeInUp 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.ring {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.ring svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ring-outer {
  animation: spin 28s linear infinite;
  filter: drop-shadow(0 0 6px rgba(0, 245, 255, 0.4));
}

.ring-mid {
  width: 73%;
  height: 73%;
  animation: spinReverse 18s linear infinite;
  filter: drop-shadow(0 0 6px rgba(139, 92, 246, 0.5));
}

.ring-inner {
  width: 50%;
  height: 50%;
  animation: spin 10s linear infinite;
  filter: drop-shadow(0 0 8px rgba(0, 245, 255, 0.55));
}

/* Orbiting dots — each orbit is a wrapper that rotates;
   the dot sits offset on the edge so rotation drags it around */
.orbit {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 6px var(--cyan),
    0 0 14px var(--cyan),
    0 0 28px rgba(0, 245, 255, 0.6);
}

/* Outer ring orbits (radius matches outer ring) */
.orbit-1 .orbit-dot {
  transform: translate(0, calc(-1 * (var(--orbit-r-outer, 47%))));
  background: var(--cyan);
}
.orbit-2 .orbit-dot {
  transform: translate(0, calc(-1 * (var(--orbit-r-outer, 47%))));
  background: var(--violet);
  box-shadow:
    0 0 6px var(--violet),
    0 0 14px var(--violet),
    0 0 28px rgba(139, 92, 246, 0.7);
}

/* Mid ring orbits */
.orbit-3 .orbit-dot,
.orbit-4 .orbit-dot {
  transform: translate(0, calc(-1 * (var(--orbit-r-mid, 35%))));
}
.orbit-4 .orbit-dot {
  background: var(--violet);
  box-shadow:
    0 0 6px var(--violet),
    0 0 14px var(--violet),
    0 0 28px rgba(139, 92, 246, 0.7);
}

/* Inner ring orbits */
.orbit-5 .orbit-dot,
.orbit-6 .orbit-dot {
  width: 6px;
  height: 6px;
  transform: translate(0, calc(-1 * (var(--orbit-r-inner, 23%))));
}
.orbit-6 .orbit-dot {
  background: var(--violet);
  box-shadow:
    0 0 5px var(--violet),
    0 0 12px var(--violet),
    0 0 22px rgba(139, 92, 246, 0.7);
}

/* Different speeds, alternating directions; offsets to spread dots */
.orbit-1 { animation: orbitSpin 14s linear infinite; }
.orbit-2 { animation: orbitSpin 14s linear infinite; animation-delay: -7s; }
.orbit-3 { animation: orbitSpinReverse 9s linear infinite; }
.orbit-4 { animation: orbitSpinReverse 9s linear infinite; animation-delay: -4.5s; }
.orbit-5 { animation: orbitSpin 5s linear infinite; }
.orbit-6 { animation: orbitSpin 5s linear infinite; animation-delay: -2.5s; }

.trail-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
}


.orb {
  position: relative;
  width: 36%;
  height: 36%;
  display: grid;
  place-items: center;
  animation: orbBreathe 3.6s ease-in-out infinite;
}

.orb-glow {
  position: absolute;
  inset: -120%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 245, 255, 0.45) 0%, rgba(0, 245, 255, 0.18) 25%, transparent 60%),
    radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
  filter: blur(20px);
  animation: glowPulse 3.6s ease-in-out infinite;
}

.orb-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95) 0%, rgba(109, 243, 255, 0.8) 18%, rgba(0, 245, 255, 0.55) 38%, rgba(139, 92, 246, 0.45) 65%, rgba(20, 16, 60, 0.9) 95%);
  box-shadow:
    inset 0 0 30px rgba(255, 255, 255, 0.3),
    inset 0 0 60px rgba(0, 245, 255, 0.4),
    0 0 40px rgba(0, 245, 255, 0.6),
    0 0 80px rgba(139, 92, 246, 0.4),
    0 0 120px rgba(0, 245, 255, 0.25);
}

.orb-shine {
  position: absolute;
  top: 12%;
  left: 18%;
  width: 32%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.7), transparent 70%);
  filter: blur(4px);
  animation: shineDrift 5s ease-in-out infinite;
}

.orb-grid {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.6;
  animation: gridSpin 20s linear infinite;
  mix-blend-mode: screen;
}

.orb-grid svg {
  width: 100%;
  height: 100%;
}


.progress-panel {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.4vh, 14px);
  padding: clamp(14px, 2.2vh, 22px) clamp(18px, 2.5vw, 26px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 30px rgba(0, 245, 255, 0.04),
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 245, 255, 0.05);
  animation: fadeInUp 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s both;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
}

.meta-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--text-faint);
}

.meta-value {
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 14px rgba(0, 245, 255, 0.5);
}

.meta-unit {
  color: var(--cyan);
  font-size: 16px;
  margin-left: 2px;
}

.progress-bar {
  position: relative;
  height: 6px;
  border-radius: 999px;
  overflow: visible;
}

.progress-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.progress-track::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 245, 255, 0.06) 50%,
    transparent 100%
  );
  animation: trackShimmer 2.4s linear infinite;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--violet) 0%,
    var(--cyan) 60%,
    #ffffff 100%
  );
  box-shadow:
    0 0 8px rgba(0, 245, 255, 0.8),
    0 0 16px rgba(0, 245, 255, 0.5),
    0 0 24px rgba(139, 92, 246, 0.4);
  transition: width 0.05s linear;
}

.progress-fill::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -3px;
  bottom: -3px;
  width: 16px;
  background: radial-gradient(ellipse at left center, rgba(255, 255, 255, 0.95), transparent 70%);
  filter: blur(2px);
}

.progress-glow {
  position: absolute;
  top: -8px;
  left: 0;
  height: calc(100% + 16px);
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 245, 255, 0.25) 80%,
    rgba(255, 255, 255, 0.4) 100%
  );
  filter: blur(10px);
  pointer-events: none;
  transition: width 0.05s linear;
}

.progress-ticks {
  position: absolute;
  inset: -4px 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.progress-ticks span {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-ticks span:nth-child(odd) {
  background: rgba(255, 255, 255, 0.14);
}

.progress-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.footer-chip:nth-child(2),
.footer-chip:nth-child(3) {
  text-transform: none;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
}

.chip-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 8px var(--violet);
  animation: dotPulse 1.4s ease-in-out infinite;
}

.chip-mono {
  font-variant-numeric: tabular-nums;
}


.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  /* The loader IS the dark backdrop — it carries bg color
     so the navy doesn't bleed through to the homepage */
  background: var(--bg-navy);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(139, 92, 246, 0.12), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 60%, rgba(0, 245, 255, 0.08), transparent 70%);
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
              transform 1.4s cubic-bezier(0.65, 0, 0.35, 1),
              filter 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform, filter;
}

/* The "curtain pull": loader fades + scales up + blurs out, like the
   camera passing through it */
.loader.revealing {
  opacity: 0;
  transform: scale(1.08);
  filter: blur(24px);
  pointer-events: none;
}

/* Soft white wash that sweeps in just before the loader retreats */
.loader::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.85) 0%,
    rgba(255, 255, 255, 0.4) 30%,
    transparent 70%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-out;
}

.loader.flashing::after {
  opacity: 1;
  transition: opacity 0.35s ease-out;
}


@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes orbitSpinReverse {
  from { transform: rotate(0deg); }
  to   { transform: rotate(-360deg); }
}

@keyframes orbBreathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.85;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes shineDrift {
  0%, 100% { transform: translate(0, 0); opacity: 0.7; }
  50%      { transform: translate(8%, -4%); opacity: 0.95; }
}

@keyframes gridSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes stageFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

@keyframes titleGlow {
  0%, 100% { filter: brightness(1); }
  50%      { filter: brightness(1.2); }
}

@keyframes caretBlink {
  0%, 50%   { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

@keyframes trackShimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}


.homepage {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: var(--bg-navy);
  background-image:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(0, 245, 255, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 100%, rgba(139, 92, 246, 0.10), transparent 60%);
  color: var(--white);
  font-family: var(--sans);
  overflow: hidden;
  padding: clamp(20px, 3vw, 40px) clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 6vh, 80px);
  opacity: 0;
  transform: scale(0.985);
  pointer-events: none;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
              transform 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s;
}

.homepage.revealed {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* Subtle grain like loader */
.homepage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.012) 0px,
    rgba(255, 255, 255, 0.012) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: overlay;
}

/* Stagger children entrance */
.homepage > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.homepage.revealed > *:nth-child(1) { transition-delay: 0.5s; }
.homepage.revealed > *:nth-child(2) { transition-delay: 0.8s; }
.homepage.revealed > *:nth-child(3) { transition-delay: 1.1s; }
.homepage.revealed > * {
  opacity: 1;
  transform: translateY(0);
}

/* Nav */
.home-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.home-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 35% 30%, #ffffff 0%, var(--cyan) 35%, var(--violet) 100%);
  box-shadow:
    inset 0 0 6px rgba(255, 255, 255, 0.4),
    0 0 12px rgba(0, 245, 255, 0.5);
}

.brand-name {
  font-weight: 500;
}
.brand-dot {
  color: var(--cyan);
}

.nav-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--text-faint);
}

/* Hero */
.hero {
  flex: 1;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  position: relative;
  z-index: 2;
}

.hero-meta {
  margin-bottom: 28px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  text-transform: uppercase;
}

.hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80, 0 0 16px rgba(74, 222, 128, 0.6);
  animation: dotPulse 1.8s ease-in-out infinite;
}

.hero-name {
  font-family: var(--sans);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-line {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #c9d8f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-tagline {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 640px;
  margin-bottom: 36px;
  text-wrap: pretty;
}
.hero-accent {
  color: var(--cyan-soft);
  text-shadow: 0 0 12px rgba(0, 245, 255, 0.3);
}

/* Notify form */
.notify-form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.notify-input {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.notify-input::placeholder {
  color: var(--text-faint);
}

.notify-input:focus {
  border-color: var(--glass-border-bright);
  box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.08);
}

.notify-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(0, 245, 255, 0.95), rgba(0, 200, 255, 0.85));
  color: #06121a;
  font-weight: 500;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 24px rgba(0, 245, 255, 0.3),
    0 0 40px rgba(0, 245, 255, 0.2);
  transition: all 0.25s ease;
}

.notify-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 12px 32px rgba(0, 245, 255, 0.4),
    0 0 50px rgba(0, 245, 255, 0.3);
}

.notify-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.notify-btn:hover .notify-arrow {
  transform: translateX(3px);
}

/* Footer */
.home-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 8px;
  border-top: 1px solid var(--glass-border);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-top: auto;
}

.footer-mono {
  color: var(--text-dim);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}
