* { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
            padding-top: var(--header-h);
        }
        /* fine grain texture for tactile, premium depth */
        body::after {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            opacity: 0.035;
            mix-blend-mode: overlay;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        }
        ::selection { background: rgba(255,61,154,0.3); color: #fff; }

        /* Ambient animated background */
        .bg-leak { position: fixed; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(60% 45% at 50% 8%, rgba(225,29,72,.18), transparent 70%); }
        .bg-grid {
            position: fixed; inset: 0; z-index: 0; pointer-events: none;
            background-image: linear-gradient(rgba(244,63,94,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(244,63,94,0.05) 1px, transparent 1px);
            background-size: 64px 64px;
            mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, #000 20%, transparent 75%);
            -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, #000 20%, transparent 75%);
        }
        @keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(50px,-40px) scale(1.08); } }
        @keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-60px,30px) scale(1.06); } }

        .container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }

        /* ============ HEADER ============ */
        .site-header {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            height: var(--header-h);
            display: flex; align-items: center;
            transition: height var(--t), background var(--t), border-color var(--t), box-shadow var(--t);
            border-bottom: 1px solid transparent;
        }
        .site-header.scrolled {
            height: 62px;
            background: rgba(12,8,9,0.72);
            backdrop-filter: blur(20px) saturate(150%);
            -webkit-backdrop-filter: blur(20px) saturate(150%);
            border-bottom: 1px solid var(--line);
            box-shadow: 0 8px 40px rgba(0,0,0,0.4);
        }
        .header-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
        .brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
        .brand-mark {
            width: 34px; height: 34px; border-radius: 10px;
            background: var(--grad); display: grid; place-items: center;
            box-shadow: 0 6px 18px rgba(244,63,94,0.4);
        }
        .brand-mark svg { width: 19px; height: 19px; }
        .brand-name { font-family: 'Fraunces', Georgia, serif; font-size: 23px; font-weight: 600; letter-spacing: -0.3px; color: #fff; line-height: 1; }
        .brand-name b { font-family: 'Inter', sans-serif; font-weight: 800; color: #ff3d9a; position: relative; margin-left: 1.5px; letter-spacing: -0.5px; }
        .brand-name b::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 3px; background: #ff3d9a; border-radius: 2px; }

        .nav-desktop { display: flex; align-items: center; gap: 30px; }
        .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
        .nav-links a { position: relative; color: var(--text-muted); text-decoration: none; font-size: 14.5px; font-weight: 500; padding: 6px 0; transition: color var(--t); }
        .nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--grad); border-radius: 2px; transition: width var(--t); }
        .nav-links a:hover { color: var(--text); }
        .nav-links a:hover::after { width: 100%; }

        .header-actions { display: flex; align-items: center; gap: 14px; }
        .lang-switch {
            background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: var(--text);
            padding: 7px 11px; border-radius: 9px; font-size: 12.5px; font-family: inherit; font-weight: 600;
            cursor: pointer; outline: none; transition: border-color var(--t), background var(--t);
        }
        .lang-switch:hover, .lang-switch:focus-visible { border-color: var(--violet); background: rgba(244,63,94,0.08); }
        .lang-switch option { background: var(--surface); color: var(--text); }

        .btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: inherit; font-weight: 700; text-decoration: none; cursor: pointer; border: none; transition: transform .2s var(--ease), box-shadow var(--t), background var(--t), border-color var(--t); white-space: nowrap; }
        .btn:focus-visible { outline: 2px solid var(--violet); outline-offset: 3px; }
        .btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 30px rgba(244,63,94,0.35); }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(244,63,94,0.5); }
        .btn-ghost { background: rgba(255,255,255,0.03); color: var(--text); border: 1px solid var(--line-strong); }
        .btn-ghost:hover { border-color: var(--violet); background: rgba(244,63,94,0.07); }
        .btn-sm { padding: 10px 20px; border-radius: 10px; font-size: 14px; }
        .btn-md { padding: 14px 28px; border-radius: 12px; font-size: 15px; }
        .btn-lg { padding: 17px 38px; border-radius: 14px; font-size: 16.5px; }
        .btn-block { width: 100%; padding: 15px; border-radius: 12px; font-size: 15px; }

        .nav-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); cursor: pointer; padding: 0; align-items: center; justify-content: center; }
        .nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; position: relative; transition: var(--t); }
        .nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--t); }
        .nav-toggle span::before { top: -6px; }
        .nav-toggle span::after { top: 6px; }
        body.menu-open .nav-toggle span { background: transparent; }
        body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
        body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

        /* Mobile menu overlay */
        .mobile-menu {
            position: fixed; inset: 0; z-index: 99; background: rgba(10,7,8,0.97);
            
            display: flex; flex-direction: column; justify-content: center; gap: 6px; padding: 0 32px;
            opacity: 0; visibility: hidden; transition: opacity var(--t), visibility var(--t);
        }
        body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
        .mobile-menu a.m-link { color: var(--text); text-decoration: none; font-family: 'Fraunces', serif; font-size: 30px; font-weight: 600; padding: 12px 0; border-bottom: 1px solid var(--line); transition: color var(--t), padding-left var(--t); }
        .mobile-menu a.m-link:hover { color: var(--violet); padding-left: 8px; }
        .mobile-menu .m-foot { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }

        /* ============ SECTIONS ============ */
        section { padding: 96px 0; position: relative; scroll-margin-top: 88px; }
        .eyebrow {
            display: inline-flex; align-items: center; gap: 9px; color: var(--violet);
            font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.4px; margin-bottom: 18px;
        }
        .eyebrow::before { content: ''; width: 22px; height: 1.5px; background: var(--grad); border-radius: 2px; }
        .eyebrow.center { justify-content: center; }
        h1, h2, h3 { letter-spacing: -0.6px; }
        h2 { font-family: 'Fraunces', Georgia, serif; font-size: clamp(30px, 4.4vw, 46px); font-weight: 600; line-height: 1.12; margin-bottom: 18px; }
        .section-head { max-width: 640px; }
        .section-head.center { max-width: 660px; margin: 0 auto; text-align: center; }
        .section-sub { color: var(--text-muted); font-size: 17.5px; line-height: 1.65; }
        .grad-text { background: linear-gradient(100deg,#ff8fb5,#ff7ab8,#f43f5e,#ffb3c6,#ff8fb5); background-size: 250% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: gradFlow 6s linear infinite; }
        @keyframes gradFlow { to { background-position: 250% 0; } }
        .hero-copy { position: relative; }
        .hero-copy > * { position: relative; z-index: 1; }
        .hero-copy::before { content: ''; position: absolute; left: -16%; top: -12%; width: 92%; height: 92%; background: radial-gradient(closest-side, rgba(255,122,184,.44), rgba(255,61,154,.20) 48%, transparent 72%); filter: blur(40px); z-index: 0; pointer-events: none; animation: heroGlow 7s ease-in-out infinite; }
        @keyframes heroGlow { 0%,100% { transform: translate(0,0) scale(1); opacity: .8; } 50% { transform: translate(26px,-16px) scale(1.14); opacity: 1; } }
        .btn-primary.btn-lg { animation: ctaGlow 3s ease-in-out infinite; }
        .btn-primary.btn-lg:hover { animation: none; }
        @keyframes ctaGlow { 0%,100% { box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 12px 34px rgba(244,63,94,.42), 0 0 0 rgba(255,61,154,0); } 50% { box-shadow: inset 0 1px 0 rgba(255,255,255,.32), 0 14px 40px rgba(244,63,94,.58), 0 0 30px rgba(255,61,154,.55); } }

        /* ============ HERO ============ */
        .hero { padding: 70px 0 80px; }
        .hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 56px; align-items: center; }
        .hero-badge {
            display: inline-flex; align-items: center; gap: 9px; background: rgba(244,63,94,0.10);
            border: 1px solid rgba(244,63,94,0.26); color: var(--violet);
            padding: 8px 16px; border-radius: 50px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.2px; margin-bottom: 26px;
        }
        .hero-badge .dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 0 rgba(52,211,153,0.5); animation: pulse 2.2s ease-in-out infinite; }
        @keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(52,211,153,0.5);} 50% { box-shadow: 0 0 0 7px rgba(52,211,153,0);} }
        h1 { font-family: 'Fraunces', Georgia, serif; font-size: clamp(42px, 5.6vw, 68px); font-weight: 600; line-height: 1.05; margin-bottom: 22px; }
        .hero-sub { font-size: 19px; color: var(--text-muted); max-width: 520px; margin-bottom: 32px; line-height: 1.62; }
        .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
        .hero-trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; color: var(--text-dim); font-size: 13.5px; }
        .hero-trust .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
        .hero-platforms { display: flex; align-items: center; gap: 18px 22px; flex-wrap: wrap; margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--line); }
        .hero-platforms .plat-mark { display: inline-flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 13.5px; font-weight: 600; }
        .hero-platforms img { width: 26px; height: 26px; border-radius: 7px; object-fit: cover; filter: drop-shadow(0 2px 5px rgba(0,0,0,0.35)); }
        .av-stack { display: inline-flex; }
        .av-stack .av { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -9px; display: grid; place-items: center; font-size: 11px; font-weight: 700; color: #fff; }
        .av-stack .av:first-child { margin-left: 0; }

        /* Hero device / chat */
        .device { position: relative; margin: 0 auto; max-width: 380px; }
        .device-glow { position: absolute; inset: -30px; background: radial-gradient(ellipse at 60% 40%, rgba(244,63,94,0.35), transparent 70%); filter: blur(30px); z-index: 0; }
        .chat {
            position: relative; z-index: 1; background: linear-gradient(180deg, var(--surface-2), var(--surface));
            border: 1px solid var(--line-strong); border-radius: var(--radius-xl); overflow: hidden;
            box-shadow: var(--shadow-lg), var(--glow);
        }
        .chat-top { display: flex; align-items: center; gap: 11px; padding: 16px 18px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.02); }
        .chat-ava { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); flex-shrink: 0; position: relative; }
        .chat-ava::after { content: ''; position: absolute; right: -1px; bottom: -1px; width: 11px; height: 11px; border-radius: 50%; background: var(--green); border: 2px solid var(--surface); }
        .chat-top .nm { font-size: 13.5px; font-weight: 700; }
        .chat-top .st { font-size: 11.5px; color: var(--green); display: flex; align-items: center; gap: 5px; }
        .chat-top .badge-ai { margin-left: auto; font-size: 10px; font-weight: 700; letter-spacing: 0.5px; color: var(--violet); background: rgba(244,63,94,0.12); border: 1px solid rgba(244,63,94,0.25); padding: 4px 9px; border-radius: 20px; }
        .chat-body { padding: 18px; display: flex; flex-direction: column; gap: 11px; min-height: 280px; }
        .bubble { max-width: 82%; padding: 11px 15px; border-radius: 17px; font-size: 13.5px; line-height: 1.5; opacity: 0; transform: translateY(10px); }
        .bubble.show { animation: bubbleIn 0.45s var(--ease) forwards; }
        .bubble.fan { align-self: flex-end; background: rgba(244,63,94,0.16); border-bottom-right-radius: 5px; }
        .bubble.me { align-self: flex-start; background: var(--surface-3); border: 1px solid var(--line); border-bottom-left-radius: 5px; }
        .bubble.ppv { background: linear-gradient(135deg, rgba(244,63,94,0.22), rgba(255,61,154,0.18)); border: 1px solid rgba(255,61,154,0.32); }
        .bubble .lock { display: inline-flex; align-items: center; gap: 7px; margin-top: 9px; background: var(--pink); color: #fff; padding: 6px 11px; border-radius: 8px; font-size: 11.5px; font-weight: 700; }
        @keyframes bubbleIn { to { opacity: 1; transform: translateY(0); } }
        .typing { align-self: flex-start; display: inline-flex; gap: 4px; padding: 12px 15px; background: var(--surface-3); border: 1px solid var(--line); border-radius: 17px; border-bottom-left-radius: 5px; opacity: 0; }
        .typing.show { opacity: 1; }
        .typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--violet); animation: blink 1.2s infinite; }
        .typing i:nth-child(2){ animation-delay: .2s; } .typing i:nth-child(3){ animation-delay: .4s; }
        @keyframes blink { 0%,60%,100%{ opacity:.3; transform: translateY(0);} 30%{ opacity:1; transform: translateY(-3px);} }
        .chat-foot { padding: 12px 16px 16px; display: flex; gap: 10px; align-items: center; }
        .chat-foot .inp { flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 22px; padding: 11px 16px; font-size: 12.5px; color: var(--text-dim); }
        .chat-foot .send { width: 38px; height: 38px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; flex-shrink: 0; }
        .float-tag { position: absolute; z-index: 2; background: rgba(16,11,12,0.9); border: 1px solid var(--line-strong); border-radius: 13px; padding: 10px 13px; font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 9px; box-shadow: var(--shadow-sm); }
        .float-tag .ic { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
        .float-tag.t1 { top: 8%; left: -42px; animation: bob 5s ease-in-out infinite; }
        .float-tag.t2 { bottom: 12%; right: -38px; animation: bob 6s ease-in-out infinite 0.6s; }
        @keyframes bob { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-9px);} }

        /* ============ MARQUEE / PLATFORMS ============ */
        .strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.012); padding: 26px 0; }
        .strip-inner { display: flex; align-items: center; justify-content: center; gap: 18px 40px; flex-wrap: wrap; }
        .strip-label { font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1.6px; font-weight: 600; }
        .plat { display: inline-flex; align-items: center; gap: 9px; color: var(--text-muted); font-size: 14px; font-weight: 600; opacity: 0.85; transition: opacity var(--t), color var(--t); }
        .plat:hover { opacity: 1; color: var(--text); }
        .plat svg { width: 24px; height: 24px; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }

        /* ============ STATS ============ */
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
        .stat { background: linear-gradient(180deg, var(--surface), var(--bg-soft)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 24px; text-align: center; transition: border-color var(--t), transform var(--t); }
        .stat:hover { border-color: var(--line-strong); transform: translateY(-3px); }
        .stat .val { font-size: clamp(30px, 3.6vw, 42px); font-weight: 800; line-height: 1; }
        .stat .lab { font-size: 12.5px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1.3px; font-weight: 600; margin-top: 10px; }

        /* ============ CARDS / FEATURES ============ */
        .grid { display: grid; gap: 20px; }
        .cols-3 { grid-template-columns: repeat(3, 1fr); }
        .cols-4 { grid-template-columns: repeat(4, 1fr); }
        .card { background: linear-gradient(180deg, var(--surface), var(--bg-soft)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; position: relative; overflow: hidden; transition: border-color var(--t), transform var(--t), box-shadow var(--t); }
        .card::before { content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 1px; background: var(--grad); opacity: 0; transition: opacity var(--t); }
        .card:hover { border-color: var(--line-strong); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
        .card:hover::before { opacity: 0.8; }
        .ic-box { position: relative; width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; overflow: hidden;
            background: linear-gradient(150deg, rgba(255,61,154,.22), rgba(255,61,154,.12) 58%, rgba(244,63,94,.05));
            box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 6px 18px rgba(225,29,72,.20);
            transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
        .ic-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(65% 60% at 28% 18%, rgba(255,255,255,.22), transparent 70%); pointer-events: none; }
        .ic-box::after { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(150deg, rgba(255,179,198,.85), rgba(255,61,154,.45) 55%, rgba(255,255,255,0)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
        .ic-box svg { position: relative; z-index: 1; width: 27px; height: 27px; filter: drop-shadow(0 1px 2px rgba(0,0,0,.4)); }
        .card:hover .ic-box { transform: translateY(-2px) scale(1.03); box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 12px 28px rgba(244,63,94,.34); }
        .nav-links .nav-fanvue { display: inline-flex; align-items: center; gap: 7px; color: var(--violet); font-weight: 600; }
        .nav-new { color: #fff; background: linear-gradient(135deg, #f43f5e, #ff3d9a); font-size: 9px; font-weight: 800; letter-spacing: .6px; padding: 2px 6px; border-radius: 6px; line-height: 1.05; box-shadow: 0 2px 8px rgba(244,63,94,.4); }
        .nav-dd { position: relative; padding-bottom: 14px; margin-bottom: -14px; }
        .nav-dd .nav-fanvue { cursor: pointer; }
        .nav-chev { width: 10px; height: 10px; transition: transform .2s; }
        .nav-dd:hover .nav-chev { transform: rotate(180deg); }
        .nav-dd-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: linear-gradient(180deg, rgba(22,14,16,.98), rgba(13,9,10,.98)); border: 1px solid rgba(255,61,154,.25); border-radius: 14px; padding: 8px; min-width: 200px; display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; box-shadow: 0 20px 50px rgba(0,0,0,.5); z-index: 40; }
        .nav-dd:hover .nav-dd-menu { opacity: 1; visibility: visible; }
        .nav-dd-menu a { padding: 9px 12px; border-radius: 9px; font-size: 14px; color: var(--text-muted); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
        .nav-dd-menu a:hover { background: rgba(255,255,255,.06); color: var(--text); }
        .lang-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 42px; }
        .lang-ex { display: flex; align-items: center; gap: 14px; background: linear-gradient(180deg, rgba(19,13,14,.7), rgba(13,9,10,.7)); border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px; transition: transform .35s var(--ease), border-color .35s; }
        .lang-ex:hover { transform: translateY(-3px); border-color: rgba(255,61,154,.4); }
        .lang-fl { font-size: 30px; line-height: 1; }
        .lang-name { font-size: 13px; color: var(--violet); font-weight: 700; margin-bottom: 3px; }
        .lang-msg { font-size: 15px; color: var(--text); }
        @media (max-width: 820px) { .lang-band { grid-template-columns: 1fr; } }
        .topbar { position: relative; z-index: 12; display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center; background: linear-gradient(90deg, rgba(244,63,94,.20), rgba(255,61,154,.20)); border-bottom: 1px solid rgba(255,61,154,.28); color: var(--text); font-size: 13.5px; font-weight: 600; padding: 9px 16px; text-decoration: none; transition: background .25s; }
        .topbar:hover { background: linear-gradient(90deg, rgba(244,63,94,.3), rgba(255,61,154,.3)); }
        .topbar strong { color: #fff; }
        .topbar-new { background: linear-gradient(135deg,#f43f5e,#ff3d9a); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .6px; padding: 2px 6px; border-radius: 5px; }
        .topbar-arrow { transition: transform .25s; }
        .topbar:hover .topbar-arrow { transform: translateX(4px); }
        @media (max-width: 560px) { .topbar { font-size: 11.5px; gap: 7px; padding: 8px 12px; } }
        .cookie-bar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60; max-width: 620px; margin: 0 auto; display: none; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: space-between; background: linear-gradient(180deg, rgba(22,14,16,.98), rgba(13,9,10,.98)); border: 1px solid rgba(255,61,154,.28); border-radius: 16px; padding: 14px 18px; box-shadow: 0 20px 60px rgba(0,0,0,.5); font-size: 13px; color: var(--text-dim); }
        .cookie-bar.show { display: flex; }
        @media (max-width: 640px) { .cookie-bar { left: 10px; right: 10px; bottom: 80px; max-width: none; padding: 13px 16px; } }
        .cookie-bar a { color: var(--violet); }
        .cookie-btns { display: flex; gap: 10px; flex: none; }
        .btn-cookie { border-radius: 10px; padding: 9px 16px; font-weight: 700; font-size: 13px; cursor: pointer; border: 1px solid rgba(255,61,154,.28); }
        .btn-cookie.ghost { background: transparent; color: var(--text); }
        .btn-cookie.ok { background: linear-gradient(180deg,#ff8fb5,#f43f5e 46%,#e11d48); color: #fff; border: none; }
        .card h3 { font-size: 18px; font-weight: 700; margin-bottom: 9px; letter-spacing: -0.3px; }
        .card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }

        /* Steps */
        .step-num { font-family: 'Fraunces', serif; font-size: 15px; font-weight: 600; color: var(--violet); display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; }
        .step-num .n { width: 38px; height: 38px; border-radius: 11px; background: rgba(244,63,94,0.10); border: 1px solid var(--line); display: grid; place-items: center; font-size: 16px; }

        /* ============ ROI ============ */
        .roi-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
        .roi-card { background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--line-strong); border-radius: var(--radius-xl); padding: 34px; box-shadow: var(--shadow-lg); }
        .roi-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
        .roi-card .sub { color: var(--text-dim); font-size: 13.5px; margin-bottom: 26px; }
        .slider-row { margin-bottom: 22px; }
        .slider-row label { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; margin-bottom: 10px; }
        .slider-row label b { color: var(--violet); font-weight: 700; }
        input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 4px; background: rgba(244,63,94,0.18); outline: none; }
        input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--grad); cursor: pointer; box-shadow: 0 0 0 4px rgba(244,63,94,0.18), 0 4px 12px rgba(0,0,0,0.4); transition: transform .15s; }
        input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.12); }
        input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border: none; border-radius: 50%; background: #ff3d9a; cursor: pointer; }
        input[type=range]:focus-visible { outline: 2px solid var(--violet); outline-offset: 4px; }
        .roi-out { background: linear-gradient(135deg, rgba(244,63,94,0.10), rgba(255,61,154,0.07)); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; text-align: center; }
        .roi-out .lost { font-size: clamp(40px, 6vw, 54px); font-weight: 800; line-height: 1; }
        .roi-out .lost-lab { font-size: 13.5px; color: var(--text-muted); margin-top: 8px; }
        .roi-out .recover { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--green); font-weight: 700; font-size: 15px; }

        /* ============ COMPARISON ============ */
        .table-scroll { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line); }
        .table-scroll { position: relative; }
        table.cmp { width: 100%; border-collapse: collapse; min-width: 760px; }
        table.cmp th, table.cmp td { padding: 16px 20px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--line); }
        table.cmp thead th { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); font-weight: 700; background: rgba(255,255,255,0.02); }
        table.cmp tbody td:first-child { color: var(--text-muted); font-weight: 500; }
        table.cmp .own { background: rgba(244,63,94,0.07); }
        table.cmp thead .own { background: rgba(244,63,94,0.12); color: var(--violet); }
        table.cmp tr:last-child td { border-bottom: none; }
        .yes { color: var(--green); font-weight: 700; }
        .no { color: var(--text-dim); }
        .mid { color: var(--gold); }
        .ck { display: inline-flex; align-items: center; gap: 7px; }

        /* ============ TESTIMONIALS ============ */
        .quote { background: linear-gradient(180deg, var(--surface), var(--bg-soft)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; transition: border-color var(--t), transform var(--t); }
        .quote:hover { border-color: var(--line-strong); transform: translateY(-3px); }
        .quote .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; font-size: 15px; }
        .quote p { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 20px; }
        .who { display: flex; align-items: center; gap: 12px; }
        .who .pic { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 15px; color: #fff; flex-shrink: 0; }
        .who .nm { font-size: 14.5px; font-weight: 700; }
        .who .rl { font-size: 12.5px; color: var(--text-dim); }
        .quote .result { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--green); font-size: 13.5px; font-weight: 600; display: flex; align-items: center; gap: 8px; }

        /* ============ TIERS / PRICING ============ */
        .toggle-wrap { display: flex; align-items: center; justify-content: center; gap: 14px; margin-bottom: 44px; }
        .toggle-wrap span { font-size: 14.5px; color: var(--text-dim); font-weight: 600; transition: color var(--t); }
        .toggle-wrap span.on { color: var(--text); }
        .switch { width: 54px; height: 30px; border-radius: 16px; background: rgba(244,63,94,0.2); border: 1px solid var(--line); cursor: pointer; position: relative; transition: background var(--t); }
        .switch.on { background: var(--violet-2); }
        .switch::after { content: ''; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: #fff; transition: transform var(--t); }
        .switch.on::after { transform: translateX(24px); }
        .save-pill { background: rgba(52,211,153,0.14); color: var(--green); padding: 4px 11px; border-radius: 8px; font-size: 12px; font-weight: 700; }

        .price-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; align-items: stretch; }
        .price { background: linear-gradient(180deg, var(--surface), var(--bg-soft)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 22px; display: flex; flex-direction: column; position: relative; transition: border-color var(--t), transform var(--t), box-shadow var(--t); }
        .price:hover:not(.feat) { border-color: var(--line-strong); transform: translateY(-4px); }
        .price.feat { border-color: var(--violet); box-shadow: 0 0 0 1px var(--violet), 0 24px 70px rgba(244,63,94,0.22); background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
        .price-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 11.5px; font-weight: 700; letter-spacing: 0.4px; padding: 6px 18px; border-radius: 20px; white-space: nowrap; box-shadow: 0 6px 18px rgba(244,63,94,0.4); }
        .price h3 { font-size: 19px; margin-bottom: 5px; }
        .price .pd { font-size: 13px; color: var(--text-dim); margin-bottom: 22px; }
        .amount { display: flex; align-items: flex-start; gap: 2px; margin-bottom: 4px; }
        .amount .cur { font-size: 20px; font-weight: 700; line-height: 1; margin-top: 4px; }
        .amount .num { font-size: 42px; font-weight: 800; line-height: 0.9; letter-spacing: -1.5px; }
        .amount .per { font-size: 15px; color: var(--text-dim); font-weight: 500; align-self: flex-end; margin-bottom: 5px; }
        .price .annual-note { font-size: 12.5px; color: var(--green); font-weight: 600; min-height: 18px; margin-bottom: 22px; }
        .price ul { list-style: none; margin-bottom: 26px; flex: 1; }
        .price li { display: flex; gap: 11px; align-items: flex-start; padding: 8px 0; font-size: 13.8px; color: var(--text-muted); }
        .price li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; }
        .guarantee { text-align: center; margin-top: 28px; color: var(--text-dim); font-size: 13.5px; display: flex; align-items: center; justify-content: center; gap: 9px; flex-wrap: wrap; }
        .guarantee b { color: var(--text-muted); }

        /* ============ FAQ ============ */
        .faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
        .faq { background: linear-gradient(180deg, var(--surface), var(--bg-soft)); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color var(--t); }
        .faq:hover { border-color: var(--line-strong); }
        .faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--text); padding: 20px 24px; font-size: 15.5px; font-weight: 600; font-family: inherit; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
        .faq-q .pm { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
        .faq-q .pm::before, .faq-q .pm::after { content: ''; position: absolute; background: var(--violet); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
        .faq-q .pm::before { top: 10px; left: 3px; width: 16px; height: 2px; }
        .faq-q .pm::after { top: 3px; left: 10px; width: 2px; height: 16px; }
        .faq.open .pm::after { transform: rotate(90deg); opacity: 0; }
        .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
        .faq.open .faq-a { max-height: 340px; }
        .faq-a p { padding: 0 24px 22px; color: var(--text-muted); font-size: 14.5px; line-height: 1.7; }
        .faq-a p strong { color: var(--text); }

        /* ============ FINAL CTA ============ */
        .final { position: relative; text-align: center; border-radius: var(--radius-xl); padding: 70px 32px; overflow: hidden; border: 1px solid var(--line-strong); background: radial-gradient(ellipse at 50% 0%, rgba(244,63,94,0.18), transparent 60%), linear-gradient(180deg, var(--surface-2), var(--bg-soft)); }
        .final h2 { margin-bottom: 14px; }
        .final p { color: var(--text-muted); font-size: 17px; max-width: 540px; margin: 0 auto 30px; }
        .final-form { display: flex; gap: 12px; max-width: 460px; margin: 0 auto 16px; flex-wrap: wrap; }
        .final-form input { flex: 1; min-width: 220px; background: rgba(255,255,255,0.05); border: 1px solid var(--line-strong); border-radius: 12px; padding: 15px 18px; color: var(--text); font-size: 15px; font-family: inherit; outline: none; transition: border-color var(--t); }
        .final-form input:focus-visible { border-color: var(--violet); }
        .final .fine { color: var(--text-dim); font-size: 13px; }

        /* ============ FOOTER ============ */
        footer { border-top: 1px solid var(--line); padding: 56px 0 40px; }
        .foot-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; margin-bottom: 36px; }
        .foot-brand { max-width: 300px; }
        .foot-brand p { color: var(--text-dim); font-size: 13.5px; margin-top: 12px; line-height: 1.6; }
        .foot-cols { display: flex; gap: 56px; flex-wrap: wrap; }
        .foot-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.4px; color: var(--text-dim); margin-bottom: 14px; }
        .foot-col a { display: block; color: var(--text-muted); text-decoration: none; font-size: 14px; padding: 5px 0; transition: color var(--t); }
        .foot-col a:hover { color: var(--text); }
        .foot-bottom { border-top: 1px solid var(--line); padding-top: 26px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--text-dim); font-size: 13px; }

        /* ============ STICKY MOBILE CTA ============ */
        .mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(12,8,9,0.92);  border-top: 1px solid var(--line-strong); transform: translateY(120%); transition: transform var(--t); }
        .mobile-cta.show { transform: translateY(0); }
        .mobile-cta .mc-price { font-size: 13px; color: var(--text-dim); }
        .mobile-cta .mc-price b { display: block; color: var(--text); font-size: 15px; font-weight: 700; }

        /* ============ REVEAL ============ */
        .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
        .reveal.in { opacity: 1; transform: none; }
        .stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
        .stagger.in > * { opacity: 1; transform: none; }
        .stagger.in > *:nth-child(1){ transition-delay: .03s;} .stagger.in > *:nth-child(2){ transition-delay: .09s;}
        .stagger.in > *:nth-child(3){ transition-delay: .15s;} .stagger.in > *:nth-child(4){ transition-delay: .21s;}
        .stagger.in > *:nth-child(5){ transition-delay: .27s;} .stagger.in > *:nth-child(6){ transition-delay: .33s;}
        .stagger.in > *:nth-child(7){ transition-delay: .39s;} .stagger.in > *:nth-child(8){ transition-delay: .45s;}
        .stagger.in > *:nth-child(9){ transition-delay: .51s;}

        /* ============ COMMISSION / SAVINGS / EDGE ============ */
        .commission-banner { display: flex; align-items: center; justify-content: center; gap: 9px; text-align: center; max-width: 720px; margin: 0 auto 38px; padding: 13px 24px; border-radius: 50px; font-size: 14.5px; font-weight: 600; color: var(--text); background: linear-gradient(135deg, rgba(244,63,94,0.12), rgba(52,211,153,0.08)); border: 1px solid var(--line-strong); }
        .commission-banner b { color: var(--green); font-weight: 800; }
        .commission-banner svg { flex-shrink: 0; }
        .card.edge::before { opacity: 0.9; }
        .card.edge .ic-box { background: linear-gradient(135deg, rgba(244,63,94,0.18), rgba(52,211,153,0.10)); }
        .save-calc { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 34px; align-items: center; }
        .vs-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
        .vs-card { background: rgba(255,255,255,0.02); border: 1px solid var(--line); border-radius: 16px; padding: 22px 16px; text-align: center; transition: border-color var(--t), transform var(--t); }
        .vs-card.win { border-color: var(--violet); box-shadow: 0 0 0 1px var(--violet), 0 16px 50px rgba(244,63,94,0.18); background: linear-gradient(180deg, var(--surface-2), var(--surface)); }
        .vs-logo { font-size: 14.5px; font-weight: 700; margin-bottom: 3px; }
        .vs-model { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 14px; }
        .vs-cost { font-size: 30px; font-weight: 800; line-height: 1; letter-spacing: -1px; }
        .vs-per { font-size: 13px; color: var(--text-dim); font-weight: 500; }
        .vs-comm { margin-top: 13px; font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 7px; display: inline-block; }
        .vs-comm.good { background: rgba(52,211,153,0.14); color: var(--green); }
        .vs-comm.bad { background: rgba(255,61,154,0.13); color: var(--pink); }
        .vs-note { margin-top: 11px; font-size: 12px; color: var(--text-dim); }
        .vs-card.win .vs-note { color: var(--green); font-weight: 700; }
        .vs-foot { font-size: 11.5px; color: var(--text-dim); margin-top: 18px; text-align: center; line-height: 1.55; }
        .cvs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
        .cvs { background: linear-gradient(180deg, var(--surface), var(--bg-soft)); border: 1px solid var(--line); border-radius: 18px; padding: 26px 24px; transition: border-color var(--t), transform var(--t); }
        .cvs:hover { border-color: var(--line-strong); transform: translateY(-4px); }
        .cvs-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
        .cvs-name { font-size: 16.5px; font-weight: 700; }
        .cvs-model { font-size: 11.5px; color: var(--pink); font-weight: 700; background: rgba(255,61,154,0.10); padding: 4px 10px; border-radius: 7px; white-space: nowrap; }
        .cvs-desc { font-size: 13px; color: var(--text-dim); line-height: 1.55; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
        .cvs-why { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--violet); font-weight: 700; margin-bottom: 8px; }
        .cvs-pt { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--text-muted); line-height: 1.5; padding: 6px 0; }
        .cvs-pt svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
        .cvs-pt b { color: var(--text); font-weight: 600; }

        /* ============ LANGUAGE DROPDOWN ============ */
        .lang { position: relative; }
        .lang-btn { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: var(--text); padding: 8px 12px; border-radius: 10px; font: 600 13px/1 'Inter', sans-serif; cursor: pointer; transition: border-color var(--t), background var(--t); }
        .lang-btn:hover, .lang-btn:focus-visible { border-color: var(--violet); background: rgba(244,63,94,0.08); outline: none; }
        .lang-btn .chev { transition: transform var(--t); opacity: 0.7; }
        .lang.open .lang-btn .chev { transform: rotate(180deg); }
        .lang-menu { position: absolute; top: calc(100% + 9px); right: 0; min-width: 184px; background: rgba(14,10,11,0.97); border: 1px solid var(--line-strong); border-radius: 14px; padding: 6px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity var(--t), transform var(--t), visibility var(--t); z-index: 120; }
        .lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
        .lang-menu button { display: flex; align-items: center; gap: 11px; width: 100%; background: none; border: none; color: var(--text-muted); font: 500 14px/1 'Inter', sans-serif; padding: 11px 12px; border-radius: 9px; cursor: pointer; text-align: left; transition: background var(--t), color var(--t); }
        .lang-menu button:hover { background: rgba(244,63,94,0.10); color: var(--text); }
        .lang-menu button .fl { font-size: 17px; line-height: 1; }
        .lang-menu button.active { color: var(--violet); }
        .lang-menu button.active::after { content: '✓'; margin-left: auto; font-weight: 700; }

        /* ============ PRODUCT / DASHBOARD PREVIEW ============ */
        .dash { background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--line-strong); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg), var(--glow); }
        .dash-bar { display: flex; align-items: center; gap: 7px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.02); }
        .dash-bar .tl { width: 11px; height: 11px; border-radius: 50%; }
        .dash-bar .url { margin-left: 14px; font-size: 12px; color: var(--text-dim); background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 8px; padding: 5px 14px; display: inline-flex; align-items: center; gap: 7px; }
        .dash-body { padding: 22px; display: grid; gap: 16px; }
        .dash-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
        .kpi { background: rgba(255,255,255,0.025); border: 1px solid var(--line); border-radius: 14px; padding: 16px 16px 14px; }
        .kpi .k-lab { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
        .kpi .k-val { font-size: 26px; font-weight: 800; margin-top: 7px; letter-spacing: -0.5px; }
        .kpi .k-up { font-size: 12px; color: var(--green); margin-top: 5px; display: inline-flex; align-items: center; gap: 5px; }
        .dash-main { display: grid; grid-template-columns: 1.5fr 1fr; gap: 16px; }
        .panel { background: rgba(255,255,255,0.02); border: 1px solid var(--line); border-radius: 16px; padding: 18px; }
        .panel-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
        .panel-h h4 { font-size: 13.5px; font-weight: 700; }
        .panel-h .live { font-size: 11px; color: var(--green); display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
        .panel-h .live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2.2s infinite; }
        .frow { display: flex; align-items: center; gap: 11px; padding: 11px 0; border-bottom: 1px solid rgba(244,63,94,0.06); }
        .frow:last-child { border-bottom: none; }
        .frow .fav { width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-size: 12px; font-weight: 700; color: #fff; }
        .frow .fnm { font-size: 13.5px; font-weight: 600; }
        .frow .fmeta { font-size: 11.5px; color: var(--text-dim); }
        .tag { font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 9px; border-radius: 6px; margin-left: auto; white-space: nowrap; }
        .tag.whale { background: rgba(52,211,153,0.14); color: var(--green); }
        .tag.buyer { background: rgba(244,63,94,0.16); color: var(--violet); }
        .tag.prospect { background: rgba(245,181,66,0.15); color: var(--gold); }
        .frow .spend { font-size: 13px; font-weight: 700; min-width: 56px; text-align: right; }
        .feed { display: flex; flex-direction: column; gap: 13px; }
        .feed-item { display: flex; gap: 11px; font-size: 12.5px; color: var(--text-muted); line-height: 1.45; }
        .feed-item .fi-ic { width: 26px; height: 26px; border-radius: 8px; flex-shrink: 0; display: grid; place-items: center; background: rgba(244,63,94,0.10); border: 1px solid var(--line); }
        .feed-item b { color: var(--text); font-weight: 600; }
        .feed-item .ft { display: block; font-size: 11px; color: var(--text-dim); margin-top: 2px; }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1000px) {
            .hero-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
            .hero-sub { margin-left: auto; margin-right: auto; }
            .hero-cta, .hero-trust { justify-content: center; }
            .roi-wrap { grid-template-columns: 1fr; gap: 28px; }
            .cols-4 { grid-template-columns: repeat(2, 1fr); }
            .dash-main { grid-template-columns: 1fr; }
            .save-calc { grid-template-columns: 1fr; gap: 26px; }
            .price-grid { grid-template-columns: repeat(2, 1fr); max-width: 680px; margin: 0 auto; }
        }
        @media (max-width: 900px) {
            .nav-desktop { display: none; }
            .nav-toggle { display: flex; }
            .header-actions .btn { display: none; }
            .cols-3 { grid-template-columns: repeat(2, 1fr); }
            .price.feat { transform: none; }
        }
        @media (max-width: 768px) {
            section { padding: 70px 0; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .foot-grid { flex-direction: column; gap: 28px; }
            .mobile-cta { display: flex; }
            body { padding-bottom: 76px; }
            .float-tag { display: none; }
            .dash-kpis { grid-template-columns: repeat(2, 1fr); }
            .dash-body { padding: 15px; gap: 13px; }
            .vs-cards { grid-template-columns: 1fr; }
            .cvs-grid { grid-template-columns: 1fr; }
            .commission-banner { font-size: 13px; border-radius: 16px; align-items: flex-start; text-align: left; }
            table.cmp th, table.cmp td { padding: 11px 13px; font-size: 12.5px; }
            .table-scroll::after { content: ''; position: absolute; top: 1px; right: 1px; bottom: 1px; width: 36px; border-radius: 0 var(--radius-lg) var(--radius-lg) 0; background: linear-gradient(90deg, rgba(10,7,8,0), rgba(10,7,8,0.92)); pointer-events: none; }
        }
        @media (max-width: 560px) {
            .container { padding: 0 18px; }
            .header-inner { padding: 0 18px; }
            .cols-3, .cols-4 { grid-template-columns: 1fr; }
            .price-grid { grid-template-columns: 1fr; max-width: 360px; }
            .hero-cta .btn { width: 100%; }
            .roi-card { padding: 26px 20px; }
            h1 { font-size: 40px; }
        }

        /* Comparison tables -> stacked cards on phones, with OnlyDM shown FIRST (never scrolled past) */
        @media (max-width: 640px) {
            .table-scroll { overflow-x: visible; border: none; border-radius: 0; }
            .table-scroll::after { display: none; }
            table.cmp { min-width: 0; width: 100%; }
            table.cmp thead { display: none; }
            table.cmp tbody { display: block; }
            table.cmp tr { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: rgba(255,255,255,0.02); }
            table.cmp td { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 11px 15px; border: none; border-top: 1px solid rgba(244,63,94,0.07); font-size: 13.5px; min-width: 0; }
            table.cmp td:first-child { order: -2; font-weight: 700; font-size: 14.5px; color: var(--text); background: rgba(255,255,255,0.025); border-top: none; }
            table.cmp td.own { order: -1; background: rgba(244,63,94,0.12); border-top: none; }
            table.cmp td::before { content: attr(data-label); color: var(--text-dim); font-weight: 600; font-size: 12px; flex-shrink: 0; }
            table.cmp td:first-child::before { content: none; }
            table.cmp td.own::before { content: "✦ " attr(data-label); color: var(--violet); }
        }

        /* ===================== PREMIUM POLISH: elevation · glass · 3D light ===================== */
        .bg-key { position: fixed; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(ellipse 70% 50% at 50% -8%, rgba(244,63,94,.16), transparent 60%); }
        .bg-vignette { position: fixed; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(ellipse 120% 85% at 50% 38%, transparent 55%, rgba(0,0,0,.40)); }
        /* orbs retired — replaced by the Silk Aurora shader (#hero-gl) + .bg-leak */
        #hero-gl { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0; transition: opacity 1.2s ease;
            -webkit-mask-image: radial-gradient(ellipse 92% 82% at 50% 28%, #000 32%, transparent 78%);
            mask-image: radial-gradient(ellipse 92% 82% at 50% 28%, #000 32%, transparent 78%); }
        #hero-gl.on { opacity: 0.92; }
        @media (min-width: 768px) {
            .device { animation: floaty 7s ease-in-out infinite; }
        }
        @keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
        #phone-3d { display: none; width: 100%; height: 600px; }
        .hero-visual.phone-on .device { display: none; }
        .hero-visual.phone-on #phone-3d { display: block; }
        .hero-visual.phone-on { animation: none; }
        .laptop-stage { position: relative; }
        #laptop-3d { display: none; width: 100%; height: 600px; }
        .laptop-stage.laptop-on .dash { display: none; }
        .laptop-stage.laptop-on #laptop-3d { display: block; }
        .site-header.scrolled { background: linear-gradient(180deg, rgba(22,14,16,.72), rgba(12,8,9,.62)); backdrop-filter: blur(24px) saturate(160%) brightness(1.06); -webkit-backdrop-filter: blur(24px) saturate(160%) brightness(1.06); border-bottom: 1px solid rgba(244,63,94,.18); box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 8px 40px rgba(0,0,0,.45); }
        .float-tag { box-shadow: var(--e3), inset 0 1px 0 rgba(255,255,255,.08); }
        .card, .stat, .quote, .cvs, .price { box-shadow: var(--e1); }
        .roi-card, .dash { box-shadow: var(--e3); }
        .hero-visual { perspective: 1200px; }
        .chat { border: 1px solid transparent; background: linear-gradient(180deg, var(--surface-2), var(--surface)) padding-box, linear-gradient(160deg, rgba(255,61,154,.55), rgba(255,61,154,.25) 42%, rgba(255,255,255,.05) 75%) border-box; box-shadow: var(--e4); transition: transform .3s var(--ease); }
        .chat::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,0) 30%); mix-blend-mode: screen; z-index: 3; }
        .device::after { content: ''; position: absolute; left: 8%; right: 8%; bottom: -26px; height: 42px; background: radial-gradient(ellipse at center, rgba(225,29,72,.26), transparent 70%); filter: blur(20px); z-index: -1; pointer-events: none; }
        .card, .quote, .cvs { position: relative; }
        .card::after, .quote::after, .cvs::after { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(160deg, rgba(255,61,154,.6), rgba(255,61,154,.2) 55%, transparent); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .35s var(--ease); pointer-events: none; }
        .card:hover::after, .quote:hover::after, .cvs:hover::after { opacity: 1; }
        .btn-primary { background: linear-gradient(180deg, #ff8fb5, #f43f5e 46%, #e11d48); box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 8px 24px rgba(244,63,94,.4), 0 1px 2px rgba(0,0,0,.4); position: relative; overflow: hidden; }
        .btn-primary::after { content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent); transform: skewX(-20deg); transition: left .6s var(--ease); pointer-events: none; }
        .btn-primary:hover::after { left: 130%; }
        .btn:active { transform: translateY(0) scale(.985); }
        .price.feat { box-shadow: var(--e4), 0 0 0 1px var(--violet), 0 0 50px -8px rgba(244,63,94,.4); }
        .price.feat::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: radial-gradient(120% 80% at 50% -10%, rgba(255,61,154,.14), transparent 55%); }
        .price-tag { background: linear-gradient(110deg, #ff3d9a, #ff3d9a, #f43f5e, #ff3d9a); background-size: 220% 100%; animation: tagShimmer 5s linear infinite; }
        @keyframes tagShimmer { to { background-position: 220% 0; } }
        table.cmp .own { box-shadow: inset 1px 0 0 rgba(255,61,154,.25), inset -1px 0 0 rgba(255,61,154,.25); }
                        h1, h2 { font-variation-settings: 'opsz' 144, 'wght' 600; }
        .stat .val, .amount .num, .vs-cost, .lost, .price-num { font-variant-numeric: tabular-nums; }

        /* ===================== TASTEFUL POLISH: rhythm · type · bands · micro-interactions ===================== */

        /* 1 — Unified vertical rhythm (single scale drives every section) */
        section { padding: var(--section-y) 0; }
        .hero { padding: 64px 0 var(--section-y); }

        /* 2 — Typography: consistent measure + graceful wrapping */
        h1, h2, h3 { text-wrap: balance; }
        .hero-sub, .section-sub, .card p, .quote p, .faq-a p, .price li, .final p, .cvs-desc { text-wrap: pretty; }
        .section-head:not(.center) .section-sub { max-width: var(--measure); }
        .section-head.center .section-sub { max-width: var(--measure); margin-left: auto; margin-right: auto; }

        /* 3 — Section separation: a soft, edge-fading hairline reads each section as its own band */
        section:not(.hero)::before {
            content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
            width: min(720px, 78%); height: 1px; pointer-events: none;
            background: linear-gradient(90deg, transparent, rgba(255,61,154,0.24), transparent);
        }
        .strip + section::before { content: none; }   /* no divider right under the platform strip */

        /* 4 — Micro-interactions: snappier GPU-friendly hover/press, consistent across cards */
        .card, .stat, .quote, .cvs, .vs-card, .lang-ex, .price:not(.feat) {
            transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
        }
        .btn-ghost { transition: transform .18s var(--ease), box-shadow var(--t), background var(--t), border-color var(--t); }
        .btn-ghost:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
        .plat:hover { transform: translateY(-2px); }
        .plat { transition: opacity var(--t), color var(--t), transform .2s var(--ease); }

        /* 5 — Primary CTA hierarchy: the filled gradient action stays unmistakable; ghosts sit back */
        .btn-primary { letter-spacing: 0.2px; }
        .btn-primary.btn-lg { box-shadow: inset 0 1px 0 rgba(255,255,255,.28), 0 12px 34px rgba(244,63,94,.46), 0 1px 2px rgba(0,0,0,.45); }
        .btn-ghost { color: var(--text-muted); background: rgba(255,255,255,0.025); }
        .btn-ghost:hover { color: var(--text); }

        /* 6 — Mobile scale + tap targets (kept after base so it wins on small screens) */
        @media (max-width: 768px) {
            section { padding: var(--section-y-sm) 0; }
            .hero { padding: 48px 0 var(--section-y-sm); }
            .mobile-cta .btn { min-height: 44px; padding-top: 11px; padding-bottom: 11px; }
        }
        @media (max-width: 430px) {
            :root { --section-y-sm: 60px; --gap-head: 34px; --gap-block: 60px; }
            .container { padding: 0 16px; }
            h1 { font-size: 34px; line-height: 1.08; }
            h2 { font-size: clamp(25px, 8vw, 30px); }
            .hero-sub { font-size: 16.5px; }
            .section-sub { font-size: 16px; }
            /* Comfortable tap targets (>=44px) */
            .btn-sm { padding: 12px 20px; min-height: 46px; }
            .btn-md, .btn-lg, .btn-block { min-height: 48px; }
            .nav-toggle { width: 44px; height: 44px; }
            .lang-menu button { padding: 13px 12px; }
            .faq-q { padding: 18px 18px; }
            /* Clean stacked final form, no cramped inline min-widths */
            .final { padding: 48px 20px; }
            .final-form { flex-direction: column; }
            .final-form input, .final-form .btn { width: 100%; min-width: 0; }
            /* Guard against any horizontal overflow on the narrowest phones */
            .price-grid { max-width: 100%; }
            .section-head .section-sub { max-width: 100%; }
        }

        /* ============ BOLD VISUALS — lit sections, glowing cards, gradient heads ============ */
        section { position: relative; }
        /* section background orbs retired — de-sloped */
        section > * { position: relative; z-index: 1; }
        .card, .stat, .quote, .price:not(.feat) { box-shadow: 0 12px 34px rgba(0,0,0,.28); }
        .card:hover, .stat:hover, .quote:hover, .price:not(.feat):hover { transform: translateY(-5px); border-color: var(--violet); box-shadow: 0 16px 40px rgba(0,0,0,.40); }
        .section-head h1, .section-head h2, .section-head h3 { background: linear-gradient(180deg, #ffffff 42%, #ffb3c6); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
        .hero-badge { background: linear-gradient(90deg, rgba(244,63,94,.16), rgba(255,61,154,.10)); border-color: rgba(255,61,154,.42); }
        
        @media (prefers-reduced-motion: reduce) {
            * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
            .reveal, .stagger > * { opacity: 1 !important; transform: none !important; }
            #hero-gl { display: none !important; }
        }
