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

        :root {
            --bg: #06061a;
            --bg-2: #0d0d2b;
            --bg-card: #111133;
            --border: #1a1a4a;
            --text: #e8e8f0;
            --text-2: #9898b8;
            --accent: #6c5ce7;
            --accent-2: #a29bfe;
            --green: #00cec9;
            --green-bg: rgba(0, 206, 201, 0.1);
            --danger: #ff6b6b;
            --radius: 16px;
        }

        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            text-rendering: optimizeLegibility;
        }

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

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

        /* ── Nav ── */
        nav {
            padding: 20px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(6, 6, 26, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            z-index: 100;
        }

        nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        nav .logo {
            font-size: 18px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--accent), var(--accent-2));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        nav .links {
            display: flex;
            gap: 28px;
        }

        nav .links a {
            color: var(--text-2);
            font-size: 14px;
            font-weight: 500;
            transition: color 0.2s;
        }

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

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }

        .btn-accent {
            background: linear-gradient(135deg, var(--accent), var(--accent-2));
            color: white;
            box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3);
        }

        .btn-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(108, 92, 231, 0.4);
        }

        .btn-outline {
            border: 1px solid var(--border);
            color: var(--text);
            background: transparent;
        }

        .btn-outline:hover {
            border-color: var(--accent);
        }

        .btn-green {
            background: linear-gradient(135deg, #00b894, #00cec9);
            color: white;
            box-shadow: 0 4px 20px rgba(0, 206, 201, 0.3);
        }

        .btn-lg {
            padding: 16px 36px;
            font-size: 16px;
        }

        /* ── Hero ── */
        .hero {
            padding: 160px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 18% 18%, rgba(0, 206, 201, 0.14), transparent 24%),
                radial-gradient(circle at 82% 8%, rgba(162, 155, 254, 0.16), transparent 28%),
                radial-gradient(ellipse at 50% 0%, rgba(108, 92, 231, 0.16) 0%, transparent 60%);
        }

        .hero::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 84px;
            width: min(980px, 84vw);
            height: 420px;
            transform: translateX(-50%);
            background:
                radial-gradient(circle at 50% 32%, rgba(108, 92, 231, 0.28), transparent 46%),
                radial-gradient(circle at 24% 60%, rgba(0, 206, 201, 0.16), transparent 28%);
            filter: blur(18px);
            opacity: 0.92;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            right: 7%;
            top: 126px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            border: 1px solid rgba(162, 155, 254, 0.14);
            box-shadow: inset 0 0 40px rgba(162, 155, 254, 0.08);
            opacity: 0.45;
            pointer-events: none;
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -1px;
            max-width: 700px;
            margin: 0 auto 20px;
        }

        .hero h1 span {
            background: linear-gradient(135deg, var(--accent), var(--green));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 18px;
            color: var(--text-2);
            max-width: 600px;
            margin: 0 auto 36px;
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-badges {
            display: flex;
            gap: 24px;
            justify-content: center;
            margin-top: 48px;
            flex-wrap: wrap;
        }

        .hero-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 13px;
            color: var(--text-2);
        }

        .landing-desktop-cta {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 16px;
            margin-top: 20px;
            padding: 16px;
            border-radius: 20px;
            border: 1px solid rgba(0, 206, 201, 0.34);
            background:
                radial-gradient(circle at 12% 22%, rgba(0, 206, 201, 0.18), transparent 34%),
                linear-gradient(135deg, rgba(108, 92, 231, 0.16), rgba(9, 8, 24, 0.86));
            box-shadow: 0 18px 42px rgba(0, 206, 201, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .landing-desktop-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--green), var(--accent));
            color: white;
            font-size: 12px;
            font-weight: 900;
            letter-spacing: 0.08em;
        }

        .landing-desktop-copy strong {
            display: block;
            color: white;
            font-size: 15px;
            margin-bottom: 5px;
        }

        .landing-desktop-copy span {
            color: var(--text-2);
            font-size: 13px;
            line-height: 1.5;
        }

        .landing-desktop-actions {
            display: flex;
            justify-content: flex-end;
        }

        .hero-deep-links {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 18px;
        }

        .hero-deep-links a {
            display: inline-flex;
            align-items: center;
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            color: var(--text-2);
            font-size: 13px;
            font-weight: 600;
        }

        .hero-deep-links a:hover {
            color: white;
            border-color: rgba(108, 92, 231, 0.45);
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 999px;
            background: var(--green-bg);
            border: 1px solid rgba(0, 206, 201, 0.25);
            color: var(--green);
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-note {
            max-width: 760px;
            margin: 16px auto 0;
            font-size: 14px;
            color: var(--text-2);
        }

        .hero-pricing-strip {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin-top: 22px;
        }

        .hero-pricing-card {
            position: relative;
            overflow: hidden;
            padding: 18px;
            border-radius: 18px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 18px 32px rgba(6, 8, 30, 0.18);
        }

        .hero-pricing-card.featured {
            border-color: rgba(0, 206, 201, 0.24);
            background:
                radial-gradient(circle at top right, rgba(0, 206, 201, 0.12), transparent 36%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
        }

        .hero-pricing-card span {
            display: inline-flex;
            align-items: center;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #d8d4ff;
        }

        .hero-pricing-card strong {
            display: block;
            margin-top: 10px;
            color: white;
            font-size: 24px;
            line-height: 1.15;
            letter-spacing: -0.04em;
        }

        .hero-pricing-card p {
            margin-top: 8px;
            color: var(--text-2);
            font-size: 13px;
            line-height: 1.6;
        }

        .hero-proof-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin-top: 22px;
        }

        .hero-proof-card {
            position: relative;
            overflow: hidden;
            padding: 18px;
            border-radius: 18px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 20px 40px rgba(6, 8, 30, 0.24);
        }

        .hero-proof-card::after {
            content: '';
            position: absolute;
            inset: auto -30px -30px auto;
            width: 110px;
            height: 110px;
            background: radial-gradient(circle, rgba(162, 155, 254, 0.16), transparent 70%);
            pointer-events: none;
        }

        .hero-proof-card span {
            display: inline-flex;
            align-items: center;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #d8d4ff;
        }

        .hero-proof-card strong {
            display: block;
            margin-top: 10px;
            color: white;
            font-size: 17px;
            line-height: 1.3;
        }

        .hero-proof-card p {
            margin-top: 8px;
            color: var(--text-2);
            font-size: 13px;
            line-height: 1.6;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
            gap: 28px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-copy {
            text-align: left;
        }

        .hero-copy h1,
        .hero-copy p,
        .hero-copy .hero-note {
            margin-left: 0;
            margin-right: 0;
        }

        .hero-copy .hero-btns,
        .hero-copy .hero-deep-links,
        .hero-copy .hero-badges {
            justify-content: flex-start;
        }

        .hero-panel {
            position: relative;
            overflow: hidden;
            padding: 28px;
            border-radius: 24px;
            background:
                radial-gradient(circle at top right, rgba(0, 206, 201, 0.14), transparent 36%),
                radial-gradient(circle at bottom left, rgba(108, 92, 231, 0.24), transparent 40%),
                linear-gradient(180deg, rgba(21, 21, 53, 0.96), rgba(10, 10, 28, 0.98));
            border: 1px solid rgba(162, 155, 254, 0.18);
            box-shadow: 0 24px 60px rgba(4, 5, 22, 0.42);
            text-align: left;
        }

        .hero-panel::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(130deg, rgba(255, 255, 255, 0.06), transparent 42%),
                linear-gradient(180deg, transparent 56%, rgba(162, 155, 254, 0.05));
            pointer-events: none;
        }

        .hero-panel::after {
            content: '';
            position: absolute;
            inset: auto -30px -40px auto;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(162, 155, 254, 0.2), transparent 68%);
            pointer-events: none;
        }

        .hero-panel-kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #d9d4ff;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .hero-panel h3 {
            margin-top: 16px;
            font-size: 30px;
            line-height: 1.15;
            letter-spacing: -0.6px;
        }

        .hero-panel > p {
            margin-top: 12px;
            color: var(--text-2);
            font-size: 15px;
        }

        .hero-panel-console {
            position: relative;
            margin-top: 18px;
            padding: 18px;
            border-radius: 20px;
            background: rgba(6, 8, 25, 0.46);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
        }

        .hero-panel-console-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }

        .hero-panel-console-head span {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            color: #d9d4ff;
            text-transform: uppercase;
        }

        .hero-panel-console-head strong {
            color: white;
            font-size: 14px;
        }

        .hero-panel-console-grid {
            display: grid;
            gap: 10px;
            margin-top: 14px;
        }

        .hero-panel-console-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 11px 12px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .hero-panel-console-row span {
            color: var(--text-2);
            font-size: 13px;
        }

        .hero-panel-console-row strong {
            color: white;
            font-size: 13px;
            text-align: right;
        }

        .hero-panel-console-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 14px;
        }

        .hero-panel-console-tags span {
            display: inline-flex;
            align-items: center;
            padding: 8px 11px;
            border-radius: 999px;
            background: rgba(108, 92, 231, 0.14);
            border: 1px solid rgba(108, 92, 231, 0.22);
            color: #d8d4ff;
            font-size: 12px;
            font-weight: 600;
        }

        .hero-panel-flow {
            display: grid;
            gap: 14px;
            margin-top: 22px;
        }

        .hero-panel-block {
            padding: 18px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .hero-panel-block.accent {
            border-color: rgba(0, 206, 201, 0.28);
            background: linear-gradient(180deg, rgba(0, 206, 201, 0.08), rgba(255, 255, 255, 0.03));
        }

        .hero-panel-block span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 700;
            color: #d9d4ff;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .hero-panel-block strong {
            display: block;
            margin-top: 8px;
            font-size: 18px;
            color: white;
        }

        .hero-panel-block p {
            margin-top: 8px;
            font-size: 14px;
            color: var(--text-2);
        }

        .hero-panel-stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin-top: 18px;
        }

        .hero-panel-stat {
            padding: 14px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .hero-panel-stat strong {
            display: block;
            font-size: 18px;
            color: white;
        }

        .hero-panel-stat span {
            display: block;
            margin-top: 5px;
            color: var(--text-2);
            font-size: 12px;
            line-height: 1.45;
        }

        .stack-note {
            margin-top: 16px;
            padding: 16px 18px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: var(--text-2);
            font-size: 14px;
            line-height: 1.6;
        }

        .monitor-grid {
            display: grid;
            gap: 12px;
            margin-top: 22px;
        }

        .monitor-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 15px 16px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-2);
            font-size: 14px;
        }

        .monitor-row strong {
            color: white;
            font-size: 15px;
        }

        .monitor-status-positive {
            color: #5ae0a2 !important;
        }

        .monitor-status-negative {
            color: #ff8f8f !important;
        }

        .monitor-status-neutral {
            color: #ffd36f !important;
        }

        .rank-section {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 18% 24%, rgba(0, 206, 201, 0.08), transparent 26%),
                radial-gradient(circle at 82% 14%, rgba(162, 155, 254, 0.1), transparent 24%),
                linear-gradient(180deg, rgba(13, 13, 43, 1), rgba(8, 8, 26, 1));
        }

        .rank-storyboard {
            display: grid;
            gap: 18px;
            margin-top: 16px;
        }

        .rank-storyboard-top {
            display: grid;
            grid-template-columns: minmax(170px, 0.82fr) minmax(0, 1.18fr);
            gap: 14px;
            align-items: stretch;
        }

        .rank-score-orb {
            position: relative;
            overflow: hidden;
            padding: 20px;
            border-radius: 22px;
            background:
                radial-gradient(circle at 50% 18%, rgba(0, 206, 201, 0.16), transparent 34%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .rank-score-orb span {
            display: block;
            color: #d8d4ff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .rank-score-orb strong {
            display: block;
            margin-top: 14px;
            font-size: 42px;
            line-height: 1;
            letter-spacing: -1.8px;
            color: white;
        }

        .rank-score-orb p {
            margin-top: 12px;
            font-size: 14px;
        }

        .rank-summary-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .rank-summary-item {
            padding: 16px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .rank-summary-item span {
            display: block;
            color: var(--text-2);
            font-size: 12px;
            line-height: 1.45;
        }

        .rank-summary-item strong {
            display: block;
            margin-top: 10px;
            color: white;
            font-size: 26px;
            line-height: 1;
        }

        .rank-progress-bars {
            display: grid;
            gap: 12px;
        }

        .rank-progress-row {
            display: grid;
            grid-template-columns: 76px minmax(0, 1fr) 52px;
            gap: 12px;
            align-items: center;
        }

        .rank-progress-row span,
        .rank-progress-row strong {
            font-size: 13px;
        }

        .rank-progress-row span {
            color: var(--text-2);
        }

        .rank-progress-row strong {
            color: white;
            text-align: right;
        }

        .rank-progress-track {
            position: relative;
            height: 11px;
            border-radius: 999px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .rank-progress-track i {
            display: block;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(135deg, var(--accent), var(--green));
            box-shadow: 0 0 18px rgba(0, 206, 201, 0.22);
        }

        .rank-history-card {
            overflow-x: auto;
            padding: 16px;
            border-radius: 20px;
            background: rgba(6, 8, 25, 0.46);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .rank-history-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .rank-history-head span {
            color: #d8d4ff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .rank-history-head strong {
            color: white;
            font-size: 14px;
        }

        .rank-history-grid {
            display: grid;
            gap: 10px;
            min-width: 420px;
        }

        .rank-history-row {
            display: grid;
            grid-template-columns: minmax(150px, 1.3fr) repeat(3, minmax(0, 0.55fr));
            gap: 10px;
            align-items: center;
        }

        .rank-history-row strong {
            color: white;
            font-size: 13px;
            line-height: 1.45;
        }

        .rank-history-row.head strong,
        .rank-history-row.head span {
            color: var(--text-2);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .rank-history-row.head strong {
            white-space: nowrap;
        }

        .rank-history-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 34px;
            padding: 7px 10px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.04);
            color: white;
            font-size: 13px;
            font-weight: 700;
        }

        .rank-history-pill.top {
            background: rgba(0, 206, 201, 0.12);
            border-color: rgba(0, 206, 201, 0.22);
            color: #6ff2de;
        }

        .rank-history-pill.mid {
            background: rgba(255, 211, 111, 0.12);
            border-color: rgba(255, 211, 111, 0.22);
            color: #ffd36f;
        }

        .rank-history-pill.drop {
            background: rgba(255, 107, 107, 0.12);
            border-color: rgba(255, 107, 107, 0.22);
            color: #ff9a9a;
        }

        .rank-history-pill.none {
            color: var(--text-2);
        }

        .rank-export-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .rank-export-chip {
            display: inline-flex;
            align-items: center;
            padding: 9px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: var(--text-2);
            font-size: 12px;
            font-weight: 600;
        }

        .rank-ui-shell {
            position: relative;
            overflow: hidden;
            margin-top: 24px;
            padding: 18px;
            border-radius: 24px;
            background:
                radial-gradient(circle at top right, rgba(0, 206, 201, 0.12), transparent 28%),
                linear-gradient(180deg, rgba(8, 10, 28, 0.96), rgba(13, 16, 42, 0.96));
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 26px 56px rgba(4, 5, 22, 0.34);
        }

        .rank-ui-topbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }

        .rank-ui-project {
            display: grid;
            gap: 5px;
        }

        .rank-ui-project span {
            color: #d8d4ff;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .rank-ui-project strong {
            color: white;
            font-size: 17px;
        }

        .rank-ui-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .rank-ui-filter {
            display: inline-flex;
            align-items: center;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-2);
            font-size: 12px;
            font-weight: 600;
        }

        .rank-ui-kpis {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 12px;
            margin-top: 16px;
        }

        .rank-ui-kpi {
            padding: 16px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .rank-ui-kpi span {
            display: block;
            color: var(--text-2);
            font-size: 12px;
        }

        .rank-ui-kpi strong {
            display: block;
            margin-top: 10px;
            color: white;
            font-size: 24px;
        }

        .rank-ui-kpi em {
            display: block;
            margin-top: 7px;
            font-style: normal;
            font-size: 12px;
            font-weight: 600;
        }

        .rank-ui-table {
            display: grid;
            gap: 10px;
            margin-top: 16px;
        }

        .rank-ui-row {
            display: grid;
            grid-template-columns: minmax(170px, 1.5fr) 82px 82px 84px minmax(140px, 1.1fr);
            gap: 10px;
            align-items: center;
            padding: 13px 14px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .rank-ui-row.head {
            background: transparent;
            border: 0;
            padding: 0 4px;
        }

        .rank-ui-row.head span {
            color: var(--text-2);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .rank-ui-row strong,
        .rank-ui-row b {
            color: white;
            font-size: 13px;
        }

        .rank-ui-row strong {
            line-height: 1.45;
        }

        .rank-ui-row b {
            font-weight: 700;
        }

        .rank-ui-url {
            color: var(--text-2);
            font-size: 12px;
            line-height: 1.5;
        }

        .rank-ui-delta-up {
            color: #6ff2de !important;
        }

        .rank-ui-delta-down {
            color: #ff9a9a !important;
        }

        .rank-ui-delta-flat {
            color: #ffd36f !important;
        }

        .rank-ui-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 16px;
            padding-top: 14px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .rank-ui-footer span {
            color: var(--text-2);
            font-size: 13px;
        }

        .rank-ui-footer strong {
            color: white;
            font-size: 13px;
        }

        .checks-logic-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
            margin-top: 24px;
        }

        .checks-logic-card {
            padding: 20px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .checks-logic-card strong {
            display: block;
            color: white;
            font-size: 17px;
            margin-bottom: 8px;
        }

        .checks-logic-card p {
            color: var(--text-2);
            font-size: 14px;
        }

        .showcase {
            padding-top: 0;
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
            gap: 24px;
            align-items: stretch;
        }

        .surface-card {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at top right, rgba(162, 155, 254, 0.08), transparent 24%),
                linear-gradient(180deg, rgba(22, 22, 61, 0.98), rgba(12, 12, 35, 0.98));
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: 0 22px 48px rgba(4, 5, 22, 0.24);
            transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
        }

        .surface-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 34%);
            pointer-events: none;
        }

        .surface-card:hover {
            transform: translateY(-4px);
            border-color: rgba(162, 155, 254, 0.16);
            box-shadow: 0 28px 58px rgba(4, 5, 22, 0.32);
        }

        .showcase h2 {
            font-size: 30px;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
        }

        .showcase p {
            color: var(--text-2);
        }

        .preview-flow {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin-top: 24px;
        }

        .preview-step {
            padding: 16px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.04);
            transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
        }

        .preview-step:hover {
            transform: translateY(-3px);
            border-color: rgba(162, 155, 254, 0.18);
            background: rgba(255, 255, 255, 0.05);
        }

        .preview-step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 999px;
            background: rgba(108, 92, 231, 0.16);
            border: 1px solid rgba(108, 92, 231, 0.3);
            color: white;
            font-size: 14px;
            font-weight: 700;
        }

        .preview-step strong {
            display: block;
            margin-top: 12px;
            color: white;
            font-size: 16px;
        }

        .preview-step p {
            margin-top: 8px;
            color: var(--text-2);
            font-size: 14px;
        }

        .real-screens-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px;
            margin-top: 20px;
        }

        .screen-card {
            padding: 14px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.03);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
            transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
        }

        .screen-card:hover {
            transform: translateY(-3px);
            border-color: rgba(162, 155, 254, 0.16);
            background: rgba(255, 255, 255, 0.05);
        }

        .screen-card.report {
            grid-column: 1 / -1;
        }

        .screen-open {
            display: block;
            width: 100%;
            padding: 0;
            background: transparent;
            border: 0;
            cursor: zoom-in;
            text-align: left;
        }

        .screen-card img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .screen-open-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(110, 96, 255, 0.18);
            color: #d8d4ff;
            font-size: 12px;
            font-weight: 600;
        }

        .screen-caption {
            margin-top: 14px;
        }

        .screen-caption strong {
            display: block;
            color: white;
            font-size: 14px;
        }

        .screen-caption span {
            display: block;
            margin-top: 6px;
            color: var(--text-2);
            font-size: 13px;
        }

        .screen-lightbox {
            position: fixed;
            inset: 0;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            background: rgba(7, 9, 24, 0.92);
            backdrop-filter: blur(10px);
        }

        .screen-lightbox[hidden] {
            display: none;
        }

        .screen-lightbox-dialog {
            position: relative;
            width: min(1100px, 100%);
            max-height: 100%;
            overflow: auto;
            padding: 18px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            background: #10143a;
            box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
        }

        .screen-lightbox-dialog img {
            width: 100%;
            display: block;
            border-radius: 18px;
        }

        .screen-lightbox-meta {
            margin-top: 16px;
        }

        .screen-lightbox-meta strong {
            display: block;
            color: white;
            font-size: 18px;
        }

        .screen-lightbox-meta span {
            display: block;
            margin-top: 8px;
            color: var(--text-2);
            font-size: 14px;
            line-height: 1.6;
        }

        .screen-lightbox-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 42px;
            height: 42px;
            border: 0;
            border-radius: 50%;
            background: rgba(7, 9, 24, 0.72);
            color: white;
            font-size: 26px;
            line-height: 1;
            cursor: pointer;
        }

        body.lightbox-open {
            overflow: hidden;
        }

        .preview-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-top: 16px;
        }

        .metric {
            padding: 14px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.04);
        }

        .metric strong {
            display: block;
            font-size: 20px;
            margin-bottom: 4px;
        }

        .metric span {
            font-size: 13px;
            color: var(--text-2);
        }

        .bullet-list {
            list-style: none;
            display: grid;
            gap: 12px;
            margin-top: 20px;
        }

        .bullet-list li {
            padding: 14px 16px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.04);
            color: var(--text-2);
            font-size: 14px;
        }

        .bullet-list strong {
            color: white;
        }

        .audience-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .audience-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
        }

        .audience-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .audience-card p {
            color: var(--text-2);
            font-size: 14px;
        }

        .pricing-note {
            max-width: 900px;
            margin: 0 auto 32px;
            padding: 20px 24px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border);
            color: var(--text-2);
            font-size: 14px;
            text-align: center;
        }

        .pricing-rule-ribbon {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin: 0 auto 36px;
            max-width: 1000px;
        }

        .pricing-rule-chip {
            min-width: 180px;
            padding: 14px 16px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            text-align: left;
        }

        .pricing-rule-chip span {
            display: block;
            color: var(--text-2);
            font-size: 12px;
            line-height: 1.45;
        }

        .pricing-rule-chip strong {
            display: block;
            margin-top: 8px;
            color: white;
            font-size: 16px;
        }

        .pricing-subnote {
            margin: -12px auto 40px;
            max-width: 880px;
            color: var(--text-2);
            font-size: 13px;
            text-align: center;
        }

        .use-case-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .use-case-card,
        .deliverable-card,
        .trust-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
        }

        .use-case-card h3,
        .deliverable-card h3,
        .trust-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .use-case-card p,
        .deliverable-card p,
        .trust-card p {
            color: var(--text-2);
            font-size: 14px;
        }

        .deliverables-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .deliverable-icon {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            margin-bottom: 14px;
            background: rgba(108, 92, 231, 0.12);
            border: 1px solid rgba(108, 92, 231, 0.2);
            font-size: 20px;
        }

        .volume-panel {
            background:
                radial-gradient(circle at top right, rgba(108, 92, 231, 0.18), transparent 40%),
                var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 36px;
        }

        .volume-panel h2 {
            font-size: 32px;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .volume-panel p {
            max-width: 760px;
            color: var(--text-2);
        }

        .volume-grid,
        .trust-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 24px;
        }

        .volume-card {
            padding: 20px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.04);
        }

        .volume-card strong {
            display: block;
            font-size: 20px;
            margin-bottom: 6px;
            color: white;
        }

        .volume-card span {
            color: var(--text-2);
            font-size: 14px;
        }

        .trust-grid {
            grid-template-columns: repeat(4, 1fr);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
        }

        .seo-links-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
        }

        .seo-link-card {
            display: block;
            height: 100%;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 24px;
            color: inherit;
        }

        .seo-link-card span {
            display: inline-flex;
            margin-bottom: 10px;
            font-size: 12px;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--text-2);
        }

        .seo-link-card h3 {
            margin: 0 0 10px;
            font-size: 20px;
            color: white;
        }

        .seo-link-card p {
            margin: 0;
            font-size: 14px;
            color: var(--text-2);
        }

        .testimonial-card {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 28px;
        }

        .testimonial-meta {
            margin-bottom: 18px;
        }

        .testimonial-header {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            margin-bottom: 18px;
        }

        .testimonial-photo {
            width: 96px;
            height: 96px;
            border-radius: 24px;
            object-fit: cover;
            flex: 0 0 96px;
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
        }

        .testimonial-name {
            display: block;
            font-size: 18px;
            font-weight: 700;
            color: white;
        }

        .testimonial-role {
            display: block;
            margin-top: 6px;
            color: var(--text-2);
            font-size: 13px;
        }

        .testimonial-tags,
        .testimonial-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 14px;
        }

        .testimonial-tags span,
        .testimonial-stats span {
            display: inline-flex;
            align-items: center;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: white;
            font-size: 12px;
            line-height: 1.2;
        }

        .testimonial-quote {
            color: white;
            font-size: 18px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .testimonial-proof-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 14px;
            color: var(--primary-light);
            font-size: 14px;
            font-weight: 600;
        }

        .testimonial-proof-link:hover {
            color: white;
        }

        .testimonial-points {
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .testimonial-points li {
            position: relative;
            padding-left: 22px;
            color: var(--text-2);
            font-size: 14px;
        }

        .testimonial-points li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--green);
            font-weight: 700;
        }

        .testimonial-outcome,
        .testimonial-proof-note {
            margin-top: 22px;
            padding: 16px 18px;
            border-radius: 18px;
            background: rgba(122, 108, 255, 0.08);
            border: 1px solid rgba(122, 108, 255, 0.16);
            color: var(--text-2);
            font-size: 14px;
            line-height: 1.6;
        }

        .testimonial-outcome strong,
        .testimonial-proof-note strong {
            color: white;
        }

        .mid-cta {
            margin-top: 28px;
            padding: 28px;
            text-align: center;
            border-radius: 20px;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.03);
        }

        .mid-cta p {
            color: var(--text-2);
            margin-bottom: 20px;
        }

        .mobile-sticky-cta {
            display: none;
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 120;
            padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
            background: rgba(6, 6, 26, 0.92);
            backdrop-filter: blur(16px);
            border-top: 1px solid var(--border);
        }

        .mobile-sticky-cta .btn {
            width: 100%;
            justify-content: center;
        }

        .mobile-sticky-cta-inner {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 10px;
        }

        /* ── Section Common ── */
        section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .section-header p {
            color: var(--text-2);
            font-size: 16px;
            margin-top: 12px;
        }

        /* ── How it Works ── */
        .how-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .how-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px;
            text-align: center;
            transition: all 0.3s;
        }

        .how-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent);
        }

        .how-num {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--accent), var(--accent-2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            color: white;
            margin: 0 auto 20px;
        }

        .how-card h3 {
            font-size: 18px;
            margin-bottom: 12px;
        }

        .how-card p {
            color: var(--text-2);
            font-size: 14px;
        }

        /* ── Features ── */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px;
            transition: all 0.3s;
        }

        .feature-card:hover {
            border-color: var(--accent);
            transform: translateY(-2px);
        }

        .feature-icon {
            font-size: 32px;
            margin-bottom: 16px;
        }

        .feature-card h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .feature-card p {
            color: var(--text-2);
            font-size: 13px;
        }

        /* ── Pricing ── */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .price-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 36px;
            position: relative;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .price-card.featured {
            border-color: var(--accent);
            box-shadow: 0 0 40px rgba(108, 92, 231, 0.15);
        }

        .price-card.featured::before {
            content: '⭐ Popular';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--accent), var(--accent-2));
            color: white;
            padding: 4px 16px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
        }

        .price-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .price-amount {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent);
        }

        .price-period {
            font-size: 14px;
            color: var(--text-2);
        }

        .price-desc {
            font-size: 13px;
            color: var(--text-2);
            margin: 16px 0;
        }

        .price-callout {
            margin-bottom: 18px;
            padding: 12px 14px;
            border-radius: 14px;
            background: rgba(108, 92, 231, 0.1);
            border: 1px solid rgba(108, 92, 231, 0.18);
            color: #ddd9ff;
            font-size: 13px;
            line-height: 1.55;
        }

        .price-features {
            list-style: none;
            margin: 24px 0;
        }

        .price-features li {
            padding: 8px 0;
            font-size: 14px;
            color: var(--text-2);
            position: relative;
            padding-left: 24px;
        }

        .price-features li::before {
            content: '✓';
            color: var(--green);
            font-weight: 700;
            position: absolute;
            left: 0;
            top: 8px;
        }

        /* ── New vs Old ── */
        .comparison {
            background: var(--bg-2);
        }

        .vs-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 32px;
            align-items: start;
            max-width: 800px;
            margin: 0 auto;
        }

        .vs-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px;
        }

        .vs-card h3 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .vs-card ul {
            list-style: none;
        }

        .vs-card ul li {
            padding: 6px 0;
            font-size: 14px;
            color: var(--text-2);
        }

        .vs-card.old ul li::before {
            content: '❌ ';
        }

        .vs-card.new {
            border-color: var(--green);
        }

        .vs-card.new ul li::before {
            content: '✅ ';
        }

        .vs-divider {
            display: flex;
            align-items: center;
            font-size: 28px;
            font-weight: 700;
            color: var(--accent);
            padding-top: 60px;
        }

        /* ── FAQ ── */
        .faq-list {
            max-width: 700px;
            margin: 0 auto;
        }

        details {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            margin-bottom: 12px;
            overflow: hidden;
        }

        summary {
            padding: 20px 24px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            list-style: none;
        }

        summary::-webkit-details-marker {
            display: none;
        }

        summary::after {
            content: '+';
            float: right;
            font-size: 20px;
            color: var(--accent);
        }

        details[open] summary::after {
            content: '−';
        }

        details p {
            padding: 0 24px 20px;
            color: var(--text-2);
            font-size: 14px;
        }

        /* ── CTA ── */
        .final-cta {
            text-align: center;
            background: radial-gradient(ellipse at 50% 100%, rgba(108, 92, 231, 0.12) 0%, transparent 60%);
        }

        .final-cta h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .final-cta p {
            color: var(--text-2);
            margin-bottom: 32px;
        }

        /* ── Footer ── */
        footer {
            padding: 40px 0;
            border-top: 1px solid var(--border);
            text-align: center;
            color: var(--text-2);
            font-size: 13px;
        }

        footer a {
            color: var(--text-2);
        }

        footer .links {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
            row-gap: 12px;
            margin-bottom: 12px;
        }

        /* ── Responsive ── */
        @media (max-width: 980px) {
            .hero-grid,
            .showcase-grid,
            .preview-flow,
            .real-screens-grid {
                grid-template-columns: 1fr;
            }

            .hero-pricing-strip,
            .hero-proof-grid,
            .rank-storyboard-top {
                grid-template-columns: 1fr;
            }

            .hero-copy {
                text-align: center;
            }

            .hero-copy h1,
            .hero-copy p,
            .hero-copy .hero-note {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-copy .hero-btns,
            .hero-copy .hero-deep-links,
            .hero-copy .hero-badges {
                justify-content: center;
            }

            .screen-lightbox {
                padding: 14px;
            }

            .screen-lightbox-dialog {
                padding: 14px;
                border-radius: 18px;
            }

            .screen-lightbox-close {
                top: 10px;
                right: 10px;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            .showcase-grid,
            .audience-grid,
            .use-case-grid,
            .deliverables-grid,
            .checks-logic-grid,
            .how-grid,
            .features-grid {
                grid-template-columns: 1fr;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .volume-grid,
            .trust-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .testimonial-header {
                flex-direction: column;
            }

            .seo-links-grid {
                grid-template-columns: 1fr;
            }

            .vs-grid {
                grid-template-columns: 1fr;
            }

            .vs-divider {
                padding-top: 0;
                justify-content: center;
            }

            .hero-pricing-strip,
            .hero-proof-grid,
            .rank-summary-list,
            .rank-ui-kpis {
                grid-template-columns: 1fr;
            }

            nav .links {
                display: none;
            }

            body {
                padding-bottom: 92px;
            }

            .mobile-sticky-cta {
                display: block;
            }
        }

        @media (max-width: 640px) {
            .landing-desktop-cta {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .landing-desktop-icon,
            .landing-desktop-actions {
                justify-self: center;
            }

            .hero-panel-stats,
            .preview-metrics {
                grid-template-columns: 1fr;
            }

            .hero-panel-console-row,
            .rank-history-row,
            .rank-progress-row,
            .rank-ui-row {
                grid-template-columns: 1fr;
            }

            .rank-progress-row strong {
                text-align: left;
            }
        }
