/* ==========================================================================
   13Y INNOVATIONS - Launching Soon & WABA Verification Page
   Theme: Stealth Matte Black & Metallic Gold
   ========================================================================== */

:root {
  /* Colors */
  --bg-dark: #08080a;
  --bg-card: #121216;
  --bg-card-hover: #191920;
  --gold-300: #fae4a6;
  --gold-400: #f3c64f;
  --gold-500: #d4af37;
  --gold-border: rgba(212, 175, 55, 0.25);
  --gold-border-bright: rgba(243, 198, 79, 0.5);
  --gold-glow: rgba(243, 198, 79, 0.2);

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #fce5a1 0%, #d4af37 45%, #94741a 100%);
  --grad-gold-text: linear-gradient(135deg, #ffffff 0%, #fae4a6 30%, #d4af37 75%, #b38f24 100%);
  
  /* Text */
  --text-pure: #ffffff;
  --text-primary: #f2f2f5;
  --text-secondary: #9a9ab0;
  --text-muted: #656578;

  /* Fonts */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --max-w: 860px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  position: relative;
  background-image: 
    radial-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 36px 36px, 72px 72px;
}

/* Background Ambient Glow */
.ambient-glow {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header */
.navbar {
  padding: 24px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  background: rgba(8, 8, 10, 0.7);
  backdrop-filter: blur(12px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-pure);
}

.brand-title span {
  color: var(--gold-400);
}

.brand-domain {
  font-size: 0.7rem;
  color: var(--gold-300);
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-300);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-400);
  box-shadow: 0 0 8px var(--gold-400);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

/* Main Section */
.main-wrapper {
  flex: 1;
  padding: 60px 0 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Central Launch Card */
.launch-hero-card {
  background: radial-gradient(circle at 50% 25%, rgba(212, 175, 55, 0.09) 0%, rgba(18, 18, 22, 0.95) 75%);
  border: 1px solid var(--gold-border);
  border-radius: 28px;
  padding: 56px 32px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 175, 55, 0.08);
  margin-bottom: 40px;
}

.emblem-container {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emblem-halo {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 198, 79, 0.3) 0%, rgba(0,0,0,0) 70%);
  animation: pulse-halo 3.5s ease-in-out infinite alternate;
}

@keyframes pulse-halo {
  0% { transform: scale(0.95); opacity: 0.5; }
  100% { transform: scale(1.08); opacity: 0.85; }
}

.launch-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.3);
  border: 2px solid rgba(243, 198, 79, 0.4);
}

.launch-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-300);
  margin-bottom: 16px;
}

.launch-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.text-gold-gradient {
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.launch-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 32px;
}

.action-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.btn-gold-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: var(--grad-gold);
  color: #08080a;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-gold-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(243, 198, 79, 0.5);
}

.btn-glass-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-glass-secondary:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-300);
  border-color: var(--gold-400);
}

/* Business Details & WABA Section */
.business-details-section {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 30px;
}

.section-badge {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-400);
  margin-bottom: 6px;
}

.sub-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-pure);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.info-card {
  background: rgba(8, 8, 10, 0.6);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.2s ease;
}

.info-card:hover {
  border-color: var(--gold-border-bright);
  background: rgba(25, 25, 32, 0.7);
}

.card-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}

.info-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-pure);
}

.info-val a {
  color: var(--gold-300);
  text-decoration: none;
}

.info-val a:hover {
  text-decoration: underline;
}

.info-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* Compliance Notice */
.compliance-note {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.compliance-header {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold-300);
  margin-bottom: 6px;
}

.compliance-note p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding: 24px 0;
  background: #050507;
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-muted);
}

.footer-content a {
  color: var(--gold-300);
  text-decoration: none;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-card);
  border: 1px solid var(--gold-border-bright);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  color: var(--text-pure);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 650px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
  .launch-title {
    font-size: 2.2rem;
  }
  .hidden-mobile {
    display: none;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

