/* RESET & BASE */
html, body {
  margin: 0; padding: 0;
  background-color: #050505;
  color: #fff;
  font-family: 'Inter', 'Outfit', sans-serif;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.wm-main { max-width: 100% !important; padding: 0 !important; margin: 0 !important; width: 100% !important; }

/* UTILS */
.text-gradient {
  background: linear-gradient(135deg, #ff8c1f 0%, #f5f5f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.glass-panel {
  background: rgba(25, 25, 25, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

/* NAVBAR */
.nav-glass {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(5, 5, 5, 0.3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
}
.nav-glass.scrolled {
  background: rgba(5, 5, 5, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-container {
  max-width: 1400px; margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.3s;
}
.nav-glass.scrolled .nav-container { padding: 12px 32px; }

.nav-logo img { height: 26px; filter: brightness(0) invert(1); transition: transform 0.3s; }
.nav-logo:hover img { transform: scale(1.05); }

.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color 0.2s ease, text-shadow 0.2s;
}
.nav-links a:hover { color: #fff; text-shadow: 0 0 12px rgba(255,255,255,0.3); }

.nav-actions { display: flex; gap: 16px; align-items: center; }
.btn-login {
  color: #fff; text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 10px 20px; border-radius: 99px; transition: background 0.2s, transform 0.1s;
}
.btn-login:hover { background: rgba(255,255,255,0.1); }
.btn-login:active { transform: scale(0.97); }

.btn-signup {
  background: #fff; color: #000; text-decoration: none; font-size: 14px;
  font-weight: 600; padding: 12px 28px; border-radius: 99px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-signup:hover {
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.25); background: #f4f4f5;
}
.btn-signup:active { transform: scale(0.97); }

/* Hamburger Menu */
.hamburger-btn {
  display: none; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer;
}
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger-btn { display: block; }
  .nav-actions { display: none; }
  .nav-actions.mobile-active {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%;
    background: rgba(5,5,5,0.95); backdrop-filter: blur(24px); padding: 32px; border-bottom: 1px solid rgba(255,255,255,0.1);
    box-sizing: border-box;
  }
  .nav-actions.mobile-active .nav-links { display: flex; flex-direction: column; width: 100%; align-items: flex-start; margin-bottom: 24px; gap: 24px; }
  .nav-actions.mobile-active .nav-links a { font-size: 18px; color: rgba(255,255,255,0.9); }
}

/* HERO PREMIUM */
.hero-premium {
  position: relative; width: 100%; min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 140px; box-sizing: border-box;
}
.hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.45; z-index: 0;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}
.hero-glow {
  position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%);
  width: 70vw; height: 70vw; background: radial-gradient(circle, rgba(16,212,16,0.12) 0%, transparent 60%);
  z-index: 1; filter: blur(80px); pointer-events: none;
}
.hero-content {
  position: relative; z-index: 10; text-align: center; max-width: 1100px; padding: 0 24px;
  display: flex; flex-direction: column; align-items: center;
}
.hero-title {
  font-size: clamp(35px, 8vw, 110px); font-weight: 800; line-height: 1.05;
  letter-spacing: -0.04em; margin: 0 0 24px;
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px); color: rgba(255,255,255,0.65); font-weight: 400;
  max-width: 700px; margin: 0 auto 32px; line-height: 1;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* CRO Hero Buttons */
.hero-actions {
  display: flex; gap: 16px; margin-bottom: 40px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.btn-primary-cro {
  background: #fff; color: #000; text-decoration: none; font-size: 16px;
  font-weight: 600; padding: 14px 32px; border-radius: 99px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary-cro:hover {
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.25); background: #f4f4f5;
}
.btn-primary-cro:active { transform: scale(0.97); }

.btn-secondary-cro {
  background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; font-size: 16px;
  font-weight: 600; padding: 14px 32px; border-radius: 99px; border: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.2s, background 0.2s;
}
.btn-secondary-cro:hover {
  background: rgba(255,255,255,0.15); transform: translateY(-2px);
}
.btn-secondary-cro:active { transform: scale(0.97); }

/* Pricing Badges */
.pricing-badges {
  display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; justify-content: center;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
.pricing-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  background: rgba(25,25,25,0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 99px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8);
}
.pricing-badge i { color: #10d410; }

/* Social Proof Banner */
.social-proof-banner {
  position: relative; z-index: 20;
  width: 100%; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(25,25,25,0.3); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  padding: 24px; text-align: center; color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.social-proof-banner .avatars { display: flex; align-items: center; }
.social-proof-banner .avatar { width: 32px; height: 32px; border-radius: 50%; background: #333; border: 2px solid #000; margin-left: -10px; }
.social-proof-banner .avatar:first-child { margin-left: 0; background: #10d410; display: flex; align-items: center; justify-content: center; color: #000; font-weight: bold; font-size: 10px; }

/* Badges (Floating in Hero) */
.floating-badge {
  position: absolute; padding: 14px 28px; border-radius: 99px;
  background: rgba(25, 25, 25, 0.6); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4); white-space: nowrap; z-index: 6;
}
.badge-icon {
  width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px;
}
.badge-icon.green { background: #10d410; color: #000; box-shadow: 0 0 12px rgba(16,212,16,0.6); }
.badge-icon.blue { background: #3b82f6; color: #fff; box-shadow: 0 0 12px rgba(59,130,246,0.6); }
.badge-icon.purple { background: #a855f7; color: #fff; box-shadow: 0 0 12px rgba(168,85,247,0.6); }

.badge-3 { top: 15%; left: -10%; animation: floatObj 6s ease-in-out infinite 1.5s; }
.badge-4 { bottom: 10%; right: -10%; animation: floatObj 8s ease-in-out infinite 2s; }

@media (max-width: 992px) {
  .badge-3 { left: -5%; transform: scale(0.85); }
  .badge-4 { right: -5%; transform: scale(0.85); }
}
@media (max-width: 600px) {
  .hero-actions { flex-direction: column; width: 100%; max-width: 300px; }
  .btn-primary-cro, .btn-secondary-cro { width: 100%; text-align: center; }
  .floating-badge { padding: 10px 20px; font-size: 13px; }
  .badge-3 { top: 0%; left: 0%; }
  .badge-4 { bottom: 0%; right: 0%; }
}

/* NARRATIVE SCROLL (APPLE STYLE MINIMAL) */
.narrative-container { position: relative; width: 100%; z-index: 10; background: #050505; }
.narrative-section {
  position: relative; display: flex; align-items: center; justify-content: center;
  padding: 60px 24px; box-sizing: border-box; margin-bottom: 24px;
}

.scroll-content-layer { width: 100%; max-width: 1200px; margin: 0 auto; z-index: 10; }
.text-step { width: 100%; display: flex; justify-content: center; }
.narrative-card {
  max-width: 600px; padding: 48px; width: 100%; box-sizing: border-box;
  opacity: 0; transform: translateY(40px); filter: blur(6px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.narrative-card.is-visible {
  opacity: 1; transform: translateY(0); filter: blur(0);
}

.step-tag {
  display: inline-block; padding: 8px 20px; border-radius: 99px;
  background: rgba(255,255,255,0.1); color: #fff; font-size: 13px; font-weight: 600;
  margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.15);
  text-transform: uppercase; letter-spacing: 0.05em;
}
.step-title {
  font-size: clamp(36px, 5vw, 64px); font-weight: 800; margin: 0 0 24px; line-height: 1.1; letter-spacing: -0.03em;
}
.step-desc {
  font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0; font-weight: 400;
}
.step-stats {
  display: flex; gap: 40px; margin-top: 40px; flex-wrap: wrap;
}
.stat-val { font-size: 40px; font-weight: 800; color: #fff; line-height: 1; letter-spacing: -0.02em; }
.stat-lbl { font-size: 14px; color: rgba(255,255,255,0.5); font-weight: 500; margin-top: 8px; }

@media (max-width: 768px) {
  .text-step { padding: 0; align-items: center; justify-content: center; }
  .text-step.right { justify-content: center; }
  .narrative-card { padding: 32px 24px; background: rgba(20,20,20,0.85); backdrop-filter: blur(24px); border-radius: 24px; }
  .step-title { font-size: clamp(28px, 8vw, 36px); margin-bottom: 16px; text-align: center; }
  .step-desc { font-size: 15px; margin-bottom: 24px; line-height: 1.6; text-align: center; }
  .step-stats { gap: 24px; flex-direction: row; flex-wrap: wrap; justify-content: center !important; margin-top: 24px; }
  .stat-val { font-size: 32px; text-align: center; }
  .stat-lbl { font-size: 12px; margin-top: 4px; text-align: center; }
}

/* FOOTER */
.wm-footer {
  background: #050505; padding: 80px 24px 40px; border-top: 1px solid rgba(255,255,255,0.05); position: relative; z-index: 20;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 0;
}
.footer-logo { height: 24px; width: auto; filter: brightness(0) invert(1); margin-bottom: 36px; max-width: 160px; }
.social-links { display: flex; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; justify-content: center; }
.social-links a {
  color: rgba(255,255,255,0.4); font-size: 20px; transition: color 0.3s, transform 0.3s; display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05);
}
.social-links a:hover { color: #10d410; transform: translateY(-4px); background: rgba(255,255,255,0.08); border-color: rgba(16,212,16,0.3); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; font-weight: 500; }
.footer-links a:hover { color: #fff; }
.footer-copy { color: rgba(255,255,255,0.25); font-size: 13px; letter-spacing: 0.02em; }
@media (max-width: 600px) {
  .social-links { gap: 12px; flex-wrap: wrap; justify-content: center; width: 100%; }
  .social-links a { width: 36px; height: 36px; font-size: 16px; }
  .footer-links { gap: 16px; flex-wrap: wrap; }
  .footer-links a { font-size: 13px; }
}

/* KEYFRAMES */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes floatObj {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
