/* === RESET & ROOT === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --red: #E8192C;
  --red-dark: #C01020;
  --red-light: #FFF0F1;
  --gold: #F5A623;
  --ink: #0E0E10;
  --ink-2: #1C1C20;
  --ink-3: #2E2E35;
  --muted: #6B6B78;
  --muted-2: #9999A8;
  --light: #F4F4F7;
  --white: #FFFFFF;
  --border: rgba(0,0,0,0.07);
  --border-strong: rgba(0,0,0,0.12);
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* === NAV === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-logo .dot {
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.btn-nav {
  background: var(--red);
  color: white !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: background 0.2s, transform 0.15s !important;
}
.btn-nav:hover { background: var(--red-dark) !important; transform: translateY(-1px); }

/* === HERO === */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}

/* Left half background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 60%);
  z-index: 0;
}

/* Decorative blob */
.hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,25,44,0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-left {
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-light);
  border: 1px solid rgba(232,25,44,0.15);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}

.tag-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-h1 .line-1 { display: block; color: var(--ink); }
.hero-h1 .line-2 {
  display: block;
  color: var(--red);
  position: relative;
}

.underline-svg {
  position: absolute;
  bottom: -6px; left: 0;
  width: 100%;
  overflow: visible;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: white;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 24px rgba(232,25,44,0.3);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,25,44,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid var(--border-strong);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover {
  border-color: var(--ink-3);
  background: var(--light);
}

.hero-social-proof {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeUp 0.7s 0.4s ease both;
}

.avatars {
  display: flex;
}
.ava {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid white;
  margin-left: -10px;
  background: linear-gradient(135deg, #E8192C, #F5A623);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: white;
}
.ava:first-child { margin-left: 0; }
.ava:nth-child(2) { background: linear-gradient(135deg, #F5A623, #E8192C); }
.ava:nth-child(3) { background: linear-gradient(135deg, #C01020, #E8192C); }
.ava:nth-child(4) { background: linear-gradient(135deg, #0E0E10, #3E3E45); }

.proof-text {
  font-size: 0.88rem;
  color: var(--muted);
}
.proof-text strong { color: var(--ink); font-weight: 600; }

/* === HERO RIGHT (phone showcase) === */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  height: 100%;
}

/* hero-right-bg removed */

/* Phone stack */
.phone-stack {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

/* Each phone */
.phone {
  width: 190px;
  border-radius: 32px;
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.4,1);
  flex-shrink: 0;
  position: relative;
}

.phone-main {
  width: 220px;
  z-index: 3;
  position: relative;
}

.phone-left {
  transform: rotate(-9deg) translateX(36px) translateY(12px);
  z-index: 2;
  opacity: 0.9;
}

.phone-right {
  transform: rotate(9deg) translateX(-36px) translateY(12px);
  z-index: 2;
  opacity: 0.9;
}

.phone-stack:hover .phone-left { transform: rotate(-13deg) translateX(20px) translateY(4px); }
.phone-stack:hover .phone-right { transform: rotate(13deg) translateX(-20px) translateY(4px); }
.phone-stack:hover .phone-main { transform: translateY(-8px); }

.phone-frame-outer {
  position: relative;
  width: 100%;
}

/* Cadre du téléphone */
.phone-body {
  background: linear-gradient(160deg, #2a2a2e 0%, #1a1a1e 40%, #111114 100%);
  border-radius: 42px;
  padding: 14px 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 0 0 1.5px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 40px 80px rgba(0,0,0,0.6),
    0 10px 30px rgba(0,0,0,0.4);
  position: relative;
min-height: 420px;
}

/* Bouton power côté droit */
.phone-body::before {
  content: '';
  position: absolute;
  right: -3px;
  top: 28%;
  width: 3px;
  height: 52px;
  background: linear-gradient(180deg, #333 0%, #222 100%);
  border-radius: 0 3px 3px 0;
  box-shadow: 1px 0 2px rgba(0,0,0,0.5);
}

/* Boutons volume côté gauche */
.phone-body::after {
  content: '';
  position: absolute;
  left: -3px;
  top: 22%;
  width: 3px;
  height: 34px;
  background: linear-gradient(180deg, #333 0%, #222 100%);
  border-radius: 3px 0 0 3px;
  box-shadow: -1px 0 2px rgba(0,0,0,0.5);
}

/* Encoche / Dynamic Island */
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #0a0a0c;
  border-radius: 20px;
  z-index: 10;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.8);
}

/* Caméra dans l'encoche */
.phone-notch::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #1a3a5c 0%, #0d1f33 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.05), inset 0 0 4px rgba(100,180,255,0.2);
}

.phone-screen {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.phone-screen img {
  width: 100%;
  height: auto;
  display: block;
}

/* Reflet sur l'écran */
.phone-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 50%);
  border-radius: 30px;
  pointer-events: none;
  z-index: 5;
}

/* Floating pills */
.float-pill {
  position: absolute;
  background: white;
  border-radius: 100px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 10;
  animation: float 3s ease-in-out infinite;
}

.float-pill .pill-icon {
  font-size: 1rem;
}

.fp1 { top: 15%; left: -2%; animation-delay: 0s; }
.fp2 { bottom: 28%; right: -2%; animation-delay: 1s; }
.fp3 { bottom: 12%; left: -2%; animation-delay: 0.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* === SECTION SHARED === */
.section {
  padding: 100px 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 20px;
}

.section-eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--ink);
}

.section-title .accent { color: var(--red); }

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin-top: 16px;
}

/* === FEATURES BENTO === */
.features-section {
  background: var(--light);
  padding: 100px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-top: 60px;
}

.bento-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.bc-1 { grid-column: span 3; }
.bc-2 { grid-column: span 3; background: var(--ink); color: white; }
.bc-3 { grid-column: span 2; }
.bc-4 { grid-column: span 2; }
.bc-5 { grid-column: span 2; }
.bc-6 { grid-column: span 4; }
.bc-7 { grid-column: span 2; background: var(--red); color: white; }

.bento-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.bento-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}

.bc-2 .bento-desc, .bc-7 .bento-desc { color: rgba(255,255,255,0.65); }
.bc-2 .bento-title, .bc-7 .bento-title { color: white; }

.bento-bg-number {
  position: absolute;
  bottom: -20px; right: 20px;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 800;
  opacity: 0.04;
  color: var(--ink);
  line-height: 1;
}

/* === HOW IT WORKS === */
.how-section { padding: 100px 0; }

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 64px;
  position: relative;
}

.steps-row::before {
  content: '';
  position: absolute;
  top: 36px; left: 16%; right: 16%;
  height: 1.5px;
  background: repeating-linear-gradient(
    90deg, var(--border-strong) 0px, var(--border-strong) 8px, transparent 8px, transparent 18px
  );
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.step-num.active {
  background: var(--red);
  box-shadow: 0 12px 40px rgba(232,25,44,0.35);
}

.step-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
}

/* === COMPARISON TABLE === */
.why-section {
  background: var(--ink);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -300px; right: -300px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(232,25,44,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.why-section .section-title { color: white; }
.why-section .section-sub { color: rgba(255,255,255,0.55); }
.why-section .section-eyebrow { color: var(--red); }
.why-section .section-eyebrow::before { background: var(--red); }

.cmp-table {
  margin-top: 60px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}

.cmp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: center;
  font-size: 0.95rem;
  transition: background 0.15s;
}

.cmp-row:last-child { border-bottom: none; }
.cmp-row:not(.cmp-head):hover { background: rgba(255,255,255,0.03); }

.cmp-head {
  background: rgba(255,255,255,0.04);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.5);
}

.cmp-feat { color: rgba(255,255,255,0.8); font-weight: 500; }

.yes-val {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 700;
}

.no-val {
  color: rgba(255,255,255,0.2);
  font-weight: 500;
}

.col-header-wach {
  color: var(--red);
  font-family: var(--font-display);
}

.col-header-lbc {
  color: rgba(255,255,255,0.4);
}

/* === WAITLIST / CTA === */
.waitlist-section { padding: 100px 0; }

.waitlist-card {
  background: var(--red);
  border-radius: var(--r-xl);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.waitlist-card::before {
  content: '';
  position: absolute;
  top: -150px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.waitlist-card .section-title { color: white; position: relative; z-index: 1; }
.waitlist-card .section-sub { color: rgba(255,255,255,0.75); position: relative; z-index: 1; margin: 0 auto; text-align: center; }

.waitlist-form {
  display: flex;
  max-width: 460px;
  margin: 40px auto 0;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.waitlist-form input {
  flex: 1;
  padding: 16px 22px;
  border-radius: 100px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.15);
  color: white;
  backdrop-filter: blur(8px);
  outline: none;
  transition: background 0.2s;
}

.waitlist-form input::placeholder { color: rgba(255,255,255,0.5); }
.waitlist-form input:focus { background: rgba(255,255,255,0.22); }

.btn-white {
  background: white;
  color: var(--red);
  padding: 16px 28px;
  border-radius: 100px;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }

#formSuccess {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 20px;
  position: relative;
  z-index: 1;
  display: none;
}

.stores {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}

/* === FOOTER === */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--ink); }

.footer-copy {
  font-size: 0.85rem;
  color: var(--muted);
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.2, 0.8, 0.4, 1), transform 0.65s cubic-bezier(0.2, 0.8, 0.4, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right-bg { display: none; }
  .hero-right { padding: 40px; margin: 0 20px 60px; }
  .hero-left { padding: 80px 20px 40px; }
  .float-pill { display: none; }
  .phone-left, .phone-right { display: none; }
  .phone-main { width: 200px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bc-1,.bc-2,.bc-3,.bc-4,.bc-5,.bc-6,.bc-7 { grid-column: span 1; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .cmp-row { padding: 14px 20px; font-size: 0.85rem; }
  .waitlist-card { padding: 48px 28px; }
  .waitlist-form { flex-direction: column; }
  .footer-inner { flex-direction: column; text-align: center; }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .container { padding: 0 24px; }
}

