/* =========================================================================
   DUMP. LANDING PAGE — PREMIUM LIQUID GLASS DESIGN SYSTEM
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --bg: #07050D;
  --fg: #ffffff;
  --text-primary: #ffffff;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;
  --text-dark: #52525B;

  --accent: #7C3AED;
  --accent-light: #A78BFA;
  --accent-pink: #EC4899;
  --accent-gradient: linear-gradient(135deg, #EC4899 0%, #A855F7 50%, #7C3AED 100%);
  --accent-glow: rgba(124, 58, 237, 0.4);

  --border-subtle: rgba(124, 58, 237, 0.18);
  --border-glass: rgba(124, 58, 237, 0.32);

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: hidden;
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  line-height: 1.6;
}

.grain-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 192px 192px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
  transform-origin: center center;
  animation: noise 0.3s steps(2) infinite;
}

@keyframes noise {
  0%   { background-position: 0 0 }
  10%  { background-position: -10px -10px }
  20%  { background-position: -20px 10px }
  30%  { background-position: 10px -20px }
  40%  { background-position: -10px 30px }
  50%  { background-position: -20px 10px }
  60%  { background-position: 30px 0 }
  70%  { background-position: 0 20px }
  80%  { background-position: -30px 0 }
  90%  { background-position: 20px 10px }
  100% { background-position: 10px 0 }
}

a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { max-width: 100%; display: block; }

.a-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.a-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.28) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-40%);
  animation: aurora-drift-1 18s ease-in-out infinite alternate;
}

.a-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(167,139,250,0.16) 0%, transparent 70%);
  bottom: -100px;
  right: -80px;
  animation: aurora-drift-2 22s ease-in-out infinite alternate;
}

.a-orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79,70,229,0.14) 0%, transparent 70%);
  top: 30%;
  left: -80px;
  animation: aurora-drift-3 15s ease-in-out infinite alternate;
}

.a-orb-4 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(250,147,250,0.14) 0%, transparent 70%);
  top: 15%;
  right: 5%;
  animation: aurora-drift-2 19s ease-in-out 3s infinite alternate;
}

.aurora-bg-cta .a-orb-1 {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: aurora-pulse 12s ease-in-out infinite alternate;
}

.aurora-bg-cta .a-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(167,139,250,0.12) 0%, transparent 70%);
  top: -50px;
  right: 10%;
  animation: aurora-drift-2 18s ease-in-out infinite alternate;
}

@keyframes aurora-drift-1 {
  0%   { transform: translateX(-40%) translateY(0) scale(1); }
  50%  { transform: translateX(-50%) translateY(-60px) scale(1.1); }
  100% { transform: translateX(-30%) translateY(40px) scale(0.92); }
}

@keyframes aurora-drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-60px, -40px) scale(1.15); }
  100% { transform: translate(40px, 60px) scale(0.9); }
}

@keyframes aurora-drift-3 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(60px, -30px) scale(1.1); }
  100% { transform: translate(-30px, 50px) scale(0.95); }
}

@keyframes aurora-pulse {
  0%   { transform: translate(-50%, -50%) scale(0.9); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* ── Dot Grid Background ────────────────────────────────── */
.dotgrid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 100%);
  animation: dotgrid-drift 25s ease-in-out infinite alternate;
}

@keyframes dotgrid-drift {
  0%   { background-position: 0px 0px; }
  100% { background-position: 18px 18px; }
}

/* ── Mesh Gradient Background ───────────────────────────── */
.mesh-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.m-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.m-orb-1 {
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.22) 0%, transparent 70%);
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%);
  animation: mesh-drift-1 20s ease-in-out infinite alternate;
}

.m-orb-2 {
  width: 500px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(167,139,250,0.14) 0%, transparent 70%);
  top: 50%;
  right: 15%;
  transform: translate(50%, -50%);
  animation: mesh-drift-2 26s ease-in-out infinite alternate;
}

@keyframes mesh-drift-1 {
  0%   { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-40%, -60%) scale(1.2); }
}

@keyframes mesh-drift-2 {
  0%   { transform: translate(50%, -50%) scale(1); }
  100% { transform: translate(40%, -40%) scale(1.15); }
}

/* ── Liquid Glass ───────────────────────────────────────── */
.liquid-glass {
  background: rgba(255, 255, 255, 0.02);
  background-blend-mode: luminosity;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.liquid-glass:hover {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    0 12px 32px rgba(0, 0, 0, 0.2);
}

.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.25) 0%,
    rgba(255,255,255,0.08) 20%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.08) 80%,
    rgba(255,255,255,0.25) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.liquid-glass-strong {
  background: rgba(255, 255, 255, 0.03);
  background-blend-mode: luminosity;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: none;
  box-shadow:
    4px 4px 4px rgba(0,0,0,0.05),
    inset 0 1px 1px rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.liquid-glass-strong:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.16),
    0 20px 48px rgba(0, 0, 0, 0.3);
}

.liquid-glass-strong::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.4) 0%,
    rgba(255,255,255,0.12) 20%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.12) 80%,
    rgba(255,255,255,0.4) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

/* ── Badge ──────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: var(--fg);
  color: var(--bg);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--bg);
  background: var(--fg);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255,255,255,0.1);
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-primary);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}

.btn-glass:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  color: white;
  background: var(--accent);
  box-shadow: 0 12px 32px var(--accent-glow);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}

.btn-accent:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 24px 48px var(--accent-glow);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color 0.3s;
  cursor: pointer;
}

.btn-text:hover { color: var(--text-primary); }

/* ── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  height: 56px;
  padding: 0 8px 0 20px;
  border-radius: var(--radius-full);
}

.nav-logo {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-period {
  color: var(--accent-light);
  font-style: italic;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.nav-link:hover { color: var(--text-primary); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--fg);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  transition: all 0.3s var(--ease-out);
  flex-shrink: 0;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

.nav-cta svg {
  width: 14px;
  height: 14px;
}

/* ── Burger button ──────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  margin-right: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px) {
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
}

/* ── Mobile menu overlay ────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(10, 6, 20, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 40px;
}
.mobile-nav-link {
  font-family: var(--font-body);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: center;
  padding: 20px 0;
  width: 100%;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.mobile-nav-link:hover { color: var(--text-primary); }
.mobile-nav-cta {
  margin-top: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: var(--radius-full);
  background: var(--fg);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.mobile-nav-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}
.mobile-nav-cta svg { width: 14px; height: 14px; }

/* ── Hero Shader Canvas ─────────────────────────────────── */
#hero-shader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.7;
}

.hero-shader-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(7, 5, 13, 0.1) 0%, var(--bg) 100%),
    linear-gradient(to bottom, rgba(7, 5, 13, 0.45) 0%, rgba(7, 5, 13, 0) 25%, rgba(7, 5, 13, 0) 70%, var(--bg) 100%);
}

/* ── Hero Section ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 24px 100px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  animation: glowFloat 20s ease-in-out infinite alternate;
}

.hero-glow-2 {
  bottom: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  opacity: 0.5;
  animation: glowFloat 25s ease-in-out 5s infinite alternate-reverse;
}

@keyframes glowFloat {
  0% { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(-50%) translateY(40px); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero h1 {
  margin-bottom: 28px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 40px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 480px) {
  .hero-cta-group { flex-direction: row; justify-content: center; }
}

.hero-trial-note {
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  color: var(--text-dark);
}

/* ── Rotating tagline ───────────────────────────────────── */
.hero-rotating-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  margin-bottom: 20px;
  overflow: hidden;
}

.hero-rotating-slot {
  position: relative;
  display: inline-block;
  height: 2rem;
  overflow: hidden;
}

.hero-rotating-word {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--accent-light);
  padding: 2px 14px;
  border-radius: var(--radius-full);
  background: rgba(192, 132, 252, 0.1);
  border: 1px solid rgba(192, 132, 252, 0.2);
  white-space: nowrap;
  animation: none;
}

.hero-rotating-word.slide-out {
  animation: rotateOut 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-rotating-word.slide-in {
  animation: rotateIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes rotateOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-120%); }
}

@keyframes rotateIn {
  from { opacity: 0; transform: translateY(120%); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero word animation */
.hero-word {
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(30px);
  transition: all 0.6s var(--ease-out);
}

.hero-word.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ── Demo Input ─────────────────────────────────────────── */
.demo-container {
  margin: 48px auto 0;
  max-width: 480px;
  position: relative;
}

.demo-input-card {
  width: 100%;
  padding: 28px 24px;
  min-height: 120px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s var(--ease-out);
}

.demo-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.demo-cursor {
  display: inline-block;
  width: 2px;
  height: 22px;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: middle;
  animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink { 50% { opacity: 0; } }

.demo-actions {
  position: absolute;
  bottom: 14px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-mic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 16px var(--accent-glow);
}

.demo-btn-wrapper {
  margin-top: 20px;
  text-align: center;
  transition: all 0.5s var(--ease-out);
}

.demo-dump-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 48px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  background: var(--accent);
  color: white;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.demo-card-slot {
  position: relative;
}

.demo-success {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.5s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
  z-index: 20;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
}

.demo-success.active {
  opacity: 1;
  transform: scale(1);
}

.success-icon {
  display: flex;
  background: rgba(34, 197, 94, 0.15);
  padding: 4px;
  border-radius: 50%;
  color: #4ade80;
}

.demo-view {
  transition: all 0.5s ease;
}

.demo-container.is-success .demo-view {
  opacity: 0;
  transform: scale(0.95);
  filter: blur(8px);
}

.feedback-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(192, 132, 252, 0.25);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--accent-light);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s ease;
  pointer-events: none;
  margin-top: 14px;
}

.feedback-badge.active {
  opacity: 1;
  transform: translateY(0);
}

/* Category Specific Badges (App Coherence) */
.feedback-badge.badge-task {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(96, 165, 250, 0.3);
  color: #60a5fa;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.12);
}
.feedback-badge.badge-idea {
  background: rgba(236, 72, 153, 0.08);
  border-color: rgba(244, 114, 182, 0.3);
  color: #f472b6;
  box-shadow: 0 4px 16px rgba(236, 72, 153, 0.12);
}
.feedback-badge.badge-business {
  background: rgba(124, 58, 237, 0.08);
  border-color: rgba(167, 139, 250, 0.3);
  color: #a78bfa;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.12);
}
.feedback-badge.badge-wellness {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(52, 211, 153, 0.3);
  color: #34d399;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.12);
}

/* ── Social Proof ───────────────────────────────────────── */
.social-proof {
  padding: 60px 0;
  text-align: center;
}

.social-proof-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--text-dark);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-proof-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .social-proof-logos { gap: 56px; }
}

.social-proof-item {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}

.social-proof-item:hover {
  color: rgba(255,255,255,0.5);
}

/* ── Problem Section ────────────────────────────────────── */
.problem-section {
  position: relative;
}

.problem-section .section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.problem-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, var(--bg), transparent);
  z-index: 1;
}

.problem-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: 1;
}

.problem-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.problem-lines {
  list-style: none;
  margin: 32px 0 40px;
}

.problem-lines li {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: var(--text-secondary);
  line-height: 1.8;
  padding: 8px 0;
}

.problem-lines li + li {
  border-top: 1px solid var(--border-subtle);
}

/* ── How Demo Wrap ──────────────────────────────────────── */
.how-demo-wrap {
  max-width: 480px;
  margin: 64px auto 0;
  text-align: center;
}

.how-demo-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  color: var(--text-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* ── Solution / How It Works ────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 100px;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.step-card {
  text-align: center;
  padding: 42px 30px;
  border-radius: var(--radius-lg);
  background: rgba(12, 8, 24, 0.6);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s var(--ease-out);
}

.step-card:hover {
  transform: translateY(-8px);
  background: rgba(12, 8, 24, 0.85);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
}

.step-icon-wrap {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
  transition: all 0.4s var(--ease-out);
}

.step-icon {
  width: 26px;
  height: 26px;
  color: var(--accent-light);
  transition: all 0.4s var(--ease-out);
}

/* Animated SVG Icons */
.animated-icon {
  width: 26px;
  height: 26px;
  color: var(--accent-light);
  transition: all 0.4s var(--ease-out);
  display: block;
}

/* 1. Sparkles animation (Twinkle) */
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.1); }
}
.sparkles-anim .sparkle {
  transform-origin: center;
  animation: sparkleTwinkle 2.5s ease-in-out infinite;
}
.sparkles-anim .s1 { animation-delay: 0s; }
.sparkles-anim .s2 { animation-delay: 0.8s; }
.sparkles-anim .s3 { animation-delay: 1.6s; }

/* 2. Wave equalization animation */
@keyframes waveGrowth {
  0%, 100% { transform: scaleY(0.25); }
  50% { transform: scaleY(1.1); }
}
.wave-anim {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5px;
  width: 26px;
  height: 26px;
}
.wave-anim .w-line {
  width: 2.5px;
  height: 18px;
  background: var(--accent-light);
  border-radius: 99px;
  transform-origin: center;
  animation: waveGrowth 1.2s ease-in-out infinite;
  transition: background-color 0.4s;
}
.wave-anim .l1 { animation-delay: 0.1s; }
.wave-anim .l2 { animation-delay: 0.3s; }
.wave-anim .l3 { animation-delay: 0.5s; }
.wave-anim .l4 { animation-delay: 0.2s; }
.wave-anim .l5 { animation-delay: 0.4s; }

.step-card:hover .wave-anim .w-line {
  background: #fff;
}

/* 3. CPU Core / Pins animation */
@keyframes cpuPulse {
  0%, 100% { fill: rgba(124, 58, 237, 0); stroke-width: 2; }
  50% { fill: rgba(124, 58, 237, 0.4); stroke-width: 2.5; }
}
@keyframes pinGlow {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}
.cpu-anim .cpu-core {
  animation: cpuPulse 2.2s ease-in-out infinite;
}
.cpu-anim .pin {
  animation: pinGlow 1.8s ease-in-out infinite;
}
.cpu-anim .p1, .cpu-anim .p3, .cpu-anim .p5, .cpu-anim .p7 { animation-delay: 0s; }
.cpu-anim .p2, .cpu-anim .p4, .cpu-anim .p6, .cpu-anim .p8 { animation-delay: 0.9s; }

.step-num-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #07050D;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.step-card:hover .step-icon-wrap {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.25);
  transform: scale(1.06);
}

.step-card:hover .step-icon {
  color: #fff;
  transform: rotate(8deg);
}

.step-card h3 {
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.step-card p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Features Chess ─────────────────────────────────────── */
.chess-row {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  margin-bottom: 80px;
}

.chess-row:last-child { margin-bottom: 0; }

@media (min-width: 768px) {
  .chess-row {
    flex-direction: row;
    gap: 64px;
  }
  .chess-row.reverse { flex-direction: row-reverse; }
}

.chess-text {
  flex: 1;
}

.chess-text h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 16px;
}

.chess-text p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 440px;
}

.chess-visual {
  flex: 1;
  max-width: 480px;
  width: 100%;
}

.chess-visual-inner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Chat Mockup */
.chat-mockup {
  width: 100%;
  max-width: 400px;
  padding: 24px;
  border-radius: var(--radius-lg);
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 20px;
}

.chat-header-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-header-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.chat-bubble {
  padding: 12px 16px;
  border-radius: 18px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 85%;
}

.chat-user {
  background: var(--accent);
  color: white;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.chat-ai {
  background: rgba(124,58,237,0.1);
  color: var(--text-secondary);
  border-bottom-left-radius: 4px;
}

.chat-ai strong {
  color: var(--text-primary);
}

.chat-ai .bullet {
  color: var(--accent-light);
}

.chat-input-mock {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  margin-top: 16px;
}

.chat-input-mock span {
  flex: 1;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.chat-send {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

/* Classification Visual */
.classify-visual {
  width: 100%;
  padding: 32px;
  border-radius: var(--radius-lg);
}

.classify-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.classify-item:last-child { border-bottom: none; }

.classify-emoji {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
}

.classify-content {
  flex: 1;
}

.classify-title {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.classify-cat {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--accent-light);
}

.classify-arrow {
  color: var(--text-dark);
}

/* ── Features Grid ──────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease-out);
}

.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.04);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.25rem;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(124,58,237,0.05));
  border: 1px solid rgba(124,58,237,0.2);
  color: var(--accent-light);
  box-shadow: 0 8px 16px rgba(124,58,237,0.05);
}

.feature-card h4 {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.feature-card p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Stats ──────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--text-primary);
  line-height: 0.8;
}

.stat-num::after {
  content: '+';
  font-size: 0.5em;
  vertical-align: super;
  margin-left: 2px;
  opacity: 0.5;
}

.stat-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
}

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(167,139,250,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--accent-light);
}

.testimonial-name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.testimonial-role {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-left: 4px;
  padding-right: 4px;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 2;
}

.faq-btn {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--text-secondary);
  text-align: left;
  transition: color 0.3s;
}

.faq-btn:hover { color: var(--text-primary); }
.faq-btn.active { color: var(--accent-light); }

.faq-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-btn.active svg {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  opacity: 0;
}

.faq-content.open {
  max-height: 600px;
  opacity: 1;
  padding-bottom: 24px;
}

.faq-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── CTA Section ────────────────────────────────────────── */
.cta-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(60px);
}

.cta-content {
  position: relative;
  z-index: 10;
}

.cta-content h2 {
  font-size: clamp(2.75rem, 6vw, 5rem);
  margin-bottom: 20px;
}

.cta-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .cta-buttons { flex-direction: row; justify-content: center; }
}

.cta-note {
  margin-top: 20px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  color: var(--text-dark);
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  color: var(--text-dark);
  transition: color 0.3s;
}

.footer-link:hover { color: var(--text-secondary); }

.footer-copy {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--text-dark);
}

/* ── Reveal Animations ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  filter: blur(8px);
  transition:
    opacity 1s var(--ease-out),
    transform 1s var(--ease-out),
    filter 1s var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.stagger-item.active {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section Header ─────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Apple-style Store Badge ────────────────────────────── */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  background: var(--fg);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
}

.store-badge:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 48px rgba(255,255,255,0.15);
}

.store-badge svg {
  width: 22px;
  height: 22px;
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.animate-fade-in {
  animation: fadeInUp 0.8s var(--ease-out) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.7s; }
.delay-6 { animation-delay: 0.9s; }
.delay-7 { animation-delay: 1.1s; }

/* ── Hero App Icon 3D ───────────────────────────────────── */
.hero-app-icon-container {
  perspective: 1000px;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}

.hero-app-icon-3d {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(10deg) rotateY(-10deg);
  box-shadow: 
    2px 2px 0 rgba(255,255,255,0.1),
    -1px -1px 0 rgba(0,0,0,0.2),
    10px 20px 40px rgba(0,0,0,0.5),
    0 0 50px rgba(124,58,237,0.3);
  transition: all 0.6s var(--ease-out);
  background: #000;
  overflow: hidden;
}

.hero-app-icon-3d:hover {
  transform: rotateX(0deg) rotateY(0deg) scale(1.05);
  box-shadow: 
    0 0 0 1px rgba(255,255,255,0.2),
    0 30px 70px rgba(124,58,237,0.5);
}

.hero-app-icon-3d img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-app-icon-gloss {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

/* ── Hero Trial Sub ─────────────────────────────────────── */
.hero-trial-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  color: var(--text-dark);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* ── Nav-logo update ────────────────────────────────────── */

/* ── Floating Thoughts Background ──────────────────────── */
.thoughts-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.thought-particle {
  position: absolute;
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(255,255,255,0.16);
  pointer-events: none;
  white-space: nowrap;
  transform-origin: center center;
  animation: thought-emerge var(--dur, 4s) ease-out forwards;
  user-select: none;
}

@keyframes thought-emerge {
  0%   { opacity: 0;    transform: translate(-50%,-50%) scale(0.2); }
  15%  { opacity: 0.2; }
  65%  { opacity: 0.1; transform: translate(-50%,-50%) scale(1.1); }
  100% { opacity: 0;   transform: translate(-50%,-50%) scale(2.4); }
}

/* ── Demo frameless — typing row ────────────────────────── */
.demo-container {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 8px;
  text-align: center;
}

/* Overlay: typing row + result occupy same space so button stays fixed */
.demo-overlay {
  display: grid;
  grid-template-areas: "layer";
  min-height: 88px;
  align-items: center;
  justify-items: center;
  margin-bottom: 4px;
}

.demo-typing-row,
.demo-result {
  grid-area: layer;
}

.demo-typing-row {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  width: 100%;
}

/* Demo result — success + badge stacked and centered */
.demo-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
}

.demo-result.active {
  opacity: 1;
  transform: translateY(0);
}

.demo-success-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--text-primary);
}

/* Badge delayed within demo-result */
.demo-result .feedback-badge {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  margin-top: 0;
}

.demo-result .feedback-badge.active {
  opacity: 1;
  transform: translateY(0);
}

/* Gemini badge centered wrapper */
.gemini-badge-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 8px;
}

.gemini-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

/* ── Dump IA — full showcase ─────────────────────────────── */
.dump-ia-showcase {
  margin-top: clamp(100px, 12vw, 160px);
  position: relative;
}

/* Ambient glow behind the whole section */
.dump-ia-showcase::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
  z-index: 0;
  max-width: 100vw;
}

.dump-ia-showcase > * { position: relative; z-index: 1; }

/* Centered header */
.dump-ia-showcase-header {
  text-align: center;
  margin-bottom: 40px;
}

/* Big "Dump IA" brand label */
.dump-ia-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.2);
}

.dump-ia-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.dump-ia-subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Feature tags row */
.dump-ia-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.dump-ia-tag {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-out);
}

.dump-ia-tag:hover {
  color: var(--accent-light);
  border-color: rgba(139,92,246,0.3);
  background: rgba(139,92,246,0.06);
}

/* Chat window block */
.dump-ia-block {
  max-width: 620px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  background: rgba(10,6,20,0.6);
  border: 1px solid rgba(139,92,246,0.2);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 32px 80px rgba(0,0,0,0.5), 0 0 60px rgba(124,58,237,0.08);
  backdrop-filter: blur(12px);
}

/* Chat window header bar */
.dump-ia-chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}

.dump-ia-chat-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52,211,153,0.6);
  animation: status-pulse 2.5s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 6px rgba(52,211,153,0.5); }
  50%       { box-shadow: 0 0 14px rgba(52,211,153,0.9); }
}

.dump-ia-chat-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.dump-ia-chat-online {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #34d399;
  margin-left: auto;
  opacity: 0.8;
}

/* Chat messages area */
.dump-ia-chat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px;
}

.ia-msg {
  padding: 12px 16px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: 88%;
}

.ia-msg-user {
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  border-radius: 14px 14px 4px 14px;
  align-self: flex-end;
}

.ia-msg-ai {
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.18);
  color: var(--text-secondary);
  border-radius: 14px 14px 14px 4px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.ia-msg-ai svg { flex-shrink: 0; margin-top: 2px; }
.ia-msg-ai strong { color: var(--text-primary); }

/* Chat footer */
.dump-ia-chat-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}

/* ── Security — distinct glass cards ────────────────────── */
.security-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: clamp(80px, 10vw, 120px);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .security-duo { grid-template-columns: 1fr 1fr; }
}

.security-glass-card {
  display: flex;
  gap: 20px;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  background: rgba(12, 8, 24, 0.65);
  border: 1px solid var(--border-subtle);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.security-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.security-glass-card:hover::before { opacity: 1; }

.security-glass-card:hover {
  background: rgba(124,58,237,0.05);
  border-color: rgba(124,58,237,0.2);
  transform: translateY(-3px);
}

.security-glass-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(124,58,237,0.05));
  border: 1px solid rgba(124,58,237,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(124,58,237,0.1);
}

.security-icon-vault {
  background: linear-gradient(135deg, rgba(167,139,250,0.15), rgba(167,139,250,0.05));
  border-color: rgba(167,139,250,0.25);
  color: #c4b5fd;
  box-shadow: 0 0 20px rgba(167,139,250,0.1);
}

.security-glass-body {
  flex: 1;
}

.security-glass-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.security-glass-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.security-glass-tag {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0.06em;
  opacity: 0.7;
}

/* ── Founder statement ───────────────────────────────────── */
.founder-statement {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.founder-statement-quote {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  position: relative;
}

.founder-glyph {
  display: inline-block;
  font-family: Georgia, serif;
  font-size: 1.2em;
  color: var(--accent);
  opacity: 0.5;
  margin-right: 4px;
  vertical-align: top;
  line-height: 0.9;
}

.founder-statement-sig {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.founder-sig-line {
  width: 32px;
  height: 1px;
  background: var(--border-subtle);
}

.founder-sig-name {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.founder-handwritten,
.founder-signature-img {
  max-width: 220px;
  height: auto;
  filter: invert(1) brightness(1.2);
  opacity: 0.85;
  margin-top: -10px;
  transform: rotate(-2deg);
  pointer-events: none;
  user-select: none;
}

/* ── Reduced Motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-word { opacity: 1; filter: none; transform: none; }
  .reveal { opacity: 1; filter: none; transform: none; }
}

/* ── Hero icon centered ─────────────────────────────────── */
.hero-app-icon {
  margin-left: auto;
  margin-right: auto;
}

/* ── Navbar without logo ────────────────────────────────── */
.navbar-inner {
  padding: 0 8px 0 28px;
}

/* ── Section spacing ────────────────────────────────────── */
.section {
  padding: clamp(72px, 7vw, 104px) 0;
  overflow-x: hidden;
}

/* ── Testimonials 2-col + rating ────────────────────────── */
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); max-width: 720px; }
}

.testimonials-rating {
  font-size: 1rem;
  color: #fbbf24;
  margin-top: 8px;
}

.testimonials-rating span {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 300;
  margin-left: 4px;
}

/* ── Violet decorative background ──────────────────────── */
.decor-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.decor-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
}

.decor-orb-1 {
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(109,40,217,0.18) 0%, transparent 65%);
  top: -20vh;
  left: 50%;
  transform: translateX(-50%);
  animation: decor-float-1 28s ease-in-out infinite alternate;
}

.decor-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 65%);
  top: 45vh;
  left: -15vw;
  animation: decor-float-2 22s ease-in-out infinite alternate;
}

.decor-orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(167,139,250,0.1) 0%, transparent 65%);
  bottom: 10vh;
  right: -10vw;
  animation: decor-float-3 30s ease-in-out infinite alternate;
}

.decor-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.08);
  pointer-events: none;
}

.decor-ring-1 {
  width: 700px;
  height: 700px;
  top: 20vh;
  right: -15vw;
  animation: decor-spin 60s linear infinite;
}

.decor-ring-2 {
  width: 400px;
  height: 400px;
  top: 60vh;
  left: 5vw;
  border-color: rgba(192,132,252,0.06);
  animation: decor-spin 90s linear infinite reverse;
}

@keyframes decor-float-1 {
  0%   { transform: translateX(-50%) translateY(0) scale(1); }
  50%  { transform: translateX(-55%) translateY(-60px) scale(1.08); }
  100% { transform: translateX(-45%) translateY(40px) scale(0.94); }
}

@keyframes decor-float-2 {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(80px, -100px) scale(1.1); }
}

@keyframes decor-float-3 {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(-60px, 80px) scale(1.15); }
}

@keyframes decor-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════════════════════
   PREMIUM ANIMATIONS
   ══════════════════════════════════════════════════════════ */

/* ── Hero icon — soft glow pulse ────────────────────────── */
@keyframes icon-breathe {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 20px 60px rgba(124,58,237,0.45); }
  50%       { box-shadow: 0 0 0 1px rgba(255,255,255,0.18), 0 24px 80px rgba(124,58,237,0.75), 0 0 48px rgba(139,92,246,0.25); }
}
.hero-app-icon {
  animation: icon-breathe 4s ease-in-out 1.2s infinite;
}

/* ── Demo Dump button — glow pulse while idle ────────────── */
@keyframes btn-breathe {
  0%, 100% { box-shadow: 0 4px 16px rgba(124,58,237,0.5); }
  50%       { box-shadow: 0 4px 32px rgba(124,58,237,0.85), 0 0 60px rgba(139,92,246,0.2); }
}
.demo-dump-btn {
  animation: btn-breathe 2.8s ease-in-out infinite;
}

/* ── Chat bubbles — sequential reveal ───────────────────── */
.ia-anim {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}
.ia-anim.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Thinking dots */
.ia-msg-thinking {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 18px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.18);
  border-radius: 14px 14px 14px 4px;
  width: fit-content;
}
.ia-msg-thinking span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  opacity: 0.4;
  animation: dot-pulse 1.2s ease-in-out infinite;
}
.ia-msg-thinking span:nth-child(2) { animation-delay: 0.2s; }
.ia-msg-thinking span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dot-pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.85); }
  50%       { opacity: 1;   transform: scale(1.15); }
}

/* ── Security icon — shimmer on reveal ──────────────────── */
.security-glass-icon {
  position: relative;
  overflow: hidden;
}
.security-glass-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 25%, rgba(255,255,255,0.18) 50%, transparent 75%);
  transform: translateX(-100%);
  transition: none;
}
.security-glass-card.shimmer .security-glass-icon::after {
  animation: icon-shimmer 0.7s ease-out forwards;
}
@keyframes icon-shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(200%); }
}

/* ── Founder — quote mark fade + sig line draw ───────────── */
.founder-glyph {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.founder-statement.active .founder-glyph {
  opacity: 0.5;
  transform: translateY(0);
}
.founder-sig-line {
  width: 0;
  transition: width 0.9s var(--ease-out) 0.5s;
}
.founder-statement.active .founder-sig-line {
  width: 32px;
}

/* ── Store badge — shimmer sweep ────────────────────────── */
.store-badge {
  position: relative;
  overflow: hidden;
}
.store-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  transform: skewX(-15deg);
}
.store-badge.shimmer-run::after {
  animation: badge-shimmer 0.8s ease-out forwards;
}
@keyframes badge-shimmer {
  from { left: -80%; }
  to   { left: 140%; }
}

/* ── Demo — App style ───────────────────────────────────── */
.demo-app-card {
  width: 100%;
  min-height: 140px;
  background: rgba(10, 6, 24, 0.85);
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}

.demo-app-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.demo-app-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  flex-shrink: 0;
}

.demo-app-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: -0.01em;
}

.demo-app-body {
  flex: 1;
  padding: 20px 20px 12px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  min-height: 60px;
  line-height: 1.5;
}

.demo-app-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 20px 16px;
}

.demo-app-success {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: rgba(10, 6, 24, 0.92);
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.5s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  pointer-events: none;
  z-index: 20;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}

.demo-app-success.active {
  opacity: 1;
  transform: scale(1);
}

/* ── Steps grid spacing when below demo ─────────────────── */
.steps-grid {
  margin-top: 40px;
}

/* ── Trust Pillars ──────────────────────────────────────── */
.trust-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.08), 0 0 0 1px rgba(255,255,255,0.06);
}

@media (min-width: 768px) {
  .trust-pillars { flex-direction: row; }
}

.trust-pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 48px 40px;
}

.trust-pillar-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.06);
}

@media (min-width: 768px) {
  .trust-pillar-divider {
    width: 1px;
    height: auto;
  }
}

.trust-pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(124,58,237,0.05));
  border: 1px solid rgba(124,58,237,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
}

.trust-pillar-body h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 10px;
  font-style: normal;
  letter-spacing: -0.02em;
}

.trust-pillar-body p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── Founder Card ───────────────────────────────────────── */
.founder-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 80px;
  border-radius: var(--radius-xl);
  position: relative;
}

@media (max-width: 768px) {
  .founder-card { padding: 40px 32px; }
}

.founder-quote-mark {
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 24px;
  display: block;
  user-select: none;
}

.founder-quote {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  color: var(--text-secondary);
  line-height: 1.9;
  font-style: normal;
  margin-bottom: 40px;
}

.founder-sig {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.founder-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.founder-role {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Pricing Grid ───────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 860px;
  margin: 56px auto 0;
  text-align: left;
}

@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

.pricing-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform 0.4s var(--ease-out);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card-featured {
  background: rgba(124,58,237,0.08);
  box-shadow: inset 0 1px 1px rgba(192,132,252,0.15), 0 0 0 1px rgba(124,58,237,0.2);
}

.pricing-badge-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: white;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pricing-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.pricing-price {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--accent-light);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}

.pricing-features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--accent-light);
  font-weight: 700;
}

.pricing-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  color: var(--text-dark);
  margin-top: 24px;
  text-align: center;
}

/* ── Demo simple card ───────────────────────────────────── */
.demo-simple-card {
  width: 100%;
  min-height: 96px;
  background: rgba(10, 6, 24, 0.8);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}

/* ── Security strip ─────────────────────────────────────── */
.security-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
  flex-wrap: wrap;
}

.security-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--text-dark);
  padding: 0 20px;
}

.security-item svg {
  color: rgba(139,92,246,0.5);
  flex-shrink: 0;
}

.security-sep {
  width: 1px;
  height: 14px;
  background: var(--border-subtle);
}

/* ── Navbar brand (logo + name) ─────────────────────────── */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-brand-img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

/* ── Step icon ───────────────────────────────────────────── */
.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent-light);
}

.step-icon-gemini {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

/* ── Gemini powered badge ────────────────────────────────── */
.gemini-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 28px auto 0;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

/* ── Security cards (expanded) ───────────────────────────── */
.security-strip {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin: 40px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

@media (min-width: 640px) {
  .security-strip { flex-direction: row; }
}

.security-card {
  flex: 1;
  padding: 24px 28px;
}

.security-sep {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .security-sep { width: 1px; height: auto; }
}

.security-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.security-card-header svg {
  color: rgba(139,92,246,0.6);
  flex-shrink: 0;
}

.security-card-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--text-dark);
  line-height: 1.65;
  margin: 0;
}

/* ── Footer brand ───────────────────────────────────────── */
.footer-inner {
  flex-direction: column;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
  opacity: 0.9;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

/* ── Scroll reveal improvements ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  filter: blur(4px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out),
    filter 0.9s var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}



.stagger-item {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.stagger-item.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}



/* -- HERO DISPLAY KING ---------------------------------------- */
h1 {
  font-family: var(--font-heading) !important;
  font-size: clamp(2.75rem, 6vw, 5.5rem) !important;
  line-height: 0.85 !important;
  letter-spacing: -0.06em !important;
  font-weight: 700 !important;
  margin-bottom: 0.5em !important;
  text-transform: none !important;
  white-space: normal !important;
}

h2 {
  font-family: var(--font-heading) !important;
  font-size: clamp(2rem, 4.5vw, 4rem) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.04em !important;
  font-weight: 700 !important;
  margin-bottom: 0.5em !important;
  text-transform: none !important;
}

.hero-content {
  max-width: min(1100px, 95vw) !important;
  width: 100% !important;
}

@media (max-width: 768px) {
  h1 {
    font-size: clamp(2rem, 10vw, 3.5rem) !important;
    line-height: 0.9 !important;
  }
  h2 {
    font-size: clamp(1.75rem, 7vw, 2.5rem) !important;
  }
}

/* ── Mobile overflow & spacing fixes ───────────────────── */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }

  /* Reduce hero top padding on mobile */
  .hero {
    padding-top: 100px !important;
    padding-bottom: 60px !important;
  }

  /* More breathing room on sides for all sections */
  .container {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  /* CTA section: clip any overflow at source */
  .cta-section {
    overflow: hidden !important;
  }

  /* CTA: stack buttons, prevent width overflow */
  .cta-buttons {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    max-width: 320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .store-badge,
  .cta-buttons > a {
    width: 100% !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    padding: 14px 20px !important;
  }

  .cta-content {
    padding-left: 24px !important;
    padding-right: 24px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  /* Extra tight padding */
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .cta-content, .hero-content {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Prevent any child from breaking out */
  section, .section { overflow: hidden; }

  /* Steps — stack on mobile */
  .steps-grid {
    grid-template-columns: 1fr !important;
  }

  /* Security cards — stack on mobile */
  .security-duo {
    grid-template-columns: 1fr !important;
  }

  /* Dump IA chat — readable on mobile */
  .dump-ia-block {
    margin-left: 0;
    margin-right: 0;
  }

  /* Footer links wrapping */
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ═══════════════ BRAINSPACE ═══════════════ */
#brainspace .section-sub {
  max-width: 620px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  line-height: 1.6;
}
.brainspace-stage {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 420px;
  margin: 48px auto 0;
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 45%, rgba(139, 92, 246, 0.12), rgba(0, 0, 0, 0) 70%);
  border: 1px solid rgba(139, 92, 246, 0.18);
}
#brainspace-neural {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.brainspace-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bs-bubble {
  position: absolute;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  background: rgba(20, 12, 35, 0.72);
  border: 1px solid rgba(192, 132, 252, 0.35);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: bsFloat 7s ease-in-out infinite;
}
.bs-b1 { top: 16%; left: 14%; animation-delay: 0s; }
.bs-b2 { top: 24%; right: 12%; animation-delay: 1.2s; }
.bs-b3 { top: 60%; left: 9%;  animation-delay: 2.1s; }
.bs-b4 { top: 50%; left: 44%; animation-delay: 0.6s; }
.bs-b5 { bottom: 16%; right: 16%; animation-delay: 1.7s; }
@keyframes bsFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}
.bs-feats-title {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 64px 0 6px;
}

.brainspace-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 40px auto 0;
}
.bs-feat {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.bs-feat h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bs-feat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  line-height: 1.55;
}
@media (max-width: 720px) {
  .brainspace-stage { height: 320px; }
  .brainspace-feats { grid-template-columns: 1fr; }
  .bs-bubble { font-size: 0.78rem; padding: 7px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .bs-bubble { animation: none; }
}

/* ═══════════════ SHOWCASE — marquee captures app ═══════════════ */
.showcase {
  padding: 64px 0 64px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.showcase-track {
  display: flex;
  gap: 26px;
  width: max-content;
  padding: 28px 13px;
  animation: showcaseScroll 46s linear infinite;
  will-change: transform;
}
.showcase:hover .showcase-track { animation-play-state: paused; }
.showcase-card {
  flex: 0 0 auto;
  height: 540px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.18);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s, border-color 0.45s;
}
.showcase-card img {
  height: 100%;
  width: auto;
  display: block;
}
.showcase-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 36px 90px rgba(139, 92, 246, 0.4);
  border-color: rgba(192, 132, 252, 0.5);
}
@keyframes showcaseScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 720px) {
  .showcase-card { height: 420px; border-radius: 24px; }
  .showcase-track { gap: 18px; animation-duration: 36s; }
}
@media (prefers-reduced-motion: reduce) {
  .showcase-track { animation: none; }
}

/* ═══════════════ BRAINSPACE — bulles façon app ═══════════════ */
.bs-net { position: absolute; inset: 0; pointer-events: none; z-index: 2; }
.bs-node {
  position: absolute;
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1px; text-align: center;
  background: rgba(12, 8, 24, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(167, 139, 250, 0.32);
  box-shadow: 
    0 12px 34px rgba(124, 58, 237, 0.18), 
    inset 0 1px 8px rgba(255, 255, 255, 0.15),
    inset 0 -2px 6px rgba(124, 58, 237, 0.25);
  animation: bsFloat 12s ease-in-out infinite;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.8s, box-shadow 0.8s;
  cursor: default;
  pointer-events: auto;
  overflow: hidden;
}
.bs-node i { font-size: 19px; font-style: normal; line-height: 1; margin-bottom: 2px; }
.bs-node b { font-size: 11.5px; font-weight: 600; color: #fff; }
.bs-node em { font-size: 9px; font-style: normal; color: rgba(255, 255, 255, 0.6); }

.bs-node:hover {
  transform: scale(1.08) !important;
  border-color: rgba(167, 139, 250, 0.55);
  box-shadow:
    0 20px 48px rgba(124, 58, 237, 0.3),
    inset 0 1px 12px rgba(255, 255, 255, 0.22),
    inset 0 -2px 10px rgba(124, 58, 237, 0.4);
}

/* Reflet type bulle de savon */
.bs-node::before {
  content: '';
  position: absolute;
  top: 6%;
  left: 14%;
  width: 46%;
  height: 32%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 35%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0) 70%);
  filter: blur(2px);
  pointer-events: none;
}

.bs-node.alt {
  border-color: rgba(147, 197, 253, 0.35);
  box-shadow: 
    0 12px 34px rgba(59, 130, 246, 0.18), 
    inset 0 1px 8px rgba(255, 255, 255, 0.15),
    inset 0 -2px 6px rgba(59, 130, 246, 0.25);
}

.bs-node.alt:hover {
  border-color: rgba(147, 197, 253, 0.65);
  box-shadow: 
    0 20px 48px rgba(59, 130, 246, 0.35), 
    inset 0 1px 12px rgba(255, 255, 255, 0.25),
    inset 0 -2px 10px rgba(59, 130, 246, 0.45);
}

.bs-node.n1 { top: 8%;  left: 8%;   animation-delay: -1s; animation-duration: 10s; }
.bs-node.n2 { top: 10%; left: 45%;  animation-delay: -3s; animation-duration: 13s; }
.bs-node.n3 { top: 14%; right: 7%;  animation-delay: -5s; animation-duration: 11s; }
.bs-node.n4 { top: 52%; left: 5%;   animation-delay: -2s; animation-duration: 14s; }
.bs-node.n5 { top: 44%; left: 30%;  animation-delay: -4s; animation-duration: 9.5s; }
.bs-node.n6 { top: 56%; right: 24%; animation-delay: -7s; animation-duration: 12s; }
.bs-node.n7 { bottom: 6%; left: 20%; animation-delay: -6s; animation-duration: 12.5s; }
.bs-node.n8 { bottom: 10%; right: 6%; animation-delay: -8s; animation-duration: 10.5s; }
.bs-node.n9 { bottom: 4%; left: 46%; animation-delay: -10s; animation-duration: 15s; }

/* Tailles proportionnelles au nombre de dumps */
.bs-node.sz-5 { width: 128px; height: 128px; z-index: 3; }
.bs-node.sz-5 i { font-size: 30px; }
.bs-node.sz-5 b { font-size: 14.5px; }
.bs-node.sz-5 em { font-size: 10.5px; }
.bs-node.sz-3 { width: 102px; height: 102px; z-index: 2; }
.bs-node.sz-3 i { font-size: 24px; }
.bs-node.sz-3 b { font-size: 12.5px; }
.bs-node.sz-2 { width: 90px; height: 90px; }
.bs-node.sz-2 i { font-size: 21px; }

@media (max-width: 720px) {
  .bs-node { width: 62px; height: 62px; }
  .bs-node.sz-5 { width: 96px; height: 96px; }
  .bs-node.sz-5 i { font-size: 22px; }
  .bs-node.sz-3 { width: 78px; height: 78px; }
  .bs-node.sz-2 { width: 69px; height: 69px; }
  .bs-node i { font-size: 15px; }
  .bs-node b { font-size: 9px; }
  .bs-node em { font-size: 8px; }
}
@media (prefers-reduced-motion: reduce) { .bs-node { animation: none; } }

/* ── Bento Grid Section ── */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1000px;
  margin: 54px auto 0;
}

/* Duo : 2 cartes par rangee, compact (cibles / faits separes)
   NB: selecteurs doubles (.bento-grid.bento-grid-duo) pour battre la regle
   3 colonnes de .bento-grid declaree plus bas dans le fichier. */
.bento-grid.bento-grid-duo {
  gap: 20px;
  margin: 28px auto 0;
  max-width: 880px;
}
@media (min-width: 768px) {
  .bento-grid.bento-grid-duo {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .bento-grid-duo .bento-card { padding: 30px; }
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bento-large {
    grid-column: span 2;
  }
  .bento-medium {
    grid-column: span 1;
  }
}

.bento-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(12, 8, 24, 0.65);
  border: 1px solid var(--border-subtle);
  transition: all 0.45s var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(124,58,237,0.2) 50%, rgba(255,255,255,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-6px);
  background: rgba(12, 8, 24, 0.85);
  border-color: var(--border-hover);
  box-shadow: 
    0 24px 48px rgba(124, 58, 237, 0.15),
    inset 0 1px 1px rgba(255,255,255,0.08);
}

.bento-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  transition: all 0.4s var(--ease-out);
}

.bento-icon i, .bento-icon svg {
  width: 24px;
  height: 24px;
}

.bento-card:hover .bento-icon {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
  transform: scale(1.05) rotate(4deg);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
}

.bento-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bento-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-light);
}

.bento-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.01em;
}

.bento-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.bento-stat-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
  margin-top: 8px;
}

.bento-stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  flex-shrink: 0;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bento-stat-num.bento-stat-down {
  background: linear-gradient(135deg, #EC4899 0%, #F43F5E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bento-stat-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.bento-source {
  font-size: 0.64rem;
  color: rgba(255, 255, 255, 0.3);
  display: block;
  margin-top: 2px;
  font-style: normal;
}


/* ═══════════════ APP PHONE MOCKUP — démo fidèle à l'app réelle ═══════════════ */
.how-demo-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 56px;
}
.app-phone {
  position: relative;
  width: 320px;
  min-height: 600px;
  border-radius: 46px;
  padding: 14px 22px 28px;
  background:
    radial-gradient(circle at 50% 30%, rgba(124, 58, 237, 0.22), transparent 60%),
    linear-gradient(180deg, #0c0816 0%, #050308 100%);
  border: 1.5px solid rgba(139, 92, 246, 0.22);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset,
    0 60px 120px rgba(124, 58, 237, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.app-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  border-radius: 16px;
  background: #000;
  z-index: 3;
}
.app-phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 4px 0;
}
.app-phone-statusicons { display: flex; align-items: center; gap: 5px; color: #fff; }

.app-phone-brand {
  text-align: center;
  margin-top: 36px;
}
.app-phone-wordmark {
  font-family: var(--font-heading, inherit);
  font-weight: 800;
  font-size: 30px;
  color: #fff;
  letter-spacing: -0.02em;
}
.app-phone-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff, #c084fc);
  box-shadow: 0 0 10px 2px rgba(192, 132, 252, 0.7);
  margin-left: 3px;
  vertical-align: middle;
}
.app-phone-tagline {
  display: block;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
  letter-spacing: 0.01em;
}

/* Demo card : mockup epure (frappe + resultat uniquement) */
.demo-card {
  width: min(540px, 100%);
  margin: 0 auto;
  border-radius: 28px;
  padding: 38px 30px 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.16), transparent 65%),
    linear-gradient(180deg, #0c0816 0%, #070410 100%);
  border: 1.5px solid rgba(139, 92, 246, 0.22);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 40px 90px rgba(124, 58, 237, 0.10);
  display: flex;
  flex-direction: column;
}
.demo-card .app-phone-input { margin-top: 0; flex: none; min-height: 72px; }
.demo-card .app-phone-result { position: static; margin-top: 8px; min-height: 64px; }

.app-phone-input {
  position: relative;
  flex: 1;
  margin-top: 64px;
  padding: 0 6px;
  text-align: center;
  font-size: 17px;
  color: #fff;
  font-weight: 500;
  min-height: 70px;
}
.app-phone-placeholder {
  position: absolute;
  inset: 0;
  color: rgba(255, 255, 255, 0.28);
  font-size: 17px;
  font-weight: 500;
  transition: opacity 0.3s;
}
#demo-typing-row { transition: opacity 0.3s, transform 0.3s; }
#demo-typing-row:not(:empty) ~ .app-phone-placeholder,
.app-phone-input:has(#demo-text:not(:empty)) .app-phone-placeholder { opacity: 0; }
.demo-cursor {
  display: inline-block;
  width: 2px;
  height: 18px;
  background: #c084fc;
  margin-left: 2px;
  vertical-align: middle;
  animation: demoCursorBlink 0.9s steps(1) infinite;
}
@keyframes demoCursorBlink { 50% { opacity: 0; } }

.app-phone-result {
  position: absolute;
  left: 0; right: 0;
  top: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.app-phone-result.active { opacity: 1; transform: translateY(0); }
.app-phone-success {
  display: flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; color: #4ADE80;
}
.feedback-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.16);
  border: 1px solid rgba(167, 139, 250, 0.3);
  color: #d8c4ff;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s, transform 0.35s;
}
.feedback-badge.active { opacity: 1; transform: translateY(0); }

.app-phone-mic {
  width: 56px; height: 56px;
  margin: 18px auto 10px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.app-phone-category {
  text-align: center;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}
.app-phone-category span {
  display: inline-block;
  margin-left: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

.app-phone-btn-row {
  display: flex; justify-content: center;
  margin-bottom: 22px;
  transition: opacity 0.3s, transform 0.3s;
}
.app-phone-dumpbtn {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  font-size: 14px;
}

.app-phone-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 28px;
  padding: 12px 0 2px;
  color: rgba(255, 255, 255, 0.5);
}
.app-phone-navdot {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #c084fc, #7c3aed);
  box-shadow: 0 0 18px 2px rgba(139, 92, 246, 0.5);
}
@media (max-width: 480px) {
  .app-phone { width: 280px; min-height: 540px; }
}


/* ==================== PREMIUM POLISH ==================== */

/* Badge App Store officiel (2 lignes) */
.store-badge { gap: 14px; padding: 13px 30px 13px 26px; border-radius: 14px; }
.store-badge svg { width: 30px; height: 30px; }
.store-badge-lines { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.store-badge-lines small { font-size: 0.7rem; font-weight: 500; opacity: 0.75; letter-spacing: 0.02em; }
.store-badge-lines strong { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; }

/* Spotlight : halo qui suit la souris sur les cartes */
.spotlight { position: relative; }
.spotlight::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(167, 139, 250, 0.13), transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.spotlight:hover::after { opacity: 1; }

/* CTA magnetique */
.btn-primary { will-change: transform; }

/* Orbes parallax */
.decor-orb { will-change: transform; }

/* Compteur : petit pop a l'apparition */
.bento-stat-num { display: inline-block; }
.bento-stat-num.counting { animation: statPop 0.5s var(--ease-out); }
@keyframes statPop {
  0% { transform: scale(0.85); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

/* Bulles BrainSpace : apparition en cascade au scroll */
.bs-net .bs-node { opacity: 0; transform: scale(0.6); }
.bs-net.bs-in .bs-node {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.6s var(--ease-out), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bs-net.bs-in .bs-node:nth-child(1) { transition-delay: 0.05s; }
.bs-net.bs-in .bs-node:nth-child(2) { transition-delay: 0.15s; }
.bs-net.bs-in .bs-node:nth-child(3) { transition-delay: 0.25s; }
.bs-net.bs-in .bs-node:nth-child(4) { transition-delay: 0.35s; }
.bs-net.bs-in .bs-node:nth-child(5) { transition-delay: 0.45s; }
.bs-net.bs-in .bs-node:nth-child(6) { transition-delay: 0.55s; }
.bs-net.bs-in .bs-node:nth-child(7) { transition-delay: 0.65s; }
.bs-net.bs-in .bs-node:nth-child(8) { transition-delay: 0.75s; }
.bs-net.bs-in .bs-node:nth-child(9) { transition-delay: 0.85s; }

@media (prefers-reduced-motion: reduce) {
  .spotlight::after { display: none; }
  .bs-net .bs-node { opacity: 1; transform: none; }
}


/* ==================== POLISH V2 ==================== */

/* Labels de rangee : separation nette cibles / faits */
.bento-row-label {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 880px;
  margin: 48px auto 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(167, 139, 250, 0.85);
  white-space: nowrap;
}
.bento-row-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(167, 139, 250, 0.3), transparent);
}
.bento-row-label-2 { margin-top: 72px; }
.bento-row-label + .bento-grid-duo { margin-top: 20px; }

/* Section header espace (securite) */
.section-header-spaced { margin-top: 96px; }

/* Demo card : contenu centre verticalement et horizontalement */
.demo-card { justify-content: center; min-height: 240px; }
.demo-card .app-phone-input {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.demo-card .app-phone-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-card #demo-typing-row { max-width: 90%; }


/* SEO footer tagline */
.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin: 0 0 10px;
}
