        :root {
            --bg: #faf9f7;
            --bg2: #f3f1ed;
            --bg3: #eceae4;
            --text: #1a1a2e;
            --text2: #4a4a6a;
            --text3: #8888a8;
            --coral: #ff6b6b;
            --amber: #f59e0b;
            --amber-light: #fef3c7;
            --coral-light: #ffe8e8;
            --green: #10b981;
            --green-light: #d1fae5;
            --blue: #6366f1;
            --blue-light: #e0e7ff;
            --glass: rgba(255,255,255,0.65);
            --glass-border: rgba(255,255,255,0.8);
            --shadow: 0 4px 24px rgba(0,0,0,0.06);
            --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Noto Sans SC', -apple-system, 'PingFang SC', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ===== FULLPAGE SCROLL ===== */
        html {
            scroll-behavior: smooth;
            scroll-snap-type: y mandatory;
        }
        body {
            overflow-x: hidden;
            overflow-y: auto;
            scroll-snap-type: y mandatory;
        }
        .fp-section {
            scroll-snap-align: start;
            scroll-snap-stop: always;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        /* Nav and content sit above snap */
        .blob-wrap {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
        }
        .blob-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, #fde68a, #fca5a5);
            top: -200px;
            right: -100px;
            animation: blobFloat 12s ease-in-out infinite;
        }
        .blob-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, #a5f3fc, #c4b5fd);
            bottom: -100px;
            left: -150px;
            animation: blobFloat 15s ease-in-out infinite reverse;
        }
        .blob-3 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #fed7aa, #fbcfe8);
            top: 40%;
            left: 40%;
            animation: blobFloat 18s ease-in-out infinite;
        }
        @keyframes blobFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -20px) scale(1.05); }
            66% { transform: translate(-20px, 15px) scale(0.95); }
        }

        /* ===== NAV ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: 68px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 3rem;
            background: rgba(250,249,247,0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0,0,0,0.04);
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-weight: 900;
            font-size: 1.1rem;
            color: var(--text);
        }
        .logo-mark {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--coral), var(--amber));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 900;
            color: white;
            box-shadow: 0 4px 12px rgba(255,107,107,0.3);
        }
        .nav-links { display: flex; gap: 2rem; list-style: none; }
        .nav-links a {
            text-decoration: none;
            color: var(--text2);
            font-size: 0.88rem;
            font-weight: 500;
            transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--coral); }
        .nav-actions { display: flex; gap: 0.75rem; align-items: center; }
        .btn {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1.4rem;
            border-radius: 100px;
            font-size: 0.88rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s;
            cursor: pointer;
            border: none;
        }
        .btn-sm { padding: 0.35rem 1rem; font-size: 0.8rem; }
        .btn-ghost {
            background: transparent;
            color: var(--text2);
        }
        .btn-ghost:hover { color: var(--coral); background: var(--coral-light); }
        .btn-coral {
            background: linear-gradient(135deg, var(--coral), #ff8787);
            color: white;
            box-shadow: 0 4px 16px rgba(255,107,107,0.35);
        }
        .btn-coral:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(255,107,107,0.45);
        }
        .btn-outline-coral {
            background: transparent;
            color: var(--coral);
            border: 1.5px solid var(--coral);
        }
        .btn-outline-coral:hover {
            background: var(--coral);
            color: white;
            transform: translateY(-2px);
        }

        /* ===== CONTENT WRAPPER ===== */
        .content { position: relative; z-index: 1; }

        /* ===== NAVIGATION DOTS ===== */
        .fp-dots {
            position: fixed;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 200;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: center;
        }
        .fp-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(26,26,46,0.18);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
            border: none;
            padding: 0;
        }
        .fp-dot:hover { background: rgba(26,26,46,0.4); transform: scale(1.3); }
        .fp-dot.active {
            background: var(--coral);
            transform: scale(1.4);
            box-shadow: 0 0 0 3px rgba(255,107,107,0.25);
        }
        .fp-dot-label {
            position: absolute;
            right: 20px;
            background: rgba(26,26,46,0.75);
            color: white;
            font-size: 0.7rem;
            padding: 3px 8px;
            border-radius: 4px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s;
        }
        .fp-dot:hover .fp-dot-label { opacity: 1; }

        /* Footer — outside snap sections, natural scroll */
        footer { position: relative; z-index: 1; }

        /* Active nav link */
        .nav-links a.active { color: var(--coral); }

        /* ===== SECTION REVEAL ===== */
        .fp-section .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .fp-section.active .reveal {
            opacity: 1;
            transform: translateY(0);
        }
        .fp-section .reveal:nth-child(2) { transition-delay: 0.1s; }
        .fp-section .reveal:nth-child(3) { transition-delay: 0.2s; }
        .fp-section .reveal:nth-child(4) { transition-delay: 0.3s; }

        /* ===== HERO ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 7rem 3rem 5rem;
        }
        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }
        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 0.3rem 0.9rem;
            background: var(--coral-light);
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--coral);
            margin-bottom: 1.5rem;
        }
        .hero-label .pulse {
            width: 6px;
            height: 6px;
            background: var(--coral);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.5); opacity: 0.5; }
        }
        .hero h1 {
            font-size: clamp(2.6rem, 5vw, 3.8rem);
            font-weight: 900;
            line-height: 1.12;
            letter-spacing: -0.04em;
            margin-bottom: 1.25rem;
            color: var(--text);
        }
        .hero h1 .accent {
            color: var(--coral);
            position: relative;
        }
        .hero h1 .accent::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 0;
            right: 0;
            height: 12px;
            background: var(--coral-light);
            z-index: -1;
            border-radius: 4px;
        }
        .hero-sub {
            font-size: 1.1rem;
            color: var(--text2);
            line-height: 1.75;
            margin-bottom: 2.5rem;
            max-width: 460px;
        }
        .hero-btns {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        .hero-btns .btn { padding: 0.7rem 1.8rem; font-size: 0.95rem; }
        .hero-stats {
            display: flex;
            gap: 2.5rem;
        }
        .hero-stat .n {
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--text);
            line-height: 1;
        }
        .hero-stat .l {
            font-size: 0.72rem;
            color: var(--text3);
            margin-top: 3px;
        }

        /* Hero Right - Glass Card */
        .hero-visual { position: relative; }
        .glass-card {
            background: var(--glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            position: relative;
        }
        .glass-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }
        .glass-card-title {
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--text);
        }
        .glass-badge {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.72rem;
            font-weight: 700;
            color: var(--green);
            background: var(--green-light);
            padding: 3px 10px;
            border-radius: 100px;
        }
        .glass-badge .s {
            width: 6px;
            height: 6px;
            background: var(--green);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }
        .tunnel-table { width: 100%; }
        .tunnel-row {
            display: grid;
            grid-template-columns: 1fr 1.5fr auto;
            gap: 0.5rem;
            padding: 0.6rem 0.8rem;
            border-radius: 10px;
            font-size: 0.8rem;
            margin-bottom: 0.4rem;
            align-items: center;
        }
        .tunnel-row:nth-child(odd) { background: rgba(0,0,0,0.03); }
        .t-name { font-weight: 700; color: var(--text); }
        .t-domain { color: var(--blue); font-family: monospace; font-size: 0.75rem; }
        .t-badge {
            padding: 2px 8px;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 700;
            text-align: center;
        }
        .t-badge.http { background: var(--blue-light); color: var(--blue); }
        .t-badge.tcp { background: #fff7ed; color: var(--amber); }
        .t-badge.udp { background: var(--green-light); color: var(--green); }
        .glass-footer {
            margin-top: 1.25rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .glass-footer-stat {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.75rem;
            color: var(--text2);
        }
        .glass-footer-stat .val { font-weight: 700; color: var(--coral); }
        .blob-float-card {
            position: absolute;
            background: white;
            border-radius: 16px;
            padding: 0.8rem 1.2rem;
            box-shadow: var(--shadow-lg);
            font-size: 0.78rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
            animation: float 4s ease-in-out infinite;
        }
        .blob-float-card.c1 { top: -20px; right: -20px; color: var(--green); animation-delay: 0s; }
        .blob-float-card.c2 { bottom: 20px; left: -25px; color: var(--coral); animation-delay: 2s; }
        .blob-float-card.c3 { bottom: -15px; right: 20px; color: var(--blue); animation-delay: 1s; }
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(-2deg); }
            50% { transform: translateY(-10px) rotate(2deg); }
        }

        /* ===== SECTION ===== */
        section { padding: 6rem 3rem; position: relative; z-index: 1; }
        .section-kicker {
            font-size: 0.72rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--coral);
            margin-bottom: 0.5rem;
        }
        .section-title {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 900;
            letter-spacing: -0.03em;
            margin-bottom: 0.75rem;
            line-height: 1.15;
        }
        .section-sub {
            font-size: 0.95rem;
            color: var(--text3);
            line-height: 1.7;
            max-width: 480px;
        }
        .section-header { margin-bottom: 3rem; }

        /* ===== FEATURES V3 - Bento grid ===== */
        .features-v3 { background: var(--bg2); }
        .bento-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: auto auto auto;
            gap: 1.25rem;
        }
        .bento-card {
            background: white;
            border-radius: 20px;
            padding: 2rem 1.75rem;
            box-shadow: var(--shadow);
            border: 1px solid rgba(0,0,0,0.04);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .bento-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .bento-card.large {
            grid-column: span 2;
        }
        .bento-card.large2 {
            grid-column: span 2;
        }
        .bento-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 1.1rem;
        }
        .bento-icon.coral { background: var(--coral-light); }
        .bento-icon.amber { background: var(--amber-light); }
        .bento-icon.blue { background: var(--blue-light); }
        .bento-icon.green { background: var(--green-light); }
        .bento-title {
            font-size: 1rem;
            font-weight: 800;
            margin-bottom: 0.4rem;
        }
        .bento-desc {
            font-size: 0.82rem;
            color: var(--text3);
            line-height: 1.6;
        }
        .bento-big-num {
            position: absolute;
            right: 1.5rem;
            top: 1.5rem;
            font-size: 3.5rem;
            font-weight: 900;
            color: rgba(0,0,0,0.03);
            line-height: 1;
            user-select: none;
        }

        /* ===== HOW V3 - Alternating ===== */
        .how-v3 { background: var(--bg); }
        .how-steps {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .how-step {
            display: grid;
            grid-template-columns: 1fr 60px 1fr;
            gap: 2rem;
            align-items: center;
        }
        .how-step:nth-child(even) .how-text { order: 3; }
        .how-step:nth-child(even) .how-dot { order: 2; }
        .how-step:nth-child(even) .how-visual { order: 1; text-align: right; }
        .how-text { }
        .how-num {
            font-size: 0.72rem;
            font-weight: 800;
            color: var(--coral);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 0.3rem;
        }
        .how-title {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
        .how-desc {
            font-size: 0.88rem;
            color: var(--text3);
            line-height: 1.7;
        }
        .how-dot {
            display: flex;
            justify-content: center;
            position: relative;
        }
        .how-dot-circle {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--coral), var(--amber));
            color: white;
            font-size: 1.3rem;
            font-weight: 900;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(255,107,107,0.35);
            flex-shrink: 0;
            z-index: 1;
        }
        .how-dot::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: -200px;
            width: 2px;
            background: linear-gradient(to bottom, var(--coral), transparent);
            z-index: 0;
        }
        .how-step:last-child .how-dot::before { display: none; }
        .how-visual {
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }
        .how-step:nth-child(even) .how-visual { justify-content: flex-end; }
        .how-pill {
            background: var(--bg2);
            border-radius: 16px;
            padding: 1.5rem;
            display: inline-flex;
            flex-direction: column;
            gap: 0.5rem;
            min-width: 180px;
            border: 1px solid rgba(0,0,0,0.04);
        }
        .how-pill-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            color: var(--text2);
        }
        .how-pill-item .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ===== SCENARIOS V3 - Big icon grid ===== */
        .scenarios-v3 { background: var(--bg2); }
        .scene-v3-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }
        .scene-v3-card {
            background: white;
            border-radius: 20px;
            padding: 2rem 1.5rem;
            text-align: center;
            border: 1px solid rgba(0,0,0,0.04);
            box-shadow: var(--shadow);
            transition: all 0.3s;
            cursor: default;
        }
        .scene-v3-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: var(--shadow-lg);
        }
        .scene-v3-icon {
            font-size: 3rem;
            display: block;
            margin-bottom: 1rem;
        }
        .scene-v3-title {
            font-size: 1rem;
            font-weight: 800;
            margin-bottom: 0.4rem;
        }
        .scene-v3-desc {
            font-size: 0.8rem;
            color: var(--text3);
            line-height: 1.5;
        }

        /* ===== PRICING V3 - Simple cards ===== */
        .pricing-v3 { background: var(--bg); }
        .pricing-v3-grid {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }
        .price-v3-card {
            background: white;
            border-radius: 24px;
            padding: 2.5rem 2rem;
            border: 1.5px solid rgba(0,0,0,0.06);
            box-shadow: var(--shadow);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }
        .price-v3-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .price-v3-card.featured {
            border-color: var(--coral);
            box-shadow: 0 8px 40px rgba(255,107,107,0.15);
        }
        .price-v3-tag {
            display: inline-flex;
            padding: 3px 10px;
            background: var(--coral-light);
            color: var(--coral);
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 800;
            margin-bottom: 1rem;
            width: fit-content;
        }
        .price-v3-name {
            font-size: 1.1rem;
            font-weight: 800;
            margin-bottom: 0.3rem;
        }
        .price-v3-sub {
            font-size: 0.8rem;
            color: var(--text3);
            margin-bottom: 1.5rem;
        }
        .price-v3-amount {
            margin-bottom: 1.5rem;
        }
        .price-v3-amount .cur {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--coral);
            vertical-align: top;
        }
        .price-v3-amount .num {
            font-size: 3rem;
            font-weight: 900;
            color: var(--coral);
            line-height: 1;
        }
        .price-v3-amount .per {
            font-size: 0.8rem;
            color: var(--text3);
        }
        .price-v3-divider {
            height: 1px;
            background: rgba(0,0,0,0.05);
            margin-bottom: 1.5rem;
        }
        .price-v3-features {
            list-style: none;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            margin-bottom: 2rem;
        }
        .price-v3-features li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            color: var(--text2);
        }
        .price-v3-features li .yes { color: var(--green); }
        .price-v3-features li .no { color: #d1d5db; }
        .price-v3-card .btn { width: 100%; text-align: center; }

        /* ===== CTA V3 ===== */
        .cta-v3 {
            background: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 100%);
            padding: 6rem 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-v3::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M40 0v80M0 40h80'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        .cta-v3-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
        .cta-v3-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: white;
            letter-spacing: -0.04em;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        .cta-v3-sub {
            font-size: 1rem;
            color: rgba(255,255,255,0.6);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }
        .cta-v3-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
        .btn-white {
            background: white;
            color: #1a1a2e;
            font-weight: 800;
            padding: 0.75rem 2.5rem;
            border-radius: 100px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        }
        .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
        .btn-outline-white {
            background: transparent;
            color: white;
            border: 1.5px solid rgba(255,255,255,0.3);
            padding: 0.75rem 2.5rem;
            border-radius: 100px;
        }
        .btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-2px); }

        /* ===== FOOTER V3 ===== */
        footer {
            background: var(--bg);
            border-top: 1px solid rgba(0,0,0,0.05);
            padding: 4rem 3rem 2rem;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 900;
            font-size: 1rem;
            margin-bottom: 0.75rem;
        }
        .footer-desc { font-size: 0.82rem; color: var(--text3); line-height: 1.6; max-width: 260px; }
        .footer-col-title {
            font-size: 0.78rem;
            font-weight: 800;
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 1rem;
        }
        .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
        .footer-links a { color: var(--text3); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
        .footer-links a:hover { color: var(--coral); }
        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(0,0,0,0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.78rem;
            color: var(--text3);
        }
        .footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
        .footer-legal a { color: var(--text3); text-decoration: none; transition: color 0.2s; }
        .footer-legal a:hover { color: var(--coral); }

        /* ===== REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s cubic-bezier(0.5, 0, 0, 1);
        }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .how-step.reveal { transform: translateX(-30px); transition: all 0.7s cubic-bezier(0.5, 0, 0, 1); }
        .how-step.reveal.visible { transform: translateX(0); }
        .how-step:nth-child(even).reveal { transform: translateX(30px); }
        .how-step:nth-child(even).reveal.visible { transform: translateX(0); }

        /* ===== MOBILE ===== */
        @media (max-width: 768px) {
            .navbar { padding: 0 1.5rem; }
            .nav-links { display: none; }
            section { padding: 4rem 1.5rem; }
            .hero { padding: 7rem 1.5rem 4rem; }
            .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
            .hero-visual { display: none; }
            .hero-sub { max-width: 100%; }
            .hero-btns { justify-content: center; }
            .hero-stats { justify-content: center; }
            .bento-grid { grid-template-columns: repeat(2, 1fr); }
            .bento-card.large { grid-column: span 2; }
            .bento-card.large2 { grid-column: span 2; }
            .scene-v3-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-v3-grid { grid-template-columns: 1fr; }
            .how-step { grid-template-columns: 1fr; gap: 1rem; }
            .how-step:nth-child(even) .how-text,
            .how-step:nth-child(even) .how-dot,
            .how-step:nth-child(even) .how-visual { order: unset; }
            .how-dot { justify-content: flex-start; }
            .how-dot::before { display: none; }
            .how-visual { justify-content: flex-start !important; }
            .how-step::before {
                content: '';
                position: absolute;
                left: 27px;
                top: 60px;
                bottom: 0;
                width: 2px;
                background: linear-gradient(to bottom, var(--coral), transparent);
            }
            .how-step { position: relative; padding-left: 80px; }
            .how-step:last-child::before { display: none; }
            .footer-inner { grid-template-columns: 1fr 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }
		
		.btsfrp{
            max-width: 1200px;
            margin: 0px auto 2.8rem;
		}