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

        :root {
            --bg: #f4f4f0;
            --surface: #ffffff;
            --border: #0f172a;
            --text: #0f172a;
            --muted: #5c6470;
            --accent: #ff90e8;
            --accent-2: #0f172a;
            --shadow: 4px 4px 0 var(--border);
            --shadow-sm: 3px 3px 0 var(--border);
            --radius: 8px;
            --radius-pill: 999px;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            -webkit-font-smoothing: antialiased;
            line-height: 1.5;
            overflow-x: hidden;
        }

        a { text-decoration: none; }

        .section-dots {
            position: fixed;
            top: 50%;
            right: 28px;
            z-index: 20;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            transform: translateY(-50%);
        }

        .section-dot {
            width: 9px;
            height: 9px;
            border: 2px solid #0f172a;
            border-radius: 50%;
            background: transparent;
            transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
        }

        .section-dot:hover,
        .section-dot.active {
            border-color: #0f172a;
            background: var(--accent);
        }

        .section-dot.active {
            border-color: #0f172a;
            background: var(--accent);
            box-shadow: 0 0 0 7px rgba(255, 144, 232, 0.22), 0 0 18px rgba(255, 144, 232, 0.28);
            transform: scale(1.05);
        }

        .wrap {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* NAV */
        nav {
            border-bottom: 2px solid var(--border);
            background: var(--bg);
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            font-size: 18px;
            color: var(--text);
            letter-spacing: -0.02em;
        }

        .logo-mark {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .logo-mark img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text);
            font-size: 15px;
            font-weight: 600;
        }

        .nav-links a:hover { color: var(--muted); }

        .nav-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            background: var(--surface);
            box-shadow: var(--shadow-sm);
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .nav-toggle span {
            width: 18px;
            height: 2px;
            background: var(--text);
            border-radius: 999px;
            transition: transform 0.18s ease, opacity 0.18s ease;
        }

        .nav-toggle.is-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-toggle.is-open span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.is-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--text);
            color: #fff !important;
            padding: 9px 18px;
            border: 2px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
        }

        .nav-cta:hover {
            background: #1f2937;
            transform: translate(-1px, -1px);
            box-shadow: 5px 5px 0 var(--border);
        }

        .nav-cta svg {
            width: 17px;
            height: 17px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2.4;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .nav-cta:hover svg,
        .nav-cta:focus-visible svg {
            animation: ctaArrow 0.65s ease-in-out infinite;
        }

        @keyframes ctaArrow {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(4px); }
        }

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 15px 26px;
            border-radius: var(--radius);
            font-size: 16px;
            font-weight: 700;
            border: 2px solid var(--border);
            box-shadow: var(--shadow);
            transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
        }

        .btn:hover {
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 var(--border);
        }

        .btn svg { width: 22px; height: 22px; flex-shrink: 0; }

        .btn .sub {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
            text-align: left;
        }

        .btn .sub small { font-size: 11px; font-weight: 500; opacity: 0.85; }

        .windows { background: var(--text); color: #fff; }
        .windows:hover { background: #1f2937; }

        .mac { background: var(--surface); color: var(--text); }
        .mac:hover { background: #fff; }

        .buttons { display: flex; gap: 14px; flex-wrap: wrap; }

        /* HERO */
        .hero {
            background: var(--bg);
            min-height: calc(100svh - 67px);
            padding: 28px 0;
            display: flex;
            align-items: center;
        }

        .hero-inner {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: var(--text);
            padding: 7px 14px;
            border: 2px solid var(--border);
            border-radius: var(--radius-pill);
            font-weight: 800;
            font-size: 13px;
            margin-bottom: 22px;
            box-shadow: 2px 2px 0 var(--border);
        }

        .badge::before {
            content: "";
            width: 7px; height: 7px;
            background: var(--text);
            border-radius: 50%;
        }

        h1 {
            font-size: clamp(34px, 5vw, 52px);
            line-height: 1.05;
            margin-bottom: 14px;
            letter-spacing: -0.03em;
            font-weight: 900;
            white-space: nowrap;
        }

        .hero h1 {
            font-size: clamp(26px, 3.2vw, 36px);
            text-align: center;
            white-space: normal;
        }

        /* TAGLINE — single line */
        .tagline {
            font-size: 18px;
            font-weight: 600;
            color: var(--muted);
            line-height: 1.4;
            margin: 0 auto 18px;
            white-space: nowrap;
        }

        /* BRAND TEXT COLORS */
        .trustpilot { color: #00b67a; }
        .yelp       { color: #d32323; }

        /* SOURCE PILLS */
        .sources {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
            margin: 0 0 16px;
        }

        .source-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--surface);
            border: 2px solid var(--border);
            border-radius: var(--radius-pill);
            padding: 7px 16px;
            font-size: 14px;
            font-weight: 700;
            color: var(--text);
            box-shadow: var(--shadow-sm);
        }

        .source-pill .logo-svg {
            width: 18px;
            height: 18px;
            display: block;
            flex-shrink: 0;
        }

        /* keep Yelp's taller icon visually balanced */
        .source-pill .logo-svg.yelp-mark { width: 15px; height: 18px; }

        .lead {
            font-size: 17px;
            color: var(--muted);
            margin: 0 auto 18px;
            max-width: 560px;
        }

        /* PRICE BLOCK */
        .price {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 18px;
            flex-wrap: wrap;
        }

        .price strong {
            color: var(--accent-2);
            font-size: 42px;
            font-weight: 800;
            line-height: 1;
            letter-spacing: -0.8px;
        }

        .price del {
            color: #aab1bb;
            font-size: 24px;
            font-weight: 600;
        }

        .price-meta {
            display: flex;
            flex-direction: column;
            line-height: 1.3;
            text-align: left;
        }

        /* RED FLASHING SAVE BADGE */
        @keyframes flashSave {
            0%, 100% {
                background: #e11d2a;
                box-shadow: 0 0 0 0 rgba(225, 29, 42, 0.55);
                transform: scale(1);
            }
            50% {
                background: #ff3742;
                box-shadow: 0 0 14px 4px rgba(225, 29, 42, 0.55);
                transform: scale(1.06);
            }
        }

        .price-meta .save {
            display: inline-block;
            background: #e11d2a;
            color: #fff;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.3px;
            padding: 4px 12px;
            border-radius: 12px;
            width: fit-content;
            margin-bottom: 6px;
            text-transform: uppercase;
            animation: flashSave 1s ease-in-out infinite;
            transform-origin: left center;
        }

        @media (prefers-reduced-motion: reduce) {
            .price-meta .save { animation: none; }
        }

        .price-meta small {
            color: var(--muted);
            font-size: 14px;
            font-weight: 500;
        }

        .hero .buttons { justify-content: center; }

        .hero-note {
            margin-top: 10px;
            font-size: 14px;
            color: var(--muted);
        }

        .visual {
            background: transparent;
            border-radius: 12px;
            padding: 0;
            border: 0;
            max-width: 900px;
            margin: 12px auto 12px;
        }

        .media-preview {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
            background: var(--surface);
            border: 2px solid var(--border);
            box-shadow: var(--shadow);
            aspect-ratio: 24 / 13;
        }

        .media-preview img,
        .media-preview video {
            width: 100%;
            height: 100%;
            display: block;
            border-radius: 8px;
            object-fit: contain;
        }

        .media-preview video {
            display: none;
            background: #000;
        }

        .media-preview.is-playing img,
        .media-preview.is-playing .play-button {
            display: none;
        }

        .media-preview.is-playing video {
            display: block;
        }

        .media-preview.is-full-window {
            position: fixed;
            inset: 0;
            z-index: 1000;
            width: 100vw;
            height: 100vh;
            border-radius: 0;
            background: #000;
        }

        .media-preview.is-full-window video {
            width: 100%;
            height: 100%;
            border-radius: 0;
            object-fit: contain;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 78px;
            height: 78px;
            border: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.96);
            color: #fff;
            cursor: pointer;
            transform: translate(-50%, -50%);
            box-shadow: 0 12px 32px rgba(31, 39, 51, 0.26);
            transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
        }

        .play-button svg {
            width: 78px;
            height: 78px;
        }

        .play-button circle {
            fill: transparent;
            stroke: rgba(31, 39, 51, 0.12);
            stroke-width: 1;
        }

        .play-button path { fill: var(--text); }

        .play-button:hover,
        .play-button:focus-visible {
            background: #fff;
            box-shadow: 0 16px 38px rgba(15, 23, 42, 0.24);
            transform: translate(-50%, -50%) scale(1.04);
        }

        .play-button:focus-visible {
            outline: 3px solid rgba(255, 144, 232, 0.65);
            outline-offset: 4px;
        }

        /* AUDIENCE MARQUEE */
        .audience-section {
            background: var(--bg);
            padding: 28px 0 40px;
            border-bottom: 2px solid var(--border);
            overflow: hidden;
        }

        .audience-label {
            text-align: center;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: -0.01em;
            color: var(--muted);
            margin-bottom: 22px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 24px;
        }

        .marquee-row {
            margin-bottom: 14px;
        }

        .marquee-row:last-child {
            margin-bottom: 0;
        }

        .marquee {
            overflow: hidden;
            mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
        }

        .marquee-track {
            display: flex;
            align-items: center;
            gap: 14px;
            width: max-content;
            animation: marquee-scroll 45s linear infinite;
        }

        .marquee-row--reverse .marquee-track {
            animation-direction: reverse;
            animation-duration: 52s;
        }

        @keyframes marquee-scroll {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        .audience-pill {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: var(--surface);
            border: 2px solid var(--border);
            border-radius: var(--radius-pill);
            font-size: 15px;
            font-weight: 700;
            color: var(--text);
            white-space: nowrap;
            box-shadow: var(--shadow-sm);
            flex-shrink: 0;
        }

        .audience-pill svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        @media (prefers-reduced-motion: reduce) {
            .marquee-track {
                animation: none;
            }
        }

        /* SECTION HEADINGS */
        .section {
            min-height: 100svh;
            padding: 56px 0;
            display: flex;
            align-items: center;
        }

        .section > .wrap,
        .hero > .wrap {
            width: 100%;
        }

        .section.alt { background: var(--bg); }

        .section-head {
            text-align: center;
            max-width: 640px;
            margin: 0 auto 36px;
        }

        .section-head h2 {
            font-size: 34px;
            letter-spacing: -0.04em;
            margin-bottom: 14px;
            font-weight: 900;
        }

        .section-head p { color: var(--muted); font-size: 17px; }

        /* FEATURE CARDS */
        .cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .card {
            background: var(--surface);
            border: 2px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
            transition: transform 0.12s ease, box-shadow 0.12s ease;
        }

        .card:hover {
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 var(--border);
        }

        .section.alt .card { background: var(--surface); }

        .card-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius);
            background: var(--accent);
            color: var(--text);
            border: 2px solid var(--border);
            box-shadow: 2px 2px 0 var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }

        .card-icon svg { width: 22px; height: 22px; }

        .card h3 { font-size: 18px; margin-bottom: 8px; }
        .card p { color: var(--muted); font-size: 15px; }

        /* STEPS */
        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .step {
            background: var(--surface);
            border: 2px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow);
        }

        .step-num {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: var(--accent);
            color: var(--text);
            border: 2px solid var(--border);
            box-shadow: 2px 2px 0 var(--border);
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .step h3 { font-size: 17px; margin-bottom: 8px; }
        .step p { color: var(--muted); font-size: 15px; }

        /* ============ PRICING (revamped) ============ */
        .pricing-card {
            position: relative;
            max-width: 480px;
            margin: 0 auto;
            background: var(--surface);
            border: 2px solid var(--border);
            border-radius: var(--radius);
            padding: 46px 40px 40px;
            text-align: center;
            box-shadow: var(--shadow);
            overflow: hidden;
        }
/* corner ribbon */
        .pricing-ribbon {
            position: absolute;
            top: 22px;
            right: -42px;
            transform: rotate(45deg);
            background: #e11d2a;
            color: #fff;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            padding: 7px 54px;
            box-shadow: none;
        }

        .pricing-card .launch-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: var(--text);
            padding: 7px 14px;
            border: 2px solid var(--border);
            border-radius: var(--radius-pill);
            font-weight: 800;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 18px;
            box-shadow: 2px 2px 0 var(--border);
        }

        .pricing-card .launch-badge::before {
            content: "";
            width: 7px; height: 7px;
            background: var(--text);
            border-radius: 50%;
        }

        .price-row {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 12px;
            margin: 6px 0 2px;
        }

        .price-row .new {
            font-size: 78px;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -2px;
            line-height: 1;
        }

        .price-row .new sup {
            font-size: 34px;
            font-weight: 700;
            top: -0.7em;
        }

        .price-row .old {
            font-size: 34px;
            font-weight: 600;
            color: #e11d2a;
        }

        .price-once {
            color: var(--muted);
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 8px;
        }

        .save-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 34px;
            background: #e11d2a;
            color: #fff;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0;
            text-transform: uppercase;
            padding: 7px 16px;
            border-radius: 8px;
            box-shadow: 0 6px 14px rgba(225, 29, 42, 0.18);
        }

        .check-list {
            list-style: none;
            text-align: left;
            margin: 28px 0 8px;
            display: grid;
            gap: 14px;
        }

        .check-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            color: #3c4450;
        }

        .check-list li .tick {
            width: 22px;
            height: 22px;
            flex-shrink: 0;
            border-radius: 50%;
            background: var(--accent);
            border: 2px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .check-list li .tick svg {
            width: 13px;
            height: 13px;
            color: var(--text);
        }

        /* big catchy buy button */
        .buy-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            width: 100%;
            margin-top: 26px;
            padding: 18px 26px;
            border-radius: var(--radius);
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            background: var(--text);
            border: 2px solid var(--border);
            box-shadow: var(--shadow);
            transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
        }

        .buy-btn svg { width: 26px; height: 21px; }

        .buy-btn:hover {
            background: #1f2937;
            transform: translate(-2px, -2px);
            box-shadow: 6px 6px 0 var(--border);
        }

        .buy-note {
            margin-top: 16px;
            font-size: 13px;
            color: var(--muted);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .buy-note span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .buy-note svg {
            width: 14px;
            height: 14px;
            color: var(--text);
            flex-shrink: 0;
        }

        /* FAQ */
        .faq {
            max-width: 720px;
            margin: 0 auto;
            display: grid;
            gap: 14px;
        }

        .faq-item {
            background: var(--surface);
            border: 2px solid var(--border);
            border-radius: var(--radius);
            padding: 22px 24px;
            box-shadow: var(--shadow-sm);
        }

        .faq-item h3 { font-size: 16px; margin-bottom: 8px; }
        .faq-item p { color: var(--muted); font-size: 15px; }

        /* CTA STRIP */
        .cta-strip {
            background: var(--text);
            text-align: center;
            min-height: 100svh;
            padding: 56px 24px;
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-top: 2px solid var(--border);
        }

        .cta-strip h2 {
            font-size: 34px;
            margin: 0 auto 14px;
            letter-spacing: -0.04em;
            font-weight: 900;
            max-width: 720px;
        }
        .cta-strip p {
            color: #cbd5e1;
            font-size: 17px;
            margin: 0 auto 28px;
            max-width: 720px;
        }
        .cta-strip .buttons { justify-content: center; }
        .cta-strip .mac {
            background: var(--surface);
            color: var(--text);
        }
        .cta-strip .windows {
            background: var(--accent);
            color: var(--text);
        }
        .cta-strip .windows:hover { background: #ff7de0; }

        /* FOOTER */
        footer {
            border-top: 2px solid var(--border);
            padding: 36px 0;
            background: var(--bg);
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-inner p { color: var(--muted); font-size: 14px; }

        .footer-brand {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
            line-height: 1;
        }

        .footer-logo-mark {
            width: 18px;
            height: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo-mark img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: contain;
        }

        .footer-links { display: flex; gap: 22px; }
        .footer-links a { color: var(--muted); font-size: 14px; }
        .footer-links a:hover { color: var(--text); }

        /* LEGAL PAGES */
        .legal-main {
            background: var(--bg);
            padding: 64px 0;
        }

        .legal-layout {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 28px;
            max-width: 860px;
        }

        .legal-header {
            border-bottom: 1px solid var(--border);
            padding-bottom: 24px;
        }

        .legal-kicker {
            color: var(--text);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.08em;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .legal-header h1 {
            font-size: 44px;
            letter-spacing: -0.8px;
            line-height: 1.08;
            margin-bottom: 14px;
            white-space: normal;
        }

        .legal-updated {
            color: var(--muted);
            font-size: 15px;
        }

        .legal-card {
            background: var(--surface);
            border: 2px solid var(--border);
            border-radius: var(--radius);
            padding: 34px;
            box-shadow: var(--shadow);
        }

        .legal-card section + section {
            border-top: 1px solid var(--border);
            margin-top: 28px;
            padding-top: 28px;
        }

        .legal-card h2 {
            font-size: 22px;
            letter-spacing: -0.2px;
            margin-bottom: 12px;
        }

        .legal-card p,
        .legal-card li {
            color: var(--muted);
            font-size: 16px;
            line-height: 1.7;
        }

        .legal-card p + p,
        .legal-card ul + p,
        .legal-card p + ul {
            margin-top: 12px;
        }

        .legal-card ul {
            margin: 12px 0 0 22px;
        }

        .legal-card a {
            color: var(--text);
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .legal-card strong {
            color: var(--text);
        }

        /* AUTHOR CREDIT */
        .credit-badge {
            position: fixed;
            right: 22px;
            bottom: 22px;
            z-index: 55;
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            background: var(--surface);
            border: 2px solid var(--border);
            border-radius: var(--radius-pill);
            box-shadow: var(--shadow-sm);
            font-size: 12px;
            font-weight: 700;
            color: var(--text);
            transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
        }

        .credit-badge:hover {
            background: var(--accent);
            transform: translate(-1px, -1px);
            box-shadow: 5px 5px 0 var(--border);
        }

        .credit-badge:focus-visible {
            outline: 3px solid rgba(255, 144, 232, 0.65);
            outline-offset: 3px;
        }

        /* RESPONSIVE */
        @media (max-width: 860px) {
            .section-dots { display: none; }
            .wrap { padding: 0 20px; }
            nav { position: relative; }
            .nav-inner { padding: 14px 20px; }
            .logo { font-size: 16px; }
            .logo-mark { width: 28px; height: 28px; }
            .nav-toggle { display: inline-flex; }
            .nav-links {
                position: absolute;
                top: calc(100% + 20px);
                left: 20px;
                right: 20px;
                z-index: 30;
                display: grid;
                gap: 4px;
                padding: 12px;
                background: var(--surface);
                border: 2px solid var(--border);
                border-radius: var(--radius);
                box-shadow: var(--shadow);
                opacity: 0;
                visibility: hidden;
                transform: translateY(-8px);
                pointer-events: none;
                transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
            }
            .nav-links.is-open {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                pointer-events: auto;
            }
            .nav-links a {
                display: block;
                padding: 11px 12px;
                border-radius: 8px;
                font-size: 15px;
            }
            .nav-links a:hover { background: var(--bg); }
            .nav-links .nav-cta {
                text-align: center;
                margin-top: 4px;
            }
            .hero,
            .section,
            .cta-strip {
                min-height: 100svh;
                padding: 48px 0;
                align-items: flex-start;
            }
            .cta-strip {
                justify-content: center;
                padding-left: 20px;
                padding-right: 20px;
            }
            .cta-strip h2 {
                max-width: 520px;
                font-size: 32px;
            }
            .cta-strip p {
                max-width: 520px;
                font-size: 16px;
            }
            .cta-strip .buttons {
                width: min(100%, 360px);
                flex-direction: column;
                align-items: stretch;
                margin: 0 auto;
            }
            .cta-strip .btn {
                width: 100%;
                justify-content: center;
            }
            h1 {
                white-space: normal;
            }
            .tagline { font-size: 15px; white-space: normal; }
            .lead { font-size: 17px; }
            .visual {
                padding: 0;
                margin-bottom: 24px;
            }
            .cards, .steps { grid-template-columns: 1fr; }
            .cards { gap: 14px; }
            .card, .step { padding: 22px; }
            .pricing-card { padding: 40px 26px 34px; }
            .price-row .new { font-size: 64px; }
            .footer-inner {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        @media (max-width: 520px) {
            .nav-inner { padding: 12px 16px; }
            .logo { font-size: 15px; gap: 8px; }
            .nav-links {
                left: 16px;
                right: 16px;
                top: calc(100% + 16px);
            }
            .nav-cta {
                padding: 8px 12px;
                font-size: 14px;
            }
            .hero,
            .section,
            .cta-strip {
                min-height: auto;
                padding: 52px 22px;
            }
            h1 {
                letter-spacing: -0.03em;
                white-space: normal;
            }
            .tagline { font-size: 13px; }
            .source-pill {
                padding: 6px 12px;
                font-size: 13px;
            }
            .price {
                align-items: center;
                flex-direction: column;
                gap: 8px;
            }
            .price-meta { text-align: center; }
            .price-meta .save { margin: 0 auto 6px; }
            .buttons {
                width: 100%;
                flex-direction: column;
            }
            .btn {
                width: 100%;
                justify-content: center;
            }
            .section-head {
                margin-bottom: 28px;
            }
            .section-head h2,
            .cta-strip h2 {
                font-size: 26px;
                letter-spacing: -0.3px;
            }
            .cta-strip p {
                font-size: 15px;
                line-height: 1.45;
                max-width: 340px;
                margin-bottom: 24px;
            }
            .cta-strip .buttons {
                width: min(100%, 348px);
                gap: 12px;
            }
            .cta-strip .btn {
                min-height: 58px;
                padding: 14px 18px;
            }
            .pricing-card {
                padding: 34px 18px 28px;
            }
            .pricing-ribbon {
                right: -48px;
                font-size: 11px;
            }
            .check-list li {
                align-items: flex-start;
            }
            .buy-note {
                align-items: flex-start;
                flex-direction: column;
                gap: 10px;
            }
            .faq-item {
                padding: 20px;
            }
            .footer-links {
                flex-wrap: wrap;
                gap: 14px;
            }
            .legal-main {
                padding: 44px 0;
            }
            .legal-header h1 {
                font-size: 32px;
            }
            .legal-card {
                padding: 24px 20px;
            }
            .credit-badge {
                right: 14px;
                bottom: 14px;
                font-size: 11px;
                padding: 7px 12px;
            }
        }
