    @font-face {
      font-family: 'Circe';
      src: url('/fonts/Circe-Regular.woff') format('woff');
      font-weight: 400; font-style: normal; font-display: swap;
    }
    @font-face {
      font-family: 'Circe';
      src: url('/fonts/Circe-Bold.woff') format('woff');
      font-weight: 700; font-style: normal; font-display: swap;
    }
    @font-face {
      font-family: 'Circe';
      src: url('/fonts/Circe-ExtraBold.woff') format('woff');
      font-weight: 800 900; font-style: normal; font-display: swap;
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

    :root {
      --c:    #7610DB;
      --cl:   #9B3EFF;
      --cll:  #C07FFF;
      --cg:   rgba(118,16,219,.38);
      --bg:   #07070f;
      --card: rgba(255,255,255,.04);
      --t:    #fff;
      --tm:   rgba(255,255,255,.55);
      --tf:   'Circe', 'Nunito', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--t);
      font-family: var(--tf);
      overflow-x: hidden;
      cursor: none;
    }
    @media (hover: none) and (pointer: coarse) {
      body, a, button, .mag, .nav-logo, * { cursor: auto !important; }
      #cur, #cur-ring, #cur-glow { display: none !important; }
    }

    /* ── GRAIN ─────────────────────────────────────── */
    #grain {
      position: fixed; inset: -50%; width: 200%; height: 200%;
      pointer-events: none; z-index: 9990; opacity: 0.02;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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");
      animation: grain .5s steps(1) infinite;
    }
    @keyframes grain {
      0%  {transform:translate(0,0)}   10% {transform:translate(-3%,-4%)}
      20% {transform:translate(4%,2%)} 30% {transform:translate(-2%,5%)}
      40% {transform:translate(5%,-2%)} 50% {transform:translate(-4%,1%)}
      60% {transform:translate(3%,-5%)} 70% {transform:translate(-5%,3%)}
      80% {transform:translate(2%,-3%)} 90% {transform:translate(-3%,4%)}
      100%{transform:translate(0,0)}
    }

    /* ── CURSOR ────────────────────────────────────── */
    #cur {
      width: 10px; height: 10px; background: var(--cl); border-radius: 50%;
      position: fixed; pointer-events: none; z-index: 9999;
      transform: translate(-50%,-50%); mix-blend-mode: screen;
    }
    #cur-ring {
      width: 36px; height: 36px; border: 1.5px solid rgba(118,16,219,.65);
      border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998;
      transform: translate(-50%,-50%); transition: width .28s, height .28s, border-color .28s;
    }
    #cur-glow {
      width: 380px; height: 380px;
      background: radial-gradient(circle, rgba(118,16,219,.13) 0%, transparent 70%);
      border-radius: 50%; position: fixed; pointer-events: none; z-index: 9997;
      transform: translate(-50%,-50%);
    }
    body.hovering #cur { width: 14px; height: 14px; background: #fff; }
    body.hovering #cur-ring { width: 50px; height: 50px; border-color: rgba(255,255,255,.5); }

    /* ── NAV ───────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 500;
      padding: 26px 52px;
      display: flex; align-items: center; justify-content: space-between;
      transition: padding .4s, background .4s, border-color .4s;
      border-bottom: 1px solid transparent;
    }
    nav.scrolled {
      padding: 14px 52px;
      background: rgba(7,7,15,.88);
      backdrop-filter: blur(24px);
      border-color: rgba(118,16,219,.2);
    }

    .nav-logo { height: 26px; width: auto; cursor: none; overflow: visible; }

    .nav-links {
      display: flex; align-items: center; gap: 36px;
      list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,.65); text-decoration: none;
      font-size: 14px; font-weight: 600; letter-spacing: .03em;
      cursor: none; transition: color .2s; position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -3px; left: 0;
      width: 0; height: 1.5px; background: var(--cl);
      transition: width .28s;
    }
    .nav-links a:hover { color: #fff; }
    .nav-links a:hover::after { width: 100%; }
    .nav-links a.active { color: #fff; }
    .nav-links a.active::after { width: 100%; }

    .nav-cta {
      background: var(--c); color: #fff; text-decoration: none;
      padding: 10px 24px; border-radius: 100px;
      font-size: 14px; font-weight: 700; letter-spacing: .04em;
      cursor: none; transition: box-shadow .3s; white-space: nowrap;
    }
    .nav-cta:hover { box-shadow: 0 0 28px var(--cg); }

    /* Hamburger (mobile) */
    .nav-burger {
      display: none; flex-direction: column; gap: 5px;
      cursor: none; padding: 4px; z-index: 600;
    }
    .nav-burger span {
      display: block; width: 24px; height: 2px;
      background: #fff; border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }
    .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-burger.open span:nth-child(2) { opacity: 0; }
    .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Fullscreen mobile menu */
    .nav-overlay {
      position: fixed; inset: 0; z-index: 450;
      background: rgba(7,7,15,.97); backdrop-filter: blur(20px);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 36px; opacity: 0; pointer-events: none;
      transition: opacity .35s;
    }
    .nav-overlay.open { opacity: 1; pointer-events: all; }
    .nav-overlay a {
      font-size: 32px; font-weight: 800; color: rgba(255,255,255,.6);
      text-decoration: none; letter-spacing: -.01em; cursor: none;
      transition: color .2s;
      font-family: 'Circe', 'Nunito', sans-serif !important;
    }
    .nav-overlay a:hover { color: #fff; }

    /* ── HERO ──────────────────────────────────────── */
    #hero {
      min-height: 100vh; position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      padding: 130px 52px 160px;
    }
    #pc { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
    #hero::after {
      content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background: radial-gradient(ellipse 80% 55% at 50% 65%, transparent 30%, var(--bg) 100%);
    }
    .hero-wrap {
      position: relative; z-index: 2; text-align: center;
      max-width: 900px; width: 100%; margin: 0 auto;
    }

    /* Impact headline */
    .hero-h {
      font-size: clamp(32px, 5.2vw, 72px);
      font-weight: 900;
      line-height: 1.1;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      margin-bottom: 28px;
      padding-top: 0.1em;
    }
    .hero-h .ln { display: block; overflow: hidden; padding-top: 0.18em; margin-top: -0.18em; padding-bottom: 0.06em; }
    .hero-h .wd { display: inline-block; transform: translateY(115%); }
    .hero-h .col { color: var(--cl); }

    .hero-sub {
      font-size: clamp(15px, 1.4vw, 18px); color: var(--tm);
      line-height: 1.65; max-width: 500px; margin: 0 auto 40px;
      opacity: 0;
    }
    .hero-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(118,16,219,.12); border: 1px solid rgba(118,16,219,.4);
      border-radius: 100px; padding: 6px 18px;
      font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
      color: var(--cl); margin-bottom: 36px; opacity: 0;
    }
    .pill-dot { width: 6px; height: 6px; background: var(--cl); border-radius: 50%; animation: blink 2s infinite; }
    @keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }

    .hero-btns { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; opacity: 0; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--c); color: #fff; text-decoration: none;
      padding: 17px 38px; border-radius: 100px;
      font-size: 16px; font-weight: 800; letter-spacing: .03em;
      cursor: none; position: relative; overflow: hidden;
      box-shadow: 0 0 60px rgba(118,16,219,.45);
    }
    .btn-primary .shine {
      position: absolute; top: 0; left: -120%; width: 80%; height: 100%;
      background: linear-gradient(90deg,transparent,rgba(255,255,255,.22),transparent);
      transform: skewX(-20deg);
    }
    .btn-primary:hover .shine { animation: shine .55s forwards; }
    @keyframes shine { to{left:140%} }
    .arr { transition: transform .3s; }
    .btn-primary:hover .arr { transform: translateX(5px); }

    .btn-ghost {
      display: inline-flex; align-items: center; gap: 8px;
      color: rgba(255,255,255,.65); text-decoration: none;
      font-size: 15px; font-weight: 600; cursor: none;
      transition: color .2s; letter-spacing: .02em;
    }
    .btn-ghost:hover { color: #fff; }

    /* scroll cue */
    .scroll-cue {
      position: absolute; bottom: 52px; left: 50%; transform: translateX(-50%);
      z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0;
    }
    .scroll-bar { width: 1px !important; height: 44px !important;
      background: linear-gradient(to bottom, var(--c), transparent) !important; }
    .scroll-cue span { font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--tm); }
    .scroll-bar { width: 40px; height: 1px; background: linear-gradient(to right, var(--c), transparent); }

    /* ── SECTION COMMONS ───────────────────────────── */
    .sec { padding: 110px 52px; }
    .sec-inner { max-width: 1180px; margin: 0 auto; }
    .sec-label {
      font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
      color: var(--cl); font-weight: 700; margin-bottom: 14px; display: block;
    }
    .sec-title {
      font-size: clamp(34px, 5vw, 64px); font-weight: 900;
      letter-spacing: -.03em; line-height: 1.1; text-transform: uppercase; padding-top: 0.1em;
    }
    .sec-sub {
      font-size: 18px; color: var(--tm); margin-top: 18px; line-height: 1.65;
      max-width: 560px;
    }

    /* ── COUNTDOWN ─────────────────────────────────── */
    #section-countdown {
      text-align: center;
      background: linear-gradient(180deg, var(--bg) 0%, rgba(118,16,219,.05) 50%, var(--bg) 100%);
    }
    .cd-grid {
      display: flex; align-items: center; justify-content: center;
      gap: 14px; flex-wrap: wrap; margin-top: 56px;
    }
    .cd-item { display: flex; flex-direction: column; align-items: center; gap: 14px; }
    .cd-box {
      width: 158px; height: 158px;
      background: var(--card); border: 1px solid rgba(118,16,219,.35);
      border-radius: 22px;
      display: flex; align-items: center; justify-content: center;
      font-size: 70px; font-weight: 900; letter-spacing: -.03em;
      position: relative; overflow: hidden;
      box-shadow: 0 0 40px rgba(118,16,219,.12), inset 0 1px 0 rgba(255,255,255,.07);
    }
    .cd-box::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(118,16,219,.1) 0%, transparent 55%);
    }
    .cd-box::after {
      content: ''; position: absolute; left: 0; right: 0;
      top: 50%; height: 1px; background: rgba(118,16,219,.22);
    }
    .cd-num { position: relative; z-index: 1; display: block; }
    .cd-num.flip { animation: flipNum .32s ease; }
    @keyframes flipNum {
      0%{transform:rotateX(-90deg);opacity:0} 60%{transform:rotateX(5deg)} 100%{transform:rotateX(0);opacity:1}
    }
    .cd-lbl { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--tm); font-weight: 600; }
    .cd-sep { font-size: 60px; font-weight: 300; color: rgba(118,16,219,.55); margin-bottom: 58px; }

    /* ── FEATURES ──────────────────────────────────── */
    .feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
    .feat-card {
      background: var(--card); border: 1px solid rgba(255,255,255,.07);
      border-radius: 24px; padding: 36px; position: relative; overflow: hidden;
      transition: border-color .35s, transform .35s, box-shadow .35s;
      opacity: 0; transform: translateY(48px);
    }
    .feat-card::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(118,16,219,.1), transparent);
      opacity: 0; transition: opacity .35s;
    }
    .feat-card:hover { border-color: rgba(118,16,219,.45); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
    .feat-card:hover::before { opacity: 1; }
    .feat-icon {
      width: 52px; height: 52px; background: rgba(118,16,219,.15); border-radius: 16px;
      display: flex; align-items: center; justify-content: center; font-size: 24px;
      margin-bottom: 24px; border: 1px solid rgba(118,16,219,.3);
    }
    .feat-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; letter-spacing: -.02em; text-transform: uppercase; }
    .feat-card p { color: var(--tm); line-height: 1.65; font-size: 15px; }

    /* ── APP PREVIEW ───────────────────────────────── */
    #section-preview { text-align: center; position: relative; overflow: hidden; }
    #section-preview .bg-blob {
      position: absolute; width: 800px; height: 800px;
      background: radial-gradient(circle, rgba(118,16,219,.12) 0%, transparent 65%);
      top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
    }
    .phones-stage {
      position: relative; height: 560px;
      display: flex; align-items: center; justify-content: center; margin-top: 64px;
      perspective: 1400px;
    }
    .phone {
      width: 228px; height: 456px; background: #000;
      border-radius: 38px; border: 1.5px solid rgba(255,255,255,.11);
      position: absolute; overflow: hidden;
      box-shadow: 0 40px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.04);
      transition: box-shadow .4s, opacity .35s, border-color .4s;
      will-change: transform;
    }
    .ph1 { transform: rotate(-9deg) translate(-262px,22px) scale(.9); z-index:1; opacity:.8; }
    .ph2 { z-index: 3; }
    .ph3 { transform: rotate(9deg) translate(262px,22px) scale(.9); z-index:1; opacity:.8; }
    .phone.ph-hovered {
      box-shadow: 0 0 32px rgba(255,255,255,.10), 0 40px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.14) !important;
      border-color: rgba(255,255,255,.22) !important;
      opacity: 1 !important;
      z-index: 10 !important;
    }
    .phone.ph-dimmed { opacity: .35 !important; }
    .ph-notch {
      width: 78px; height: 22px; background: var(--bg);
      border-radius: 0 0 14px 14px; margin: 0 auto; position: relative; z-index: 10;
    }
    .ph-notch::after {
      content: ''; position: absolute; width: 8px; height: 8px;
      background: rgba(255,255,255,.14); border-radius: 50%;
      top: 50%; left: 50%; transform: translate(-50%,-50%);
    }
    .ph-screen { padding: 10px 14px; height: calc(100% - 22px); overflow: hidden; }
    .ph-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
    .ph-hdr-title { font-size: 18px; font-weight: 800; color: #fff; }
    .ph-hdr-sub { font-size: 11px; color: var(--tm); }
    .ph-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--c); }
    .ev-card { border-radius: 14px; overflow: hidden; margin-bottom: 10px; position: relative; height: 115px; }
    .ev-bg { position: absolute; inset: 0; }
    .ev-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.85) 0%,transparent 60%); }
    .ev-info { position: absolute; bottom: 10px; left: 12px; right: 12px; }
    .ev-name { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 2px; }
    .ev-meta { font-size: 10px; color: rgba(255,255,255,.6); }
    .ev-pill {
      position: absolute; top: 8px; right: 8px;
      background: rgba(118,16,219,.88); color: #fff;
      font-size: 9px; font-weight: 700; letter-spacing: .05em;
      padding: 3px 8px; border-radius: 100px; text-transform: uppercase;
    }
    .ph-tags { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
    .ph-tag {
      background: rgba(118,16,219,.15); border: 1px solid rgba(118,16,219,.35);
      border-radius: 100px; padding: 4px 10px;
      font-size: 10px; font-weight: 700; color: var(--cl);
    }
    .ph-tag.active { background: var(--c); border-color: var(--c); color: #fff; }
    .ph-friends { margin-top: 8px; }
    .ph-friends-lbl { font-size: 10px; color: var(--tm); margin-bottom: 7px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
    .ph-friends-row { display: flex; gap: 5px; align-items: center; }
    .ph-friend-av { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--bg); }
    .ph-friends-more { font-size: 10px; color: var(--tm); margin-left: 4px; }
    .ph-nav {
      position: absolute; bottom: 0; left: 0; right: 0; height: 52px;
      background: rgba(13,13,28,.95); border-top: 1px solid rgba(255,255,255,.07);
      display: flex; align-items: center; justify-content: space-around;
    }
    .ph-nav-icon { font-size: 17px; opacity: .4; }
    .ph-nav-icon.active { opacity: 1; }
    .ph-prof-av {
      width: 60px; height: 60px; border-radius: 50%;
      background: linear-gradient(135deg,var(--c),#c060ff);
      margin: 6px auto 10px; display: flex; align-items: center; justify-content: center; font-size: 22px;
    }
    .ph-prof-name { font-size: 15px; font-weight: 800; color: #fff; text-align: center; margin-bottom: 2px; }
    .ph-prof-handle { font-size: 11px; color: var(--tm); text-align: center; margin-bottom: 12px; }
    .ph-stats { display: flex; justify-content: space-around; margin-bottom: 12px; }
    .ph-stat-val { font-size: 18px; font-weight: 800; color: #fff; text-align: center; display: block; }
    .ph-stat-lbl { font-size: 9px; color: var(--tm); text-align: center; letter-spacing: .06em; text-transform: uppercase; }
    .ph-ev-mini {
      background: rgba(118,16,219,.12); border: 1px solid rgba(118,16,219,.25);
      border-radius: 10px; padding: 9px 11px; margin-bottom: 7px;
      display: flex; align-items: center; gap: 9px;
    }
    .ph-ev-mini-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cl); flex-shrink: 0; }
    .ph-ev-mini-name { font-size: 12px; font-weight: 700; color: #fff; }
    .ph-ev-mini-date { font-size: 10px; color: var(--tm); }

    /* ── PHONE SCREENS v2 (matching real app designs) ── */
    .ph-search-bar { display:flex; align-items:center; gap:8px; background:rgba(255,255,255,.1); border-radius:16px; padding:8px 12px; margin-bottom:10px; }
    .ph-search-bar-text { font-size:11px; color:rgba(255,255,255,.4); flex:1; }
    .ph-search-bar-filter { width:24px; height:24px; border-radius:50%; background:rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; font-size:10px; flex-shrink:0; }
    .ev-card-v2 { border-radius:12px; overflow:hidden; margin-bottom:7px; background:#111; position:relative; }
    .ev-card-v2-img { height:86px; position:relative; overflow:hidden; }
    .ev-tag-tl { position:absolute; top:7px; left:7px; background:var(--c); color:#fff; font-size:8.5px; font-weight:700; padding:3px 8px; border-radius:20px; display:flex; align-items:center; gap:3px; z-index:1; }
    .ev-card-v2-body { padding:8px 10px; }
    .ev-card-v2-title { font-size:12px; font-weight:700; color:#fff; margin-bottom:2px; }
    .ev-card-v2-loc { font-size:10px; color:rgba(255,255,255,.45); margin-bottom:2px; }
    .ev-card-v2-date { font-size:10px; color:var(--cl); margin-bottom:5px; }
    .ev-card-v2-footer { display:flex; align-items:center; gap:6px; }
    .ev-av-sm { width:18px; height:18px; border-radius:50%; border:1.5px solid #111; background:#555; display:inline-block; }
    .ev-av-sm + .ev-av-sm { margin-left:-5px; }
    .ev-card-v2-more { font-size:9px; color:rgba(255,255,255,.4); margin-left:4px; flex-shrink:0; }
    .ev-card-v2-genres { display:flex; gap:4px; margin-left:auto; }
    .ev-card-v2-genre { font-size:8.5px; color:rgba(255,255,255,.5); background:rgba(255,255,255,.08); border-radius:8px; padding:2px 6px; }
    .ph-nav-v2 { position:absolute; bottom:0; left:0; right:0; height:52px; background:rgba(10,10,18,.97); border-top:1px solid rgba(255,255,255,.07); display:flex; align-items:center; justify-content:space-around; }
    .ph-nav-v2-item { display:flex; flex-direction:column; align-items:center; gap:2px; }
    .ph-nav-v2-icon { font-size:15px; opacity:.38; }
    .ph-nav-v2-label { font-size:8px; color:rgba(255,255,255,.38); }
    .ph-nav-v2-item.active .ph-nav-v2-icon { opacity:1; }
    .ph-nav-v2-item.active .ph-nav-v2-label { color:var(--cl); }
    .ph-detail-hero { height:172px; position:relative; overflow:hidden; flex-shrink:0; }
    .ph-detail-topbar { position:absolute; top:8px; left:10px; right:10px; display:flex; z-index:2; }
    .ph-detail-backbtn { width:28px; height:28px; border-radius:50%; background:rgba(0,0,0,.55); backdrop-filter:blur(4px); display:flex; align-items:center; justify-content:center; font-size:15px; color:#fff; flex-shrink:0; }
    .ph-detail-body { padding:10px 12px; overflow:hidden; flex:1; }
    .ph-detail-title-row { display:flex; align-items:flex-start; justify-content:space-between; margin-bottom:3px; gap:6px; }
    .ph-detail-title { font-size:13px; font-weight:800; color:#fff; line-height:1.25; flex:1; }
    .ph-detail-heart { font-size:18px; color:var(--cl); flex-shrink:0; }
    .ph-detail-date { font-size:11px; color:var(--cl); margin-bottom:2px; }
    .ph-detail-loc { font-size:10px; color:rgba(255,255,255,.45); margin-bottom:6px; }
    .ph-detail-typetags { display:flex; gap:4px; flex-wrap:wrap; margin-bottom:5px; }
    .ph-detail-typetag { font-size:8.5px; font-weight:700; background:var(--c); color:#fff; padding:3px 8px; border-radius:14px; }
    .ph-detail-agetag { font-size:8.5px; font-weight:700; background:var(--c); color:#fff; padding:3px 7px; border-radius:14px; margin-left:auto; }
    .ph-detail-genretags { display:flex; gap:4px; margin-bottom:7px; }
    .ph-detail-genretag { font-size:8.5px; color:rgba(255,255,255,.6); background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); border-radius:10px; padding:2px 7px; }
    .ph-friends-search { display:flex; align-items:center; gap:7px; background:rgba(255,255,255,.08); border-radius:14px; padding:8px 11px; margin-bottom:8px; }
    .ph-invite-card { display:flex; align-items:center; gap:10px; background:rgba(255,255,255,.06); border-radius:12px; padding:10px 11px; margin-bottom:10px; }
    .ph-follow-tabs { display:flex; gap:5px; margin-bottom:7px; }
    .ph-follow-tab { font-size:10px; font-weight:700; padding:4px 12px; border-radius:20px; background:rgba(255,255,255,.1); color:rgba(255,255,255,.5); }
    .ph-follow-tab.active { background:var(--c); color:#fff; }
    .ph-friend-row-v2 { display:flex; align-items:center; gap:8px; background:rgba(255,255,255,.055); border-radius:12px; padding:7px 9px; margin-bottom:5px; }
    .ph-friend-av-v2 { width:28px; height:28px; border-radius:50%; flex-shrink:0; }

    /* ── WAITLIST SECTION ──────────────────────────── */
    #section-waitlist { text-align: center; position: relative; overflow: hidden; }
    .wl-glow {
      position: absolute; width: 700px; height: 700px;
      background: radial-gradient(circle,rgba(118,16,219,.18) 0%,transparent 70%);
      top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
    }
    .wl-inner { position: relative; z-index:1; max-width: 680px; margin: 0 auto; }
    .wl-title {
      font-size: clamp(42px, 7vw, 88px); font-weight: 900;
      letter-spacing: -.035em; line-height: 1.08; margin-bottom: 20px;
      text-transform: uppercase; padding-top: 0.1em;
    }

    /* ── ORGANIZER PAGE ────────────────────────────── */
    .org-hero {
      min-height: 55vh; display: flex; align-items: flex-end;
      padding: 130px 52px 44px; position: relative; overflow: hidden;
    }
    .org-hero-bg {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(118,16,219,.15) 0%, transparent 60%);
    }
    .org-hero-bg::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top, var(--bg) 0%, transparent 60%);
    }
    .org-hero-content { position: relative; z-index: 1; max-width: 1100px; }
    .org-hero h1 {
      font-size: clamp(32px, 5.2vw, 72px); font-weight: 900;
      letter-spacing: 0.01em; line-height: 1.1; text-transform: uppercase;
      margin-bottom: 24px; padding-top: 0.1em;
    }
    .org-hero p { font-size: 20px; color: var(--tm); max-width: 520px; line-height: 1.6; }
    /* Organizer phone mockup */
    .org-phone {
      transition: box-shadow .4s ease, border-color .4s ease, transform .4s ease;
    }
    .org-phone:hover {
      transform: scale(1.05);
      box-shadow: 0 0 32px rgba(255,255,255,.12), 0 44px 80px rgba(0,0,0,.75), 0 0 0 1px rgba(255,255,255,.18) !important;
      border-color: rgba(255,255,255,.24) !important;
    }

    .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 56px; }
    .two-col.reverse { direction: rtl; }
    .two-col.reverse > * { direction: ltr; }
    .col-visual {
      background: var(--card); border: 1px solid rgba(255,255,255,.07);
      border-radius: 24px; aspect-ratio: 1/.85; position: relative; overflow: hidden;
    }
    .col-visual-inner {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(118,16,219,.12) 0%, transparent 60%);
      display: flex; align-items: center; justify-content: center;
    }
    .col-text h3 {
      font-size: clamp(26px, 3.5vw, 42px); font-weight: 900;
      letter-spacing: -.025em; text-transform: uppercase; margin-bottom: 16px; line-height: 1.0;
    }
    .col-text p { color: var(--tm); line-height: 1.7; font-size: 16px; margin-bottom: 24px; }
    .col-text ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .col-text ul li {
      display: flex; gap: 12px; align-items: flex-start;
      color: var(--tm); font-size: 15px; line-height: 1.55;
    }
    .col-text ul li::before { content: '→'; color: var(--cl); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

    .stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
    .stat-card {
      background: var(--card); border: 1px solid rgba(255,255,255,.07);
      border-radius: 20px; padding: 32px; text-align: center;
      transition: border-color .3s;
    }
    .stat-card:hover { border-color: rgba(118,16,219,.4); }
    .stat-card .val {
      font-size: clamp(36px, 4vw, 52px); font-weight: 900;
      color: var(--cl); letter-spacing: -.03em; text-transform: uppercase; display: block;
    }
    .stat-card .lbl { font-size: 14px; color: var(--tm); margin-top: 6px; }

    /* ── ABOUT PAGE ────────────────────────────────── */
    .about-intro {
      font-size: clamp(22px, 3.2vw, 38px); font-weight: 800;
      line-height: 1.25; letter-spacing: -.02em; max-width: 900px;
      margin-bottom: 64px;
    }
    .about-intro .hl { color: var(--cl); }
    .team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
    .team-card {
      background: var(--card); border: 1px solid rgba(255,255,255,.07);
      border-radius: 20px; padding: 28px 24px; text-align: center;
      transition: border-color .3s, transform .3s;
    }
    .team-card:hover { border-color: rgba(118,16,219,.4); transform: translateY(-4px); }
    .team-av {
      width: 72px; height: 72px; border-radius: 50%;
      margin: 0 auto 16px;
      border: 2px solid rgba(118,16,219,.4);
      display: flex; align-items: center; justify-content: center; font-size: 28px;
    }
    .team-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
    .team-card .role { font-size: 13px; color: var(--cl); font-weight: 600; }

    .values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 56px; }
    .value-card {
      background: var(--card); border: 1px solid rgba(255,255,255,.07);
      border-radius: 20px; padding: 32px;
      transition: border-color .3s;
    }
    .value-card:hover { border-color: rgba(118,16,219,.4); }
    .value-card h3 { font-size: 20px; font-weight: 900; margin-bottom: 10px; text-transform: uppercase; letter-spacing: -.01em; }
    .value-card p { color: var(--tm); font-size: 15px; line-height: 1.65; }

    /* ── LOGO SLIDER (Bekannt aus) ──────────────────── */
    .logo-slider-wrap {
      overflow: hidden; padding: 28px 0; position: relative;
      background: transparent;
    }
    .logo-slider-wrap::before,
    .logo-slider-wrap::after {
      content: ''; position: absolute; top: 0;
      width: 100px; height: 100%; z-index: 2; pointer-events: none;
    }
    .logo-slider-wrap::before { left:0;  background: linear-gradient(to right, var(--bg), transparent); }
    .logo-slider-wrap::after  { right:0; background: linear-gradient(to left,  var(--bg), transparent); }
    .logos-slide {
      display: flex; align-items: center; gap: 72px;
      width: max-content;
      animation: logoSlide 35s linear infinite;
    }
    @keyframes logoSlide {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .logo-slide-img {
      height: 44px; width: auto; object-fit: contain;
      filter: brightness(0) invert(1);
      opacity: 0.55;
      transition: opacity .3s ease, transform .3s ease;
      flex-shrink: 0;
    }
    .logo-slide-img:hover { opacity: 0.9; transform: scale(1.05); }
    /* Vision block hover — accent line brightens + key words highlight */
    .vision-block-grid > div { transition: border-left-color .3s ease; }
    .vision-block-grid > div:hover { border-left-color: var(--cl) !important; }
    .vhl { transition: color .3s ease, font-weight .3s ease; }
    .vision-block-grid > div:hover .vhl { color: rgba(255,255,255,.93) !important; font-weight: 700; }
    /* Per-logo height corrections — compensates for SVG whitespace padding */
    img[src="/svg/noen.svg"]       { height: 108px !important; }
    img[src="/svg/oe24.svg"]       { height:  94px !important; }
    img[src="/svg/meinbezirk.svg"] { height: 120px !important; }
    img[src="/svg/rizup.svg"]      { height:  80px !important; }
    img[src="/svg/wntv.svg"]       { height:  95px !important; }
    /* Vertically center all logos within the flex row */
    .logos-slide a { display: flex; align-items: center; }
    @media (max-width: 768px) {
      .logos-slide { gap: 48px; }
      .logo-slide-img { height: 34px; }
      .logo-slider-wrap::before,
      .logo-slider-wrap::after { width: 56px; }
    }

    /* ── PRESS PAGE ────────────────────────────────── */
    .press-kit-box {
      background: linear-gradient(135deg, rgba(118,16,219,.15) 0%, rgba(118,16,219,.05) 100%);
      border: 1px solid rgba(118,16,219,.35); border-radius: 24px; padding: 48px;
      display: flex; align-items: center; justify-content: space-between; gap: 32px;
      margin-top: 48px; margin-bottom: 56px;
    }
    .press-kit-box h3 { font-size: 28px; font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; margin-bottom: 10px; }
    .press-kit-box p { color: var(--tm); font-size: 15px; max-width: 480px; line-height: 1.6; }
    .btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1.5px solid rgba(118,16,219,.6); color: var(--cl);
      text-decoration: none; padding: 14px 28px; border-radius: 100px;
      font-size: 14px; font-weight: 700; letter-spacing: .03em;
      cursor: none; white-space: nowrap; transition: background .25s, color .25s;
    }
    .btn-outline:hover { background: var(--c); color: #fff; border-color: var(--c); }
    .press-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 56px; }
    .press-fact {
      background: var(--card); border: 1px solid rgba(255,255,255,.07);
      border-radius: 20px; padding: 28px;
    }
    .press-fact .label { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--tm); margin-bottom: 8px; font-weight: 600; }
    .press-fact .value { font-size: 18px; font-weight: 800; color: #fff; }
    .contact-block {
      background: var(--card); border: 1px solid rgba(255,255,255,.07);
      border-radius: 20px; padding: 32px;
    }
    .contact-block h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; }
    .contact-block a { color: var(--cl); text-decoration: none; font-size: 16px; font-weight: 600; }
    .contact-block a:hover { color: var(--cll); }

    /* ── IMPRINT PAGE ──────────────────────────────── */
    .imprint-content {
      max-width: 720px; color: var(--tm); line-height: 1.75; font-size: 15px;
    }
    .imprint-content h2 {
      font-size: 20px; font-weight: 800; color: #fff;
      text-transform: uppercase; letter-spacing: -.01em;
      margin-top: 40px; margin-bottom: 10px;
    }
    .imprint-content h2:first-child { margin-top: 0; }
    .imprint-content a { color: var(--cl); }

    /* ── FOOTER ────────────────────────────────────── */
    footer {
      padding: 20px 52px;
      border-top: 1px solid rgba(255,255,255,.06);
      display: flex; flex-direction: row;
      align-items: center; justify-content: space-between;
      position: relative;
    }
    .ft-logo { height: 13px; width: auto; display: block; flex-shrink: 0; }
    .ft-copy { font-size: 12px; color: var(--tm); position: absolute; left: 50%; transform: translateX(-50%); white-space: nowrap; }
    .ft-links { display: flex; gap: 20px; align-items: center; }
    .ft-links a { color: var(--tm); text-decoration: none; font-size: 12px; font-weight: 600; transition: color .2s; cursor: none; }
    .ft-links a:hover { color: #fff; }

    /* ── WAITLIST REASON CARDS ─────────────────────── */
    .wl-reason-card {
      background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
      border-radius: 16px; padding: 28px 24px;
      transition: border-color .3s, background .3s;
    }
    .wl-reason-card:hover { border-color: rgba(118,16,219,.3); background: rgba(118,16,219,.05); }
    .wl-reason-icon { font-size: 28px; margin-bottom: 14px; }
    .wl-reason-card h4 { font-size: 16px; font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 8px; }
    .wl-reason-card p { font-size: 14px; color: var(--tm); line-height: 1.65; }
    @media (max-width: 540px) { .wl-reason-card { grid-column: span 2; } }

    /* ── FOOTER LOGO TEXT ──────────────────────────── */
    .ft-logo-text {
      font-size: 18px; font-weight: 400;
      color: rgba(255,255,255,.35); letter-spacing: -.02em;
    }

    /* ── STEPS (community page) ────────────────────── */
    .steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
    .step-card {
      background: var(--card); border: 1px solid rgba(255,255,255,.07);
      border-radius: 24px; padding: 36px;
      transition: border-color .35s, transform .35s;
    }
    .step-card:hover { border-color: rgba(118,16,219,.4); transform: translateY(-4px); }
    .step-num {
      font-size: 56px; font-weight: 900; color: var(--c);
      opacity: .22; line-height: 1; margin-bottom: 16px; letter-spacing: -.04em;
    }
    .step-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; letter-spacing: -.02em; text-transform: uppercase; }
    .step-card p { color: var(--tm); line-height: 1.65; font-size: 15px; }
    .wide-img { width: 100%; border-radius: 24px; margin-top: 64px; display: block; border: 1px solid rgba(118,16,219,.15); }

    /* ── BLOG ───────────────────────────────────────── */
    .blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
    .blog-card {
      background: var(--card); border: 1px solid rgba(255,255,255,.07);
      border-radius: 24px; overflow: hidden;
      transition: border-color .35s, transform .35s; cursor: none;
    }
    .blog-card:hover { border-color: rgba(118,16,219,.45); transform: translateY(-6px); }
    .blog-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
    .blog-body { padding: 24px; }
    .blog-tag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--cl); margin-bottom: 10px; display: block; }
    .blog-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; letter-spacing: -.01em; line-height: 1.2; }
    .blog-card p { color: var(--tm); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
    .blog-date { font-size: 12px; color: rgba(255,255,255,.3); }
    .blog-featured { grid-column: span 2; }
    .blog-featured .blog-card-img { aspect-ratio: 2/1; }

    /* ── LEGAL ──────────────────────────────────────── */
    .legal-content { max-width: 720px; color: var(--tm); line-height: 1.8; font-size: 15px; }
    .legal-content h2 {
      font-size: 20px; font-weight: 800; color: #fff;
      text-transform: uppercase; letter-spacing: -.01em;
      margin-top: 48px; margin-bottom: 12px;
    }
    .legal-content h2:first-child { margin-top: 0; }
    .legal-content h3 { font-size: 16px; font-weight: 700; color: rgba(255,255,255,.8); margin-top: 28px; margin-bottom: 8px; }
    .legal-content p { margin-bottom: 14px; }
    .legal-content ul { margin-left: 22px; margin-bottom: 14px; }
    .legal-content li { margin-bottom: 6px; }
    .legal-content a { color: var(--cl); }
    .cookie-table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; }
    .cookie-table th {
      text-align: left; padding: 12px 16px;
      font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
      color: var(--cl); border-bottom: 1px solid rgba(118,16,219,.3); font-weight: 700;
    }
    .cookie-table td {
      padding: 12px 16px; color: var(--tm); font-size: 14px;
      border-bottom: 1px solid rgba(255,255,255,.05); vertical-align: top;
    }
    .cookie-table tr:last-child td { border-bottom: none; }

    /* ── UTIL ──────────────────────────────────────── */
    .text-purple { color: var(--cl); }
    .mt-56 { margin-top: 56px; }
    .reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── FEEDBACK WIDGET ───────────────────────────── */
    .fb-section {
      position: relative;
      padding: clamp(60px,8vw,100px) 24px;
    }
    .fb-section .sec-inner { max-width: 880px; }
    .fb-card {
      position: relative;
      background: linear-gradient(180deg, rgba(118,16,219,.08) 0%, rgba(255,255,255,.03) 100%);
      border: 1px solid rgba(118,16,219,.22);
      border-radius: 24px;
      padding: clamp(28px,4vw,52px) clamp(24px,4vw,52px);
      overflow: hidden;
    }
    .fb-card::before {
      content: '';
      position: absolute;
      top: -100px; left: 50%;
      transform: translateX(-50%);
      width: 480px; height: 320px;
      background: radial-gradient(ellipse at center, rgba(118,16,219,.18) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    .fb-card > * { position: relative; z-index: 1; }
    .fb-head { text-align: center; margin-bottom: 32px; }
    .fb-head .sec-label { display: block; margin-bottom: 12px; }
    .fb-head h2 {
      font-size: clamp(28px,3.6vw,44px);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -.02em;
      margin: 0 0 14px;
    }
    .fb-head p {
      color: var(--tm);
      font-size: 15px;
      line-height: 1.7;
      max-width: 520px;
      margin: 0 auto;
    }
    .fb-tabs {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }
    .fb-tab {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.09);
      color: rgba(255,255,255,.7);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .02em;
      padding: 10px 20px;
      border-radius: 999px;
      cursor: pointer;
      transition: all .25s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: inherit;
    }
    .fb-tab:hover {
      border-color: rgba(118,16,219,.4);
      color: #fff;
    }
    .fb-tab.active {
      background: rgba(118,16,219,.18);
      border-color: rgba(118,16,219,.6);
      color: #fff;
      box-shadow: 0 0 24px rgba(118,16,219,.25);
    }
    .fb-tab .fb-tab-emoji { font-size: 14px; }
    .fb-fields { display: grid; gap: 14px; }
    .fb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .fb-input, .fb-textarea {
      width: 100%;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 12px;
      color: #fff;
      font-family: inherit;
      font-size: 15px;
      padding: 14px 16px;
      transition: border-color .2s ease, background .2s ease;
      box-sizing: border-box;
    }
    .fb-input::placeholder, .fb-textarea::placeholder { color: rgba(255,255,255,.35); }
    .fb-input:focus, .fb-textarea:focus {
      outline: none;
      border-color: rgba(118,16,219,.55);
      background: rgba(118,16,219,.05);
    }
    .fb-textarea {
      resize: vertical;
      min-height: 140px;
      line-height: 1.6;
    }
    .fb-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 18px;
    }
    .fb-counter {
      font-size: 12px;
      color: rgba(255,255,255,.4);
      letter-spacing: .02em;
    }
    .fb-counter.warn { color: #f87171; }
    .fb-submit {
      background: var(--cl);
      color: #fff;
      border: none;
      font-family: inherit;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .01em;
      padding: 14px 32px;
      border-radius: 12px;
      cursor: pointer;
      transition: transform .15s ease, box-shadow .25s ease, opacity .2s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      position: relative;
      overflow: hidden;
    }
    .fb-submit:hover:not(:disabled) {
      transform: translateY(-1px);
      box-shadow: 0 12px 32px rgba(118,16,219,.4);
    }
    .fb-submit:disabled { opacity: .55; cursor: not-allowed; }
    .fb-submit .fb-spinner {
      width: 14px; height: 14px;
      border: 2px solid rgba(255,255,255,.3);
      border-top-color: #fff;
      border-radius: 50%;
      animation: fb-spin .7s linear infinite;
      display: none;
    }
    .fb-submit.loading .fb-spinner { display: inline-block; }
    .fb-submit.loading .fb-arrow { display: none; }
    @keyframes fb-spin { to { transform: rotate(360deg); } }
    .fb-status {
      margin-top: 16px;
      font-size: 14px;
      padding: 12px 16px;
      border-radius: 10px;
      display: none;
      line-height: 1.5;
    }
    .fb-status.show { display: block; }
    .fb-status.success {
      background: rgba(74,222,128,.1);
      border: 1px solid rgba(74,222,128,.3);
      color: #86efac;
    }
    .fb-status.error {
      background: rgba(248,113,113,.1);
      border: 1px solid rgba(248,113,113,.3);
      color: #fca5a5;
    }
    .fb-hint {
      font-size: 12px;
      color: rgba(255,255,255,.4);
      letter-spacing: .02em;
      text-align: center;
      margin-top: 14px;
    }
    @media (max-width: 600px) {
      .fb-row { grid-template-columns: 1fr; }
      .fb-meta { flex-direction: column; align-items: stretch; }
      .fb-submit { width: 100%; justify-content: center; }
    }

    /* ── RESPONSIVE ────────────────────────────────── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-burger { display: flex; }
      .nav-cta { display: none; }
      nav, nav.scrolled { padding: 18px 24px; }
      .hero-wrap, .org-hero { padding-left: 24px; padding-right: 24px; }
      .sec { padding: 80px 24px; }
      .feat-grid { grid-template-columns: 1fr; }
      .two-col { grid-template-columns: 1fr; }
      .about-intro-grid { grid-template-columns: 1fr !important; }
      .about-intro-grid img { width: 100% !important; max-width: 100% !important; }
      .vision-block-grid { grid-template-columns: 1fr !important; }
      .vision-block-grid > div { transition: border-left-color .3s ease; }
      .team-grid { grid-template-columns: repeat(2,1fr); }
      .values-grid { grid-template-columns: 1fr; }
      .stat-row, .press-facts { grid-template-columns: 1fr; }
      .press-kit-box { flex-direction: column; }
      .steps-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .blog-featured { grid-column: span 1; }
      footer { flex-direction: column; gap: 16px; padding: 28px 24px; justify-content: center; min-height: unset; }
      .ft-copy { position: static; transform: none; text-align: center; }
      .ft-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
      .team-grid { grid-template-columns: repeat(3,1fr) !important; }
      /* Scale team names down on mobile so the longest ones (Niklas Hochstöger,
         Leon Schießwald) fit on one line — same size across all members. */
      .team-grid h3 {
        font-size: clamp(10px, 2.4vw, 14px) !important;
        white-space: nowrap;
        letter-spacing: -.015em !important;
      }
      .phones-stage { height: 400px; }
      .phone { width: 175px; height: 350px; border-radius: 28px; }
      .ph1 { transform: rotate(-9deg) translate(-162px,16px) scale(.9); }
      .ph3 { transform: rotate(9deg) translate(162px,16px) scale(.9); }
    }
    @media (max-width: 540px) {
      .hero-h { font-size: clamp(28px, 8vw, 44px); }
      .cd-grid { flex-wrap: nowrap !important; gap: clamp(3px, 1.5vw, 10px) !important; }
      .cd-box { width: clamp(52px, 17vw, 72px) !important; height: clamp(52px, 17vw, 72px) !important; font-size: clamp(20px, 7vw, 32px) !important; border-radius: 10px !important; }
      .cd-sep { font-size: clamp(16px, 5vw, 28px) !important; margin-bottom: clamp(30px, 9vw, 48px) !important; }
      .cd-lbl { font-size: clamp(7px, 2.2vw, 11px) !important; letter-spacing: .08em !important; }
      /* Phone section — flat side-by-side strip, no 3D, no interaction */
      .phones-stage {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        height: auto !important;
        perspective: none !important;
        gap: 10px !important;
        padding: 12px 8px 24px !important;
        margin-top: 32px !important;
      }
      .phones-bg { display: none; }
      .phone {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        width: 28vw !important;
        height: 56vw !important;
        max-width: 108px !important;
        max-height: 216px !important;
        border-radius: 18px !important;
        pointer-events: none !important;
        box-shadow: 0 8px 32px rgba(0,0,0,.6) !important;
        border-color: rgba(255,255,255,.12) !important;
        flex-shrink: 0 !important;
      }
      /* Slight fan tilt on outer phones — matches desktop feel */
      .ph1 { transform: rotate(-5deg) translateY(8px) !important; }
      .ph3 { transform: rotate(5deg) translateY(8px) !important; }
      .ph2 { transform: translateY(-5px) !important; }
      /* Buttons — no wrapping, scale text down instead */
      .btn-primary { font-size: clamp(12px, 3.5vw, 16px) !important; padding: 14px clamp(18px, 5vw, 38px) !important; white-space: nowrap !important; }
      .btn-ghost { font-size: clamp(12px, 3.2vw, 15px) !important; white-space: nowrap !important; }
      /* Footer mobile — more breathing room */
      footer { padding: 24px 20px 32px !important; gap: 12px !important; }
    }

    /* ── COMMUNITY COUNTER ──────────────────────────── */
    @keyframes counterFloat {
      0%,100% { transform: translateY(0px)   rotateX(0deg)   rotateY(0deg); }
      30%     { transform: translateY(-9px)  rotateX(4deg)   rotateY(-6deg); }
      65%     { transform: translateY(-5px)  rotateX(-2deg)  rotateY(5deg);  }
    }
    @keyframes counterPulse {
      0%,100% { opacity: .14; transform: scale(1);   }
      50%     { opacity: .26; transform: scale(1.15); }
    }
    .community-counter {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; flex-shrink: 0; position: relative;
      cursor: pointer; user-select: none;
      perspective: 900px; transform-style: preserve-3d;
      animation: counterFloat 6s ease-in-out infinite;
      padding-right: clamp(40px, 6vw, 100px);
    }
    /* ambient glow blob behind the number */
    .community-counter::before {
      content: '';
      position: absolute; top: 50%; left: 50%;
      width: 260px; height: 160px;
      transform: translate(-50%, -55%);
      background: radial-gradient(ellipse, rgba(118,16,219,.55) 0%, transparent 70%);
      border-radius: 50%; pointer-events: none; z-index: 0;
      animation: counterPulse 3s ease-in-out infinite;
      filter: blur(28px);
    }
    .community-counter > * { position: relative; z-index: 1; }
    .counter-num {
      display: flex; align-items: center; justify-content: center;
      gap: 0; text-align: center; min-height: 1.1em;
      perspective: 700px; perspective-origin: 50% 55%;
    }
    /* individual digits — 3D flip-in on .in */
    .c-digit {
      font-size: clamp(72px, 10vw, 148px); font-weight: 900; line-height: 1;
      letter-spacing: -0.03em; display: inline-block;
      background: linear-gradient(160deg, #fff 30%, var(--cl) 110%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      transform: rotateX(85deg) translateY(16px); opacity: 0;
      transform-origin: center 130%;
      transition: transform 0.65s cubic-bezier(0.22, 1.5, 0.36, 1), opacity 0.35s ease;
      will-change: transform, opacity;
    }
    .c-digit.in  { transform: rotateX(0deg) translateY(0); opacity: 1; }
    .c-digit.out { transform: rotateX(-85deg) translateY(-16px); opacity: 0; }
    /* thousand separator */
    .c-sep {
      font-size: clamp(72px, 10vw, 148px); font-weight: 900; line-height: 1;
      letter-spacing: -0.03em; display: inline-block; opacity: 0.4;
      background: linear-gradient(160deg, #fff 30%, var(--cl) 110%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    /* plain-text phase (during count-up) */
    .counter-num.counting {
      font-size: clamp(72px, 10vw, 148px); font-weight: 900; line-height: 1;
      letter-spacing: -0.03em;
      background: linear-gradient(135deg, #fff 50%, var(--cl));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      display: block;
    }
    .counter-label {
      font-size: 13px; font-weight: 700; color: var(--cl); margin-top: 14px;
      text-transform: uppercase; letter-spacing: .12em;
    }
    .counter-sub {
      font-size: 13px; color: var(--tm); margin-top: 6px;
    }
    @media (max-width: 680px) {
      .community-counter { min-width: unset; width: 100%; padding-right: 0; }
    }

    /* ── WL REASON CARDS ────────────────────────────── */
    .wl-reason-card {
      background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08);
      border-radius: 16px; padding: 28px 24px;
      transition: border-color .3s, background .3s;
    }
    .wl-reason-card:hover { border-color: rgba(118,16,219,.3); background: rgba(118,16,219,.05); }
    .wl-reason-icon { font-size: 26px; margin-bottom: 12px; }
    .wl-reason-card h4 { font-size: 15px; font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 7px; }
    .wl-reason-card p { font-size: 14px; color: var(--tm); line-height: 1.65; }
    @media (max-width: 540px) {
      .wl-reason-card { grid-column: span 2; }
    }

    /* ── Hide custom cursor on touch/mobile devices ── */
    @media (hover: none) and (pointer: coarse) {
      #cur, #cur-ring, #cur-glow { display: none !important; }
      body { cursor: auto !important; }
      a, button, .mag, .nav-logo { cursor: pointer !important; }
      /* Vision: no hover on touch — permanently highlight last block like desktop hover */
      .vision-block-grid > div:last-child { border-left-color: var(--cl) !important; }
      .vision-block-grid > div:last-child p:first-of-type { color: rgba(255,255,255,.88) !important; }
      /* Remove focus outlines and tap glow */
      *:focus, *:focus-visible { outline: none !important; box-shadow: none !important; }
      /* Disable all card/element hover effects — touch :hover fires on tap */
      .feat-card:hover,
      .stat-card:hover,
      .team-card:hover,
      .value-card:hover,
      .wl-reason-card:hover,
      .step-card:hover,
      .blog-card:hover {
        border-color: rgba(255,255,255,.07) !important;
        transform: none !important;
        background: var(--card) !important;
        box-shadow: none !important;
      }
      .feat-card:hover::before { opacity: 0 !important; }
      .vision-block-grid > div:hover { border-left-color: rgba(118,16,219,.5) !important; }
      .vhl { color: inherit !important; font-weight: inherit !important; }
      .btn-outline:hover { background: transparent !important; color: var(--t) !important; border-color: rgba(255,255,255,.18) !important; }
    }
