/* eco-JUNCTION — Coming Soon */

:root {
  --bg-deep: #000000;
  --bg-mid: #0a0a0a;
  --text: #ffffff;
  --text-muted: #b3b3b3;
  --accent: #00ff85;
  --accent-glow: rgba(0, 255, 133, 0.22);
  --border-subtle: rgba(0, 255, 133, 0.4);
  --error: #e53935;
  --font-sans: "Montserrat", "Inter", system-ui, sans-serif;
  --radius: 8px;
}

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

html,
body {
  height: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.landing {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.75rem;
  padding: clamp(2rem, 6vh, 3.5rem) clamp(1.25rem, 5vw, 2rem);
}

/* ——— Brand header ——— */
.brand-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 720px;
}

.logo {
  display: block;
  text-decoration: none;
  margin-bottom: 1.75rem;
}

.logo-img {
  display: block;
  width: min(480px, 88vw);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.brand-subtitle {
  font-size: clamp(0.9375rem, 2.2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--text);
  max-width: 680px;
  text-wrap: balance;
}

/* ——— Form ——— */
.form-panel {
  width: 100%;
  max-width: 440px;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: var(--bg-mid);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.125rem;
}

.notify-form input,
.notify-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.notify-form input:focus,
.notify-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

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

.notify-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300ff85'%3E%3Cpath d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--text);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn--primary:hover {
  background: var(--accent);
  color: var(--bg-deep);
  box-shadow: 0 0 24px var(--accent-glow);
}

.btn--full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  text-align: center;
  min-height: 1.4em;
}

.form-note.success {
  color: var(--accent);
}

.form-note.error {
  color: var(--error);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 480px) {
  .landing {
    gap: 2rem;
    justify-content: flex-start;
    padding-top: 2.5rem;
  }

  .logo {
    margin-bottom: 1.25rem;
  }

  .brand-subtitle {
    line-height: 1.5;
  }

  .form-panel {
    padding: 1.5rem 1.25rem;
  }
}
