/* =========================================
   VELTREXO — Coming Soon Page
   Design tokens match the approved brand system
   ========================================= */

   @import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap');
:root {
  --bg-base: #071A1A;
  --bg-elevated-1: #0D2B2B;
  --bg-elevated-2: #123C3C;

  --text-primary: #FFFFFF;
  --text-secondary: #B6EADA;
  --text-tertiary: #8FD6C6;

  --stop-1: #00D4AA;
  --stop-2: #00FFA3;
  --stop-3: #5B8DEF;

  --radius-sm: 8px;
  --radius-md: 12px;

  --motion-hover: 150ms ease-out;
  --motion-transition: 250ms ease-out;
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: radial-gradient(ellipse at 50% 30%, var(--bg-elevated-1) 0%, var(--bg-base) 60%, #04100F 100%);
  font-family: 'Inter', sans-serif;
  color: var(--text-secondary);
}

.veltrexo-page {
  height: 100svh;
  max-height: 100svh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 24px 0;
  overflow: hidden;
}

/* ---------- Ambient glow orbs (subtle, premium depth) ---------- */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.glow-orb-1 {
  width: 420px;
  height: 420px;
  background: var(--stop-1);
  top: -10%;
  left: -8%;
  animation: floatOrb1 10s ease-in-out infinite;
}

.glow-orb-2 {
  width: 380px;
  height: 380px;
  background: var(--stop-3);
  bottom: -12%;
  right: -8%;
  animation: floatOrb2 11s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(24px, 18px); }
}

@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, -16px); }
}

/* ---------- Content ---------- */
.content-wrap {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.logo-mark {
  width: 340px;
  max-width: 350px;
  height: auto;
  padding: 16px 12px;
  border-radius: 18px;
  /* background: linear-gradient(135deg, var(--stop-1), var(--stop-2) 50%, var(--stop-3)); */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  animation: glowPulse 3.4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 32px rgba(0, 255, 163, 0.18); }
  50% { box-shadow: 0 0 52px rgba(0, 255, 163, 0.34); }
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5.5vw, 52px);
  line-height: 1.4;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.headline .accent {
  background: linear-gradient(90deg, var(--stop-1), var(--stop-2), var(--stop-3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-family: 'Libre Baskerville', serif;
}

.subhead {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

/* ---------- Form ---------- */
.early-access-form {
  margin-bottom: 8px;
  text-align: left;
}

.input-row {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  margin-bottom: 16px;
}

.veltrexo-input {
  flex: 1 1 220px;
  background: var(--bg-base);
  border: 1px solid var(--bg-elevated-2);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 15px;
  transition: border-color var(--motion-hover), box-shadow var(--motion-hover);
}

.veltrexo-input::placeholder {
  color: var(--text-tertiary);
  opacity: 0.7;
}

.veltrexo-input:focus {
  outline: none;
  border-color: var(--stop-3);
  box-shadow: 0 0 0 3px rgba(91, 141, 239, 0.15), 0 0 20px rgba(0, 255, 163, 0.1);
  background: var(--bg-base);
  color: var(--text-primary);
}

.veltrexo-input.is-invalid {
  border-color: #ff6b6b;
}

.btn-veltrexo-primary {
  background: linear-gradient(90deg, var(--stop-1), var(--stop-3));
  background-size: 160% 160%;
  background-position: left center;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 24px;
  box-shadow: 0 0 20px rgba(0, 255, 163, 0.18);
  transition: box-shadow var(--motion-hover), background-position var(--motion-hover), transform var(--motion-hover);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
}

.btn-veltrexo-primary:hover {
  background-position: right center;
  box-shadow: 0 0 32px rgba(0, 255, 163, 0.3);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-veltrexo-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

.consent-check {
  margin-bottom: 10px;
  padding-left: 1.75em;
}

.consent-check .form-check-input {
  background-color: var(--bg-base);
  border: 1px solid var(--bg-elevated-2);
  width: 1.05em;
  height: 1.05em;
  margin-top: 0.2em;
}

.consent-check .form-check-input:checked {
  background-color: var(--stop-1);
  border-color: var(--stop-1);
}

.consent-check .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.2);
  border-color: var(--stop-1);
}

.consent-check .form-check-label {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

.privacy-link {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-link:hover {
  color: var(--text-primary);
}

.helper-text {
  font-size: 12.5px;
  color: var(--text-tertiary);
  opacity: 0.8;
  margin-bottom: 0;
}

.form-feedback {
  font-size: 13px;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.form-error {
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.25);
  color: #ff9b9b;
}

/* ---------- Success message ---------- */
.success-message {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-elevated-1);
  border: 1px solid var(--bg-elevated-2);
  border-radius: var(--radius-sm);
  padding: 16px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(6px);
  animation: fadeInUp 0.5s ease-out forwards;
}

.success-icon {
  color: var(--stop-2);
  display: flex;
}

/* ---------- Socials ---------- */
.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(182, 234, 218, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: border-color var(--motion-hover), color var(--motion-hover), box-shadow var(--motion-hover);
}

.socials a:hover {
  border-color: var(--stop-2);
  color: var(--text-primary);
  box-shadow: 0 0 14px rgba(0, 255, 163, 0.2);
}

.socials svg {
  width: 17px;
  height: 17px;
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .input-row {
    flex-direction: column;
  }
  .btn-veltrexo-primary {
    width: 100%;
  }
  .consent-check {
    padding-left: 1.6em;
  }
}

@media (max-height: 680px) {
  .logo-mark { width: 300px; height: auto; font-size: 22px; margin-bottom: 16px; padding-block: 12px;}
  .eyebrow { margin-bottom: 10px; }
  .headline { margin-bottom: 10px; letter-spacing: 1.2;}
  .subhead { margin-bottom: 22px; }
  .veltrexo-input {flex: 1 1 100%; }
  .veltrexo-page {
    min-height: 100svh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 24px 0;
    overflow-y: scroll;
    overflow-x: hidden;
  }
}
@media (max-width: 768px) {
  .veltrexo-input {flex: 1 1 100%; }
}
