  :root {
    --primary: #8B5CF6;
    --primary-light: #A78BFA;
    --primary-lighter: #C4B5FD;
    --primary-dark: #7C3AED;
    --primary-deep: #5B21B6;
    --accent: #EC4899;
    --accent-light: #F472B6;
    --highlight: #06B6D4;
    --green: #22c55e;
    --orange: #F97316;
    --bg: #06060b;
    --bg-card: rgba(255,255,255,0.02);
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(139,92,246,0.3);
    --glass: rgba(255,255,255,0.03);
    --glass-border: rgba(255,255,255,0.07);
    --text-1: #f5f5f7;
    --text-2: rgba(255,255,255,0.55);
    --text-3: rgba(255,255,255,0.3);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  h1, h2, h3, h4 {
    font-family: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
  }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text-1);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Grain overlay */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
  }

  /* ── SCROLL PROGRESS ── */
  .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--highlight));
    z-index: 1000;
    width: 0%;
    transition: width 0.1s linear;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeInUp { from { opacity:0; transform:translateY(36px); } to { opacity:1; transform:translateY(0); } }
  @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  @keyframes scaleIn { from { opacity:0; transform:scale(0.92); } to { opacity:1; transform:scale(1); } }
  @keyframes floatPhone { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }
  @keyframes livePulse { 0%,100% { opacity:1; box-shadow:0 0 0 0 rgba(34,197,94,0.4); } 50% { opacity:0.5; box-shadow:0 0 0 6px rgba(34,197,94,0); } }
  @keyframes pulseRing { 0%,100% { box-shadow:0 0 0 0 rgba(139,92,246,0.2); } 50% { box-shadow:0 0 0 28px rgba(139,92,246,0); } }
  @keyframes gradientShift { 0% { background-position:0% 50%; } 50% { background-position:100% 50%; } 100% { background-position:0% 50%; } }
  @keyframes shimmer { 0% { background-position:-200% 0; } 100% { background-position:200% 0; } }
  @keyframes meshMove {
    0% { background-position: 0% 0%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
  }
  @keyframes particleRise { 0% { transform:translateY(0) scale(0); opacity:0; } 10% { opacity:0.5; } 90% { opacity:0.5; } 100% { transform:translateY(-100vh) scale(1); opacity:0; } }
  @keyframes borderGlow {
    0%,100% { opacity:0.5; }
    50% { opacity:1; }
  }
  @keyframes rotateGrad {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  @keyframes heroTextReveal {
    from { clip-path: inset(0 100% 0 0); }
    to { clip-path: inset(0 0% 0 0); }
  }
  @keyframes glowPulse {
    0%,100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
  }
  @keyframes screenFade {
    0% { opacity:0; transform:scale(0.97); }
    8% { opacity:1; transform:scale(1); }
    22% { opacity:1; transform:scale(1); }
    30% { opacity:0; transform:scale(0.97); }
    100% { opacity:0; transform:scale(0.97); }
  }
  @keyframes tickUp {
    0% { transform:translateY(0); opacity:1; }
    45% { transform:translateY(0); opacity:1; }
    50% { transform:translateY(-100%); opacity:0; }
    51% { transform:translateY(100%); opacity:0; }
    56% { transform:translateY(0); opacity:1; }
    100% { transform:translateY(0); opacity:1; }
  }

  /* ── SCROLL REVEALS ── */
  .reveal { opacity:0; transform:translateY(36px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
  .reveal.visible { opacity:1; transform:translateY(0); }
  .reveal-left { opacity:0; transform:translateX(-50px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
  .reveal-left.visible { opacity:1; transform:translateX(0); }
  .reveal-right { opacity:0; transform:translateX(50px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
  .reveal-right.visible { opacity:1; transform:translateX(0); }
  .reveal-scale { opacity:0; transform:scale(0.92); transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); }
  .reveal-scale.visible { opacity:1; transform:scale(1); }
  .s1 { transition-delay:0.06s; } .s2 { transition-delay:0.12s; } .s3 { transition-delay:0.18s; }
  .s4 { transition-delay:0.24s; } .s5 { transition-delay:0.3s; } .s6 { transition-delay:0.36s; }

  /* ── NAV ── */
  .nav {
    position: fixed; top:0; left:0; right:0; z-index:100;
    display:flex; justify-content:space-between; align-items:center;
    padding: 18px 48px;
    transition: all 0.5s var(--ease);
  }
  .nav.scrolled {
    padding: 14px 48px;
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px; font-weight: 700; letter-spacing:-0.03em;
    background: linear-gradient(135deg, #fff 20%, var(--primary-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }
  .nav-links { display:flex; align-items:center; gap:32px; list-style:none; }
  .nav-links a {
    color: var(--text-2); text-decoration:none; font-size:13px; font-weight:500;
    transition: color 0.3s; position:relative; letter-spacing:-0.01em;
  }
  .nav-links a:hover { color:#fff; }
  .nav-links a::after {
    content:''; position:absolute; bottom:-3px; left:0; width:0; height:1px;
    background: var(--primary-light); transition: width 0.3s var(--ease);
  }
  .nav-links a:hover::after { width:100%; }
  .nav-cta {
    padding:8px 20px !important;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
    border: none !important; border-radius:10px !important;
    color:#fff !important; font-weight:600 !important;
    box-shadow: 0 2px 12px rgba(124,58,237,0.3);
    transition: all 0.3s var(--ease) !important;
  }
  .nav-cta:hover {
    transform:translateY(-1px); box-shadow: 0 4px 20px rgba(124,58,237,0.4);
  }
  .nav-cta::after { display:none !important; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display:flex; align-items:center;
    padding: 160px 48px 120px;
    position:relative; overflow:hidden;
  }
  /* Mesh gradient background */
  .hero-mesh {
    position:absolute; inset:0;
    background:
      radial-gradient(ellipse 80% 60% at 10% 20%, rgba(139,92,246,0.15) 0%, transparent 50%),
      radial-gradient(ellipse 60% 80% at 80% 80%, rgba(236,72,153,0.08) 0%, transparent 50%),
      radial-gradient(ellipse 50% 50% at 60% 10%, rgba(6,182,212,0.06) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: meshMove 20s ease-in-out infinite;
    filter: blur(40px);
    pointer-events:none;
  }
  .hero-particles { position:absolute; inset:0; overflow:hidden; pointer-events:none; }
  .particle {
    position:absolute; border-radius:50%; background:rgba(139,92,246,0.3);
    animation: particleRise linear infinite;
  }
  /* Grid lines */
  .hero-grid {
    position:absolute; inset:0; pointer-events:none;
    background-image:
      linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
  }

  .hero-inner {
    max-width:1200px; margin:0 auto; display:flex; align-items:center;
    gap:80px; width:100%; position:relative; z-index:2;
  }
  .hero-content { flex:1; max-width:560px; }

  .hero-badge {
    display:inline-flex; align-items:center; gap:8px;
    padding:7px 16px 7px 12px;
    background: rgba(34,197,94,0.06);
    border: 1px solid rgba(34,197,94,0.15);
    border-radius:100px;
    font-size:12px; font-weight:500; color:var(--green);
    margin-bottom:32px;
    animation: fadeInUp 0.8s 0.2s both;
    backdrop-filter: blur(8px);
  }
  .live-dot { width:6px; height:6px; background:var(--green); border-radius:50%; animation:livePulse 2s infinite; flex-shrink:0; }

  .hero h1 {
    font-size:76px; font-weight:700; line-height:1.0; letter-spacing:-0.04em;
    margin-bottom:28px;
  }
  .hero-line-1 { display:block; animation: fadeInUp 0.9s 0.35s both; }
  .hero-line-2 { display:block; animation: fadeInUp 0.9s 0.5s both; }
  .gradient-text {
    background: linear-gradient(135deg, var(--primary-lighter), var(--accent-light), var(--primary-lighter));
    background-size:200% 200%;
    -webkit-background-clip:text; -webkit-text-fill-color:transparent;
    animation: gradientShift 6s ease-in-out infinite;
  }
  .hero-sub {
    font-size:19px; font-weight:400; color:var(--text-2); line-height:1.75;
    margin-bottom:44px; max-width:460px;
    animation: fadeInUp 0.9s 0.65s both;
  }
  .hero-buttons { display:flex; flex-direction:column; gap:14px; animation: fadeInUp 0.9s 0.8s both; }
  @media (min-width: 768px) {
    .hero-buttons { flex-direction: row; align-items: center; }
  }

  .btn-primary {
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    padding:16px 36px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    border:none; border-radius:14px; color:#fff;
    font-size:15px; font-weight:600; font-family:inherit; cursor:pointer;
    text-decoration:none;
    box-shadow: 0 4px 20px rgba(124,58,237,0.3), 0 0 0 1px rgba(255,255,255,0.05) inset;
    transition: all 0.4s var(--ease);
    position:relative; overflow:hidden;
  }
  .btn-primary::before {
    content:''; position:absolute; inset:0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size:200% 100%; animation:shimmer 3s infinite;
  }
  .btn-primary:hover {
    transform:translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(124,58,237,0.45), 0 0 0 1px rgba(255,255,255,0.08) inset;
  }
  .btn-secondary {
    padding:16px 36px;
    background: rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.08); border-radius:14px;
    color:var(--text-2); font-size:15px; font-weight:500; text-decoration:none;
    transition: all 0.4s var(--ease);
    backdrop-filter: blur(8px);
  }
  .btn-secondary:hover {
    background:rgba(255,255,255,0.06); border-color:rgba(255,255,255,0.15);
    color:#fff; transform:translateY(-2px);
  }

  /* Social proof */
  .hero-proof {
    display:flex; align-items:center; gap:16px; margin-top:52px;
    animation: fadeInUp 0.9s 0.95s both;
  }
  .hero-avatars { display:flex; }
  .hero-avatars img {
    width:36px; height:36px; border-radius:50%; border:2px solid var(--bg);
    margin-left:-10px; object-fit:cover;
    transition: transform 0.3s var(--ease);
  }
  .hero-avatars img:first-child { margin-left:0; }
  .hero-avatars img:hover { transform:translateY(-4px) scale(1.1); z-index:1; }
  .hero-proof-text { font-size:13px; color:var(--text-3); line-height:1.5; }
  .hero-proof-text strong { color:var(--text-2); font-weight:600; }

  /* ── PHONE ── */
  .hero-phone-wrapper {
    flex-shrink:0; position:relative;
    animation: scaleIn 1s 0.5s both;
  }
  .hero-phone-wrapper::after {
    content:''; position:absolute; bottom:-48px; left:50%; transform:translateX(-50%);
    width:280px; height:24px;
    background: radial-gradient(ellipse, rgba(139,92,246,0.15) 0%, transparent 70%);
    filter:blur(12px);
  }
  .phone-float { animation: floatPhone 7s 2.5s ease-in-out infinite; }
  .phone-frame {
    width:320px; height:660px; background:#0a0a10;
    border-radius:40px; border:1.5px solid rgba(255,255,255,0.08);
    overflow:hidden; position:relative;
    box-shadow:
      0 40px 100px -20px rgba(0,0,0,0.6),
      0 0 0 0.5px rgba(255,255,255,0.04),
      0 0 80px rgba(139,92,246,0.06),
      inset 0 1px 0 rgba(255,255,255,0.06);
    transition: all 0.6s var(--ease);
  }
  .phone-frame:hover {
    box-shadow:
      0 40px 100px -20px rgba(0,0,0,0.6),
      0 0 0 0.5px rgba(255,255,255,0.06),
      0 0 120px rgba(139,92,246,0.12),
      inset 0 1px 0 rgba(255,255,255,0.08);
  }
  /* Dynamic island */
  .phone-island {
    position:absolute; top:10px; left:50%; transform:translateX(-50%);
    width:80px; height:22px; background:#000; border-radius:20px; z-index:10;
  }
  .phone-status-bar {
    display:flex; justify-content:space-between; align-items:center;
    padding:6px 20px; font-size:11px; font-weight:600; color:#fff;
    position:relative; z-index:5;
  }

  /* Home screen */
  .home-screen {
    width:100%; height:calc(100% - 28px);
    background: radial-gradient(ellipse at 20% 0%, rgba(138,92,255,0.08) 0%, transparent 50%),
      linear-gradient(180deg, #0a0a10, #111118);
    padding:4px 10px 0; display:flex; flex-direction:column; overflow:hidden;
  }
  .home-hdr { display:flex; align-items:center; justify-content:space-between; padding:4px 0 6px; }
  .home-hdr-left { display:flex; align-items:center; gap:8px; }
  .home-hdr-avatar { width:30px; height:30px; border-radius:50%; overflow:hidden; border:2px solid rgba(139,92,246,0.3); }
  .home-hdr-avatar img { width:100%; height:100%; object-fit:cover; }
  .home-hdr h2 { font-size:14px; font-weight:700; letter-spacing:-0.02em; }
  .home-hdr-bell { width:26px; height:26px; display:flex; align-items:center; justify-content:center; border-radius:50%; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.05); font-size:11px; }

  .home-venue { background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.05); border-radius:12px; padding:8px 10px; margin-bottom:6px; }
  .home-venue-top { display:flex; justify-content:space-between; align-items:center; margin-bottom:5px; }
  .home-venue-name { font-size:11px; font-weight:600; }
  .home-venue-live { display:flex; align-items:center; gap:4px; font-size:7px; color:var(--green); font-weight:600; text-transform:uppercase; letter-spacing:0.06em; }
  .home-venue-people { display:flex; }
  .home-venue-people img { width:20px; height:20px; border-radius:50%; border:1.5px solid #0a0a10; margin-left:-5px; object-fit:cover; }
  .home-venue-count { font-size:7px; color:var(--text-3); margin-left:6px; }

  .home-statuses { display:flex; gap:4px; margin-bottom:6px; overflow-x:auto; }
  .home-statuses::-webkit-scrollbar { display:none; }
  .home-status { flex-shrink:0; padding:3px 8px; background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.05); border-radius:16px; font-size:7px; color:var(--text-3); white-space:nowrap; }
  .home-status.active { background:rgba(139,92,246,0.12); border-color:rgba(139,92,246,0.25); color:#A78BFA; }

  .home-tabs { display:flex; margin-bottom:6px; }
  .home-tab { flex:1; padding:5px; text-align:center; font-size:8px; font-weight:600; color:var(--text-3); border-bottom:1.5px solid transparent; cursor:pointer; }
  .home-tab.active { color:#A78BFA; border-color:#A78BFA; }

  .home-people { display:flex; gap:7px; overflow-x:auto; padding:3px 0 5px; flex:1; }
  .home-people::-webkit-scrollbar { display:none; }
  .home-person { display:flex; flex-direction:column; align-items:center; gap:3px; flex-shrink:0; }
  .home-person-ava { width:42px; height:42px; border-radius:50%; overflow:hidden; border:1.5px solid rgba(255,255,255,0.05); }
  .home-person-ava.story { border:1.5px solid transparent; background-image:linear-gradient(#0a0a10,#0a0a10), linear-gradient(135deg,#7C3AED,#A78BFA); background-origin:border-box; background-clip:padding-box,border-box; }
  .home-person-ava img { width:100%; height:100%; object-fit:cover; }
  .home-person-nm { font-size:6.5px; color:var(--text-3); max-width:42px; text-align:center; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }

  .app-bottom-nav { display:flex; justify-content:space-around; align-items:center; padding:5px 0 10px; background:rgba(10,10,16,0.95); backdrop-filter:blur(10px); border-top:1px solid rgba(255,255,255,0.03); margin:0 -10px; }
  .app-nav-item { display:flex; flex-direction:column; align-items:center; gap:2px; color:var(--text-3); font-size:6.5px; font-weight:500; position:relative; }
  .app-nav-item.active { color:#A78BFA; }
  .app-nav-item.active::after { content:''; position:absolute; top:-5px; width:12px; height:1.5px; background:#A78BFA; border-radius:1px; }
  .app-nav-item svg { width:14px; height:14px; stroke-width:2; }

  /* ── STATS ── */
  .stats {
    padding:64px 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position:relative;
  }
  .stats::before {
    content:''; position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(139,92,246,0.02) 0%, transparent 100%);
    pointer-events:none;
  }
  .stats-inner {
    max-width:1040px; margin:0 auto;
    display:flex; justify-content:center; gap:1px;
  }
  .stat {
    flex:1; text-align:center; padding:0 32px;
    position:relative;
  }
  .stat:not(:last-child)::after {
    content:''; position:absolute; right:0; top:10%; height:80%;
    width:1px; background:linear-gradient(180deg, transparent, var(--border), transparent);
  }
  .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size:56px; font-weight:700; letter-spacing:-0.04em;
    background: linear-gradient(135deg, var(--primary-lighter) 0%, #fff 60%);
    -webkit-background-clip:text; -webkit-text-fill-color:transparent;
    line-height:1.1;
  }
  .stat:nth-child(1) .stat-number { background: linear-gradient(135deg, #A78BFA, #C4B5FD); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
  .stat:nth-child(2) .stat-number { background: linear-gradient(135deg, #F472B6, #FB7185); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
  .stat:nth-child(3) .stat-number { background: linear-gradient(135deg, #34D399, #6EE7B7); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
  .stat:nth-child(4) .stat-number { background: linear-gradient(135deg, #67E8F9, #38BDF8); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
  .stat-label { font-size:13px; color:var(--text-3); font-weight:500; margin-top:6px; letter-spacing:0.02em; }

  /* ── SECTION LABEL ── */
  .section-label {
    font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:0.14em;
    color:var(--primary-light); margin-bottom:14px;
  }

  /* ── BENTO FEATURES ── */
  .features { padding:120px 48px; position:relative; }
  .features::before {
    content:''; position:absolute; top:10%; left:50%; transform:translateX(-50%);
    width:900px; height:900px;
    background: radial-gradient(circle, rgba(139,92,246,0.03) 0%, transparent 55%);
    pointer-events:none;
  }
  .features-header {
    text-align:center; margin-bottom:72px;
    max-width:560px; margin-left:auto; margin-right:auto;
  }
  .features-header h2 {
    font-size:56px; font-weight:700; letter-spacing:-0.04em; line-height:1.02; margin-bottom:18px;
  }
  .features-header p { font-size:18px; color:var(--text-2); line-height:1.7; }

  .bento {
    max-width:1080px; margin:0 auto;
    display:grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap:16px;
  }

  .bento-card {
    position:relative;
    border-radius:24px;
    border:1px solid var(--glass-border);
    background: var(--glass);
    backdrop-filter: blur(12px);
    overflow:hidden;
    transition: all 0.6s var(--ease);
    cursor: default;
  }
  .bento-card::before {
    content:'';
    position:absolute; inset:-1px;
    border-radius:24px;
    background: conic-gradient(from var(--border-angle, 0deg), transparent 60%, var(--bento-accent, rgba(139,92,246,0.3)) 100%);
    opacity:0;
    transition: opacity 0.5s;
    z-index:-1;
  }
  .bento-card:hover {
    transform:translateY(-4px);
    border-color: rgba(255,255,255,0.1);
    box-shadow: 0 24px 48px -12px rgba(0,0,0,0.4);
  }
  .bento-card:hover::before { opacity:1; }

  /* Glow on hover */
  .bento-card::after {
    content:'';
    position:absolute; top:0; left:50%; transform:translateX(-50%);
    width:60%; height:1px;
    background: linear-gradient(90deg, transparent, var(--bento-accent, rgba(139,92,246,0.4)), transparent);
    opacity:0;
    transition: opacity 0.5s;
  }
  .bento-card:hover::after { opacity:1; }

  .bento-content {
    position:relative; z-index:1;
    padding:32px;
    height:100%;
    display:flex;
    flex-direction:column;
  }

  .bento-card .bento-label {
    font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:0.14em;
    margin-bottom:10px;
  }
  .bento-card h3 {
    font-size:26px; font-weight:700; letter-spacing:-0.03em; line-height:1.12;
    margin-bottom:12px;
  }
  .bento-card p {
    font-size:14px; color:var(--text-2); line-height:1.65;
  }

  /* Card 1: Who's Here — Large */
  .bento-whos-here {
    grid-column: span 7;
    grid-row: span 2;
    --bento-accent: rgba(139,92,246,0.35);
  }
  .bento-whos-here .bento-label { color: var(--primary-light); }
  .bento-whos-here .bento-content { flex-direction:row; gap:32px; align-items:center; }
  .bento-whos-here .bento-text { flex:1; }
  .bento-whos-here .bento-phone-wrap { flex-shrink:0; }

  /* Card 2: Live Chat — Tall right */
  .bento-chat {
    grid-column: span 5;
    grid-row: span 2;
    --bento-accent: rgba(236,72,153,0.35);
  }
  .bento-chat .bento-label { color: var(--accent-light); }
  .bento-chat .bento-content {
    justify-content:space-between;
  }

  /* Card 3: Pulses — Medium left */
  .bento-pulses {
    grid-column: span 5;
    grid-row: span 2;
    --bento-accent: rgba(6,182,212,0.35);
  }
  .bento-pulses .bento-label { color: var(--highlight); }
  .bento-pulses .bento-content { justify-content:space-between; }

  /* Card 4: Stories — Medium right */
  .bento-stories {
    grid-column: span 7;
    grid-row: span 2;
    --bento-accent: rgba(249,115,22,0.35);
  }
  .bento-stories .bento-label { color: var(--orange); }
  .bento-stories .bento-content { flex-direction:row; gap:32px; align-items:center; }
  .bento-stories .bento-text { flex:1; }
  .bento-stories .bento-phone-wrap { flex-shrink:0; }

  /* Card 5,6,7: Small bottom row */
  .bento-small {
    grid-column: span 4;
    --bento-accent: rgba(139,92,246,0.25);
  }
  .bento-small .bento-label { color: var(--primary-light); }
  .bento-small .bento-icon {
    width:48px; height:48px; border-radius:14px;
    background: rgba(139,92,246,0.08);
    border:1px solid rgba(139,92,246,0.15);
    display:flex; align-items:center; justify-content:center;
    font-size:0;
    color: var(--primary-light);
    margin-bottom:16px;
    transition: all 0.4s var(--ease);
  }
  .bento-small:hover .bento-icon {
    background: rgba(139,92,246,0.15);
    box-shadow: 0 0 24px rgba(139,92,246,0.15);
    transform:scale(1.05);
  }

  /* Feature phone inside bento */
  .bento-phone {
    width:180px; height:360px; background:#0a0a10;
    border-radius:24px; border:1.5px solid rgba(255,255,255,0.06);
    overflow:hidden; position:relative;
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    flex-shrink:0;
  }
  .bp-island { position:absolute; top:6px; left:50%; transform:translateX(-50%); width:50px; height:14px; background:#000; border-radius:12px; z-index:5; }
  .bp-screen { width:100%; height:100%; padding:20px 8px 8px; display:flex; flex-direction:column; overflow:hidden; }

  /* Chat inside bento */
  .bento-chat-screen {
    background: radial-gradient(ellipse at 20% 0%,rgba(236,72,153,0.06) 0%,transparent 50%),linear-gradient(180deg,#0a0a10,#111118);
  }
  .bchat-hdr { display:flex; align-items:center; gap:5px; padding:2px 0 5px; border-bottom:1px solid rgba(255,255,255,0.04); margin-bottom:6px; }
  .bchat-hdr .back { color:var(--text-3); font-size:12px; }
  .bchat-hdr h4 { font-size:9px; font-weight:600; }
  .bchat-hdr span { font-size:6px; color:var(--text-3); }
  .bchat-msgs { flex:1; display:flex; flex-direction:column; gap:4px; justify-content:flex-end; padding-bottom:4px; }
  .bchat-msg { max-width:80%; padding:5px 8px; border-radius:8px; font-size:7px; line-height:1.4; }
  .bchat-msg.other { align-self:flex-start; background:rgba(255,255,255,0.04); border-bottom-left-radius:2px; }
  .bchat-msg.own { align-self:flex-end; background:linear-gradient(135deg,#7C3AED,#8B5CF6); border-bottom-right-radius:2px; }
  .bchat-msg .nm { font-size:6px; font-weight:600; color:var(--text-2); margin-bottom:1px; display:flex; align-items:center; gap:3px; }
  .bchat-msg .nm img { width:9px; height:9px; border-radius:50%; object-fit:cover; }
  .bchat-input { display:flex; gap:4px; align-items:center; padding:4px 0; border-top:1px solid rgba(255,255,255,0.03); }
  .bchat-input input { flex:1; padding:4px 7px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.05); border-radius:10px; font-size:7px; color:var(--text-3); outline:none; font-family:inherit; }
  .bchat-send { width:18px; height:18px; background:linear-gradient(135deg,#7C3AED,#8B5CF6); border-radius:9px; display:flex; align-items:center; justify-content:center; font-size:8px; color:#fff; }

  /* Pulse inside bento */
  .bento-pulse-visual {
    flex:1; display:flex; align-items:center; justify-content:center;
  }
  .bp-outer {
    width:120px; height:120px; border-radius:50%;
    border:1px solid rgba(6,182,212,0.15);
    display:flex; align-items:center; justify-content:center;
    position:relative; animation:pulseRing 3s ease-in-out infinite;
  }
  .bp-inner {
    width:68px; height:68px; border-radius:50%;
    background:linear-gradient(135deg, rgba(6,182,212,0.15), rgba(139,92,246,0.15));
    border:1px solid rgba(6,182,212,0.25);
    display:flex; align-items:center; justify-content:center; flex-direction:column; gap:2px;
  }
  .bp-inner span { font-size:18px; }
  .bp-inner p { font-size:6px; color:var(--text-2); font-weight:500; }
  .bp-badge { position:absolute; padding:3px 7px; border-radius:6px; font-size:6px; font-weight:600; white-space:nowrap; }
  .bp-badge.top { top:-4px; background:rgba(34,197,94,0.08); border:1px solid rgba(34,197,94,0.2); color:var(--green); }
  .bp-badge.bot { bottom:-4px; background:rgba(6,182,212,0.08); border:1px solid rgba(6,182,212,0.2); color:var(--highlight); }

  /* ── TESTIMONIALS ── */
  .testimonials {
    padding:100px 48px;
    position:relative;
  }
  .testimonials-header {
    text-align:center; margin-bottom:56px;
  }
  .testimonials-header h2 {
    font-size:48px; font-weight:700; letter-spacing:-0.04em;
  }
  .testimonial-grid {
    max-width:1040px; margin:0 auto;
    display:grid; grid-template-columns:repeat(3, 1fr); gap:16px;
  }
  .testimonial-card {
    padding:32px;
    background: rgba(255,255,255,0.025);
    border:1px solid rgba(255,255,255,0.07);
    border-radius:24px;
    backdrop-filter: blur(8px);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
  }
  .testimonial-card::before {
    content: '"';
    position: absolute; top: 12px; right: 20px;
    font-size: 80px; font-weight: 800; line-height: 1;
    color: rgba(139,92,246,0.1);
    font-family: Georgia, serif;
    pointer-events: none;
  }
  .testimonial-card:hover {
    transform:translateY(-6px);
    border-color: rgba(139,92,246,0.2);
    box-shadow: 0 24px 48px -8px rgba(0,0,0,0.4), 0 0 0 1px rgba(139,92,246,0.1);
  }
  .testimonial-stars { margin-bottom:16px; font-size:15px; letter-spacing:3px; color:#FBBF24; }
  .testimonial-text {
    font-size:15px; color:var(--text-2); line-height:1.75;
    margin-bottom:24px;
  }
  .testimonial-author { display:flex; align-items:center; gap:10px; }
  .testimonial-author img { width:36px; height:36px; border-radius:50%; object-fit:cover; border:1.5px solid rgba(255,255,255,0.08); }
  .testimonial-author-info { }
  .testimonial-name { font-size:13px; font-weight:600; }
  .testimonial-venue { font-size:11px; color:var(--text-3); }

  /* ── VENUES ── */
  .venues { padding:120px 48px; position:relative; overflow:hidden; }
  .venues::before {
    content:''; position:absolute; top:-200px; right:-200px;
    width:600px; height:600px;
    background:radial-gradient(circle, rgba(139,92,246,0.04) 0%, transparent 60%);
    pointer-events:none;
  }
  .venues-inner { max-width:800px; margin:0 auto; text-align:center; position:relative; z-index:2; }
  .venues h2 { font-size:52px; font-weight:700; letter-spacing:-0.04em; margin-bottom:20px; line-height:1.02; }
  .venues-sub { font-size:17px; color:var(--text-2); line-height:1.7; margin-bottom:52px; max-width:500px; margin-left:auto; margin-right:auto; }

  .vb-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-bottom:52px; text-align:left; }
  .vb {
    padding:28px;
    background:var(--glass); border:1px solid var(--glass-border);
    border-radius:20px;
    backdrop-filter: blur(8px);
    transition: all 0.5s var(--ease);
    position:relative; overflow:hidden;
  }
  .vb::after {
    content:''; position:absolute; top:0; left:50%; transform:translateX(-50%);
    width:40%; height:1px;
    background:linear-gradient(90deg, transparent, rgba(139,92,246,0.3), transparent);
    opacity:0; transition:opacity 0.5s;
  }
  .vb:hover { transform:translateY(-4px); border-color:var(--border-hover); box-shadow:0 20px 40px -8px rgba(0,0,0,0.25); }
  .vb:hover::after { opacity:1; }
  .vb .icon { font-size:0; width:44px; height:44px; border-radius:12px; background:rgba(139,92,246,0.08); border:1px solid rgba(139,92,246,0.12); display:flex; align-items:center; justify-content:center; margin-bottom:14px; color:var(--primary-light); }
  .vb h4 { font-size:15px; font-weight:600; margin-bottom:8px; }
  .vb p { font-size:13px; color:var(--text-2); line-height:1.6; }

  .venue-form { max-width:420px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
  .venue-form input, .venue-form textarea {
    padding:15px 18px;
    background:rgba(255,255,255,0.02);
    border:1px solid rgba(255,255,255,0.07);
    border-radius:14px; color:#fff; font-size:14px; font-family:inherit; outline:none;
    transition: all 0.4s var(--ease);
  }
  .venue-form input:focus, .venue-form textarea:focus {
    border-color:rgba(139,92,246,0.3);
    background:rgba(139,92,246,0.03);
    box-shadow: 0 0 28px rgba(139,92,246,0.06);
  }
  .venue-form input::placeholder, .venue-form textarea::placeholder { color:var(--text-3); }
  .venue-form textarea { resize:vertical; min-height:80px; }

  /* ── CTA ── */
  .cta {
    padding:120px 48px;
    position:relative;
    overflow:hidden;
    text-align:center;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(139,92,246,0.12) 0%, rgba(236,72,153,0.06) 40%, transparent 70%);
    border-top: 1px solid rgba(139,92,246,0.1);
    border-bottom: 1px solid rgba(139,92,246,0.1);
  }
  .cta-glow {
    position:absolute;
    top:50%; left:50%; transform:translate(-50%,-50%);
    width:800px; height:400px;
    background: radial-gradient(ellipse, rgba(139,92,246,0.18) 0%, rgba(236,72,153,0.09) 40%, transparent 70%);
    filter:blur(80px);
    pointer-events:none;
  }
  .cta-inner {
    position:relative; z-index:2;
    max-width:540px; margin:0 auto;
  }
  .cta h2 {
    font-size:52px; font-weight:700; letter-spacing:-0.04em; line-height:1.02;
    margin-bottom:20px;
  }
  .cta p {
    font-size:18px; color:var(--text-2); line-height:1.7;
    margin-bottom:44px;
  }
  .cta .btn-primary { font-size:17px; padding:20px 52px; border-radius:16px; }

  /* ── FOOTER ── */
  .footer {
    padding:40px 48px 32px;
    border-top:1px solid var(--border);
  }
  .footer-inner {
    max-width:1040px; margin:0 auto;
    display:flex; justify-content:space-between; align-items:center;
  }
  .footer-left { display:flex; align-items:center; gap:32px; }
  .footer-logo { font-size:15px; font-weight:800; color:var(--text-3); letter-spacing:-0.02em; }
  .footer-links { display:flex; gap:24px; }
  .footer-links a { color:var(--text-3); text-decoration:none; font-size:12px; font-weight:500; transition:color 0.3s; }
  .footer-links a:hover { color:var(--text-2); }
  .footer-copy { font-size:11px; color:rgba(255,255,255,0.15); }

  /* ── CYCLING PHONE SCREENS ── */
  .phone-screens { position:relative; width:100%; height:100%; }
  .phone-screen-layer {
    position:absolute; inset:0;
    opacity:0; transform:scale(0.97);
    animation: screenFade 15s ease-in-out infinite;
  }
  .phone-screen-layer:nth-child(1) { animation-delay: -1.5s; }
  .phone-screen-layer:nth-child(2) { animation-delay: 1.5s; }
  .phone-screen-layer:nth-child(3) { animation-delay: 4.5s; }
  .phone-screen-layer:nth-child(4) { animation-delay: 7.5s; }
  .phone-screen-layer:nth-child(5) { animation-delay: 10.5s; }

  .screen-indicator {
    position:absolute; bottom:62px; left:50%; transform:translateX(-50%);
    display:flex; gap:5px; z-index:20;
  }
  .screen-dot {
    width:5px; height:5px; border-radius:50%;
    background:rgba(255,255,255,0.2);
    transition: all 0.4s;
  }
  .screen-dot.active { background:#A78BFA; width:14px; border-radius:3px; }

  /* ── HOW IT WORKS ── */
  .how-it-works { padding:100px 48px; position:relative; }
  .how-header { text-align:center; margin-bottom:64px; }
  .how-header h2 { font-size:40px; font-weight:800; letter-spacing:-0.04em; margin-bottom:12px; }
  .how-header p { font-size:16px; color:var(--text-2); }
  .how-steps {
    max-width:900px; margin:0 auto;
    display:flex; gap:24px; align-items:flex-start;
    position:relative;
  }
  /* Connecting line */
  .how-steps::before {
    content:''; position:absolute;
    top:36px; left:calc(16.66% + 12px); right:calc(16.66% + 12px);
    height:1px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--highlight));
    opacity:0.3;
  }
  .how-step {
    flex:1; text-align:center; position:relative;
  }
  .how-step-num {
    width:84px; height:84px; border-radius:50%;
    background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(139,92,246,0.04));
    border:1px solid rgba(139,92,246,0.3);
    box-shadow: 0 0 32px rgba(139,92,246,0.1), inset 0 1px 0 rgba(255,255,255,0.08);
    display:flex; align-items:center; justify-content:center;
    font-size:0; color: #A78BFA;
    margin:0 auto 24px;
    position:relative;
    transition: all 0.5s var(--ease);
  }
  .how-step:nth-child(2) .how-step-num { background: linear-gradient(135deg,rgba(236,72,153,0.18),rgba(236,72,153,0.04)); border-color:rgba(236,72,153,0.3); color:#F472B6; box-shadow:0 0 32px rgba(236,72,153,0.1),inset 0 1px 0 rgba(255,255,255,0.08); }
  .how-step:nth-child(3) .how-step-num { background: linear-gradient(135deg,rgba(6,182,212,0.18),rgba(6,182,212,0.04)); border-color:rgba(6,182,212,0.3); color:#67E8F9; box-shadow:0 0 32px rgba(6,182,212,0.1),inset 0 1px 0 rgba(255,255,255,0.08); }
  .how-step:hover .how-step-num {
    box-shadow: 0 0 56px rgba(139,92,246,0.28);
    transform: translateY(-6px) scale(1.08);
  }
  .how-step h4 { font-size:16px; font-weight:700; margin-bottom:6px; letter-spacing:-0.02em; }
  .how-step p { font-size:13px; color:var(--text-2); line-height:1.6; max-width:260px; margin:0 auto; }

  /* ── TRUST BADGES ── */
  .trust { padding:48px 48px; }
  .trust-inner {
    max-width:800px; margin:0 auto;
    display:flex; justify-content:center; gap:40px;
    flex-wrap:wrap;
  }
  .trust-badge {
    display:flex; align-items:center; gap:10px;
    padding:12px 22px;
    background: rgba(139,92,246,0.06);
    border:1px solid rgba(139,92,246,0.16);
    border-radius:14px;
    backdrop-filter: blur(8px);
    transition: all 0.4s var(--ease);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  }
  .trust-badge:hover {
    background: rgba(139,92,246,0.1);
    border-color: rgba(139,92,246,0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(139,92,246,0.15);
  }
  .trust-icon { font-size:0; display:flex; align-items:center; justify-content:center; color:var(--primary-light); }
  .trust-icon svg { width:16px; height:16px; }
  .trust-text { font-size:13px; font-weight:600; color:var(--text-1); letter-spacing:-0.01em; }

  /* ── QR CTA ── */
  .cta-qr {
    width:120px; height:120px;
    background:#fff;
    border-radius:16px;
    padding:8px;
    box-shadow: 0 8px 32px rgba(139,92,246,0.2);
    transition: all 0.4s var(--ease);
  }
  .cta-qr:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 12px 40px rgba(139,92,246,0.3);
  }
  .cta-qr img { width:100%; height:100%; border-radius:8px; }

  /* ── DIVIDER ── */
  .divider {
    height:1px; max-width:500px; margin:0 auto;
    background:linear-gradient(90deg, transparent, rgba(139,92,246,0.15), transparent);
  }

  /* ── I WILL BE THERE ── */
  .iwbt { padding:100px 48px; position:relative; overflow:hidden; }
  .iwbt-inner {
    max-width:1100px; margin:0 auto;
    display:flex; align-items:center; gap:64px;
  }
  .iwbt-content { flex:1; max-width:460px; }
  .iwbt-content h2 {
    font-size:44px; font-weight:900; letter-spacing:-0.04em; line-height:1.05;
    margin-bottom:16px;
    background: linear-gradient(135deg, var(--primary-lighter), var(--accent-light), var(--highlight));
    background-size:200% 200%;
    -webkit-background-clip:text; -webkit-text-fill-color:transparent;
    animation: gradientShift 6s ease-in-out infinite;
  }
  .iwbt-sub {
    font-size:17px; color:var(--text-2); line-height:1.7; margin-bottom:36px;
  }
  .iwbt-features { display:flex; flex-direction:column; gap:20px; }
  .iwbt-feat {
    display:flex; gap:14px; align-items:flex-start;
  }
  .iwbt-feat-icon {
    font-size:20px; flex-shrink:0;
    width:40px; height:40px; display:flex; align-items:center; justify-content:center;
    background:var(--glass); border:1px solid var(--glass-border); border-radius:12px;
  }
  .iwbt-feat h4 { font-size:14px; font-weight:600; margin-bottom:4px; letter-spacing:-0.01em; }
  .iwbt-feat p { font-size:13px; color:var(--text-2); line-height:1.5; }

  /* Map visual */
  .iwbt-visual { flex:1; }
  .iwbt-map {
    position:relative;
    width:100%; aspect-ratio:4/3;
    background: var(--bg-card);
    border:1px solid var(--glass-border);
    border-radius:24px;
    overflow:hidden;
    backdrop-filter: blur(8px);
  }
  .iwbt-map-bg {
    position:absolute; inset:0;
    opacity:0.6;
  }

  /* Venue pins */
  .iwbt-pin {
    position:absolute; transform:translate(-50%,-100%);
    display:flex; flex-direction:column; align-items:center; gap:4px;
    z-index:2;
  }
  .iwbt-pin-heat {
    position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:60px; height:60px; border-radius:50%;
    background:radial-gradient(circle, rgba(var(--glow-rgb, 139,92,246),0.15) 0%, transparent 70%);
    pointer-events:none;
  }
  .iwbt-pin--hot .iwbt-pin-heat {
    width:90px; height:90px;
    background:radial-gradient(circle, rgba(239,68,68,0.2) 0%, rgba(249,115,22,0.1) 40%, transparent 70%);
    animation: pulseRing 3s ease-in-out infinite;
  }
  .iwbt-pin--warm .iwbt-pin-heat {
    width:70px; height:70px;
    background:radial-gradient(circle, rgba(249,115,22,0.15) 0%, rgba(234,179,8,0.08) 50%, transparent 70%);
  }
  .iwbt-pin-icon { font-size:18px; position:relative; z-index:2; filter:drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
  .iwbt-pin-label {
    display:flex; flex-direction:column; align-items:center;
    background:rgba(0,0,0,0.7); backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,0.08);
    padding:4px 10px; border-radius:8px;
    position:relative; z-index:2;
  }
  .iwbt-pin-name { font-size:10px; font-weight:600; color:var(--text-1); white-space:nowrap; }
  .iwbt-pin-count { font-size:8px; color:var(--primary-light); font-weight:500; }
  .iwbt-pin--hot .iwbt-pin-count { color:#ef4444; }
  .iwbt-pin--warm .iwbt-pin-count { color:#f97316; }
  .iwbt-pin-avatars {
    display:flex; margin-top:2px;
  }
  .iwbt-pin-avatars img {
    width:16px; height:16px; border-radius:50%; object-fit:cover;
    border:1px solid rgba(0,0,0,0.5);
    margin-left:-4px;
  }
  .iwbt-pin-avatars img:first-child { margin-left:0; }

  /* Tonight badge */
  .iwbt-tonight {
    position:absolute; top:12px; left:12px; z-index:3;
    display:flex; align-items:center; gap:6px;
    padding:5px 12px;
    background:rgba(0,0,0,0.6); backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,0.06); border-radius:100px;
    font-size:11px; font-weight:600; color:var(--text-2);
  }

  /* ── STORE BADGES ── */
  .store-badges {
    display: flex; gap: 12px; flex-wrap: wrap;
  }
  .store-badge {
    position: relative;
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s var(--ease);
    text-decoration: none;
  }
  .store-badge svg {
    display: block;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
  }
  .store-badge--live:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(var(--glow-rgb, 139,92,246), 0.2);
  }
  .store-badge--disabled {
    cursor: default;
    opacity: 0.6;
  }
  .store-badge__coming {
    position: absolute;
    bottom: -2px; left: 50%; transform: translateX(-50%);
    font-size: 9px; font-weight: 600;
    color: var(--primary-light);
    background: var(--bg);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
    white-space: nowrap;
    letter-spacing: 0.02em;
  }
  .hero-pwa-link {
    margin-top: 8px;
  }
  .hero-pwa-link .btn-secondary {
    font-size: 13px;
  }
  /* CTA download section */
  .cta-download {
    display: flex; flex-direction: column; align-items: center; gap: 24px;
    margin-top: 36px;
  }
  .cta-pwa-or {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
  }
  .cta-pwa-or span {
    font-size: 13px; color: var(--text-3); font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.1em;
  }
  .cta-qr-wrap {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
  }
  .cta-qr-label {
    font-size: 11px; color: var(--text-3); font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.1em;
  }

  /* ── I18N TEXT OVERFLOW ── */
  .nav-links a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
  }

/* ── SELECTORS (Theme & Language) ── */
.nav-selectors {
  display: flex; align-items: center; gap: 8px;
}
.selector-wrap {
  position: relative;
}
.selector-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(8px);
}
.selector-btn:hover {
  color: var(--text-1);
  border-color: var(--border-hover);
}
.selector-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: rgba(20,20,30,0.95);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(24px);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s var(--ease);
  z-index: 10001;
}
[data-theme="minimal"] .selector-dropdown {
  background: rgba(255,255,255,0.95);
}
.selector-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.selector-option {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.15s;
  outline: none;
}
.selector-option:hover,
.selector-option:focus {
  background: var(--glass);
  color: var(--text-1);
}
.selector-option.active {
  color: var(--primary-light);
}
[data-theme="minimal"] .selector-option.active {
  color: var(--accent);
}
.theme-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}

/* Mobile: keep selectors visible */
@media (max-width: 768px) {
  .nav-selectors { order: 1; }
  .selector-dropdown { min-width: 180px; }
}

  /* ── RESPONSIVE ── */
  @media (max-width:1024px) {
    .bento { grid-template-columns:repeat(6,1fr); }
    .bento-whos-here { grid-column:span 6; }
    .bento-chat { grid-column:span 6; }
    .bento-pulses { grid-column:span 6; }
    .bento-stories { grid-column:span 6; }
    .bento-small { grid-column:span 3; }
  }
  @media (max-width:768px) {
    .nav { padding:12px 20px; }
    .nav.scrolled { padding:10px 20px; }
    .nav-links { display:none; }
    .hero { padding:100px 24px 60px; }
    .hero-inner { flex-direction:column; text-align:center; gap:48px; }
    .hero h1 { font-size:40px; }
    .hero-sub { font-size:16px; margin-left:auto; margin-right:auto; }
    .hero-buttons { justify-content:center; flex-wrap:wrap; }
    .hero-proof { justify-content:center; }
    .phone-frame { width:280px; height:580px; }
    .features { padding:80px 24px; }
    .features-header h2 { font-size:32px; }
    .bento { grid-template-columns:1fr; }
    .bento-whos-here, .bento-chat, .bento-pulses, .bento-stories, .bento-small { grid-column:span 1; }
    .bento-whos-here .bento-content, .bento-stories .bento-content { flex-direction:column; }
    .stats { padding:40px 24px; }
    .stats-inner { gap:0; flex-wrap:wrap; }
    .stat { padding:16px; }
    .stat:not(:last-child)::after { display:none; }
    .stat-number { font-size:32px; }
    .testimonials { padding:60px 24px; }
    .testimonial-grid { grid-template-columns:1fr; }
    .venues { padding:80px 24px; }
    .venues h2 { font-size:30px; }
    .vb-grid { grid-template-columns:1fr; }
    .vb { padding:24px 20px; text-align:center; display:flex; flex-direction:column; align-items:center; }
    .vb .icon { font-size:28px; margin-bottom:12px; }
    .vb h4 { font-size:16px; text-align:center; }
    .vb p { font-size:13px; text-align:center; margin:0 auto; max-width:300px; }
    .iwbt { padding:60px 24px; }
    .iwbt-inner { flex-direction:column; gap:40px; }
    .iwbt-content { max-width:100%; text-align:center; }
    .iwbt-content h2 { font-size:32px; }
    .iwbt-features { text-align:left; }
    .iwbt-map { aspect-ratio:1/1; }
    .cta { padding:60px 24px; }
    .cta h2 { font-size:32px; }
    .trust { padding:32px 24px; }
    .trust-inner { gap:12px; }
    .trust-badge { padding:8px 14px; }
    .trust-text { font-size:11px; }
    .how-it-works { padding:60px 24px; }
    .how-header h2 { font-size:28px; }
    .how-steps { flex-direction:column; gap:32px; }
    .how-steps::before { display:none; }
    .cta-qr-wrap { flex-direction:column; gap:24px; }
    .footer { padding:28px 24px; }
    .footer-inner { flex-direction:column; gap:12px; text-align:center; }
    .footer-left { flex-direction:column; gap:12px; }
    .reveal-left, .reveal-right { transform:translateY(36px); }
    .reveal-left.visible, .reveal-right.visible { transform:translateY(0); }
  }

  /* ── FOCUS STATES (Accessibility) ── */
  *:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 3px;
    border-radius: 4px;
  }
  a:focus-visible, button:focus-visible { border-radius: 8px; }

  /* ── CURSOR POINTER ── */
  .vb, .bento-card, .how-step, .trust-badge, .testimonial-card { cursor: pointer; }

  /* ── REDUCE MOTION ── */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
      opacity: 1 !important;
      transform: none !important;
    }
  }