/* ============================================
   TrExOra — Landing Page Styles
   ============================================ */

/* ---------- Three.js 3D Canvas ---------- */
#three-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 248, 231, 0.25);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: auto;
  height: 80px;
  justify-content: center;
}

.nav-logo-img {
  height: 70px;
  width: 70px;
  object-fit: contain;
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 14px rgba(0, 71, 255, 0.45), 0 0 30px rgba(0, 71, 255, 0.15);
  background: transparent;
  padding: 0;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  animation: logo-breath 4s ease-in-out infinite;
}

.nav-logo-img:hover {
  box-shadow: 0 0 22px rgba(0, 71, 255, 0.7), 0 0 44px rgba(0, 140, 255, 0.25);
  transform: scale(1.08);
  animation-play-state: paused;
}

@keyframes logo-breath {
  0%, 100% {
    box-shadow: 0 0 12px rgba(0, 71, 255, 0.35), 0 0 25px rgba(0, 71, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 22px rgba(0, 71, 255, 0.65), 0 0 45px rgba(0, 71, 255, 0.25);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links, .nav-actions .btn {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(255, 248, 231, 0.98);
    backdrop-filter: var(--blur-heavy);
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }
  .nav-links.open a { font-size: var(--fs-xl); }
}

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 5rem;
  overflow: hidden;
  perspective: 1000px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2rem;
  animation: fade-in-up 0.8s ease both;
  box-shadow: 0 0 16px rgba(0, 71, 255, 0.12), 0 2px 4px rgba(0, 71, 255, 0.04);
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}

.hero h1 {
  margin-bottom: 1.5rem;
  animation: fade-in-up 0.8s ease 0.2s both;
}

.hero-subtitle {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fade-in-up 0.8s ease 0.4s both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease 0.6s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: var(--fs-xs);
  animation: scroll-hint 2s infinite;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 { top: -10%; left: -10%; }
.hero-glow-2 { bottom: -20%; right: -15%; }

/* ---------- Problem Section ---------- */
.problem {
  background: linear-gradient(135deg, rgba(0, 71, 255, 0.4) 0%, rgba(0, 10, 35, 0.98) 100%);
}
.problem .section-title {
  color: #ffffff;
}
.problem .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.problem-card {
  padding: 2rem;
  text-align: center;
}

.problem-card .icon-box {
  margin: 0 auto 1.25rem;
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
}

.problem-card .icon-box i { color: var(--danger); }

.problem-card h4 {
  margin-bottom: 0.5rem;
  font-size: var(--fs-md);
}

.problem-card p { font-size: var(--fs-sm); }

/* ---------- Who We Are ---------- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.about-text h3 {
  margin-bottom: 1rem;
  font-size: var(--fs-2xl);
}

.about-text p {
  margin-bottom: 1.25rem;
  font-size: var(--fs-base);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-stat {
  text-align: center;
  padding: 1.25rem;
  position: relative;
  cursor: pointer;
}

.about-stat::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
}

.about-stat:hover::after {
  width: 50%;
}

.about-stat .stat-number {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--accent);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-stat:hover .stat-number {
  transform: translateY(-2px);
}

.about-stat .stat-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--bg-secondary);
  border: 2px solid var(--glass-border);
  border-radius: 40px;
  padding: 12px;
  position: relative;
  box-shadow: var(--shadow-glow-lg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--bg-secondary);
  border-radius: 0 0 16px 16px;
  z-index: 5;
}

@media (max-width: 768px) {
  .about-content { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { order: -1; }
  .phone-mockup { width: 220px; height: 440px; }
}

/* ---------- What We Do ---------- */
.whatwedo { background: transparent; }

.merge-visual {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.merge-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.merge-app {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--glass);
  border: 1px solid rgba(239, 68, 68, 0.2);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: 0.6;
}

.merge-arrow {
  font-size: 2.5rem;
  color: var(--accent);
  animation: float 3s ease-in-out infinite;
}

.merge-result {
  padding: 1.5rem 3rem;
  background: var(--accent-gradient);
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-xl);
  color: #fff;
  box-shadow: var(--shadow-glow-lg);
}

/* ---------- Features Showcase ---------- */
.features-list {
  margin-top: 6rem; /* Increased from 3rem to make text "Features" visually above */
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.feature-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature-item:nth-child(even) { direction: rtl; }
.feature-item:nth-child(even) > * { direction: ltr; }

.feature-info { padding: 1rem 0; }

.feature-icon-lg {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.feature-info h3 {
  margin-bottom: 0.75rem;
  font-size: var(--fs-2xl);
}

.feature-info p {
  margin-bottom: 1.5rem;
}

.feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  opacity: 0;
  transform: translateX(-15px) scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
              color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  border-radius: 8px;
  padding: 0.35rem 0.5rem;
  cursor: default;
}

.feature-info.revealed .feature-highlight {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.feature-info.revealed .feature-highlight:nth-child(1) { transition-delay: 0.3s; }
.feature-info.revealed .feature-highlight:nth-child(2) { transition-delay: 0.4s; }
.feature-info.revealed .feature-highlight:nth-child(3) { transition-delay: 0.5s; }
.feature-info.revealed .feature-highlight:nth-child(4) { transition-delay: 0.6s; }

.feature-highlight:hover {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(0, 71, 255, 0.2) 0%, rgba(0, 140, 255, 0.12) 100%);
  box-shadow: 0 0 18px rgba(0, 71, 255, 0.35), inset 0 0 8px rgba(0, 71, 255, 0.1);
  padding-left: 1rem;
  transform: translateX(4px) scale(1);
}

.feature-highlight:hover i {
  color: #00c6ff;
  filter: drop-shadow(0 0 6px rgba(0, 198, 255, 0.7));
}

.feature-highlight i {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  transition: color 0.3s ease, filter 0.3s ease;
}

.feature-preview {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-card-preview {
  width: 100%;
  max-width: 400px;
  min-height: 300px;
  padding: 0;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.feature-card-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* Feature color accents */
.feature-translate .feature-icon-lg { background: rgba(14,165,233,0.15); }
.feature-navigate .feature-icon-lg { background: rgba(16,185,129,0.15); }
.feature-safety .feature-icon-lg { background: rgba(239,68,68,0.15); }
.feature-explore .feature-icon-lg { background: rgba(245,158,11,0.15); }
.feature-budget .feature-icon-lg { background: rgba(139,92,246,0.15); }
.feature-community .feature-icon-lg { background: rgba(34,211,238,0.15); }

@media (max-width: 768px) {
  .feature-item,
  .feature-item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }
  .features-list { gap: 4rem; }
}

/* ---------- How It Works ---------- */
.howitworks {
  background: linear-gradient(135deg, rgba(0, 71, 255, 0.4) 0%, rgba(0, 10, 35, 0.98) 100%);
}
.howitworks .section-title {
  color: #ffffff;
}
.howitworks .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-xl);
  color: #fff;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-glow);
}

.step h4 { margin-bottom: 0.5rem; }
.step p { font-size: var(--fs-sm); }

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

/* ---------- Preview CTA ---------- */
.preview-cta {
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(14,165,233,0.08) 0%, transparent 70%);
}

.preview-cta .btn { margin-top: 2rem; }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  position: relative;
  cursor: pointer;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: var(--accent);
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
}

.stat-card:hover::after {
  width: 40%;
}

.stat-card .stat-value {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover .stat-value {
  transform: translateY(-2px);
}

.stat-card .stat-label {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

/* ---------- Privacy Promise ---------- */
.privacy {
  background: linear-gradient(135deg, rgba(0, 71, 255, 0.4) 0%, rgba(0, 10, 35, 0.98) 100%);
}
.privacy .section-title {
  color: #ffffff;
}
.privacy .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.trust-card {
  padding: 2rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.trust-card .icon-box {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.trust-card .icon-box i { color: var(--success); }

.trust-card h4 { margin-bottom: 0.4rem; font-size: var(--fs-base); }
.trust-card p { font-size: var(--fs-sm); }

/* ---------- Waitlist ---------- */
.waitlist {
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(14,165,233,0.06) 0%, transparent 70%);
}

.waitlist-form {
  max-width: 480px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  position: relative;
  text-align: left;
}

.form-group input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: var(--fs-base);
  transition: var(--transition-fast);
}

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

.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.form-consent a { color: var(--accent); }

/* Honeypot */
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

.waitlist-form .btn-primary {
  width: 100%;
  padding: 1rem;
  font-size: var(--fs-md);
}

.waitlist-counter {
  margin-top: 1.5rem;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.waitlist-counter strong {
  color: var(--accent);
  font-weight: 700;
}

/* Waitlist Success Popup */
.waitlist-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  animation: fade-in-up 0.5s ease;
}

.waitlist-success.show { display: flex; }

.waitlist-success .success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  animation: count-pulse 0.6s ease;
}

.waitlist-success h3 { color: var(--success); }

.waitlist-success .position-number {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--accent);
}

/* ---------- Coming Soon ---------- */
.coming-soon {
  background: linear-gradient(135deg, rgba(0, 71, 255, 0.4) 0%, rgba(0, 10, 35, 0.98) 100%);
  text-align: center;
}
.coming-soon .section-title {
  color: #ffffff;
}
.coming-soon .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.store-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.store-badge {
  padding: 0.85rem 1.75rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.5;
  cursor: not-allowed;
}

.store-badge span {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.store-badge strong {
  font-size: var(--fs-base);
  color: var(--text-secondary);
}

/* ---------- Contact Section ---------- */
.contact-section {
  padding: 6rem 0;
  position: relative;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  background: #FFFBF2;
  border-color: rgba(0, 71, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-lg), 0 12px 40px rgba(0, 71, 255, 0.08);
}

.contact-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.contact-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.contact-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.contact-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-socials a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 100px;
  transition: all 0.2s;
}

.contact-socials a:hover {
  background: rgba(14, 165, 233, 0.1);
  border-color: rgba(14, 165, 233, 0.4);
}

/* ---------- Footer ---------- */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: var(--fs-sm); max-width: 280px; }

.footer-col h5 {
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  padding: 0.3rem 0;
  transition: var(--transition-fast);
}

.footer-col a:hover { color: var(--accent); transform: translateX(4px); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(14, 165, 233, 0.15);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { justify-content: center; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; max-width: 400px; }
  .contact-section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Skyline Decoration ---------- */
.skyline {
  position: relative;
  overflow: hidden;
}

.skyline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
  z-index: 1;
}

/* =============================================
   MOBILE RESPONSIVE OVERRIDES
   ============================================= */

/* ---------- Small Tablets (768px and below) ---------- */
@media (max-width: 768px) {

  /* Three.js canvas — dim it so text is readable on mobile */
  #three-canvas {
    opacity: 0.5;
  }

  /* Global flight path SVG — keep visible on mobile but reduce opacity for clean text reading */
  .global-flight-svg {
    opacity: 0.45;
  }

  /* Sections — tighter vertical spacing */
  section {
    padding-top: clamp(3rem, 6vh, 5rem);
    padding-bottom: clamp(3rem, 6vh, 5rem);
  }

  /* Section badges — fix overlap with titles */
  .section-badge {
    position: relative;
    z-index: 10;
    margin-bottom: 1.5rem;
    font-size: 0.65rem;
  }

  /* Section titles */
  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: var(--fs-sm);
  }

  /* Hero */
  .hero {
    min-height: 100svh;
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: var(--fs-base);
    margin-bottom: 2rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .hero-scroll {
    bottom: 1rem;
  }

  /* Problem cards */
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .problem-card {
    padding: 1.5rem;
  }

  /* About */
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .about-stat {
    padding: 0.75rem;
  }

  .about-stat .stat-number {
    font-size: var(--fs-xl);
  }

  /* What We Do */
  .merge-apps {
    gap: 0.5rem;
  }

  .merge-app {
    padding: 0.6rem 1rem;
    font-size: var(--fs-xs);
  }

  .merge-result {
    padding: 1rem 2rem;
    font-size: var(--fs-lg);
  }

  /* Features */
  .features-list {
    gap: 3.5rem;
  }

  .feature-icon-lg {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transform: none !important;
  }

  .feature-info h3 {
    font-size: var(--fs-xl);
  }

  .feature-card-preview {
    max-width: 100%;
    min-height: auto;
    max-height: none;
    height: auto;
  }

  .feature-card-preview img {
    max-height: none;
    height: auto;
    object-fit: contain;
  }

  /* Mobile nav overlay — smoother transition */
  .nav-links.open {
    animation: mobileNavFadeIn 0.4s ease both;
  }

  @keyframes mobileNavFadeIn {
    from { opacity: 0; transform: scale(1.05); }
    to { opacity: 1; transform: scale(1); }
  }

  /* Footer — prevent duplicate logo overlap */
  .footer .nav-logo {
    position: relative;
    z-index: 2;
  }

  /* Steps */
  .step {
    padding: 1.5rem;
  }

  .step-number {
    width: 52px;
    height: 52px;
    font-size: var(--fs-lg);
    margin-bottom: 1rem;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .stat-card .stat-value {
    font-size: var(--fs-3xl);
  }

  /* Trust / Privacy */
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trust-card {
    padding: 1.5rem;
  }

  /* Waitlist */
  .waitlist-form {
    padding: 0 0.5rem;
  }

  /* Store Badges */
  .store-badges {
    flex-direction: column;
    align-items: center;
  }

  .store-badge {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }
}

/* ---------- Mobile Phones (480px and below) ---------- */
@media (max-width: 480px) {

  /* Even dimmer canvas for readability on tiny screens */
  #three-canvas {
    opacity: 0.35;
  }

  section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .section-title {
    font-size: clamp(1.4rem, 7vw, 1.8rem);
  }

  .hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .hero-subtitle {
    font-size: var(--fs-sm);
    margin-bottom: 1.5rem;
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: 0.4rem 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
  }

  /* Problem section */
  .problem-card .icon-box {
    width: 44px;
    height: 44px;
  }

  .problem-card h4 {
    font-size: var(--fs-sm);
  }

  .problem-card p {
    font-size: var(--fs-xs);
  }

  /* About stats */
  .about-stats {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
  }

  .about-stat .stat-number {
    font-size: var(--fs-lg);
  }

  .about-stat .stat-label {
    font-size: 0.6rem;
  }

  /* Features - single column, image on top */
  .features-list {
    gap: 2.5rem;
  }

  .feature-item {
    gap: 1.5rem;
  }

  .feature-info h3 {
    font-size: var(--fs-lg);
    margin-bottom: 0.5rem;
  }

  .feature-info p {
    font-size: var(--fs-sm);
    margin-bottom: 1rem;
  }

  .feature-highlight {
    font-size: var(--fs-xs);
    gap: 0.5rem;
  }

  .feature-card-preview {
    min-height: auto;
    max-height: none;
    height: auto;
  }

  .feature-card-preview img {
    max-height: none;
    height: auto;
    object-fit: contain;
  }

  /* Steps */
  .step-number {
    width: 44px;
    height: 44px;
    font-size: var(--fs-base);
  }

  .step h4 {
    font-size: var(--fs-sm);
  }

  .step p {
    font-size: var(--fs-xs);
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-card .stat-value {
    font-size: var(--fs-2xl);
  }

  .stat-card .stat-label {
    font-size: var(--fs-xs);
  }

  /* Trust cards */
  .trust-card {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem;
  }

  .trust-card .icon-box {
    width: 44px;
    height: 44px;
  }

  /* Waitlist form */
  .form-group input {
    padding: 0.85rem 1rem;
    font-size: var(--fs-sm);
  }

  .form-consent {
    font-size: 0.65rem;
  }

  .waitlist-form .btn-primary {
    padding: 0.85rem;
    font-size: var(--fs-base);
  }

  /* Footer grid */
  .footer-grid {
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ---------- Waitlist Share Buttons ---------- */
.wl-share-section { margin-top: 0.5rem; }

.wl-share-divider {
  width: 60px;
  height: 1px;
  background: var(--glass-border);
  margin: 1.25rem auto;
}

.wl-share-heading {
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.wl-share-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.wl-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wl-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.wl-whatsapp { background: #25D366; }
.wl-twitter { background: #1d9bf0; }
.wl-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.wl-linkedin { background: #0A66C2; }

.wl-copy-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
  max-width: 320px;
  margin: 0.5rem auto 0;
}

.wl-copy-input {
  flex: 1;
  padding: 0.55rem 0.85rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.78rem;
  outline: none;
  min-width: 0;
}

.wl-copy-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.85rem;
  background: rgba(14, 165, 233, 0.1);
  border: none;
  border-left: 1px solid var(--glass-border);
  color: var(--accent);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.wl-copy-btn:hover {
  background: rgba(14, 165, 233, 0.2);
}

/* ══════════════════════════════════════════
   UPGRADED WAITLIST DASHBOARD ELEMENTS
   ══════════════════════════════════════════ */
.referral-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
}

.referral-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.referral-header h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.referral-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
  text-align: left;
}

.referral-desc strong {
  color: var(--accent);
}

.referral-link-box {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border: 1.5px dashed rgba(0, 71, 255, 0.2);
  padding: 6px;
  border-radius: 14px;
  background: rgba(0, 71, 255, 0.02);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.referral-link-box:hover {
  border-color: rgba(0, 71, 255, 0.45);
  background: rgba(0, 71, 255, 0.04);
  box-shadow: 0 4px 12px rgba(0, 71, 255, 0.05);
}

.copy-input {
  flex: 1;
  background: transparent;
  border: none;
  font-size: 0.85rem;
  color: var(--text-primary);
  font-family: inherit;
  padding: 0.5rem;
  outline: none;
  width: 100%;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--text-primary);
  color: var(--bg-primary);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.copy-btn:hover {
  background: var(--accent);
  color: #fff;
}

.referral-motivate {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  padding: 0.5rem 0.75rem;
  background: rgba(0, 71, 255, 0.03);
  border-radius: 8px;
  border: 1px dashed rgba(0, 71, 255, 0.1);
  letter-spacing: 0.2px;
}

.referral-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 71, 255, 0.08);
  border-radius: var(--radius-md);
  width: 100%;
}

.ref-stat { text-align: center; }

.ref-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
}

.ref-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ref-stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(0, 71, 255, 0.08);
}

/* ══════════════════════════════════════════
   FEATURE VOTING
   ══════════════════════════════════════════ */
.vote-section {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
}

.vote-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.vote-header h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.vote-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: left;
}

.vote-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.vote-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(0, 71, 255, 0.08);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--font-body);
  color: var(--text-primary);
  text-align: left;
  width: 100%;
}

.vote-option:hover {
  background: rgba(0, 71, 255, 0.04);
  border-color: rgba(0, 71, 255, 0.2);
  transform: translateX(4px);
}

.vote-option:active {
  transform: translateX(2px) scale(0.98);
}

.vote-option.voted {
  background: rgba(0, 71, 255, 0.05);
  border-color: var(--accent);
  pointer-events: none;
}

.vote-emoji {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.vote-label {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Results */
.vote-results {
  margin-top: 1.25rem;
  width: 100%;
}

.results-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: left;
}

.result-bar-wrap {
  margin-bottom: 0.75rem;
  width: 100%;
}

.result-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}

.result-bar-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.result-bar-pct {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-display);
}

.result-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 100px;
  overflow: hidden;
}

.result-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--accent-gradient);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
  width: 0%;
}

.results-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* ══════════════════════════════════════════
   REFERRAL LEADERBOARD
   ══════════════════════════════════════════ */
.leaderboard-section {
  background: var(--glass);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
  padding: 1.5rem;
}

.lb-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 71, 255, 0.08);
  border-radius: var(--radius-md);
  transition: all 0.2s;
  width: 100%;
  margin-bottom: 0.4rem;
}

.lb-row.is-you {
  background: rgba(0, 71, 255, 0.06);
  border-color: rgba(0, 71, 255, 0.2);
}

.lb-rank {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  background: #fff;
  color: var(--text-secondary);
  border: 1px solid rgba(0, 71, 255, 0.08);
}

.lb-rank.gold {
  background: rgba(245, 158, 11, 0.15);
  color: #F59E0B;
  border-color: rgba(245, 158, 11, 0.3);
}

.lb-rank.silver {
  background: rgba(148, 163, 184, 0.15);
  color: #94A3B8;
  border-color: rgba(148, 163, 184, 0.3);
}

.lb-rank.bronze {
  background: rgba(217, 119, 6, 0.15);
  color: #D97706;
  border-color: rgba(217, 119, 6, 0.3);
}

.lb-name {
  flex: 1;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.lb-name .you-tag {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 700;
  margin-left: 0.4rem;
}

.lb-count {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.leaderboard-you {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, rgba(0, 71, 255, 0.04), rgba(99, 102, 241, 0.08));
  border: 1px solid rgba(0, 71, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.you-rank {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
}

.you-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.you-refs {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}

/* soft electric blue glow behind position number */
.waitlist-success .position-number {
  position: relative;
  font-size: var(--fs-4xl) !important;
  font-weight: 900;
  z-index: 2;
  margin: 0.5rem 0 1.5rem;
  filter: drop-shadow(0 4px 18px rgba(0, 71, 255, 0.3));
}

.waitlist-success .position-number::before {
  content: '';
  position: absolute;
  inset: -16px -24px;
  background: radial-gradient(ellipse at center, rgba(0, 71, 255, 0.12) 0%, rgba(0, 71, 255, 0.04) 50%, transparent 75%);
  border-radius: 50%;
  z-index: -1;
  animation: positionGlow 3s ease-in-out infinite alternate;
}

@keyframes positionGlow {
  0% { opacity: 0.7; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1.05); }
}

/* pulse highlight on referral count increment */
.pulse-highlight {
  display: inline-block;
  animation: refPulse 0.8s ease-out;
}

@keyframes refPulse {
  0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(0, 71, 255, 0)); }
  30% { transform: scale(1.3); filter: drop-shadow(0 0 12px rgba(0, 71, 255, 0.6)); color: var(--accent); }
  100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(0, 71, 255, 0)); }
}

/* ══════════════════════════════════════════
   GLOBAL PAPER PLANE SCROLL ANIMATION
   ══════════════════════════════════════════ */
body {
  position: relative;
}

.global-flight-svg {
  overflow: visible;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
}

.flight-trail {
  stroke: rgba(0, 71, 255, 0.06);
  stroke-width: 2.5px;
  stroke-linecap: round;
}

.flight-trail-active {
  stroke: var(--accent);
  stroke-width: 3.5px;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s ease;
}

.paper-plane {
  filter: drop-shadow(0 4px 12px rgba(0, 71, 255, 0.35));
  will-change: transform, opacity;
  z-index: 10;
}
.feature-card-preview {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.reveal-flip.revealed .feature-card-preview:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 71, 255, 0.15);
}

.feature-card-preview::before {
  content: '';
  position: absolute;
  top: 0; left: -150%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: skewX(-20deg);
  z-index: 10;
  pointer-events: none;
}

.reveal-flip.revealed .feature-card-preview::before {
  animation: shimmerReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.3s;
}

@keyframes shimmerReveal {
  0% { left: -150%; opacity: 1; }
  100% { left: 150%; opacity: 0; }
}

