/* ===========================
   SOIRÉE2MALADE — style.css
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700&display=swap');

/* ==============================
   GLOBAL RESET
   ============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { display: block; max-width: 100%; }

::selection { background: var(--violet); color: var(--text); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

/* ==============================
   DESIGN TOKENS
   ============================== */
:root {
  --bg: #050814;
  --bg-elevated: #0A0E1A;
  --surface: rgba(255, 255, 255, 0.04);
  --text: #F8FAFC;
  --text-muted: rgba(255, 255, 255, 0.5);
  --rose: #E91E8C;
  --violet: #9B4DFF;
  --gold: #D4AF37;
  --line: rgba(255, 255, 255, 0.06);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 20px;
}

/* ==============================
   GLASS
   ============================== */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.15) 0%,
    rgba(255,255,255,0.04) 25%,
    rgba(255,255,255,0) 50%,
    rgba(255,255,255,0) 70%,
    rgba(255,255,255,0.04) 85%,
    rgba(255,255,255,0.12) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.glass:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

/* ==============================
   GRAIN
   ============================== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* ==============================
   CURSOR GLOW
   ============================== */
.cursor-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(155, 77, 255, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  will-change: left, top;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ==============================
   ORBS FLOTTANTS
   ============================== */
@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(80px, -60px) scale(1.1); }
  50% { transform: translate(-40px, 40px) scale(0.95); }
  75% { transform: translate(60px, 80px) scale(1.05); }
}
@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-60px, 80px) scale(1.05); }
  50% { transform: translate(50px, -30px) scale(1.1); }
  75% { transform: translate(-80px, -60px) scale(0.95); }
}
@keyframes float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(70px, 50px) scale(1.08); }
  66% { transform: translate(-50px, -70px) scale(0.97); }
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(155, 77, 255, 0.18), transparent 70%);
  top: -200px; right: -100px;
  animation: float-1 20s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.12), transparent 70%);
  bottom: -100px; left: -100px;
  animation: float-2 25s ease-in-out infinite;
}
.orb-3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(155, 77, 255, 0.08), transparent 70%);
  top: 50%; left: 30%;
  animation: float-3 30s ease-in-out infinite;
}

/* ==============================
   SCROLL ANIMATIONS
   ============================== */
[data-animate] {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              filter  1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate].visible { opacity: 1; filter: blur(0); transform: translateY(0); }

[data-animate="from-left"] {
  opacity: 0; filter: blur(8px); transform: translateX(-60px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              filter  1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate="from-left"].visible { opacity: 1; filter: blur(0); transform: translateX(0); }

[data-animate="from-right"] {
  opacity: 0; filter: blur(8px); transform: translateX(60px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              filter  1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate="from-right"].visible { opacity: 1; filter: blur(0); transform: translateX(0); }

[data-animate="scale"] {
  opacity: 0; filter: blur(6px); transform: scale(0.9) translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.34, 1.4, 0.64, 1),
              filter  0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.34, 1.4, 0.64, 1);
}
[data-animate="scale"].visible { opacity: 1; filter: blur(0); transform: scale(1) translateY(0); }

[data-animate="delay-1"] { transition-delay: 0.1s; }
[data-animate="delay-2"] { transition-delay: 0.2s; }
[data-animate="delay-3"] { transition-delay: 0.3s; }

/* ==============================
   TYPOGRAPHY
   ============================== */
.text-gradient {
  background: linear-gradient(135deg, var(--violet), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--text);
  line-height: 0.95;
  letter-spacing: -2px;
  margin-top: 16px;
}

/* ==============================
   NAVBAR
   ============================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(5, 8, 20, 0.8);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 14px;
  color: var(--text);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-link {
  display: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding: 8px 16px;
  border-radius: 999px;
  transition: color 0.3s;
}
.nav-link:hover { color: var(--text); }
@media (min-width: 768px) { .nav-link { display: block; } }
.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--bg);
  background: var(--text);
  padding: 8px 20px;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ==============================
   BADGE PILL
   ============================== */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  /* override glass */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.badge-pill::before { display: none; }

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 8px var(--violet);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* ==============================
   BUTTONS
   ============================== */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(155,77,255,0.3), 0 0 60px rgba(233,30,140,0.12); }
  50% { box-shadow: 0 0 50px rgba(155,77,255,0.5), 0 0 100px rgba(233,30,140,0.25); }
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  background: linear-gradient(135deg, var(--violet), var(--rose));
  border: none;
  cursor: pointer;
  text-decoration: none;
  animation: glow-pulse 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  white-space: nowrap;
}
.btn-primary:hover {
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 60px rgba(155,77,255,0.5), 0 0 120px rgba(233,30,140,0.25);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary svg {
  width: 22px; height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}
.btn-primary-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
  gap: 3px;
}
.btn-primary-sub {
  font-size: 10px;
  opacity: 0.75;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.btn-primary-main {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

/* ==============================
   HERO
   ============================== */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 100% 25%; }
  50% { background-position: 50% 100%; }
  75% { background-position: 25% 0%; }
}
@keyframes aurora-shift {
  0%, 100% { background-position: 0% 50%; }
  33% { background-position: 100% 20%; }
  66% { background-position: 60% 80%; }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 80px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #050814 0%, #0D0520 25%, #150A30 50%, #1A0828 75%, #050814 100%);
  background-size: 400% 400%;
  animation: gradient-shift 15s ease-in-out infinite;
}
.hero-aurora {
  position: absolute;
  inset: -50%;
  opacity: 0.12;
  background: linear-gradient(-45deg, #9B4DFF, #E91E8C, #050814, #9B4DFF, #E91E8C);
  background-size: 500% 500%;
  animation: aurora-shift 12s ease infinite;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
/* Video background */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 8, 20, 0.3)  0%,
    rgba(5, 8, 20, 0.1)  40%,
    rgba(5, 8, 20, 0.6)  80%,
    rgba(5, 8, 20, 1)    100%
  );
}
.hero-video:not([src]),
.hero-video[src=""] { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  will-change: transform;
}
.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  color: var(--text);
  line-height: 0.9;
  letter-spacing: -4px;
  max-width: 800px;
  margin: 0 auto;
}
.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  letter-spacing: 0.2px;
  max-width: 420px;
  margin: 28px auto 0;
}
.hero-cta { margin-top: 40px; }
.hero-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px;
}
.stat-pill {
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
  /* override glass */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.stat-pill::before { display: none; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.5s ease;
}
.scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}
.scroll-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-arrow {
  color: rgba(255, 255, 255, 0.3);
  animation: bounce-down 2s ease-in-out infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0);  opacity: 0.3; }
  50%       { transform: translateY(8px); opacity: 0.6; }
}

/* H1 line animation */
.h1-line {
  display: inline;
  opacity: 0;
  filter: blur(6px);
}

/* ==============================
   FEATURES
   ============================== */
.features {
  padding: 140px 48px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 100px 0;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-row + .feature-row {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.feature-row-reverse { flex-direction: row-reverse; }

.feature-text { flex: 1; min-width: 0; }

.feature-num {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: var(--violet);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.feature-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.feature-text p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
  max-width: 380px;
}
.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.feature-tag {
  padding: 5px 12px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}
.feature-tag:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
}

.feature-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  will-change: transform;
  /* override glass */
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  overflow: visible;
}
.feature-visual::before { display: none; }
.feature-visual::after { display: none; }

/* Glow derrière le téléphone */
.feature-visual .visual-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(60px);
  z-index: 0;
}
.feature-row:nth-child(odd) .visual-glow {
  background: radial-gradient(circle, var(--violet) 0%, transparent 70%);
}
.feature-row:nth-child(even) .visual-glow {
  background: radial-gradient(circle, var(--rose) 0%, transparent 70%);
}

/* Phone mockup */
@keyframes phone-float {
  0%, 100% { transform: translateY(0px) rotate(-1.5deg); }
  50% { transform: translateY(-18px) rotate(1.5deg); }
}
@keyframes phone-float-alt {
  0%, 100% { transform: translateY(-8px) rotate(1deg); }
  50% { transform: translateY(10px) rotate(-1deg); }
}

.phone-mockup {
  position: relative;
  z-index: 1;
  width: 260px;
  will-change: transform;
  animation: phone-float 7s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
  transition: filter 0.6s ease;
}
.phone-mockup:hover {
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 40px rgba(155, 77, 255, 0.1));
}
.phone-mockup img { width: 100%; display: block; }

.feature-row:nth-child(3) .phone-mockup { animation-name: phone-float-alt; }
.feature-row:nth-child(5) .phone-mockup { animation-name: phone-float-alt; animation-delay: -2s; }

.screen-placeholder {
  width: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(160deg, rgba(155,77,255,0.08) 0%, rgba(233,30,140,0.04) 100%);
}
.screen-placeholder .ph-icon { font-size: 28px; opacity: 0.3; }
.screen-placeholder .ph-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==============================
   STATS — Grille éditoriale
   ============================== */
.stats {
  padding: 60px 24px 120px;
  max-width: 1200px;
  margin: 0 auto;
}
.stats-card {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.stats-card::before { display: none; }

.stat {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}
.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%; width: 1px;
  background: rgba(255, 255, 255, 0.06);
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text);
  letter-spacing: -2px;
  display: block;
  line-height: 1;
}
.stat-plus {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--rose);
  letter-spacing: -1px;
  vertical-align: super;
}
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 8px;
  display: block;
  line-height: 1.4;
}

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials {
  padding: 0 24px 140px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial-card {
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  will-change: transform;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  color: var(--violet);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}
.testimonial-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.quote {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}
.author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.author-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--text);
}
.author-badge {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: var(--violet);
  background: rgba(155, 77, 255, 0.08);
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(155, 77, 255, 0.15);
}

/* ==============================
   ANTI-FEATURE
   ============================== */
.anti-feature {
  padding: 160px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.anti-feature::before,
.anti-feature::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto 60px;
}
.anti-feature::after { margin: 60px auto 0; }

.anti-content { position: relative; z-index: 1; }

.anti-line {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 4.5rem);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -2px;
}
.anti-line:nth-child(1) { color: var(--text); }
.anti-line:nth-child(2) { color: rgba(255, 255, 255, 0.25); }
.anti-line:nth-child(3) {
  background: linear-gradient(135deg, var(--violet), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.anti-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 40px;
  line-height: 1.8;
}

/* ==============================
   CTA FINAL
   ============================== */
.cta-final {
  position: relative;
  text-align: center;
  padding: 160px 24px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.cta-final h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--text);
  line-height: 0.9;
  letter-spacing: -3px;
}
.cta-final p,
.cta-final .cta-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 24px;
  margin-bottom: 40px;
}

/* ==============================
   FOOTER
   ============================== */
footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 24px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
footer span, footer a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}
footer a:hover { color: rgba(255, 255, 255, 0.5); }
.footer-left { display: flex; flex-direction: column; gap: 4px; }
.footer-right { display: flex; gap: 24px; flex-wrap: wrap; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 900px) {
  .features { padding: 80px 24px; }
  .feature-row,
  .feature-row-reverse {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 60px 0;
  }
  .feature-text p { max-width: 100%; }
  .feature-tags { justify-content: center; }
  .feature-visual { min-height: auto; width: 100%; }

  .testimonial-grid { grid-template-columns: 1fr; }

  .stats-card { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2)::after { display: none; }

  footer {
    flex-direction: column;
    gap: 16px;
    padding: 32px 24px;
  }

  .navbar { padding: 16px 24px; }
  .anti-feature { padding: 100px 24px; }
  .cta-final { padding: 100px 24px; }
}

/* ==============================
   ANDROID WAITLIST BUTTON
   ============================== */
.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.btn-android {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  border-radius: 999px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-android:hover {
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.btn-android:active { transform: translateY(0); }
.btn-android-play {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.btn-android-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.1;
  gap: 3px;
}
.btn-android-sub {
  font-size: 10px;
  opacity: 0.65;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.btn-android-main {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

/* ==============================
   ANDROID WAITLIST MODAL
   ============================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(5, 8, 20, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: linear-gradient(160deg, #0F1224 0%, #1A0F2E 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 44px 36px 36px;
  text-align: center;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(155, 77, 255, 0.08);
}
.modal-overlay.open .modal-card {
  transform: scale(1) translateY(0);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}
.modal-icon {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 18px;
}
.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.modal-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
  margin-bottom: 28px;
}
.modal-input-wrap {
  margin-bottom: 10px;
}
.modal-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s;
}
.modal-input::placeholder { color: rgba(255, 255, 255, 0.22); }
.modal-input:focus { border-color: rgba(155, 77, 255, 0.55); }
.modal-btn {
  width: 100%;
  padding: 15px 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #9B4DFF, #6A1FC2);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  box-shadow: 0 8px 32px rgba(155, 77, 255, 0.3);
}
.modal-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.modal-btn:active { transform: translateY(0); }
.modal-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
@keyframes modal-spin { to { transform: rotate(360deg); } }
.modal-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: modal-spin 0.7s linear infinite;
  flex-shrink: 0;
}
.modal-error {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #FF6B8A;
  margin-top: 10px;
  text-align: center;
}
.modal-success { padding: 16px 0; }
.modal-success-icon { font-size: 48px; margin-bottom: 14px; }
.modal-success-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.hidden { display: none !important; }

@media (max-width: 600px) {
  .hero h1 { letter-spacing: -2.5px; }
  .hero-stats { gap: 8px; }
  .stat-pill { font-size: 11px; padding: 6px 12px; }
  .cta-final h2 { letter-spacing: -2px; }
  .section-header h2 { letter-spacing: -1.5px; }
  .anti-line { letter-spacing: -1.5px; }
  .orb-3 { display: none; }
}
