:root {
  --bg-deep: #05070d;
  --bg-slate: #0a0f1a;
  --slate-panel: #0e1524;
  --cyan: #b565ff;
  --blue: #7c3aed;
  --cyan-dim: rgba(181, 101, 255, 0.35);
  --text-primary: #e8f4ff;
  --text-muted: #7d90ab;
  --border-glow: rgba(181, 101, 255, 0.25);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: radial-gradient(ellipse at 50% -10%, #0f1d33 0%, var(--bg-slate) 45%, var(--bg-deep) 100%);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
}

/* --- Ambient background layers --- */

.grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(181, 101, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(181, 101, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 75%);
}

.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.glow-a {
  width: 520px;
  height: 520px;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan);
  animation: drift-a 12s ease-in-out infinite;
}

.glow-b {
  width: 420px;
  height: 420px;
  bottom: -160px;
  right: -100px;
  background: var(--blue);
  animation: drift-b 14s ease-in-out infinite;
}

@keyframes drift-a {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.35; }
  50% { transform: translateX(-46%) translateY(30px); opacity: 0.5; }
}

@keyframes drift-b {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  50% { transform: translate(-20px, -20px); opacity: 0.45; }
}

/* --- Layout --- */

.stage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 880px;
  padding: 48px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 56px;
}

/* --- Brand mark / status pill --- */

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--border-glow);
  border-radius: 999px;
  background: rgba(181, 101, 255, 0.04);
  backdrop-filter: blur(6px);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--cyan);
  text-transform: uppercase;
}

.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px 2px var(--cyan-dim);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

/* --- Hero --- */

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-line {
  font-size: clamp(2.6rem, 9vw, 5.5rem);
  color: var(--text-primary);
}

.hero-line-accent {
  color: var(--cyan);
  text-shadow:
    0 0 10px rgba(181, 101, 255, 0.7),
    0 0 30px rgba(181, 101, 255, 0.45),
    0 0 60px rgba(124, 58, 237, 0.35);
  animation: flicker 6s linear infinite;
}

@keyframes flicker {
  0%, 92%, 100% { opacity: 1; }
  93% { opacity: 0.7; }
  94% { opacity: 1; }
  95% { opacity: 0.6; }
  96% { opacity: 1; }
}

.hero-tagline {
  margin: 22px auto 0;
  max-width: 520px;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero-tagline strong {
  color: var(--cyan);
  font-weight: 700;
}

/* --- Countdown --- */

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 22px);
  flex-wrap: wrap;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 88px;
  padding: 18px 14px;
  background: linear-gradient(180deg, rgba(181, 101, 255, 0.06), rgba(14, 21, 36, 0.4));
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  box-shadow: inset 0 0 20px rgba(181, 101, 255, 0.05), 0 0 24px rgba(181, 101, 255, 0.06);
  backdrop-filter: blur(6px);
}

.countdown-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(181, 101, 255, 0.55);
  font-variant-numeric: tabular-nums;
  min-width: 3ch;
  text-align: center;
}

.countdown-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.countdown-sep {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--cyan-dim);
  transform: translateY(-10px);
}

/* --- Signup --- */

.signup {
  width: 100%;
  max-width: 480px;
}

.signup-field {
  display: flex;
  gap: 10px;
  padding: 6px;
  background: rgba(10, 15, 26, 0.6);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.signup-field:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(181, 101, 255, 0.12), 0 0 24px rgba(181, 101, 255, 0.15);
}

.signup-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.signup-input::placeholder {
  color: var(--text-muted);
}

.signup-button {
  flex-shrink: 0;
  border: none;
  border-radius: 8px;
  padding: 0 24px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.signup-button:hover {
  box-shadow: 0 0 18px rgba(181, 101, 255, 0.5);
  transform: translateY(-1px);
}

.signup-button:active {
  transform: translateY(0);
}

.signup-message {
  min-height: 20px;
  margin: 12px 0 0;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.signup-message.is-success {
  color: var(--cyan);
}

.signup-message.is-error {
  color: #ff6b81;
}

/* --- Pricing --- */

.pricing-section {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  padding: 24px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.pricing-intro {
  max-width: 560px;
  text-align: center;
}

.pricing-heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.6vw, 2.1rem);
  color: var(--text-primary);
  line-height: 1.3;
}

.pricing-subtext {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- ZIP checker bar --- */

.zip-checker {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  background: linear-gradient(135deg, rgba(181, 101, 255, 0.08), rgba(14, 21, 36, 0.5));
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  box-shadow: inset 0 0 24px rgba(181, 101, 255, 0.05);
  backdrop-filter: blur(6px);
}

.zip-checker-label {
  flex: 1 1 260px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.zip-checker-form {
  display: flex;
  flex: 0 1 380px;
  gap: 10px;
}

.zip-input {
  flex: 1;
  min-width: 0;
  background: rgba(5, 7, 13, 0.6);
  border: 1px solid var(--border-glow);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.zip-input::placeholder {
  color: var(--text-muted);
}

.zip-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(181, 101, 255, 0.12);
}

.zip-button {
  flex-shrink: 0;
  border: none;
  border-radius: 8px;
  padding: 0 20px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.zip-button:hover {
  box-shadow: 0 0 18px rgba(181, 101, 255, 0.5);
  transform: translateY(-1px);
}

.zip-button:active {
  transform: translateY(0);
}

.zip-message {
  width: 100%;
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  text-align: left;
  transition: color 0.2s ease;
}

.zip-message.is-success {
  color: var(--cyan);
}

.zip-message.is-error {
  color: #ff6b81;
}

/* --- Pricing cards --- */

.pricing-cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(181, 101, 255, 0.05), rgba(14, 21, 36, 0.5));
  border: 1px solid var(--border-glow);
  border-radius: 18px;
  box-shadow: inset 0 0 24px rgba(181, 101, 255, 0.04);
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-dim);
  box-shadow: 0 12px 32px rgba(181, 101, 255, 0.15);
}

.pricing-card-featured {
  border-color: var(--cyan);
  background: linear-gradient(180deg, rgba(181, 101, 255, 0.12), rgba(14, 21, 36, 0.6));
  box-shadow: 0 0 0 1px var(--cyan), inset 0 0 30px rgba(181, 101, 255, 0.08), 0 0 40px rgba(181, 101, 255, 0.12);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--bg-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-tier {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.pricing-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--text-primary);
}

.pricing-price {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.pricing-price-tbd {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--cyan);
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: rgba(181, 101, 255, 0.12);
  border: 1px solid var(--cyan-dim);
}

.pricing-features li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 8px;
  width: 6px;
  height: 3px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-glow);
  border-radius: 8px;
  padding: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-primary);
  background: rgba(181, 101, 255, 0.06);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.pricing-cta:hover {
  transform: translateY(-1px);
  background: rgba(181, 101, 255, 0.12);
}

.pricing-card-featured .pricing-cta {
  border: none;
  color: var(--bg-deep);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.pricing-card-featured .pricing-cta:hover {
  box-shadow: 0 0 18px rgba(181, 101, 255, 0.5);
}

@media (min-width: 821px) {
  .pricing-card-featured {
    transform: scale(1.04);
  }

  .pricing-card-featured:hover {
    transform: scale(1.04) translateY(-4px);
  }
}

@media (max-width: 820px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .zip-checker-form {
    flex: 1 1 100%;
    flex-wrap: wrap;
  }

  .zip-button {
    width: 100%;
    padding: 14px;
  }
}

/* --- Footer --- */

.site-footer {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 880px;
  padding: 20px 24px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(181, 101, 255, 0.12);
  font-size: 13px;
  color: var(--text-muted);
}

.footer-copy {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--cyan);
}

@media (max-width: 480px) {
  .signup-field {
    flex-wrap: wrap;
  }

  .signup-button {
    width: 100%;
    padding: 14px;
  }

  .site-footer {
    justify-content: center;
    text-align: center;
  }
}

/* --- Thank-you page --- */

.thank-you-body {
  justify-content: center;
}

.laser-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.laser {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(181, 101, 255, 0.15) 15%,
    #ffffff 50%,
    rgba(181, 101, 255, 0.15) 85%,
    transparent 100%
  );
  background-size: 200% 100%;
  box-shadow: 0 0 16px 2px var(--cyan-dim), 0 0 34px 6px rgba(124, 58, 237, 0.45);
  opacity: 0.85;
  animation: laser-flow linear infinite;
}

.laser-1 {
  top: 8%;
  transform: rotate(-7deg);
  animation-duration: 6s;
}

.laser-2 {
  top: 50%;
  transform: rotate(4deg);
  animation-duration: 4.5s;
  animation-delay: -2s;
}

.laser-3 {
  top: 92%;
  transform: rotate(-3deg);
  animation-duration: 7s;
  animation-delay: -4.5s;
}

@keyframes laser-flow {
  0% {
    background-position: 220% 0;
  }
  100% {
    background-position: -220% 0;
  }
}

.thank-you-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.thank-you-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.thank-you-message {
  margin: 0;
  max-width: 480px;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
}

.thank-you-message strong {
  color: var(--cyan);
  font-weight: 700;
}

.thank-you-back {
  margin-top: 8px;
  padding: 14px 32px;
}
