        :root {
            --primary: #0078d4;
            --primary-dark: #005a9e;
            --bg-dark: #0a0a0a;
            --text-light: #ffffff;
            --text-muted: #dadada;
            --glass: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --accent: #00c2ff;

            /* Spacing scale (rem). Base 0.25rem = 4px. */
            --s-xs: 0.25rem;
            --s-sm: 0.5rem;
            --s-md: 0.75rem;
            --s-lg: 1rem;
            --s-xl: 1.25rem;
            --s-2xl: 1.5rem;
            --s-3xl: 2rem;
            --s-4xl: 2.5rem;
            --s-5xl: 3rem;
            --s-6xl: 4rem;
            --s-7xl: 5rem;
            --s-8xl: 6rem;
            --section-x: 1.5rem;
            --section-y: 8rem;
            --nav-offset: 6.5rem;
            --subpage-section-y: 5.5rem;
        }

        html {
            overflow-x: hidden;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Background effects */
        .bg-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 50% 50%, #1a1a2e 0%, #0a0a0a 100%);
            z-index: -2;
        }

        .bg-accent {
            position: fixed;
            top: -10%;
            right: -10%;
            width: 50%;
            height: 50%;
            background: radial-gradient(circle, rgba(0, 120, 212, 0.15) 0%, transparent 70%);
            z-index: -1;
            filter: blur(80px);
        }

                /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: calc(var(--s-lg) - 0.3125rem) var(--section-x);
            display: flex;
            align-items: center;
            gap: var(--s-3xl);
            z-index: 1000;
            transition: background 0.3s ease, backdrop-filter 0.3s ease;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--glass-border);
            background: rgba(10, 10, 10, 0.35);
        }

        nav.scrolled {
            background: rgba(10, 10, 10, 0.8);
            padding: calc(var(--s-sm) - 0.3125rem) var(--section-x);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: var(--s-lg);
            font-weight: 900;
            font-size: 2.5rem;
            color: var(--text-light);
            text-decoration: none;
        }

        nav .logo {
            font-size: 1.7rem;
        }

        .logo img {
            height: 70px;
            width: auto;
        }

        .nav-toggle {
            display: none;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            border-radius: 0.65rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
            box-shadow: 0 10px 18px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
            color: var(--text-light);
            cursor: pointer;
            transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
            backdrop-filter: blur(6px);
            z-index: 2;
        }

        .nav-toggle:hover {
            border-color: rgba(255, 255, 255, 0.35);
            background: linear-gradient(155deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
            transform: translateY(-1px);
        }

        .nav-toggle:active {
            transform: translateY(0);
        }

        .nav-toggle:focus-visible {
            outline: 2px solid rgba(0, 194, 255, 0.8);
            outline-offset: 2px;
        }

        .nav-toggle-label {
            font-size: 0.92rem;
            font-weight: 650;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--text-light);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: var(--s-3xl);
            flex: 1;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: var(--s-3xl);
            flex-wrap: nowrap;
            justify-content: center;
            flex: 1;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.86);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: color 0.3s;
        }

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

        .nav-cta {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            flex-shrink: 0;
        }

        .nav-cta .cta-button {
            padding: 0.55rem 1.2rem;
            font-size: 1.02rem;
            font-weight: 600;
            border-radius: 999px;
            transition: transform 0.2s, box-shadow 0.3s, filter 0.2s;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .nav-cta .cta-button:hover {
            transform: translateY(-1px);
            color: white;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 7.5rem 10% var(--s-6xl);
            position: relative;
            --hero-line-gap: var(--s-4xl);
        }

        .hero.is-subpage {
            min-height: auto;
            padding: 8.75rem 10% var(--s-5xl);
        }

        .hero.is-subpage h1 {
            font-size: clamp(2.6rem, 2vw + 1.9rem, 3.8rem);
        }

        .hero.is-subpage h1 .hero-brand {
            font-size: 1.25em;
            margin-top: 0;
            margin-bottom: var(--s-lg);
        }

        .hero.is-subpage p {
            font-size: 1.35rem;
            margin-bottom: var(--s-3xl);
        }

        .hero h1 {
            font-size: clamp(3rem, 2.3vw + 2rem, 4.6rem);
            font-weight: 800;
            margin-bottom: calc(var(--hero-line-gap) * 0.5);
            line-height: 1.18;
            padding-bottom: 0.12em;
            overflow: visible;
        }

        .hero h1 .hero-brand {
            display: block;
            font-size: 1.78em;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-weight: 900;
            letter-spacing: -0.02em;
            text-transform: none;
            color: var(--text-light);
            -webkit-text-stroke: 0.01em rgba(255, 255, 255, 0.08);
            margin-bottom: calc((var(--hero-line-gap) + var(--s-5xl)) * 0.729);
            margin-top: 0;
            line-height: 0.95;
            text-shadow: 0 0 11px rgba(255, 255, 255, 0.24);
        }

        .hero h1 .hero-headline {
            display: block;
            background: linear-gradient(135deg, #fff 0%, #b0b0b0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            padding-bottom: 0.12em;
            overflow: visible;
        }

        .headline-gradient {
            display: block;
            font-size: clamp(3rem, 2.3vw + 2rem, 4.6rem);
            font-weight: 800;
            line-height: 1.18;
            background: linear-gradient(135deg, #fff 0%, #b0b0b0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            padding-bottom: 0.12em;
            overflow: visible;
        }

        .hero p {
            font-size: 1.5rem;
            color: var(--text-muted);
            max-width: 1100px;
            margin-top: 0;
            margin-bottom: calc(var(--s-lg) * 0.9);
            line-height: 1.35;
            padding-bottom: 0.12em;
            overflow: visible;
        }

        .hero p:last-of-type {
            margin-bottom: var(--s-2xl);
        }

        .subtitle-accent-line {
            width: 140px;
            height: 3px;
            margin: var(--s-lg) auto 0;
            border-radius: 999px;
            background: linear-gradient(90deg, #0a72d8, #2a9cff);
            opacity: 0.9;
        }

        .cta-button {
            padding: 0.855rem 2.2rem;
            font-size: 1.05rem;
            font-weight: 600;
            background: linear-gradient(135deg, #0a72d8, #2a9cff);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 999px;
            cursor: pointer;
            transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
            text-decoration: none;
            margin-bottom: var(--s-xs);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            box-shadow: 0 12px 26px rgba(0, 120, 212, 0.28);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            filter: brightness(1.06);
            box-shadow: 0 16px 32px rgba(0, 120, 212, 0.35);
        }

        .cta-button:active {
            transform: translateY(0);
            filter: brightness(0.98);
            box-shadow: 0 8px 18px rgba(0, 120, 212, 0.22);
        }

        .cta-button:focus-visible {
            outline: 2px solid rgba(255, 255, 255, 0.65);
            outline-offset: 3px;
        }

        .hero .cta-button {
            background: var(--primary);
            color: #fff;
        }

        .hero > a {
            display: inline-block;
            margin-top: var(--s-lg);
            margin-bottom: var(--s-lg);
        }

        .hero img.no-expand {
            filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.25))
                    drop-shadow(0 0 12px rgba(255, 255, 255, 0.12));
        }

        .hero .cta-button:hover {
            background: var(--primary-dark);
            color: #fff;
        }

        .hero-note {
            margin-top: var(--s-xl);
            padding: var(--s-lg) min(35%, 12rem);
            background: none;
            border: none;
            border-top: 1px solid rgba(255, 255, 255, 0.25);
            border-bottom: 1px solid rgba(255, 255, 255, 0.25);
            font-size: 1.05rem;
            line-height: 2.25;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            color: #fff;
            text-align: center;
        }

        /* Sections */
        section {
            padding: var(--section-y) var(--section-x);
            scroll-margin-top: var(--nav-offset);
        }

        section + section {
            position: relative;
        }

        .hero h1,
        .section-title h2,
        .page-title h1 {
            text-wrap: balance;
        }

        body.subpage section {
            padding: var(--subpage-section-y) var(--section-x);
        }

        body.subpage .page-title,
        body.subpage .hero.is-subpage {
            padding: calc(var(--nav-offset) + var(--s-2xl)) 10% var(--s-4xl);
            display: block;
            text-align: center;
        }

        body.subpage .hero.is-subpage h1 {
            margin-bottom: var(--s-md);
        }

        body.subpage .hero.is-subpage p {
            margin-bottom: 0;
        }

        body.subpage .page-title + section,
        body.subpage .hero.is-subpage + section {
            padding-top: var(--s-4xl);
        }

        body.subpage section:not(.page-title):not(.hero) {
            position: relative;
        }

        section a {
            color: var(--accent);
            text-decoration: none;
        }

        section a:hover {
            color: #fff;
            text-decoration: underline;
        }

        section .cta-button:hover {
            text-decoration: none;
        }

        .tray-options-table {
            width: 100%;
            max-width: 560px;
            margin: var(--s-lg) 0 0;
            border-collapse: collapse;
            border: none;
        }
        .tray-options-table th,
        .tray-options-table td {
            padding: var(--s-sm) var(--s-lg) var(--s-sm) 0;
            vertical-align: top;
            text-align: left;
            border: none;
            color: var(--text-muted);
        }
        .tray-options-table th {
            font-weight: 600;
            color: var(--text-light);
            white-space: nowrap;
            width: 1%;
        }

        .referral-steps {
            margin: var(--s-lg) 0 var(--s-2xl);
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: var(--s-md);
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .referral-steps li {
            line-height: 1.5;
        }

        .referral-steps strong {
            color: var(--text-light);
        }

        .section-title {
            text-align: center;
            margin-bottom: var(--s-2xl);
        }

        .section-title h2 {
            font-size: clamp(2.2rem, 1.8vw + 1.7rem, 3.2rem);
            font-weight: 800;
            margin-bottom: var(--s-sm);
            line-height: 1.18;
            background: linear-gradient(135deg, #fff 0%, #b0b0b0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            padding-bottom: 0.12em;
            overflow: visible;
        }

        .section-title p {
            color: var(--text-muted);
            font-size: 1.35rem;
            max-width: min(1000px, 95vw);
            margin: 0 auto;
            line-height: 1.4;
            text-wrap: balance;
        }

        /* Emphasize main referral heading slightly more */
        #referral-program .section-title h2 {
            font-size: clamp(2.4rem, 1.9vw + 1.9rem, 3.4rem);
        }

        .page-title {
            text-align: center;
            padding: 8.75rem 10% var(--s-5xl);
        }

        .page-title h1 {
            font-size: clamp(2.6rem, 2vw + 1.9rem, 3.8rem);
            font-weight: 800;
            margin-bottom: var(--s-md);
            line-height: 1.18;
            background: linear-gradient(135deg, #fff 0%, #b0b0b0 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            padding-bottom: 0.12em;
            overflow: visible;
        }

        .page-title p {
            color: var(--text-muted);
            font-size: 1.35rem;
            max-width: min(1000px, 95vw);
            margin: 0 auto;
            line-height: 1.4;
            text-wrap: balance;
        }

        body.home #features {
            padding-top: var(--s-6xl);
            padding-bottom: var(--s-5xl);
        }

        body.home #demo {
            padding-top: var(--s-4xl);
            padding-bottom: var(--s-6xl);
        }

        .demo-section {
            max-width: 1240px;
            margin: 0 auto;
        }

        .demo-video-frame {
            width: min(1120px, 100%);
            margin: 0 auto;
            padding: clamp(0.75rem, 1.5vw, 1.25rem);
            background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1.25rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
            backdrop-filter: blur(10px);
        }

        .demo-video-frame video {
            display: block;
            width: 100%;
            height: auto;
            max-height: 78vh;
            border-radius: 0.9rem;
            background: #000;
        }

        body.home #how-it-works {
            padding-top: 8.75rem;
        }

        body.home #how-it-works .section-title {
            margin-top: var(--s-xl);
        }

        body.home #how-it-works .section-title p {
            max-width: min(980px, 95vw);
            font-size: 1.25rem;
            line-height: 1.45;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 5px;
            max-width: 1160px;
            width: 100%;
            margin: 0 auto;
            justify-content: center;
            align-items: stretch;
        }

        .features-grid.guides-grid {
            grid-template-columns: repeat(4, minmax(0, 1fr));
            max-width: 1240px;
        }

        .feature-card {
            background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1.125rem;
            padding: var(--s-4xl) var(--s-2xl) var(--s-xl);
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(8px);
            box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            text-align: center;
            gap: 0;
            height: 100%;
            min-height: 14rem;
        }

        .guides-grid .feature-card {
            padding: var(--s-3xl) var(--s-xl) var(--s-xl);
            min-height: 12.5rem;
            gap: var(--s-md);
        }

        .feature-card:hover {
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.4), 0 0 24px rgba(255, 255, 255, 0.12);
        }

        .feature-card:hover h3 {
            color: #fff;
            text-shadow: 0 0 16px rgba(255, 255, 255, 0.4);
        }

        .feature-card h3 {
            font-size: 1.6rem;
            line-height: 1.2;
            margin: 0;
            min-height: 2em;
            color: rgba(255, 255, 255, 0.92);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
            width: 100%;
        }

        .feature-card p {
            color: var(--text-muted);
            width: 100%;
            margin: var(--s-sm) 0 0;
            font-size: 1.02rem;
            line-height: 1.55;
            padding: 0;
        }

        #features .feature-card h3 {
            font-size: 1.25rem;
            line-height: 1.25;
        }

        #features .feature-card p {
            font-size: 1rem;
            line-height: 1.45;
        }

        .guides-grid .feature-card h3 {
            font-size: 1.4rem;
            min-height: 1.6em;
        }

        .guides-grid .feature-card p {
            font-size: 0.98rem;
            margin-top: 0;
        }

        .feature-card .cta-button {
            margin: 0;
        }

        .guides-grid .feature-card .cta-button {
            margin-top: auto;
        }

        .guides-grid .feature-card .cta-button {
            font-size: 0.92rem;
            padding: 0.5rem 1.1rem;
            border-radius: 999px;
            letter-spacing: normal;
        }

        .img-placeholder {
            background: var(--glass);
            border: 2px dashed var(--glass-border);
            padding: var(--s-5xl) var(--s-3xl);
            border-radius: var(--s-md);
            text-align: center;
            color: var(--text-muted);
            width: min(520px, 100%);
        }

        .howto-callout {
            background: rgba(0, 120, 212, 0.08);
            border: 1px solid rgba(0, 120, 212, 0.25);
            border-radius: 0.875rem;
            padding: var(--s-xl) var(--s-2xl);
            color: var(--text-light);
            backdrop-filter: blur(6px);
        }

        .howto-callout strong {
            color: var(--accent);
        }

        .workflow-break {
            margin: var(--s-lg) auto;
            max-width: 960px;
            text-align: center;
        }

        .workflow-break.section-title {
            margin-top: var(--s-4xl);
            margin-bottom: var(--s-4xl);
        }

        /* Workflow Section */
        .workflow-container {
            display: flex;
            flex-direction: column;
            gap: var(--s-8xl);
        }

        #referral-program .workflow-item {
            justify-content: center;
            flex-wrap: wrap;
            gap: var(--s-3xl);
        }

        #referral-program .workflow-content {
            max-width: 420px;
            text-align: left;
        }

        #referral-program .workflow-content .referral-steps + h3 {
            margin-top: var(--s-4xl);
        }

        .workflow-item {
            display: flex;
            align-items: stretch;
            gap: var(--s-6xl);
        }

        #how-it-works .workflow-item {
            align-items: flex-start;
        }

        .workflow-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .workflow-content {
            flex: 1;
        }

        .workflow-content h3 {
            font-size: 2rem;
            margin-bottom: var(--s-2xl);
            color: var(--text-light);
        }

        #referral-program .workflow-content h3 {
            font-size: 1.25rem;
        }

        .workflow-content p {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: var(--s-2xl);
        }

        .workflow-content ul li,
        .workflow-content ul li strong {
            color: var(--text-muted);
        }

        .workflow-visual {
            flex: 0 0 auto;
            width: fit-content;
            max-width: 100%;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            height: 21.875rem;
            border-radius: var(--s-sm);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        #how-it-works .workflow-visual {
            align-self: flex-start;
        }

        #how-it-works .workflow-visual:not(.workflow-visual-combined) {
            width: min(520px, 45vw);
            max-width: 100%;
            height: auto;
            aspect-ratio: 778 / 488;
        }

        .workflow-visual.is-boost {
            height: calc(21.875rem * 1.2);
        }

        .workflow-visual img {
            border-radius: var(--s-sm);
            max-height: 100%;
            max-width: 100%;
            height: auto;
            width: auto;
            object-fit: contain;
            cursor: pointer;
            touch-action: manipulation;
        }

        #how-it-works .workflow-visual:not(.workflow-visual-combined) img {
            width: 100%;
            height: auto;
            max-height: none;
        }

        .workflow-visual.workflow-visual-combined {
            height: auto;
            width: min(820px, 100%);
            max-width: 820px;
            padding: 0;
            align-items: stretch;
            background: none;
            border: none;
        }

        .workflow-visual.workflow-visual-combined img {
            max-height: none;
            width: 100%;
            height: auto;
        }

        .img-expand-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            padding: var(--s-3xl);
            overflow: auto;
            -webkit-overflow-scrolling: touch;
            min-height: 100vh;
            min-height: 100dvh;
            touch-action: manipulation;
        }

        .img-expand-overlay.is-open {
            display: flex;
        }

        .img-expand-content {
            cursor: default;
            max-width: 92vw;
            max-height: 92vh;
            max-height: 92dvh;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
        }

        .img-expand-content img {
            max-width: 90vw;
            max-height: 90vh;
            max-height: 90dvh;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: var(--s-sm);
            cursor: pointer;
            touch-action: manipulation;
        }

        .img-expand-content.is-pair img {
            max-width: 45vw;
        }

        #system-tray .workflow-visual {
            height: auto;
            max-width: 700px;
            align-items: flex-start;
        }

        #system-tray .workflow-visual img {
            max-height: none;
            max-width: 100%;
        }

        .workflow-visual-combined {
            width: 100%;
            max-width: 960px;
            height: auto;
        }

        .workflow-visual-row {
            display: flex;
            gap: 0;
            align-items: stretch;
            justify-content: center;
            box-sizing: border-box;
            width: 100%;
            height: auto;
        }

        .workflow-visual-row img {
            object-fit: contain;
            border-radius: var(--s-sm);
            display: block;
            width: auto;
            height: auto;
            flex: 0 0 auto;
        }

        .workflow-visual::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(0, 120, 212, 0.1) 0%, transparent 60%);
            animation: rotate 20s linear infinite;
            pointer-events: none;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Comparison Table */
        .comparison-table-wrap {
            margin-top: calc(var(--s-2xl) - 0.5rem);
            max-width: min(880px, 100%);
            margin-left: auto;
            margin-right: auto;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, rgba(220, 228, 240, 0.1) 40%, rgba(255, 255, 255, 0.08) 100%);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 0.45rem;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.14);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24), 0 1px 0 rgba(255, 255, 255, 0.1) inset;
        }

        .comparison-scrollbar-top {
            display: none;
            width: 100%;
            min-width: 100%;
            height: 8px;
            overflow-x: auto;
            overflow-y: hidden;
            margin: -1px 0 0 0;
            padding: 0;
            border: 0;
            background: transparent;
            scrollbar-width: auto;
            line-height: 0;
            font-size: 0;
        }

        .comparison-scrollbar-top-inner {
            height: 0;
        }

        .comparison-scrollbar-top::-webkit-scrollbar {
            height: 8px;
        }

        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin-top: 0;
            background: transparent;
            border: 0;
            border-radius: 0;
            font-size: 0.9375rem;
            line-height: 1.5;
            font-feature-settings: "tnum";
        }

        .comparison-table-scroll {
            overflow: visible;
        }

        .comparison-table th, .comparison-table td {
            padding: 1rem 1.25rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
            vertical-align: middle;
            transition: background 0.2s ease, color 0.15s ease;
        }

        .comparison-table thead tr {
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.12) 25%, rgba(240, 244, 252, 0.1) 50%, rgba(255, 255, 255, 0.06) 100%);
        }

        .comparison-table th {
            font-weight: 600;
            color: #f2f2f2;
            position: sticky;
            top: 0;
            z-index: 10;
            padding: 1.125rem 1.25rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
            letter-spacing: 0.02em;
        }

        .comparison-table th:first-child {
            width: auto;
            font-size: 0.75rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.06) 100%);
            border-right: 1px solid rgba(255, 255, 255, 0.08);
            padding-left: 1.5rem;
        }

        .comparison-table th:nth-child(2) {
            font-size: 1rem;
            color: #fff;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.06) 100%);
            border-right: 1px solid rgba(255, 255, 255, 0.08);
        }

        .comparison-table th:nth-child(n+3) {
            font-size: 0.875rem;
            font-weight: 500;
            text-align: center;
            color: rgba(255, 255, 255, 0.75);
        }

        .comparison-table tbody tr:nth-child(even) {
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, transparent 30%, transparent 70%, rgba(255, 255, 255, 0.01) 100%);
        }

        .comparison-table tbody tr:last-child td {
            border-bottom: none;
            padding-bottom: 1.25rem;
        }

        .comparison-table tbody tr:hover {
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.04) 100%);
        }

        .comparison-table td:first-child {
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            width: auto;
            font-size: 0.9375rem;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.03) 100%);
            border-right: 1px solid rgba(255, 255, 255, 0.07);
            padding-left: 1.5rem;
        }

        .comparison-table tbody tr:nth-child(even) td:first-child {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
        }

        .comparison-table td:nth-child(2) {
            font-size: 0.9375rem;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
            color: rgba(255, 255, 255, 0.95);
        }

        .comparison-table tbody tr:hover td:nth-child(2) {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.07) 100%);
        }

        .comparison-table td:nth-child(n+3) {
            font-size: 0.875rem;
            color: rgba(255, 255, 255, 0.72);
            text-align: center;
        }

        .comparison-table td:nth-child(2).highlight,
        .comparison-table .highlight {
            color: #fff;
            font-weight: 600;
        }

        @media (max-width: 1200px) {
            .comparison-table {
                font-size: 0.875rem;
            }
            .comparison-table th, .comparison-table td {
                padding: 0.875rem 1rem;
            }
        }

        @media (max-width: 768px) {
            .comparison-scrollbar-top {
                display: block;
            }

            .comparison-table-scroll {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
        }

        /* Blend Features + Capabilities */
        body.home #full-features {
            padding-top: var(--s-4xl);
            position: relative;
        }

        body.home #full-features .section-title {
            margin-bottom: var(--s-3xl);
            position: relative;
            z-index: 1;
        }

        /* Additional Features List */
        .features-list-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 5px;
            max-width: 1160px;
            margin: 0 auto;
            align-items: stretch;
            position: relative;
            z-index: 1;
        }

        .feature-list-group h4 {
            font-size: 1.25rem;
            margin-bottom: 0;
            color: #f1f1f1;
            text-transform: none;
            letter-spacing: 0.2px;
            text-align: center;
            padding-top: 10px;
            padding-bottom: 0;
        }

        .feature-list-group ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: var(--s-sm);
        }

        .feature-list-group {
            background: linear-gradient(155deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 1rem;
            padding: clamp(0.5rem, 1vw, 0.75rem);
            padding-bottom: 2rem;
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
            display: flex;
            flex-direction: column;
            gap: var(--s-lg);
        }

        .feature-list-group li {
            margin-bottom: 0;
            color: var(--text-muted);
            display: flex;
            align-items: flex-start;
            gap: var(--s-md);
            line-height: 1.45;
        }

        .feature-list-group li::before {
            content: '✓';
            color: var(--accent);
            font-weight: bold;
            margin-left: 5px;
            display: inline-block;
        }

        /* Reviews */
        #reviews {
            --reviews-visible-cards: 1;
            --reviews-layout-cards: 1.22;
            --reviews-gap: clamp(0.875rem, 1.8vw, 1.25rem);
            --reviews-side-peek: clamp(1rem, 3vw, 2rem);
            --reviews-card-width: clamp(21rem, 31vw, 23.5rem);
            --reviews-right-inset: var(--reviews-side-peek);
            --reviews-left-inset: calc(var(--reviews-side-peek) + var(--reviews-gap) + 0.35rem);
            padding: var(--s-md) 0 var(--s-8xl);
            position: relative;
        }

        .reviews-carousel {
            width: 100vw;
            max-width: none;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
        }

        .reviews-carousel-viewport {
            overflow: hidden;
            padding: var(--s-xs) var(--reviews-right-inset) var(--s-sm) var(--reviews-left-inset);
            user-select: none;
            -webkit-user-select: none;
            -ms-user-select: none;
            scrollbar-width: none;
        }

        .reviews-carousel-viewport::-webkit-scrollbar {
            width: 0;
            height: 0;
        }

        .reviews-carousel-viewport * {
            user-select: none;
            -webkit-user-select: none;
            -ms-user-select: none;
        }

        .reviews-track {
            display: flex;
            gap: var(--reviews-gap);
            will-change: transform;
            transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
        }

        .review-slide {
            flex: 0 0 min(var(--reviews-card-width), calc(100% - (var(--reviews-side-peek) * 2)));
            background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 1.125rem;
            padding: var(--s-lg) var(--s-md) var(--s-md);
            display: flex;
            flex-direction: column;
            gap: var(--s-md);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(8px);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, border-color 0.3s ease;
            cursor: grab;
        }

        .review-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 70px;
            background: linear-gradient(180deg, rgba(0, 194, 255, 0.14), rgba(0, 194, 255, 0));
            pointer-events: none;
        }

        .review-slide:active,
        .review-slide.is-selected {
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.4), 0 0 24px rgba(255, 255, 255, 0.12);
        }

        .reviews-carousel-viewport.is-dragging .review-slide {
            cursor: grabbing;
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: var(--s-md);
            position: relative;
            z-index: 1;
        }

        .review-avatar {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.55);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.24);
        }

        .review-meta {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .review-meta cite {
            font-style: normal;
            font-size: 0.95rem;
            color: var(--text-light);
            font-weight: 600;
        }

        .review-role {
            font-size: 0.82rem;
            color: var(--text-muted);
        }

        .review-stars {
            color: #ffd15c;
            font-size: 0.86rem;
            letter-spacing: 1.4px;
            line-height: 1;
            position: relative;
            z-index: 1;
        }

        .review-slide blockquote {
            margin: 0;
            color: var(--text-muted);
            line-height: 1.6;
            font-size: 0.92rem;
            flex: 1;
            position: relative;
            z-index: 1;
        }


        /* Footer */
        footer {
            position: relative;
            padding: var(--s-4xl) var(--section-x) var(--s-3xl);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(10, 10, 10, 0.75) 100%);
            border-top: 1px solid var(--glass-border);
            overflow: hidden;
        }

        footer::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 0%, rgba(0, 194, 255, 0.12), transparent 55%);
            opacity: 0.6;
            pointer-events: none;
        }

        .footer-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: minmax(220px, 1fr) max-content;
            align-items: start;
            margin-bottom: var(--s-5xl);
            gap: var(--s-3xl);
        }

        .footer-info {
            flex: 1;
            max-width: 100%;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: var(--s-sm);
        }

        .footer-info .logo {
            font-size: 2.5rem;
            gap: var(--s-lg);
            display: inline-flex;
            align-items: center;
        }

        .footer-info .logo img {
            height: 70px;
            width: auto;
            display: block;
        }

        .footer-info p {
            color: var(--text-muted);
            margin-top: var(--s-lg);
            max-width: 300px;
        }

        .footer-info .footer-tagline {
            font-size: 1.35rem;
            font-weight: 400;
            color: var(--text-light);
            margin-top: 0;
            max-width: 100%;
        }
        .footer-boxes {
            display: flex;
            gap: var(--s-lg);
            margin-top: var(--s-lg);
        }
        .footer-box {
            background: var(--glass);
            border: 1px solid var(--glass-border);
            padding: var(--s-lg) var(--s-xl);
            border-radius: 0.625rem;
            color: var(--text-muted);
            max-width: 340px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.06);
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: var(--s-3xl);
            align-items: start;
            justify-self: end;
            margin-left: auto;
            min-width: 0;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
            gap: var(--s-md);
        }

        .footer-links ul {
            list-style: none;
            display: grid;
            gap: var(--s-xs);
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--text-light);
        }

        @media (max-width: 1500px) {
            footer {
                padding: var(--s-3xl) var(--section-x) var(--s-2xl);
            }

            .footer-content {
                gap: var(--s-3xl);
                align-items: center;
                margin-bottom: var(--s-4xl);
            }

            .footer-links {
                justify-self: end;
                margin-left: auto;
            }
        }

        .copyright-row {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: var(--s-sm);
            padding-top: var(--s-3xl);
            border-top: 1px solid var(--glass-border);
        }

        .copyright {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .footer-contact {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .footer-contact a {
            color: var(--text-muted);
            text-decoration: none;
        }

        .footer-contact a:hover {
            color: var(--text-light);
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-links {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .hero h1 { font-size: 3.5rem; }
            .workflow-item { flex-direction: column !important; text-align: center; gap: var(--s-3xl); }
            .workflow-visual {
                width: min(700px, 100%);
                height: auto;
                margin: 0 auto;
            }
            .workflow-visual img {
                display: block;
                max-height: none;
                width: 100%;
                height: auto;
            }
            .workflow-visual.workflow-visual-combined {
                width: 100%;
                max-width: 100%;
                height: auto;
                align-items: flex-start;
            }
            .workflow-visual-combined .workflow-visual-row {
                flex-direction: column;
                gap: var(--s-md);
            }
            .workflow-visual-combined .workflow-visual-row img {
                width: 100%;
                max-width: 100%;
                height: auto;
            }
            #reviews {
                --reviews-visible-cards: 1;
                --reviews-layout-cards: 1.18;
                --reviews-side-peek: clamp(0.9rem, 4vw, 1.5rem);
                --reviews-card-width: clamp(20rem, 54vw, 22.5rem);
            }

            .features-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .features-grid.guides-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            #how-it-works .workflow-item {
                flex-direction: row !important;
                text-align: left;
            }

            #how-it-works .workflow-visual {
                margin: 0;
            }
        }

        @media (max-width: 900px) {
            #how-it-works .workflow-item {
                flex-direction: column !important;
                text-align: center;
            }

            #how-it-works .workflow-visual {
                margin: 0 auto;
            }
        }

        /* Compact nav when a link wraps */
        nav.is-compact {
            padding: calc(var(--s-lg) - 0.3125rem) var(--section-x);
            display: grid;
            grid-template-columns: 1fr auto;
            grid-template-rows: auto auto;
            align-items: center;
            column-gap: var(--s-md);
            row-gap: 0;
        }

        nav.is-compact.scrolled {
            padding: calc(var(--s-sm) - 0.3125rem) var(--section-x);
        }

        nav.is-compact .logo {
            grid-column: 1;
            grid-row: 1;
        }

        nav.is-compact .nav-toggle {
            display: inline-flex;
            grid-column: 2;
            grid-row: 1;
            justify-self: end;
            width: auto;
            height: 36px;
            padding: 0 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
        }

        nav.is-compact .nav-menu {
            grid-column: 1 / -1;
            grid-row: 2;
            justify-self: stretch;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: 0;
            margin-top: 0;
            padding: 0;
            background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 0.65rem;
            box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
            max-height: 0;
            opacity: 0;
            pointer-events: none;
            transform: translateY(-6px);
            transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease;
            overflow: hidden;
            backdrop-filter: none;
        }

        nav.is-compact.is-open .nav-menu {
            max-height: 480px;
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
            padding: var(--s-xs);
            margin-top: var(--s-xs);
        }

        nav.is-compact.is-open {
            row-gap: var(--s-xs);
        }

        nav.is-compact .nav-links {
            display: flex;
            flex-direction: column;
            gap: calc(var(--s-sm) - 2px);
            width: 100%;
        }

        nav.is-compact .nav-links a {
            font-size: 0.95rem;
            width: 100%;
            padding: 0.35rem 0.2rem;
            text-align: center;
            border-radius: 0.65rem;
            background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
            transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
            line-height: 1.2;
        }

        nav.is-compact .nav-cta {
            display: flex;
            flex-direction: column;
            gap: calc(var(--s-sm) - 2px);
            width: 100%;
            margin-top: calc(var(--s-sm) - 2px);
        }

        nav.is-compact .nav-cta .cta-button {
            width: 100%;
            text-align: center;
            padding: 0.35rem 0.2rem;
            font-size: 0.95rem;
            border-radius: 0.65rem;
            background: linear-gradient(135deg, #0a72d8, #2a9cff);
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: #fff;
            box-shadow: 0 12px 26px rgba(0, 120, 212, 0.28);
            transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
            line-height: 1.2;
            margin-bottom: 0;
        }

        nav.is-compact .nav-links a:hover,
        nav.is-compact .nav-toggle:hover {
            background: linear-gradient(155deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
            border-color: rgba(255, 255, 255, 0.35);
            color: #fff;
            box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.25);
        }

        nav.is-compact .nav-cta .cta-button:hover {
            transform: translateY(-2px);
            filter: brightness(1.06);
            box-shadow: 0 16px 32px rgba(0, 120, 212, 0.35);
        }

        nav.is-compact .nav-cta .cta-button:active {
            transform: translateY(0);
            filter: brightness(0.98);
            box-shadow: 0 8px 18px rgba(0, 120, 212, 0.22);
        }

        @media (max-width: 768px) {
            :root {
                --section-x: 1rem;
                --section-y: 3.75rem;
                --nav-offset: 5.5rem;
                --subpage-section-y: 3.5rem;
            }
            .footer-links {
                grid-template-columns: 1fr;
                justify-self: center;
                margin-left: 0;
                width: 100%;
                max-width: 24rem;
                text-align: center;
            }
            .footer-links ul {
                justify-items: center;
            }
            .footer-content {
                text-align: center;
            }
            .footer-info {
                align-items: center;
            }
            .footer-info p,
            .footer-info .footer-tagline {
                margin-left: auto;
                margin-right: auto;
                text-align: center;
            }
            nav {
                padding: var(--s-md) var(--section-x) var(--s-sm);
                display: grid;
                grid-template-columns: 1fr auto;
                grid-template-rows: auto auto;
                align-items: center;
                column-gap: var(--s-md);
                row-gap: var(--s-sm);
                min-height: 64px;
                background: rgba(10, 10, 10, 0.92);
            }
            nav .logo {
                grid-column: 1;
                grid-row: 1;
            }
            .nav-toggle {
                display: inline-flex;
                grid-column: 2;
                grid-row: 1;
                justify-self: end;
                width: auto;
                height: 40px;
                padding: 0 1.1rem;
                border: 1px solid rgba(255, 255, 255, 0.2);
                background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
            }
            .nav-menu {
                grid-column: 1 / -1;
                grid-row: 2;
                justify-self: stretch;
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                margin-top: var(--s-xs);
                padding: 0;
                background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
                border: 1px solid rgba(255, 255, 255, 0.2);
                border-radius: 0.65rem;
                box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
                max-height: 0;
                opacity: 0;
                pointer-events: none;
                transform: translateY(-6px);
                transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease;
                overflow: hidden;
                backdrop-filter: none;
            }
            nav.is-open .nav-menu {
                max-height: 480px;
                opacity: 1;
                pointer-events: auto;
                transform: translateY(0);
                padding: var(--s-xs);
            }
            .nav-links {
                display: flex;
                flex-direction: column;
                gap: calc(var(--s-sm) - 2px);
                width: 100%;
            }
            .nav-links a {
                font-size: 0.95rem;
                width: 100%;
                padding: 0.35rem 0.2rem;
                text-align: center;
                border-radius: 0.65rem;
                background: linear-gradient(155deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
                border: 1px solid rgba(255, 255, 255, 0.2);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
                transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
            }
            .nav-cta {
                display: flex;
                flex-direction: column;
                gap: calc(var(--s-sm) - 2px);
                width: 100%;
                margin-top: calc(var(--s-sm) - 2px);
            }

            .nav-links a:hover,
            .nav-toggle:hover {
                background: linear-gradient(155deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
                border-color: rgba(255, 255, 255, 0.35);
                color: #fff;
                box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(255, 255, 255, 0.25);
            }

            .nav-cta .cta-button {
                width: 100%;
                text-align: center;
                padding: 0.35rem 0.2rem;
                font-size: 0.95rem;
                border-radius: 0.65rem;
                background: linear-gradient(135deg, #0a72d8, #2a9cff);
                border: 1px solid rgba(255, 255, 255, 0.18);
                color: #fff;
                box-shadow: 0 12px 26px rgba(0, 120, 212, 0.28);
                transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.2s ease;
                margin-bottom: 0;
            }

            .nav-cta .cta-button,
            .nav-links a {
                line-height: 1.2;
            }

            .nav-cta .cta-button:hover {
                transform: translateY(-2px);
                filter: brightness(1.06);
                box-shadow: 0 16px 32px rgba(0, 120, 212, 0.35);
            }

            .nav-cta .cta-button:active {
                transform: translateY(0);
                filter: brightness(0.98);
                box-shadow: 0 8px 18px rgba(0, 120, 212, 0.22);
            }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.25rem; }
            .hero-note { padding: var(--s-lg) 9%; }
            body.home #demo {
                padding-top: var(--s-3xl);
                padding-bottom: var(--s-4xl);
            }
            section { padding: var(--section-y) var(--section-x); }
            #how-it-works {
                padding-top: 5.625rem;
            }
            #how-it-works::before {
                top: var(--s-xl);
            }
            .workflow-visual-combined .workflow-visual-row {
                flex-direction: column;
                gap: var(--s-lg);
            }
            .features-grid {
                grid-template-columns: 1fr;
            }

            .features-grid.guides-grid {
                grid-template-columns: 1fr;
            }
            #reviews {
                --reviews-visible-cards: 1;
                --reviews-layout-cards: 1.16;
                --reviews-side-peek: clamp(0.8rem, 5vw, 1.1rem);
                --reviews-card-width: calc(100% - (var(--reviews-side-peek) * 2));
                --reviews-left-inset: var(--reviews-side-peek);
                --reviews-right-inset: var(--reviews-side-peek);
                padding: var(--s-sm) 0 var(--s-4xl);
            }
            .review-slide {
                padding: var(--s-md);
                border-radius: var(--s-lg);
            }
            .review-avatar {
                width: 48px;
                height: 48px;
            }
            .review-meta cite {
                font-size: 0.9rem;
            }
            .review-role {
                font-size: 0.78rem;
            }
            .review-slide blockquote {
                font-size: 0.88rem;
            }
            .img-expand-content.is-pair {
                flex-direction: column;
                gap: var(--s-lg);
            }
            .img-expand-content.is-pair img {
                max-width: 90vw;
            }
        }




