/*-----------------------------------------------------------------------------------

    Triverse Labs - Fullscreen Coming Soon Stylesheet (No Scroll)
    Brand Identity: Build. Automate. Grow.
    Color Palette: Deep Charcoal (#111318), Off-White (#F5F5F2), Electric Indigo (#635BFF), Cyan (#22D3EE), Soft Gray (#8B8F98)
    Typography: Headings - Space Grotesk | Body - Manrope

-----------------------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  /* Brand Colors */
  --tj-bg-dark: #111318;
  --tj-text-white: #F5F5F2;
  --tj-text-gray: #8B8F98;
  --tj-indigo: #635BFF;
  --tj-cyan: #22D3EE;
  --tj-violet: #8B5CF6;
  --tj-border: rgba(255, 255, 255, 0.08);
  --tj-border-glow: rgba(99, 91, 255, 0.4);

  /* Gradients */
  --tj-gradient-accent: linear-gradient(135deg, #635BFF 0%, #8B5CF6 50%, #22D3EE 100%);
  --tj-gradient-text: linear-gradient(135deg, #FFFFFF 20%, #635BFF 65%, #22D3EE 100%);
  
  /* Typography */
  --tj-ff-heading: 'Space Grotesk', sans-serif;
  --tj-ff-body: 'Manrope', sans-serif;
}

/* Reset & Fixed Viewport */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  height: 100dvh;
  overflow: hidden !important;
  font-family: var(--tj-ff-body);
  background-color: var(--tj-bg-dark);
  color: var(--tj-text-gray);
  position: fixed;
  top: 0;
  left: 0;
}

/* Background Animated Gradient Mesh & Glowing Orbs */
.canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.25;
  animation: floatGlow 12s ease-in-out infinite alternate;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--tj-indigo);
  top: -200px;
  right: -150px;
}

.orb-2 {
  width: 550px;
  height: 550px;
  background: var(--tj-cyan);
  bottom: -200px;
  left: -150px;
  animation-delay: -6s;
}

.orb-center {
  width: 400px;
  height: 400px;
  background: var(--tj-violet);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.12;
  filter: blur(160px);
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
  100% { transform: translate(-30px, 30px) scale(0.95); }
}

/* Background Grid Pattern */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  opacity: 0.6;
}

/* Main Viewport Container */
.viewport-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 3rem;
  box-sizing: border-box;
}

/* Header Navbar */
.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.logo-container img {
  height: 38px;
  width: auto;
}

.logo-text {
  font-family: var(--tj-ff-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--tj-text-white);
  text-transform: uppercase;
}

.logo-text span {
  font-size: 0.7rem;
  font-weight: 600;
  display: block;
  letter-spacing: 0.25em;
  color: var(--tj-cyan);
  margin-top: -3px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tj-cyan);
  backdrop-filter: blur(8px);
}

.status-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--tj-cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--tj-cyan);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.85); }
}

/* Center Content Box */
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

/* Glass Card Enclosure */
.glass-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 3.5rem 3rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--tj-gradient-accent);
}

.category-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--tj-ff-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tj-cyan);
  margin-bottom: 1.25rem;
  padding: 0.4rem 1.2rem;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 50px;
}

.headline {
  font-family: var(--tj-ff-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--tj-text-white);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.headline .highlight {
  background: var(--tj-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtext {
  font-size: 1.15rem;
  color: var(--tj-text-gray);
  max-width: 620px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

/* Subscribe Input Bar */
.form-box {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

.input-group-custom {
  display: flex;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.45rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.input-group-custom:focus-within {
  border-color: var(--tj-indigo);
  box-shadow: 0 0 25px rgba(99, 91, 255, 0.3);
}

.email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.75rem 1.25rem;
  font-family: var(--tj-ff-body);
  font-size: 0.95rem;
  color: var(--tj-text-white);
  width: 100%;
}

.email-input::placeholder {
  color: #646875;
}

.btn-launch {
  font-family: var(--tj-ff-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: #FFFFFF;
  background: #0916D4;
  border: none;
  border-radius: 40px;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 20px rgba(99, 91, 255, 0.4);
}

.btn-launch:hover {
  background: #5044EB;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 91, 255, 0.6);
}

.success-message {
  display: none;
  padding: 0.75rem 1.25rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid var(--tj-cyan);
  border-radius: 12px;
  color: var(--tj-cyan);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
}

/* Footer Navigation Bar */
.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.copyright {
  font-size: 0.85rem;
  color: var(--tj-text-gray);
}

.social-links-group {
  display: flex;
  gap: 0.85rem;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tj-text-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

.icon-btn:hover {
  background: var(--tj-indigo);
  border-color: var(--tj-indigo);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(99, 91, 255, 0.4);
}

/* Responsive Scaling for Devices */
@media (max-height: 700px) {
  .glass-card {
    padding: 2rem 2rem;
  }
  .headline {
    font-size: 2.75rem;
    margin-bottom: 0.85rem;
  }
  .subtext {
    margin-bottom: 1.75rem;
    font-size: 1rem;
  }
  .viewport-wrapper {
    padding: 1.25rem 2rem;
  }
}

@media (max-width: 768px) {
  .viewport-wrapper {
    padding: 1.5rem 1.25rem;
  }
  .glass-card {
    padding: 2.25rem 1.5rem;
    border-radius: 20px;
  }
  .headline {
    font-size: 2.35rem;
  }
  .subtext {
    font-size: 0.95rem;
  }
  .input-group-custom {
    flex-direction: column;
    border-radius: 16px;
    padding: 0.6rem;
  }
  .btn-launch {
    width: 100%;
    border-radius: 12px;
    justify-content: center;
  }
  .footer-nav {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
