/* Futuristic Coming-Soon — Rerise */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800");
:root {
  --bg: #0a0a1a;
  --bg2: #0f1024;
  --text: #e5e7eb;
  --muted: #a5b4fc;
  --accentA: #06b6d4;
  --accentB: #7c3aed;
  --ring: rgba(80, 162, 171, 0.7);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: radial-gradient(
      1200px 800px at 70% -20%,
      rgba(124, 58, 237, 0.15),
      transparent 60%
    ),
    radial-gradient(
      1000px 700px at 0% 100%,
      rgba(6, 182, 212, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, var(--bg), var(--bg2) 70%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.wave-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  z-index: 0;
}

.glitch-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.06) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.06) 75%,
    transparent 75%,
    transparent
  );
  background-size: 40px 40px;
  opacity: 0.05;
  animation: glitch 1s infinite linear alternate;
}

@keyframes glitch {
  0%,
  100% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(2px, -2px);
  }
  60% {
    transform: translate(-1px, 1px);
  }
  80% {
    transform: translate(1px, -1px);
  }
}

.content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  padding: 8rem 1.5rem 3rem;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .content {
    padding: 4rem 1.5rem 3rem;
  }
}

.brand {
  display: flex;
  align-items: baseline;
  font-family: Orbitron, "Space Mono", monospace;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
  font-size: 44px;
  /* font-weight: 700;
  font-family: "Poppins", sans-serif; */
}
@media only screen and (max-width: 767px) {
  .brand {
    font-size: 33px;
  }
}

.logo-re {
  color: #fff;
}
.logo-rise {
  background: linear-gradient(90deg, #00aaff, #3f00ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Mono", monospace;
  color: #67e8f9;
  opacity: 0.9;
  margin: 0.25rem 0 1rem 0;
}

.title {
  margin: 0;
  font-size: clamp(2.2rem, 3vw + 1.4rem, 4rem);
  letter-spacing: -0.01em;
  font-weight: 800;
  background: linear-gradient(90deg, #67e8f9, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  margin: 1rem 0 2rem;
  font-size: clamp(1.05rem, 0.9vw + 0.8rem, 1.25rem);
  color: #d1d5db;
  max-width: 46ch;
  line-height: 1.6;
}

.notice {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.9rem 1rem;
  border-radius: 14px;
  margin: 0 0 1.25rem 0;
  backdrop-filter: blur(6px);
}
.notice.ok {
  border-color: rgba(34, 197, 94, 0.5);
  color: #d1fae5;
}
.notice.err {
  border-color: rgba(239, 68, 68, 0.5);
  color: #fee2e2;
}

.lead-form .hp {
  position: absolute !important;
  left: -50000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.lead-form .input-wrap {
  display: flex;
  gap: 0.6rem;
  align-items: stretch;
  max-width: 560px;
  width: 100%;
}
.lead-form input[type="email"] {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0.95rem 1rem;
  border-radius: 999px;
  outline: none;
  font-size: 1rem;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.lead-form input[type="email"]::placeholder {
  color: #9ca3af;
}
.lead-form input[type="email"]:focus {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 6px rgba(80, 162, 171, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  border: 0;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  color: white;
  background: linear-gradient(90deg, var(--accentA), var(--accentB));
  transition: transform 0.08s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.glow {
  box-shadow: 0 0 24px var(--ring);
}

.lead-form .legal {
  display: block;
  margin: 0.7rem 0.5rem 0;
  color: #a3a3a3;
  font-size: 0.8rem;
  max-width: 560px;
}

.highlights {
  list-style: none;
  padding: 0;
  margin: 2.25rem 0 0;
  display: grid;
  gap: 0.6rem;
  max-width: 720px;
}
.highlights li {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.highlights li span {
  opacity: 0.9;
}

.foot {
  margin-top: 2.5rem;
  color: #a1a1aa;
}
.foot a {
  color: #c7d2fe;
  text-decoration: none;
}
.foot a:hover {
  text-decoration: underline;
}

/* Responsive niceties */
@media (max-width: 540px) {
  .lead-form .input-wrap {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
}
