/* ==========================================================================
   STREAMLINE79 CONSULTING - PREMIUM COMING SOON PAGE
   ========================================================================== */

/* --- CSS Variables & Design System --- */
:root {
  /* Colors */
  --bg-primary: #080A0F;
  --bg-secondary: #0F121B;
  --accent-gold: #F2B90F;
  --accent-gold-light: #FFD24D;
  --accent-gold-glow: rgba(242, 185, 15, 0.12);
  --accent-blue-glow: rgba(30, 144, 255, 0.08);
  
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #475569;
  
  /* Glassmorphism settings */
  --glass-bg: rgba(15, 18, 27, 0.65);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-border-hover: rgba(242, 185, 15, 0.25);
  --card-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 
                 inset 0 1px 0 rgba(255, 255, 255, 0.05);
                 
  /* Fonts */
  --font-header: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* --- Reset & Global Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Ambient Glow & Grid Background --- */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -2;
  pointer-events: none;
  mix-blend-mode: screen;
}

.glow-gold {
  top: -15%;
  left: 20%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--accent-gold-glow) 0%, rgba(242, 185, 15, 0) 70%);
  animation: floatGold 22s infinite alternate ease-in-out;
}

.glow-blue {
  bottom: -15%;
  right: 15%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--accent-blue-glow) 0%, rgba(30, 144, 255, 0) 70%);
  animation: floatBlue 28s infinite alternate ease-in-out;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
  mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
}

/* --- Background Motion Keyframes --- */
@keyframes floatGold {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  100% {
    transform: translate(8vw, 6vh) scale(1.15) rotate(30deg);
  }
}

@keyframes floatBlue {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  100% {
    transform: translate(-6vw, -8vh) scale(1.1) rotate(-20deg);
  }
}

/* --- Layout Container --- */
.container {
  width: 100%;
  max-width: 1100px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 3.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  z-index: 10;
  position: relative;
}

/* --- Header & Logo --- */
.header {
  margin-bottom: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-wrapper:hover {
  transform: scale(1.04);
}

.logo {
  height: 55px;
  width: 267px; /* Matches the 1024x211 aspect ratio */
  max-width: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(242, 185, 15, 0.1));
}

/* --- Hero Content Section --- */
.content-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  max-width: 760px;
  width: 100%;
  margin-bottom: 3.5rem;
}

.badge {
  font-family: var(--font-header);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  background: rgba(242, 185, 15, 0.06);
  border: 1px solid rgba(242, 185, 15, 0.15);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.main-headline {
  font-family: var(--font-header);
  font-size: clamp(3.2rem, 7.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  color: #FFFFFF;
}

.accent-text {
  color: var(--accent-gold);
  background: linear-gradient(135deg, #FFFFFF 15%, var(--accent-gold) 75%, #F4B41A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.subheadline {
  font-family: var(--font-header);
  font-size: clamp(1.25rem, 2.8vw, 1.7rem);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
  max-width: 620px;
}

.supporting-text {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 2.8rem;
  font-weight: 300;
}

/* --- Countdown Timer --- */
.countdown-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 2.8rem;
}

.countdown-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 1.8rem 3rem;
  box-shadow: var(--card-shadow);
  max-width: 580px;
  width: 100%;
  position: relative;
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.countdown-card:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 40px 70px rgba(0, 0, 0, 0.7), 0 0 20px rgba(242, 185, 15, 0.05);
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.countdown-item .number {
  font-family: var(--font-header);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  text-shadow: 0 4px 15px rgba(242, 185, 15, 0.1);
  transition: transform 0.3s ease;
}

.countdown-item .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  font-weight: 600;
}

.countdown-separator {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 1rem;
}

/* --- Notify Form --- */
.form-wrapper {
  width: 100%;
  max-width: 520px;
}

.notify-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.input-group {
  display: flex;
  align-items: center;
  background: rgba(10, 13, 20, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 0.45rem;
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.input-group:focus-within {
  border-color: rgba(242, 185, 15, 0.4);
  box-shadow: 0 0 25px rgba(242, 185, 15, 0.12),
              inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.input-icon-wrapper {
  padding-left: 1.25rem;
  display: flex;
  align-items: center;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.input-group:focus-within .input-icon-wrapper {
  color: var(--accent-gold);
}

.notify-form input {
  background: transparent;
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  flex-grow: 1;
  width: 100%;
}

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

.btn-submit {
  background: var(--accent-gold);
  border: none;
  border-radius: 100px;
  color: #080A0F;
  font-family: var(--font-header);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: background-color 0.3s ease, 
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(242, 185, 15, 0.25);
  user-select: none;
  white-space: nowrap;
}

.btn-submit:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242, 185, 15, 0.35);
}

.btn-submit:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(242, 185, 15, 0.15);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-submit:hover .btn-icon {
  transform: translate(2px, -1px);
}

.form-message {
  font-size: 0.85rem;
  margin-top: 0.75rem;
  min-height: 22px;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-message.show {
  opacity: 1;
  transform: translateY(0);
}

.form-message.success {
  color: #10B981;
}

.form-message.error {
  color: #EF4444;
}

/* Spinner Animation */
.spinner {
  animation: spin 1s linear infinite;
}

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

/* --- Footer --- */
.footer {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 2.8rem;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  width: 100%;
  gap: 3rem;
}

.footer-brand-address {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 380px;
}

.footer-company-name {
  font-family: var(--font-header);
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.01em;
}

.footer-address {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  font-weight: 400;
  width: fit-content;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.footer-contact-link:hover {
  color: var(--accent-gold);
}

.footer-contact-link:hover .contact-icon {
  background: rgba(242, 185, 15, 0.08);
  color: var(--accent-gold);
  border-color: rgba(242, 185, 15, 0.2);
  transform: translateY(-2px);
}

.footer-bottom {
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding-top: 1.6rem;
  text-align: center;
  font-weight: 300;
  width: 100%;
}

/* --- Entry & Load Animations --- */
@keyframes fadeInMove {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-delay-1,
.fade-in-delay-2,
.fade-in-delay-3,
.fade-in-delay-4,
.fade-in-delay-5,
.fade-in-delay-6,
.fade-in-delay-7 {
  opacity: 0;
  animation: fadeInMove 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.25s; }
.fade-in-delay-3 { animation-delay: 0.4s; }
.fade-in-delay-4 { animation-delay: 0.5s; }
.fade-in-delay-5 { animation-delay: 0.65s; }
.fade-in-delay-6 { animation-delay: 0.78s; }
.fade-in-delay-7 { animation-delay: 0.9s; }

/* --- Interactive Hover Effects --- */
.countdown-item:hover .number {
  transform: translateY(-3px) scale(1.02);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

/* Tablet and below */
@media (max-width: 768px) {
  .container {
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  }
  
  .content-section {
    margin-bottom: 2.8rem;
  }

  .countdown-card {
    padding: 1.5rem 2rem;
  }
  
  .countdown-separator {
    margin: 0 0.5rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .footer-brand-address {
    max-width: 100%;
    align-items: center;
  }

  .footer-contacts {
    align-items: center;
  }
  
  .footer-contact-link {
    justify-content: center;
  }
}

/* Mobile Devices */
@media (max-width: 520px) {
  .container {
    padding: 2rem 1.2rem 1.2rem 1.2rem;
  }
  
  .badge {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1.2rem;
  }
  
  .main-headline {
    margin-bottom: 1rem;
  }
  
  .supporting-text {
    margin-bottom: 2.2rem;
  }

  .countdown-card {
    padding: 1.2rem 1rem;
    border-radius: 18px;
  }
  
  .countdown-item .label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }
  
  .countdown-separator {
    margin: 0;
    height: 35px;
  }

  /* Form layouts shift for small screen usability */
  .input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
    gap: 0.75rem;
    padding: 0;
  }
  
  .input-group:focus-within {
    box-shadow: none;
  }
  
  .input-icon-wrapper {
    display: none;
  }
  
  .notify-form input {
    background: rgba(10, 13, 20, 0.85);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    text-align: center;
    padding: 1rem;
    width: 100%;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .notify-form input:focus {
    border-color: rgba(242, 185, 15, 0.4);
    box-shadow: 0 0 15px rgba(242, 185, 15, 0.1), inset 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 100px;
    height: auto;
  }
}
