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

:root {
  --bg: #030303;
  --text: #ffffff;
  --gray: #8a8f98;
  --neon-orange: #ff4a00;
  --neon-purple: #8a2be2;
  --neon-blue: #00f0ff;
  --glass: rgba(255, 255, 255, 0.02);
  --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Moving Aurora Background */
.aurora-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -2;
  background: var(--bg);
  overflow: hidden;
}

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
  animation: float 20s infinite alternate ease-in-out;
}

.orb-1 { width: 50vw; height: 50vw; background: var(--neon-orange); top: -20vw; left: -10vw; }
.orb-2 { width: 60vw; height: 60vw; background: var(--neon-purple); bottom: -30vw; right: -10vw; animation-delay: -5s; opacity: 0.4; }
.orb-3 { width: 40vw; height: 40vw; background: var(--neon-blue); top: 30%; left: 40%; animation-delay: -10s; opacity: 0.3; }

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(80px, 120px) scale(1.1); }
}

/* Glass Cover */
.glass-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(40px);
}

nav {
  display: flex;
  justify-content: center;
  padding: 40px 5vw;
  align-items: center;
  position: relative;
  z-index: 10;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 0 30px rgba(255, 74, 0, 0.4);
  letter-spacing: 2px;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 74, 0, 0.5));
}

.footer-logo-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  vertical-align: -3px;
  filter: drop-shadow(0 0 8px rgba(255, 74, 0, 0.4));
}

.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.badge-wrapper {
  padding: 1px;
  background: linear-gradient(90deg, var(--neon-orange), var(--neon-purple));
  border-radius: 999px;
  margin-bottom: 40px;
  animation: glowPulse 3s infinite alternate;
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 10px rgba(255, 74, 0, 0.2); }
  100% { box-shadow: 0 0 30px rgba(138, 43, 226, 0.5); }
}

.hero-badge {
  background: #000;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pulse-dot {
  width: 10px; height: 10px;
  background: var(--neon-orange);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--neon-orange);
  animation: pulse 1.5s infinite alternate;
}

@keyframes pulse { 0% { opacity: 0.3; } 100% { opacity: 1; transform: scale(1.3); } }

h1 {
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 30px;
  background: linear-gradient(to bottom right, #ffffff, #666666);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.highlight {
  background: linear-gradient(135deg, var(--neon-orange), #ff007f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--gray);
  max-width: 700px;
  margin-bottom: 60px;
  line-height: 1.6;
  font-weight: 400;
}

.waitlist-container {
  position: relative;
  width: 100%;
  max-width: 550px;
  transform-style: preserve-3d;
}

.form-wrapper {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 8px;
  border-radius: 20px;
  display: flex;
  backdrop-filter: blur(30px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease;
}

.form-wrapper:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 74, 0, 0.4);
  box-shadow: 0 40px 80px rgba(255, 74, 0, 0.2);
}

.form-wrapper input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 20px 30px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  outline: none;
}

.form-wrapper input::placeholder { color: #666; }

.waitlist-btn {
  background: linear-gradient(135deg, var(--neon-orange), #ff0055);
  color: #fff;
  border: none;
  padding: 0 40px;
  border-radius: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

.waitlist-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

.waitlist-btn:hover::after { left: 100%; }
.waitlist-btn:hover { filter: brightness(1.1); box-shadow: 0 0 25px rgba(255, 74, 0, 0.5); }

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 120px auto 0;
  position: relative;
  z-index: 2;
  padding: 0 20px 80px;
}

.big-symbol {
  color: var(--icon-color, #fff);
  margin-bottom: 24px;
  display: block;
}

.big-symbol svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5px;
  opacity: 0.9;
  filter: drop-shadow(0 0 12px currentColor);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
}

.bento-box:hover .big-symbol svg {
  transform: scale(1.15) translateY(-4px);
  filter: drop-shadow(0 0 24px currentColor);
  opacity: 1;
}

.bento-box {
  background: rgba(20, 20, 20, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
}

.bento-box:hover {
  transform: scale(1.02) translateY(-5px);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

/* Mouse Hover Spotlight */
.bento-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.08), transparent 40%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.bento-box:hover::before { opacity: 1; }

.box-content { position: relative; z-index: 1; }



.bento-box h3 { font-size: 26px; margin-bottom: 16px; font-weight: 800; font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
.bento-box p { color: var(--gray); font-size: 17px; line-height: 1.6; }

.span-2 { grid-column: span 2; }

@media(max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr; }
  .span-2 { grid-column: span 1; }
  .form-wrapper { flex-direction: column; background: transparent; box-shadow: none; border: none; padding: 0; }
  .form-wrapper input { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 20px; margin-bottom: 10px; backdrop-filter: blur(20px); }
  .waitlist-btn { padding: 20px; border-radius: 20px; }
  
  /* Mobile Card Tweaks */
  .bento-box { 
    padding: 24px; 
    border-radius: 18px; 
  }
  .bento-box h3 { 
    font-size: 22px; 
    margin-bottom: 12px; 
  }
  .bento-box p { 
    font-size: 15px; 
  }
  .big-symbol {
    width: 54px;
    height: 54px;
    margin-bottom: 16px;
  }
  .big-symbol svg {
    width: 26px;
    height: 26px;
  }
}


/* Waitlist Meta (urgency + social proof) */
.waitlist-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.urgency-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--neon-orange);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-shadow: 0 0 12px rgba(255, 74, 0, 0.5), 0 0 30px rgba(255, 74, 0, 0.2);
}

.urgency-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 74, 0, 0.6));
}

.social-proof {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: none;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
}

.social-proof::before {
  content: '\1F525 ';
}

/* Post-signup success section */
.success-section {
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(30px);
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.success-check {
  font-size: 36px;
  line-height: 1;
}

.success-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.success-subtitle {
  font-size: 14px;
  color: var(--gray);
  max-width: 300px;
  text-align: center;
  line-height: 1.5;
}

.follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 10px 24px;
  border-radius: 12px;
  background: rgba(29, 155, 240, 0.12);
  border: 1px solid rgba(29, 155, 240, 0.25);
  color: #1d9bf0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.follow-btn:hover {
  background: rgba(29, 155, 240, 0.2);
  border-color: rgba(29, 155, 240, 0.5);
  box-shadow: 0 0 20px rgba(29, 155, 240, 0.2);
  color: #fff;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 74, 0, 0.15);
  color: var(--neon-orange);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mood-pills {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: default;
}

.pill.outline {
  border: 1px solid var(--glass-border);
  color: var(--gray);
  background: rgba(255,255,255,0.02);
}

.pill.outline:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.pill.neon {
  background: rgba(255, 74, 0, 0.15);
  color: var(--neon-orange);
  border: 1px solid rgba(255, 74, 0, 0.3);
  box-shadow: 0 0 15px rgba(255, 74, 0, 0.2);
}

/* Tilted Hero Images */
.hero-images {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  opacity: 0.95;
}

.bg-img {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(255, 74, 0, 0.4);
  border: 1px solid rgba(255,255,255,0.2);
}

.img-tl {
  top: 5%;
  left: 2%;
  max-width: 480px;
  opacity: 1;
  transform: perspective(1400px) rotateX(6deg) rotateY(22deg) rotateZ(-3deg) translate3d(0,0,0);
  animation: float-tl 12s ease-in-out infinite;
  will-change: transform;
}

.img-bl {
  top: 50%;
  left: 8%;
  max-width: 400px;
  opacity: 1;
  transform: perspective(1400px) rotateX(10deg) rotateY(24deg) rotateZ(-2deg) translate3d(0,0,0);
  animation: float-bl 14s ease-in-out infinite;
  will-change: transform;
}

.img-tr {
  top: 5%;
  right: 2%;
  max-width: 480px;
  opacity: 1;
  transform: perspective(1400px) rotateX(6deg) rotateY(-22deg) rotateZ(3deg) translate3d(0,0,0);
  animation: float-tr 13s ease-in-out infinite;
  will-change: transform;
}

.img-br {
  top: 50%;
  right: 8%;
  max-width: 400px;
  opacity: 1;
  transform: perspective(1400px) rotateX(10deg) rotateY(-24deg) rotateZ(2deg) translate3d(0,0,0);
  animation: float-br 15s ease-in-out infinite;
  will-change: transform;
}

@keyframes float-tl {
  0%, 100% { transform: perspective(1400px) rotateX(6deg) rotateY(22deg) rotateZ(-3deg) translate3d(0, 0px, 0); }
  50% { transform: perspective(1400px) rotateX(8deg) rotateY(25deg) rotateZ(-2deg) translate3d(-12px, -30px, 20px); }
}

@keyframes float-bl {
  0%, 100% { transform: perspective(1400px) rotateX(10deg) rotateY(24deg) rotateZ(-2deg) translate3d(0, 0px, 0); }
  50% { transform: perspective(1400px) rotateX(8deg) rotateY(21deg) rotateZ(-4deg) translate3d(15px, -24px, -15px); }
}

@keyframes float-tr {
  0%, 100% { transform: perspective(1400px) rotateX(6deg) rotateY(-22deg) rotateZ(3deg) translate3d(0, 0px, 0); }
  50% { transform: perspective(1400px) rotateX(8deg) rotateY(-25deg) rotateZ(2deg) translate3d(12px, -30px, 20px); }
}

@keyframes float-br {
  0%, 100% { transform: perspective(1400px) rotateX(10deg) rotateY(-24deg) rotateZ(2deg) translate3d(0, 0px, 0); }
  50% { transform: perspective(1400px) rotateX(8deg) rotateY(-21deg) rotateZ(4deg) translate3d(-15px, -24px, -15px); }
}

@media(max-width: 900px) {
  .hero { min-height: auto; padding-top: 80px; }
  .hero-images {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    height: auto;
    opacity: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 60px;
    padding: 0 10px;
    pointer-events: auto;
    z-index: 1;
  }
  .bg-img {
    position: relative;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    max-width: 100% !important;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(255, 74, 0, 0.2);
    will-change: transform;
  }

  .img-tl { animation: float-mobile-3d 4s ease-in-out infinite alternate !important; }
  .img-bl { animation: float-mobile-3d 5s ease-in-out infinite alternate !important; }
  .img-tr { animation: float-mobile-3d 4.5s ease-in-out infinite alternate !important; }
  .img-br { animation: float-mobile-3d 3.5s ease-in-out infinite alternate !important; }
}

@keyframes float-mobile-3d {
  0% { transform: perspective(1000px) rotateX(4deg) rotateY(-3deg) rotateZ(-1deg) translate3d(0, 10px, 0); }
  100% { transform: perspective(1000px) rotateX(-4deg) rotateY(3deg) rotateZ(1deg) translate3d(0, -15px, 15px); }
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gray);
}

.footer-divider {
  color: rgba(255, 255, 255, 0.15);
  font-size: 18px;
}

.footer-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1d9bf0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(29, 155, 240, 0.5);
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
}
