/* NearTech Digital — Coming Soon
   Self-contained. No frameworks, no build step. */

:root {
  --accent: #eb1000;
  --accent-hover: #cc0e00;
  --bg: #0b1220;
  --fg: #f8fafc;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  line-height: 1.6;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
}

.overlay {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
  background:
    radial-gradient(1000px circle at 50% -10%, rgba(235, 16, 0, 0.18), transparent 60%),
    var(--bg);
}

.glow {
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  bottom: -25vmax;
  right: -15vmax;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 16, 0, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
}

.brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.brand span {
  color: var(--accent);
}

.badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(235, 16, 0, 0.4);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.75rem;
}

.title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.subtitle {
  font-size: 1.15rem;
  color: rgba(248, 250, 252, 0.7);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
}

.input {
  flex: 1;
  min-width: 0;
  padding: 0.85rem 1.1rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--fg);
  background: rgba(248, 250, 252, 0.06);
  border: 1px solid rgba(248, 250, 252, 0.18);
  border-radius: 999px;
  outline: none;
}

.input::placeholder {
  color: rgba(248, 250, 252, 0.45);
}

.input:focus {
  border-color: var(--accent);
}

.button {
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

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

.note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--accent);
}

.meta {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: rgba(248, 250, 252, 0.5);
}

.meta a {
  color: rgba(248, 250, 252, 0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(248, 250, 252, 0.3);
}

.meta a:hover {
  color: var(--fg);
}

@media (max-width: 520px) {
  .brand {
    margin-bottom: 2rem;
  }
  .form {
    flex-direction: column;
  }
  .input,
  .button {
    width: 100%;
  }
}
