        :root {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: inherit; }

        :root {
            --orange: #ff5801;
            --dark: #0e0e0e;
            --white: #ffffff;
            --gray-50: #fafafa;
            --gray-100: #f2f4f6;
            --gray-200: #e3e4ea;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-900: #111827;
            --green: #06bd00;
            --red: #c50000;
            --amber: #f38500;
            --blue: #0082fb;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
        }

        html { scroll-behavior: smooth; scroll-padding-top: 100px; }

        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            color: var(--gray-900);
            line-height: 1.5;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Satoshi', sans-serif;
            line-height: 1.1;
            letter-spacing: -0.025em;
            text-wrap: balance;
        }

        /* ====== NAV ====== */
        .nav {
            position: fixed; top: 12px; left: 50%; transform: translateX(-50%);
            z-index: 100; width: calc(100% - 48px); max-width: 1100px;
            padding: 12px 12px 12px 24px;
            display: flex; justify-content: space-between; align-items: center;
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            border-radius: 100px;
            border: 1px solid var(--gray-200);
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            transition: box-shadow 0.3s, background 0.3s;
        }
        .nav.scrolled {
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
            box-shadow: 0 4px 24px rgba(0,0,0,0.09), 0 0 0 1px rgba(255,88,1,0.07);
            border-color: rgba(255,88,1,0.12);
        }
        .nav-logo {
            font-family: 'Satoshi', sans-serif;
            font-weight: 700; font-size: 1.1rem;
            color: var(--gray-900); text-decoration: none;
        }
        .nav-links { display: flex; gap: 1.75rem; align-items: center; list-style: none; }
        .nav-links a {
            color: var(--gray-500); text-decoration: none;
            font-size: 0.85rem; font-weight: 500; transition: color 0.2s;
        }
        .nav-links a:hover { color: var(--gray-900); }
        .nav-cta {
            background: var(--orange) !important; color: #fff !important;
            padding: 10px 24px !important; border-radius: 100px;
            font-weight: 600 !important; font-size: 0.85rem !important;
            transition: box-shadow 0.2s, transform 0.2s !important;
        }
        .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,88,1,0.35); }

        /* Hamburger toggle */
        .nav-toggle {
            display: none; background: none; border: none; cursor: pointer;
            width: 24px; height: 18px; position: relative; padding: 0;
            flex-shrink: 0; z-index: 2;
        }
        .nav-toggle span {
            display: block; width: 100%; height: 2.5px;
            background: var(--gray-900); border-radius: 3px;
            position: absolute; left: 0;
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                        opacity 0.25s ease;
        }
        .nav-toggle span:nth-child(1) { top: 0; }
        .nav-toggle span:nth-child(2) { top: 8px; }
        .nav-toggle span:nth-child(3) { top: 16px; }
        .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
        .nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

        /* ====== HERO ====== */
        .hero {
            background: linear-gradient(180deg, #fce8d8 0%, #f9ede4 25%, #f7f3ef 55%, #ffffff 100%);
            padding: clamp(8rem, 12vw, 10rem) clamp(1.5rem, 4vw, 3rem) clamp(5rem, 10vw, 7rem);
            text-align: center;
        }

        .hero-inner {
            max-width: 1000px; margin: 0 auto; margin-bottom: 3.5rem;
            display: grid; grid-template-columns: 1fr auto;
            gap: 2.5rem; align-items: center; text-align: left;
        }
        .hero-rufus {
            width: 280px; flex-shrink: 0;
        }
        .hero-rufus img {
            width: 100%; height: auto; display: block;
            filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1));
        }
        /* Hero entrance animation */
        @keyframes hero-in {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .hero h1 {
            font-size: clamp(3.2rem, 2.2rem + 5vw, 5rem);
            color: var(--gray-900); font-weight: 700; margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
            animation: hero-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
        }
        .hero h1 em { font-style: normal; color: var(--orange); }
        .hero-sub {
            font-size: clamp(1.05rem, 0.95rem + 0.5vw, 1.25rem);
            color: var(--gray-500); line-height: 1.7;
            max-width: 540px; margin: 0 0 2.5rem;
            animation: hero-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
        }
        .hero-buttons {
            display: flex; gap: 12px; flex-wrap: wrap;
            animation: hero-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
        }
        .hero-rufus {
            animation: hero-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
        }

        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 15px 32px; border-radius: 10px;
            font-size: 0.95rem; font-weight: 600;
            text-decoration: none; border: none; cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .btn:hover { transform: translateY(-2px); }
        .btn:active { transform: translateY(0); transition-duration: 0.1s; }
        .btn-primary { background: var(--orange); color: #fff; }
        .btn-primary:hover { box-shadow: 0 8px 30px rgba(255,88,1,0.3); }
        .btn-secondary { background: var(--white); color: var(--gray-900); border: 1px solid var(--gray-200); }
        .btn-secondary:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }

        /* ====== DASHBOARD PREVIEW ====== */
        .dash-outer {
            position: relative; z-index: 2;
            overflow: visible;
            width: 100%;
            max-width: 1040px;
            margin: 0 auto;
        }
        /* Background layer behind dashboard - left side */
        .dash-outer::before {
            content: '';
            position: absolute;
            top: 40px;
            left: -16px;
            right: 60px;
            bottom: -16px;
            background-color: rgba(0,0,0,0.04);
            border: 1px solid rgba(34,34,34,0.08);
            border-radius: 12px;
            transform: perspective(1800px) skewX(5deg);
            z-index: -1;
            mask-image: linear-gradient(to bottom, #000 50%, transparent 95%);
            -webkit-mask-image: linear-gradient(to bottom, #000 50%, transparent 95%);
        }
        /* Shadow on the right side of the dashboard */
        .dash-outer::after {
            content: '';
            position: absolute;
            top: 20px;
            right: -40px;
            width: 45%;
            bottom: -10px;
            background: radial-gradient(ellipse at center, rgba(0,0,0,0.18) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(30px);
            transform: perspective(1800px) skewX(5deg);
            z-index: -1;
            mask-image: linear-gradient(to bottom, #000 40%, transparent 90%);
            -webkit-mask-image: linear-gradient(to bottom, #000 40%, transparent 90%);
        }

        .dash-float-inner {
            position: relative;
            width: 100%;
            transform: perspective(1800px) skewX(5deg) translateZ(0);
            backface-visibility: hidden;
            -webkit-backface-visibility: hidden;
            mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
            -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
        }

        .dash-mobile-img {
            display: none;
            width: 100%;
            height: auto;
            border-radius: 12px;
            border: 1px solid #ccc;
            box-shadow: rgba(0,0,0,0.07) 0 1px 35px 0;
        }
        .dash-iframe-wrap {
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #ccc;
            box-shadow: rgba(0,0,0,0.07) 0 1px 35px 0;
            background: #f4f4f5;
            position: relative;
            width: 100%;
            padding-bottom: 62.5%; /* 800/1280 aspect ratio */
        }
        .dash-iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 1280px;
            height: 800px;
            border: 0;
            zoom: var(--dash-scale, 0.8125);
            display: block;
            pointer-events: none;
        }

        /* ====== MARQUEE SHOWCASE ====== */
        .marquee-section { padding-top: 2rem; padding-bottom: 2rem; overflow: hidden; }
        .marquee-label {
            font-size: 12px; font-weight: 600; text-transform: uppercase;
            letter-spacing: 0.15em; color: var(--gray-400); text-align: center;
            margin-bottom: 2rem;
        }
        .marquee-container { position: relative; }
        .marquee-fade {
            position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            z-index: 2; pointer-events: none;
            background: linear-gradient(90deg, #fff 0%, transparent 8%, transparent 92%, #fff 100%);
        }
        .marquee-track { overflow: hidden; margin-bottom: 12px; }
        .marquee-items {
            display: flex; gap: 12px; width: max-content;
        }
        .marquee-track-left .marquee-items {
            animation: marquee-scroll-left 60s linear infinite;
        }
        .marquee-track-right .marquee-items {
            animation: marquee-scroll-right 65s linear infinite;
        }
        @keyframes marquee-scroll-left {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        @keyframes marquee-scroll-right {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }
        .marquee-item {
            flex-shrink: 0; padding: 8px;
        }
        .marquee-item img {
            height: 220px; width: auto; object-fit: cover;
            border-radius: 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.08);
            display: block;
        }
        @media (max-width: 768px) {
            .marquee-item img { height: 160px; border-radius: 12px; }
        }
        @media (max-width: 480px) {
            .marquee-item img { height: 120px; }
        }

        /* ====== STRATEGY BANNER ====== */
        .strategy-banner {
            position: relative; overflow: hidden;
            background: #fff; border: 1px solid var(--gray-200);
            border-radius: 20px; padding: 48px 48px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.04);
        }
        .strategy-banner-inner {
            position: relative; z-index: 1;
            display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center;
        }
        .strategy-banner-left { flex-shrink: 0; }
        .strategy-banner-icon {
            height: 220px; width: auto; display: block;
            filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
        }
        .strategy-banner-right { text-align: left; }
        .strategy-banner-label {
            font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.1em; color: var(--orange); margin-bottom: 0.5rem;
        }
        .strategy-banner h3 {
            font-family: 'Satoshi', sans-serif;
            font-size: clamp(1.3rem, 1rem + 1.2vw, 1.8rem);
            font-weight: 700; color: var(--gray-900);
            line-height: 1.25; letter-spacing: -0.02em; margin-bottom: 0.5rem;
        }
        .strategy-banner-sub {
            font-size: 0.9rem; color: var(--gray-500); line-height: 1.5; margin-bottom: 1.5rem;
        }
        .strategy-banner-stats {
            display: flex; gap: 2rem;
        }
        .strategy-stat { display: flex; flex-direction: column; }
        .strategy-stat-num {
            font-family: 'DM Mono', monospace; font-size: 1.4rem; font-weight: 500; color: var(--gray-900);
        }
        .strategy-stat-label {
            font-size: 0.75rem; color: var(--gray-500); letter-spacing: -0.01em;
        }
        @media (max-width: 768px) {
            .strategy-banner { padding: 32px 24px; border-radius: 16px; }
            .strategy-banner-inner { grid-template-columns: 1fr; text-align: center; }
            .strategy-banner-left { display: flex; justify-content: center; }
            .strategy-banner-icon { height: 160px; }
            .strategy-banner-right { text-align: center; }
            .strategy-banner-stats { justify-content: center; }
        }

        /* ====== BEFORE / AFTER ====== */
        .ba-block {
            background: #fef0e6; border-radius: 24px;
            padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 3vw, 3rem);
        }
        .ba-block-inner { text-align: center; }
        .ba-header { margin-bottom: 2rem; }
        .ba-header h2 {
            font-size: clamp(1.8rem, 1.2rem + 2vw, 3rem);
            font-weight: 700;
        }
        .ba-dark { color: var(--gray-900); }
        .ba-accent {
            background-image: linear-gradient(180deg, #ffb068 0%, var(--orange) 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .ba-labels {
            display: flex; justify-content: center; align-items: center;
            gap: clamp(4rem, 10vw, 10rem); margin-bottom: 1.5rem;
        }
        .ba-label {
            display: flex; align-items: center; gap: 6px;
            font-size: 14px; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.08em;
        }
        .ba-label i { font-size: 18px; }
        .ba-label-before { color: var(--gray-400); }
        .ba-label-after { color: var(--orange); }
        .ba-images {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: clamp(1rem, 3vw, 2rem); max-width: 700px; margin: 0 auto 2.5rem;
        }
        .ba-img img {
            width: 100%; border-radius: 16px; display: block;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
        }
        .ba-img-before { transform: rotate(-3deg); }
        .ba-img-after { transform: rotate(3deg); }
        .ba-card {
            background: #fff; border-radius: 16px; padding: 20px 24px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.1);
            text-align: left;
        }
        .ba-card-top {
            display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap;
        }
        .ba-card-pill {
            display: inline-flex; align-items: center; gap: 6px;
            font-size: 13px; font-weight: 500; color: var(--gray-500);
            background: var(--gray-50); border: 1px solid var(--gray-200);
            border-radius: 8px; padding: 6px 12px;
        }
        .ba-card-pill i { font-size: 14px; }
        .ba-card-live { border-radius: 100px; }
        .ba-live-dot {
            width: 8px; height: 8px; border-radius: 50%;
            background: var(--gray-400); display: inline-block;
        }
        .ba-live-dot-green { background: var(--green); }
        .ba-card-label {
            font-size: 18px; font-weight: 500; color: var(--gray-900);
            margin-bottom: 4px; letter-spacing: -0.02em;
        }
        .ba-card-value {
            font-family: 'Satoshi', sans-serif;
            font-size: clamp(2rem, 1.5rem + 2vw, 2.8rem);
            font-weight: 700; color: var(--gray-900);
            letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 8px;
        }
        .ba-card-change {
            display: inline-flex; align-items: center; gap: 4px;
            font-size: 15px; font-weight: 600;
        }
        .ba-card-change i { font-size: 16px; }
        .ba-card-down { color: var(--gray-400); }
        .ba-card-up { color: var(--green); }
        .ba-checks {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 10px; max-width: 520px; margin: 0 auto 2rem;
            text-align: left;
        }
        .ba-check {
            display: flex; align-items: center; gap: 8px;
            font-size: 15px; color: var(--gray-900);
        }
        .ba-check i { color: var(--orange); font-size: 18px; flex-shrink: 0; }
        .btn-dark {
            background: var(--dark); color: #fff;
            display: inline-flex; align-items: center; gap: 6px;
        }
        .btn-dark:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
        @media (max-width: 768px) {
            .ba-block { border-radius: 16px; }
            .ba-checks { grid-template-columns: 1fr; }
            .ba-labels { gap: 3rem; }
        }
        @media (max-width: 480px) {
            .ba-images { grid-template-columns: 1fr; }
            .ba-img-before, .ba-img-after { transform: none; }
        }

        /* ====== GRADIENT DIVIDER ====== */

        /* ====== SKILLS SLIDER ====== */
        .skills-tabs {
            display: inline-flex; gap: 4px; margin-bottom: 2rem;
            overflow-x: auto; -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            padding: 5px;
            border-radius: 100px;
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
            border: 1px solid var(--gray-200);
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        .skills-tabs-wrap { text-align: center; }
        .skills-tabs::-webkit-scrollbar { display: none; }
        .skill-tab {
            padding: 8px 18px; border-radius: 100px;
            font-size: 0.8rem; font-weight: 500;
            white-space: nowrap; cursor: pointer; border: none;
            background: transparent; color: var(--gray-500);
            transition: all 0.2s;
        }
        .skill-tab:hover { color: var(--gray-900); }
        .skill-tab.active { background: var(--dark); color: #fff; font-weight: 600; }

        .skill-slide {
            display: none;
            grid-template-columns: 1fr 1fr;
            gap: 0; align-items: stretch;
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: 16px;
            overflow: hidden;
            min-height: 380px;
            opacity: 0;
            transform: translateY(8px) scale(0.99);
        }
        .skill-slide.active {
            display: grid;
            animation: skill-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        @keyframes skill-in {
            from { opacity: 0; transform: translateY(8px) scale(0.99); }
            to   { opacity: 1; transform: translateY(0) scale(1); }
        }

        .skill-info { padding: 2.5rem; transition: background 0.3s; }
        .skill-slide[data-skill="research"] .skill-info { background: #e8f4f8; }
        .skill-slide[data-skill="ads"] .skill-info { background: #fef0e8; }
        .skill-slide[data-skill="pages"] .skill-info { background: #f0e8fe; }
        .skill-slide[data-skill="store"] .skill-info { background: #e8f8ed; }
        .skill-slide[data-skill="marketing"] .skill-info { background: #fef8e8; }
        .skill-slide[data-skill="support"] .skill-info { background: #fee8ee; }
        .skill-label {
            font-size: 0.7rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.1em;
            color: var(--orange); margin-bottom: 0.75rem;
        }
        .skill-info h3 {
            font-size: clamp(1.4rem, 1rem + 1vw, 1.8rem);
            font-weight: 700; margin-bottom: 0.75rem;
        }
        .skill-info > p {
            font-size: 0.95rem; color: var(--gray-500);
            line-height: 1.65; margin-bottom: 1.5rem;
        }
        .skill-tasks { display: flex; flex-direction: column; gap: 10px; }
        .skill-task {
            display: flex; align-items: center; gap: 10px;
            font-size: 0.88rem; color: var(--gray-600);
        }
        .skill-task i { font-size: 1rem; color: var(--orange); }

        .skill-preview {
            display: flex; align-items: flex-end; justify-content: center;
            min-height: 300px; overflow: clip;
        }
        .skill-char {
            width: auto; height: 97%;
            max-height: 320px;
            object-fit: contain;
            filter: drop-shadow(0 6px 16px rgba(0,0,0,0.15));
        }
        .skill-slide[data-skill="research"] .skill-preview { background: #d4e8ef; }
        .skill-slide[data-skill="ads"] .skill-preview { background: #f0ddd2; }
        .skill-slide[data-skill="pages"] .skill-preview { background: #ddd2f0; }
        .skill-slide[data-skill="store"] .skill-preview { background: #d2f0da; }
        .skill-slide[data-skill="marketing"] .skill-preview { background: #f0ebd2; }
        .skill-slide[data-skill="support"] .skill-preview { background: #f0d2da; }

        /* ====== STEPS (timeline) ====== */
        .steps-timeline {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
            position: relative;
        }
        .steps-timeline::before {
            content: ''; position: absolute;
            top: 28px; left: 16.66%; right: 16.66%;
            height: 2px; background: var(--gray-200);
        }
        .step-card {
            text-align: center; position: relative; padding: 0 1.5rem;
        }
        .step-num {
            width: 56px; height: 56px; border-radius: 16px;
            background: var(--white); border: 2px solid var(--gray-200);
            display: grid; place-items: center;
            font-family: 'Satoshi', sans-serif;
            font-weight: 700; font-size: 1.1rem; color: var(--orange);
            margin: 0 auto 1.25rem; position: relative; z-index: 1;
        }
        .step-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
        .step-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }

        /* ====== CHAT PREVIEW ====== */
        .chat-section { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
        .chat-text {}
        .chat-text .tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 1rem; }
        .chat-text h2 { font-family: 'Satoshi', sans-serif; font-size: clamp(1.6rem, 1rem + 2vw, 2.2rem); font-weight: 700; color: #fff; margin-bottom: 1rem; line-height: 1.15; letter-spacing: -0.025em; }
        .chat-text p { font-size: 0.95rem; color: var(--gray-400); line-height: 1.65; }
        .chat-wrap {
            background: #1a1a1a; border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px; overflow: hidden;
            box-shadow: 0 8px 40px rgba(0,0,0,0.3);
        }
        .chat-header {
            display: flex; align-items: center; gap: 10px;
            padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .chat-av {
            width: 32px; height: 32px; background: var(--orange);
            border-radius: 50%; display: grid; place-items: center;
            color: #fff; font-weight: 700; font-size: 0.75rem;
        }
        .chat-header-info h4 { font-size: 0.85rem; font-weight: 600; color: #fff; }
        .chat-header-info span { font-size: 0.65rem; color: var(--green); }
        .chat-messages { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
        .chat-msg {
            max-width: 82%; padding: 12px 16px;
            border-radius: 14px; font-size: 0.82rem; line-height: 1.55;
        }
        .chat-msg.rufus {
            background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85);
            align-self: flex-start; border-bottom-left-radius: 4px;
        }
        .chat-msg.user {
            background: var(--orange); color: #fff;
            align-self: flex-end; border-bottom-right-radius: 4px;
        }
        .chat-msg .chat-time {
            display: block; font-size: 0.6rem; margin-top: 4px; opacity: 0.4;
        }

        /* ====== WEEK COMPARISON ====== */
        .week-compare {
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 1.5rem; max-width: 860px; margin: 0 auto;
        }
        .week-col {
            background: var(--white); border: 1px solid var(--gray-200);
            border-radius: var(--radius-lg); padding: 2rem; text-align: left;
        }
        .week-header {
            display: flex; align-items: center; gap: 8px;
            font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
            letter-spacing: 0.06em; color: var(--gray-400);
            margin-bottom: 1.25rem; padding-bottom: 0.75rem;
            border-bottom: 1px solid var(--gray-200);
        }
        .week-dot {
            width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
        }
        .week-dot-red { background: var(--gray-300, #d1d5db); }
        .week-dot-green { background: var(--orange); }
        .week-with {
            border-color: rgba(255,88,1,0.15);
            box-shadow: 0 0 0 1px rgba(255,88,1,0.08), 0 8px 32px rgba(255,88,1,0.06);
        }
        .week-with .week-header { color: var(--orange); }
        .week-tasks { display: flex; flex-direction: column; gap: 0; }
        .week-task {
            display: flex; justify-content: space-between; align-items: center;
            padding: 9px 0;
            border-bottom: 1px solid var(--gray-100);
        }
        .week-task:last-child { border-bottom: none; }
        .week-task-name {
            font-size: 0.85rem; color: var(--gray-500);
            display: flex; align-items: center; gap: 8px;
        }
        .week-task-name i {
            font-size: 0.95rem; color: var(--gray-400); flex-shrink: 0;
        }
        .week-with .week-task-name i { color: var(--orange); }
        .week-task-time {
            font-family: 'DM Mono', monospace;
            font-size: 0.82rem; font-weight: 500; color: var(--gray-900);
            white-space: nowrap;
        }
        .week-task-auto {
            display: flex; align-items: center; gap: 4px;
            font-size: 0.8rem; font-weight: 600; color: var(--orange);
            white-space: nowrap;
        }
        .week-task-auto i { font-size: 0.95rem; }
        .week-total {
            display: flex; justify-content: space-between; align-items: center;
            font-size: 0.95rem; font-weight: 700; padding-top: 0.75rem;
            margin-top: 0.5rem; border-top: 1px solid var(--gray-200);
            color: var(--gray-900);
        }
        .week-total-bad { font-family: 'DM Mono', monospace; color: var(--gray-500); }
        .week-total-good { font-family: 'DM Mono', monospace; color: var(--orange); }
        .week-bottom {
            text-align: center; margin-top: 2.5rem;
        }
        .week-saved {
            font-size: 1.05rem; color: var(--gray-500);
            margin-bottom: 1.5rem; line-height: 1.6;
        }
        .week-saved strong { color: var(--gray-900); }

        /* ====== SECTIONS ====== */
        .section { padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 4vw, 3rem); }
        .section-white { background: #fff; }
        .section-gray  {
            background: var(--gray-50);
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
        }
        .section-dark  { background: var(--dark); color: #fff; }

        .wrap { max-width: 1080px; margin: 0 auto; padding: 0 clamp(1rem, 3vw, 0px); }

        .s-head {
            text-align: center; max-width: 580px;
            margin: 0 auto clamp(3rem, 6vw, 5rem);
        }
        .s-head .tag {
            font-size: 0.75rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.1em;
            color: var(--orange); margin-bottom: 1rem;
        }
        .s-head h2 { font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); margin-bottom: 1rem; }
        .section-dark .s-head h2 { color: #fff; }
        .s-head p { font-size: 1.05rem; color: var(--gray-500); line-height: 1.65; }
        .section-dark .s-head p { color: var(--gray-400); }

        /* Pricing */
        @keyframes price-shimmer {
            0%   { background-position: -200% center; }
            100% { background-position: 200% center; }
        }
        .price-single {
            max-width: 800px; margin: 0 auto;
            background: #fff; border: 1px solid var(--gray-200);
            border-radius: var(--radius-xl); padding: 3rem;
            display: grid; grid-template-columns: auto 1fr 1fr; gap: 2.5rem;
            align-items: center;
            position: relative; overflow: hidden;
            transition: box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .price-single:hover {
            box-shadow: 0 16px 56px rgba(0,0,0,0.08);
            transform: translateY(-3px);
        }
        .price-single::before {
            content: '';
            position: absolute; top: 0; left: 0; right: 0; height: 3px;
            background: linear-gradient(90deg, var(--orange) 0%, #ff9557 40%, var(--orange) 60%, #ff9557 80%, var(--orange) 100%);
            background-size: 200% auto;
            transition: background-size 0.3s;
        }
        .price-single:hover::before {
            background-size: 200% auto;
            animation: price-shimmer 1.8s linear infinite;
        }
        .price-single-left { text-align: left; }
        .price-single-right {
            border-left: 1px solid var(--gray-200);
            padding-left: 3rem;
        }
        .price-pill {
            display: inline-block; background: var(--orange); color: #fff;
            font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.08em; padding: 5px 14px; border-radius: 100px; margin-bottom: 1.5rem;
        }
        .price-num { font-family: 'DM Mono', monospace; font-size: clamp(3rem, 2rem + 3vw, 3.8rem); font-weight: 500; line-height: 1; margin-bottom: 0.35rem; }
        .price-num span { font-size: 0.32em; font-weight: 500; color: var(--gray-500); }
        .price-desc { color: var(--gray-500); margin-bottom: 1.5rem; font-size: 0.95rem; }
        .price-list { list-style: none; text-align: left; margin-bottom: 0; display: flex; flex-direction: column; gap: 0.6rem; }
        .price-list li { font-size: 0.92rem; padding-left: 1.75rem; position: relative; }
        .price-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
        .price-single .btn { justify-content: center; }
        .price-single-img { flex-shrink: 0; }
        .price-single-img img {
            height: 200px; width: auto; display: block;
            filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
            border-radius: 0;
        }

        /* FAQ */
        .faq { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
        .faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); background: #fff; overflow: hidden; }
        .faq-q {
            width: 100%; background: none; border: none;
            padding: 1.25rem 1.5rem; text-align: left;
            font-size: 0.95rem; font-weight: 600;
            font-family: 'Inter', sans-serif; cursor: pointer;
            display: flex; justify-content: space-between; align-items: center;
            color: var(--gray-900); transition: color 0.2s;
        }
        .faq-q:hover { color: var(--orange); }
        .faq-q::after { content: "+"; font-size: 1.3rem; font-weight: 400; color: var(--gray-400); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s; }
        .faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--orange); }
        .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1); }
        .faq-a-inner { padding: 0 1.5rem 1.25rem; color: var(--gray-500); line-height: 1.65; font-size: 0.92rem; }
        .faq-item.open .faq-a { max-height: 250px; }

        /* ====== HERO TRUST BAR ====== */
        .hero-trust {
            max-width: 900px; margin: 3rem auto 0;
            padding: 1rem 0 0;
            animation: hero-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
        }
        .hero-trust-inner {
            display: flex; align-items: center; justify-content: center;
            gap: 1.5rem; flex-wrap: wrap;
        }
        .hero-trust-logos {
            display: flex; align-items: center; gap: 1.5rem;
        }
        .hero-trust-divider {
            width: 1px; height: 24px; background: var(--gray-200);
        }
        .hero-trust-stats {
            display: flex; align-items: center; gap: 1.5rem;
        }
        .hero-trust-stat {
            font-size: 0.78rem; color: var(--gray-400); white-space: nowrap;
        }
        .hero-trust-num {
            font-family: 'DM Mono', monospace;
            font-weight: 500; font-size: 0.85rem; color: var(--gray-500);
        }
        .social-proof-discord {
            display: inline-flex; align-items: center; gap: 6px;
            padding: 7px 16px; border-radius: 100px;
            background: #5865F2; color: #fff;
            font-size: 0.78rem; font-weight: 600;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .social-proof-discord:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(88,101,242,0.35);
        }



        /* ====== TRUST (inside pricing) ====== */
        .price-trust {
            display: flex; align-items: center; justify-content: center;
            gap: 1.5rem; flex-wrap: wrap;
            margin-top: 2rem; padding-top: 1.5rem;
        }
        .trust-item {
            display: flex; align-items: center; gap: 5px;
            font-size: 0.75rem; font-weight: 500; color: var(--gray-400);
        }
        .trust-item i {
            font-size: 0.95rem; color: var(--gray-400);
        }

        /* CTA */
        .cta-end {
            padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 4vw, 3rem);
            background: linear-gradient(180deg, #fff 0%, #fef6f0 100%);
        }
        .cta-inner {
            max-width: 900px; margin: 0 auto;
            display: grid; grid-template-columns: 1fr auto;
            gap: 3rem; align-items: center;
        }
        .cta-end h2 { font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); color: var(--gray-900); margin-bottom: 0.75rem; }
        .cta-end p { color: var(--gray-500); font-size: 1rem; margin-bottom: 1.5rem; line-height: 1.6; }
        .cta-rufus { width: 240px; flex-shrink: 0; }
        .cta-rufus img { width: 100%; height: auto; }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px) scale(0.97);
            transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        .reveal-fast {
            opacity: 0;
            transform: translateY(20px) scale(0.98);
            transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal-fast.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        /* Stagger delays for child elements */
        .reveal-stagger > *:nth-child(1) { transition-delay: 0ms; }
        .reveal-stagger > *:nth-child(2) { transition-delay: 80ms; }
        .reveal-stagger > *:nth-child(3) { transition-delay: 160ms; }
        .reveal-stagger > *:nth-child(4) { transition-delay: 240ms; }
        .reveal-stagger > *:nth-child(5) { transition-delay: 320ms; }
        .reveal-stagger > *:nth-child(6) { transition-delay: 400ms; }


        /* Responsive */
        @media (max-width: 768px) {
            .nav-toggle { display: block; }
            .nav {
                flex-wrap: wrap;
                border-radius: 16px;
                padding: 14px 20px;
                transition: box-shadow 0.3s, background 0.3s, border-radius 0.3s;
            }
            .nav.menu-open {
                border-radius: 16px;
                background: rgba(255,255,255,0.98);
                box-shadow: 0 8px 40px rgba(0,0,0,0.12);
            }
            .nav-links {
                display: flex; flex-direction: column; width: 100%;
                gap: 0; list-style: none;
                max-height: 0; overflow: hidden;
                transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                            padding 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                            opacity 0.3s;
                opacity: 0; padding: 0;
                order: 3;
            }
            .nav-links.open {
                max-height: 400px; opacity: 1;
                padding: 16px 0 4px;
                margin-top: 12px;
                border-top: 1px solid var(--gray-200);
            }
            .nav-links li { width: 100%; }
            .nav-links a {
                display: block; padding: 12px 8px;
                font-size: 0.95rem; font-weight: 500;
                color: var(--gray-500);
                border-radius: 8px;
                transition: background 0.2s, color 0.2s;
            }
            .nav-links a:hover {
                background: var(--gray-50); color: var(--gray-900);
            }
            .nav-cta {
                margin-top: 8px !important; text-align: center !important;
                display: block !important; padding: 14px 24px !important;
                border-radius: 10px !important;
            }
            .hero-inner { grid-template-columns: 1fr; text-align: center; }
            .hero-rufus { display: none; }
            .hero-sub { margin: 0 auto 2.5rem; }
            .hero-trust-inner { gap: 1rem; justify-content: center; }
            .hero-trust-logos { gap: 1rem; }
            .hero-trust-stats { gap: 1rem; }
            .hero-trust-divider { display: none; }
            .price-trust { gap: 0.75rem; }
            .cta-inner .btn { width: 100%; max-width: 300px; justify-content: center; }
            /* Skills carousel on mobile */
            .skills-tabs-wrap { display: none; }
            .skills-carousel {
                display: flex; gap: 16px;
                overflow-x: auto; -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                scroll-behavior: smooth;
                padding-bottom: 12px;
                margin: 0 calc(-1 * clamp(1rem, 3vw, 0px));
                padding-left: clamp(1rem, 3vw, 0px);
                padding-right: clamp(1rem, 3vw, 0px);
                scrollbar-width: none;
            }
            .skills-carousel::-webkit-scrollbar { display: none; }
            .skill-slide {
                display: flex !important; flex-direction: column;
                flex: 0 0 85%; min-width: 0;
                scroll-snap-align: center;
                opacity: 1 !important;
                transform: none !important;
                animation: none !important;
                border-radius: 16px;
                overflow: hidden;
            }
            .skill-info {
                padding: 1.5rem; flex: 0 0 auto;
            }
            .skill-info h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
            .skill-info > p { font-size: 0.88rem; margin-bottom: 1rem; }
            .skill-tasks { gap: 6px; }
            .skill-task { font-size: 0.82rem; }
            .skill-preview {
                flex: 1 1 0; min-height: 260px;
                display: flex; align-items: flex-end; justify-content: center;
                padding: 0; overflow: hidden;
            }
            .skill-preview img {
                width: 100%; height: 100%;
                object-fit: contain;
                object-position: bottom;
                max-height: 300px;
            }
            .week-compare { grid-template-columns: 1fr; border-radius: 16px; }
            .week-col { padding: 1.5rem; }
            .week-saved { font-size: 1rem; }
            .week-bottom .btn { width: 100%; max-width: 300px; justify-content: center; }
            .chat-section { grid-template-columns: 1fr; }
            .steps-timeline { grid-template-columns: 1fr; gap: 2rem; }
            .steps-timeline::before { display: none; }
            .dash-float-inner { transform: none; mask-image: none; -webkit-mask-image: none; }
            .dash-outer::before { display: none; }
            .dash-outer::after { display: none; }
            .dash-outer { min-height: auto; overflow: visible; }
            .dash-iframe-wrap { display: none; }
            .dash-mobile-img { display: block; }
            html { scroll-behavior: auto; }
            .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(255,255,255,0.95); }
            .nav.scrolled { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(255,255,255,0.97); }
            .hero-trust { margin-top: 2rem; }
            .hero-trust-logos { gap: 0.75rem; }
            .hero-trust-logos svg { height: 18px; }
            .hero-trust-logos svg[aria-label="Klaviyo"] { height: 12px; }
            .hero-trust-stats { gap: 0.75rem; }
            .hero-trust-stat { font-size: 0.7rem; }
            .hero-trust-num { font-size: 0.78rem; }
            .social-proof-discord { font-size: 0.72rem; padding: 6px 12px; }
            .price-single { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
            .price-single-img { display: none; }
            .price-single-right { border-left: none; padding-left: 0; border-top: 1px solid var(--gray-200); padding-top: 2rem; }
            .skill-char { height: 97%; max-height: 300px; }
            .week-task-name { font-size: 0.78rem; }
            .week-task-time { font-size: 0.75rem; }
            .week-task-auto { font-size: 0.72rem; }
            .week-task-name i { font-size: 0.82rem; }
            .hero-buttons { flex-direction: column; align-items: center; }
            .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }
            .cta-inner { grid-template-columns: 1fr; text-align: center; }
            .cta-rufus { margin: 0 auto; width: 140px; }
            .cta-end .btn { width: 100%; max-width: 280px; margin: 0 auto; }

        }
        @media (max-width: 480px) {
            /* Trust bar */
            .hero-trust-inner { flex-direction: column; gap: 0.75rem; }
            .hero-trust-stats { flex-wrap: wrap; justify-content: center; }

            /* Skills */
            .skill-slide { flex: 0 0  90%; }
            .skill-preview { min-height: 220px; }
            .skills-carousel { scroll-behavior: auto; }

            /* Week comparison */
            .week-task-name i { display: none; }

            /* Chat */
            .chat-msg { max-width: 92%; font-size: 0.78rem; }

        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
            html { scroll-behavior: auto; }
        }

        :focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
        :focus:not(:focus-visible) { outline: none; }

        /* ====== FOOTER ====== */
        footer {
            background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05);
            padding: 3rem clamp(1.5rem, 4vw, 3rem) 0;
        }
        .footer-inner {
            max-width: 1080px; margin: 0 auto;
            display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 2.5rem;
        }
        .footer-brand {
            display: flex; flex-direction: column; gap: 0.5rem;
        }
        .footer-logo {
            font-family: 'Satoshi', sans-serif;
            font-weight: 700; font-size: 1.1rem; color: #fff;
        }
        .footer-brand p {
            font-size: 0.8rem; color: var(--gray-500); margin: 0; line-height: 1.6;
        }
        .footer-social {
            display: flex; gap: 0.75rem; margin-top: 0.5rem;
        }
        .footer-social a {
            width: 32px; height: 32px; border-radius: 8px;
            background: rgba(255,255,255,0.06);
            display: grid; place-items: center;
            color: var(--gray-400); text-decoration: none;
            transition: background 0.2s, color 0.2s;
        }
        .footer-social a:hover { background: rgba(255,255,255,0.12); color: #fff; }
        .footer-col {
            display: flex; flex-direction: column; gap: 0.6rem;
        }
        .footer-col h4 {
            font-family: 'Inter', sans-serif;
            font-size: 0.72rem; font-weight: 700;
            text-transform: uppercase; letter-spacing: 0.08em;
            color: var(--gray-400); margin-bottom: 0.25rem;
        }
        .footer-col a {
            color: var(--gray-500); text-decoration: none;
            font-size: 0.85rem; transition: color 0.2s;
        }
        .footer-col a:hover { color: #fff; }
        .footer-bottom {
            max-width: 1080px; margin: 0 auto;
            padding: 1.5rem 0;
            margin-top: 2.5rem;
            border-top: 1px solid rgba(255,255,255,0.06);
        }
        .footer-bottom p {
            font-size: 0.75rem; color: var(--gray-500); margin: 0;
        }
        @media (max-width: 768px) {
            .footer-inner { grid-template-columns: 1fr 1fr; }
            .footer-brand { grid-column: 1 / -1; text-align: center; align-items: center; }
            .footer-social { justify-content: center; }
            .footer-bottom { text-align: center; }
        }

/* ========================================================================
   Cookie consent banner (AVG/GDPR)
   ======================================================================== */
.cookie-banner {
    position: fixed;
    inset: auto 16px 16px 16px;
    max-width: 720px;
    margin: 0 auto;
    background: #111827;
    color: #f9fafb;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    padding: 16px 20px;
}
.cookie-banner-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.cookie-banner-text {
    flex: 1 1 320px;
    font-size: 13px;
    line-height: 1.5;
}
.cookie-banner-text strong {
    color: #fff;
    font-weight: 600;
}
.cookie-banner-text a {
    color: #fb923c;
    text-decoration: underline;
}
.cookie-banner-buttons {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
}
.cookie-btn {
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: opacity 0.15s, background 0.15s;
}
.cookie-btn-secondary {
    background: transparent;
    color: #d1d5db;
    border-color: rgba(255, 255, 255, 0.15);
}
.cookie-btn-secondary:hover { background: rgba(255, 255, 255, 0.05); }
.cookie-btn-primary {
    background: #f97316;
    color: #fff;
}
.cookie-btn-primary:hover { background: #ea6c10; }
@media (max-width: 540px) {
    .cookie-banner { inset: auto 12px 12px 12px; padding: 14px 16px; }
    .cookie-banner-buttons { width: 100%; }
    .cookie-btn { flex: 1; }
}
