        /* Manually injected Manrope for Speed Index */
        @font-face {
            font-family: 'Manrope';
            src: url('/assets/fonts/manrope-v20-latin-regular.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Manrope';
            src: url('/assets/fonts/manrope-v20-latin-800.woff2') format('woff2');
            font-weight: 800;
            font-style: normal;
            font-display: swap;
        }

        :root {
            --gold: #2f6f65;
            /* --primary */
            --gold-b: #3d8c80;
            /* --primary-light */
            --gold-p: #205c53;
            /* --primary darker for text */
            --gold-d: #1d4e46;
            /* --primary-dark */
            --void: #f8fafc;
            /* slate-50 page bg */
            --deep: #f1f5f9;
            /* slate-100 */
            --ink: #ffffff;
            /* white for cards */
            --mist: #e2e8f0;
            /* slate-200 */
            --veil: #cbd5e1;
            /* slate-300 */
            --text: #334155;
            /* slate-700 main text */
            --text-d: #64748b;
            /* slate-500 secondary text */
            --text-f: #94a3b8;
            /* slate-400 faint text */
            --border: rgba(47, 111, 101, 0.15);
            /* teal faint border */
            --border-b: rgba(47, 111, 101, 0.4);
            --glow: rgba(47, 111, 101, 0.12);
            --r: 16px;
            /* rounder corners to match site style */
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            line-height: 1.75;
            min-height: 100vh;
        }

        .w {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1
        }

        /* ── RELATED TOOLS ── */
        .rt-section {
            background: var(--deep);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .rt-inner {
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .rt-title {
            font-family: 'Manrope', sans-serif;
        }

        .rt-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }

        .rt-card {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 14px;
            border-radius: 12px;
            background: var(--ink);
            border: 1px solid var(--border);
            text-decoration: none;
            color: inherit;
            transition: box-shadow .2s, transform .2s;
            min-width: 0;
        }

        .rt-card:hover {
            box-shadow: 0 4px 20px rgba(47, 111, 101, 0.12);
            transform: translateY(-2px);
            border-color: var(--border-b);
        }

        .rt-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--glow);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--gold);
        }

        .rt-name {
            font-size: 0.75rem;
            font-weight: 800;
            color: var(--gold-p);
            margin: 0 0 2px 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .rt-desc {
            font-size: 0.65rem;
            color: var(--text-d);
            margin: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* ── USE CASES & FORMULA CARDS ── */
        .app-card {
            background: var(--ink);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 20px;
            font-family: 'Manrope', sans-serif;
            transition: box-shadow .2s, transform .2s;
        }

        .app-card:hover {
            box-shadow: 0 4px 20px rgba(47, 111, 101, 0.1);
            transform: translateY(-2px);
        }

        .app-card-icon {
            font-size: 1.5rem;
            margin-bottom: 10px;
            display: block;
        }

        .app-card h3 {
            font-size: 0.88rem;
            font-weight: 800;
            color: var(--gold-p);
            margin: 0 0 6px 0;
        }

        .app-card p {
            font-size: 0.8rem;
            color: var(--text-d);
            line-height: 1.6;
            margin: 0;
        }

        .app-card code {
            display: block;
            background: var(--deep);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 10px 14px;
            font-family: 'Courier New', monospace;
            font-size: 0.78rem;
            color: var(--gold-p);
            margin-bottom: 8px;
        }

        .seo-grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 16px;
        }

        .seo-grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
        }

        /* ── HOW-TO & ABOUT SEO SECTIONS ── */
        .seo-step-card {
            background: var(--ink);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            box-shadow: 0 2px 12px rgba(47, 111, 101, 0.06);
            transition: transform .2s, box-shadow .2s;
        }

        .seo-step-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(47, 111, 101, 0.12);
        }

        .seo-step-num {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--gold), var(--gold-b));
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            font-weight: 900;
            flex-shrink: 0;
            box-shadow: 0 4px 16px rgba(47, 111, 101, 0.3);
        }

        .seo-about-box {
            background: var(--ink);
            border: 1px solid var(--border);
            border-radius: 32px;
            padding: 52px 40px;
            text-align: center;
            box-shadow: 0 4px 32px rgba(47, 111, 101, 0.06);
        }

        .seo-trust-bar {
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 12px;
            font-weight: 700;
            color: var(--text-d);
            background: var(--deep);
            border: 1px solid var(--border);
            border-radius: 99px;
            padding: 8px 20px;
            margin-bottom: 28px;
        }

        .seo-trust-bar a {
            color: var(--gold-p);
            text-decoration: none;
        }

        .seo-trust-bar a:hover {
            text-decoration: underline;
        }

        .seo-trust-dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--veil);
        }

        .seo-def-box {
            background: var(--deep);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 20px 24px;
            text-align: left;
            max-width: 720px;
            margin: 0 auto 28px;
        }

        .seo-tag-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--glow);
            border: 1px solid var(--border);
            color: var(--gold-p);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .05em;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 99px;
        }

        .seo-star {
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--mist);
            transition: color .15s;
        }

        .seo-star:hover,
        .seo-star.lit {
            color: #f59e0b;
        }

        @media (max-width: 640px) {
            .seo-about-box {
                padding: 32px 20px;
            }

            .seo-trust-dot {
                display: none;
            }
        }

        /* HEADER */
        .tool-hero {
            text-align: center;
            padding: 32px 20px 16px;
            position: relative;
            z-index: 1
        }

        .hdr-sig {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 18px;
            animation: fu .9s ease both .1s
        }

        .hl {
            height: 1px;
            width: 72px
        }

        .hl-l {
            background: linear-gradient(90deg, transparent, var(--gold))
        }

        .hl-r {
            background: linear-gradient(90deg, var(--gold), transparent)
        }

        .hd {
            width: 7px;
            height: 7px;
            background: var(--gold);
            transform: rotate(45deg)
        }

        .eye {
            font-family: 'Manrope', sans-serif;
            font-size: 10px;
            letter-spacing: .45em;
            text-transform: uppercase;
            color: #fff;
            animation: fu .9s ease both .2s
        }

        h1 {
            font-family: 'Manrope', sans-serif;
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 900;
            color: var(--gold-p);
            line-height: 1.12;
            margin: 6px 0;
            text-shadow: 0 0 30px rgba(47, 111, 101, .25);
            animation: fu .9s ease both .3s
        }

        .sub {
            font-size: 1.05rem;
            font-style: italic;
            color: var(--text-d);
            max-width: 530px;
            margin: 0 auto 32px;
            animation: fu .9s ease both .5s
        }

        @keyframes fu {
            from {
                opacity: 0;
                transform: translateY(18px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        /* TABS */
        .tabs {
            display: flex;
            justify-content: center;
            gap: 0;
            border: 1px solid var(--border);
            border-radius: var(--r);
            overflow: hidden;
            max-width: 460px;
            margin: 0 auto 44px;
            animation: fu .9s ease both .6s
        }

        .tb {
            flex: 1;
            padding: 13px 18px;
            background: var(--ink);
            border: none;
            color: var(--text-d);
            font-family: 'Manrope', sans-serif;
            font-size: 10.5px;
            letter-spacing: .28em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all .3s;
            border-right: 1px solid var(--border)
        }

        .tb:last-child {
            border-right: none
        }

        .tb:hover {
            background: var(--mist);
            color: #fff
        }

        .tb.on {
            background: var(--veil);
            color: var(--gold-b);
            box-shadow: inset 0 -2px 0 var(--gold)
        }

        /* AD */
        .ad-w {
            max-width: 728px;
            margin: 0 auto 36px
        }

        .ad {
            background: var(--void);
            border: 1px solid rgba(47, 111, 101, .06);
            border-radius: var(--r);
            min-height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-f);
            font-family: 'Manrope', sans-serif;
            font-size: 8.5px;
            letter-spacing: .3em;
            text-transform: uppercase
        }

        .ad-lg {
            min-height: 250px
        }

        /* INPUT PANEL */
        .inp-panel {
            background: var(--ink);
            border: 1px solid var(--border);
            border-radius: 32px;
            padding: 44px 48px;
            max-width: 680px;
            margin: 0 auto 50px;
            position: relative;
            box-shadow: 0 30px 60px rgba(47, 111, 101, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
        }

        .inp-h {
            font-family: 'Manrope', sans-serif;
            font-size: 11px;
            letter-spacing: .4em;
            text-transform: uppercase;
            color: var(--gold);
            text-align: center;
            margin-bottom: 32px;
            font-weight: 800;
        }

        .dr {
            display: flex;
            gap: 12px;
            margin-bottom: 22px;
            width: 100%;
        }

        .dc {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .dc input,
        .dc select,
        .nr input {
            display: block;
            width: 100%;
            height: 56px;
            border-radius: 16px;
            border: 1.5px solid var(--border);
            background: #fdfefe;
            padding: 0 16px;
            font-family: 'Manrope', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--text);
            transition: all 0.3s ease;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
            outline: none;
            text-align: center;
        }

        .dc select {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%232f6f65' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            cursor: pointer;
        }

        .dc input:focus,
        .dc select:focus,
        .nr input:focus {
            border-color: var(--gold);
            background: #fff;
            box-shadow: 0 0 0 5px rgba(47, 111, 101, 0.1);
        }

        .dc label {
            display: block;
            font-family: 'Manrope', sans-serif;
            font-size: 10px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--text-d);
            text-align: center;
            font-weight: 800;
            opacity: 0.7;
        }

        .nr {
            width: 100%;
            margin-bottom: 24px;
        }

        .nr input {
            text-align: center;
            font-style: italic;
            font-weight: 500;
            color: var(--text-d);
        }

        .nr input::placeholder {
            opacity: 0.5;
        }

        input[type=number]::-webkit-inner-spin-button,
        input[type=number]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            appearance: none;
            margin: 0;
        }

        input[type=number] {
            -moz-appearance: textfield;
            appearance: textfield;
        }

        .nr input {
            text-align: center;
            font-style: italic;
            font-weight: 500;
            color: var(--text-d);
        }

        .nr input::placeholder {
            opacity: 0.5;
        }


        .cbtn {
            display: block;
            width: 100%;
            max-width: 360px;
            margin: 0 auto;
            padding: 18px 32px;
            background: linear-gradient(135deg, var(--gold-b) 0%, var(--gold) 100%);
            background-size: 250% 100%;
            border: none;
            border-radius: 18px;
            color: var(--void);
            font-family: 'Manrope', sans-serif;
            font-size: 10.5px;
            font-weight: 700;
            letter-spacing: .36em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all .4s;
            position: relative;
            overflow: hidden
        }

        .cbtn::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, .18) 50%, transparent 75%);
            transform: translateX(-100%);
            transition: transform .55s ease
        }

        .cbtn:hover {
            background-position: 100% 0;
            box-shadow: 0 0 35px rgba(47, 111, 101, .5);
            transform: translateY(-1px)
        }

        .cbtn:hover::after {
            transform: translateX(100%)
        }

        .cbtn:active {
            transform: translateY(0)
        }

        .cbtn:disabled {
            opacity: .45;
            cursor: not-allowed;
            transform: none
        }

        /* RESULTS */
        #results {
            display: none
        }

        #results.on {
            display: block
        }

        /* IDENTITY BANNER */
        .id-ban {
            background: var(--ink);
            border: 1px solid var(--border);
            border-radius: var(--r);
            padding: 42px 46px;
            margin-bottom: 36px;
            text-align: center;
            position: relative;
            overflow: hidden
        }

        .id-ban::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(47, 111, 101, .06), transparent 70%);
            pointer-events: none
        }

        .id-name {
            font-family: 'Manrope', sans-serif;
            font-size: clamp(1.5rem, 4vw, 2.8rem);
            font-weight: 700;
            color: var(--gold-p);
            text-shadow: 0 0 35px rgba(47, 111, 101, .35);
            margin-bottom: 5px
        }

        .id-dob {
            font-style: italic;
            color: var(--text-d);
            font-size: .9rem;
            margin-bottom: 24px;
            letter-spacing: .04em
        }

        .id-nums {
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
            margin-bottom: 22px
        }

        .id-nv {
            font-family: 'Manrope', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            line-height: 1;
            margin-bottom: 4px
        }

        .id-nl {
            font-size: .78rem;
            color: var(--text-d);
            font-style: italic
        }

        .id-q {
            font-size: .98rem;
            font-style: italic;
            color: var(--text);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.85
        }

        /* SECTION DIVIDER */
        .sdiv {
            display: flex;
            align-items: center;
            gap: 18px;
            margin: 48px 0 28px
        }

        .sdiv-l {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(47, 111, 101, .22))
        }

        .sdiv-r {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, rgba(47, 111, 101, .22), transparent)
        }

        .sdiv-t {
            font-family: 'Manrope', sans-serif;
            font-size: 9.5px;
            letter-spacing: .38em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 800;
            white-space: nowrap
        }

        /* CHART */
        .chart-a {
            text-align: center;
            margin-bottom: 36px
        }

        #msv {
            max-width: 580px;
            width: 100%;
            margin: 0 auto;
            display: block;
            filter: drop-shadow(0 0 35px rgba(47, 111, 101, .18));
            position: relative;
        }

        .nd {
            cursor: pointer
        }

        .nd:hover .nd-r {
            stroke: var(--gold);
            filter: drop-shadow(0 0 8px rgba(47, 111, 101, .6))
        }

        .nd:hover .nd-n {
            fill: var(--gold-b)
        }

        .nd-r {
            fill: var(--ink);
            stroke: rgba(47, 111, 101, .8);
            stroke-width: 1.2;
            transition: stroke .25s
        }

        .nd-i {
            fill: var(--ink)
        }

        .nd-n {
            font-family: 'Manrope', sans-serif;
            fill: var(--gold-p);
            font-weight: 600;
            text-anchor: middle;
            dominant-baseline: central;
            transition: fill .25s
        }

        .nd-l {
            font-family: 'Manrope', sans-serif;
            fill: var(--text-d);
            text-anchor: middle;
            font-style: italic
        }

        .ct-o {
            fill: var(--void);
            stroke: var(--gold);
            stroke-width: 1.8
        }

        .ct-m {
            fill: rgba(47, 111, 101, .04)
        }

        .ct-n {
            font-family: 'Manrope', sans-serif;
            fill: var(--gold-b);
            font-weight: 700;
            text-anchor: middle;
            dominant-baseline: central
        }

        .ct-l {
            font-family: 'Manrope', sans-serif;
            fill: var(--gold);
            text-anchor: middle;
            font-style: italic;
            letter-spacing: .06em
        }

        /* LEGEND */
        .legend {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-top: 18px
        }

        .leg-i {
            display: flex;
            align-items: center;
            gap: 6px;
            background: var(--void);
            border: 1px solid var(--border);
            border-radius: var(--r);
            padding: 5px 11px;
            font-family: 'Manrope', sans-serif;
            font-size: 8px;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--text-d)
        }

        .leg-d {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            flex-shrink: 0
        }

        /* POSITION CARDS */
        .pgrid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
            gap: 16px;
            margin-bottom: 16px
        }

        .pc {
            background: var(--ink);
            border: 1px solid var(--border);
            border-radius: var(--r);
            padding: 24px;
            position: relative;
            overflow: hidden;
            transition: border-color .3s, box-shadow .3s, transform .2s;
            cursor: pointer
        }

        .pc::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            transition: opacity .3s
        }

        .pc:hover {
            border-color: rgba(47, 111, 101, .28);
            box-shadow: 0 4px 28px rgba(47, 111, 101, .07);
            transform: translateY(-1px)
        }

        .pc:hover::before {
            opacity: 1
        }

        .pc.exp .pc-full {
            display: block
        }

        .pc.exp .pc-hint {
            display: none
        }

        .pc-img-w {
            margin: 12px 0;
            border-radius: 6px;
            overflow: hidden;
            border: 1px solid rgba(47, 111, 101, 0.08);
            background: rgba(47, 111, 101, 0.02);
            height: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .pc-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .pc-img-f {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--gold-d);
            opacity: 0.6;
            padding: 20px;
        }

        .pc-img-f span:first-child {
            font-size: 1.4rem;
        }

        .pc-img-f span:last-child {
            font-size: 0.65rem;
            font-weight: 700;
        }

        .pc-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, .2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Manrope', sans-serif;
            font-size: .9rem;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .pc-zone {
            font-family: 'Manrope', sans-serif;
            font-size: 8px;
            letter-spacing: .28em;
            text-transform: uppercase;
            color: var(--text-d);
            margin-bottom: 4px
        }

        .pc-arc {
            display: inline-flex;
            align-items: center;
            background: rgba(47, 111, 101, 0.08);
            color: var(--primary);
            padding: 5px 12px;
            border-radius: 8px;
            font-family: 'Manrope', sans-serif;
            font-size: .78rem;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 0.01em;
        }

        .pc-name {
            font-family: 'Manrope', sans-serif;
            font-size: 1.28rem;
            font-style: italic;
            color: var(--gold-p);
            margin-bottom: 9px
        }

        .pc-short {
            font-size: .9rem;
            color: var(--text-d);
            line-height: 1.7;
            margin-bottom: 8px
        }

        .pc-full {
            display: none;
            font-size: .9rem;
            color: var(--text);
            line-height: 1.8;
            margin-top: 8px
        }

        .pc-hint {
            font-family: 'Manrope', sans-serif;
            font-size: 8.5px;
            letter-spacing: .15em;
            text-transform: uppercase;
            color: var(--gold-p);
            opacity: .8;
            margin-top: 16px;
            text-align: center;
            border-top: 1px solid rgba(47, 111, 101, 0.08);
            padding-top: 12px;
            font-weight: 700;
        }

        .kws {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            margin-top: 10px
        }

        .kw {
            background: rgba(47, 111, 101, .06);
            border: 1px solid rgba(47, 111, 101, .18);
            border-radius: 4px;
            padding: 3px 8px;
            font-family: 'Manrope', sans-serif;
            font-size: 8px;
            font-weight: 700;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--gold-p)
        }

        /* DOMAINS */
        .dgrid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 16px;
            margin-bottom: 24px
        }

        .dc-card {
            background: var(--ink);
            border: 1px solid var(--border);
            border-radius: var(--r);
            padding: 22px;
            transition: border-color .3s
        }

        .dc-card:hover {
            border-color: rgba(47, 111, 101, .25)
        }

        .dc-icon {
            font-size: 1.4rem;
            margin-bottom: 9px;
            display: block
        }

        .dc-name {
            font-family: 'Manrope', sans-serif;
            font-size: 8.5px;
            letter-spacing: .3em;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 5px
        }

        .dc-arc {
            font-family: 'Manrope', sans-serif;
            font-size: 1.1rem;
            font-style: italic;
            color: var(--gold-p);
            margin-bottom: 7px
        }

        .dc-text {
            font-size: .88rem;
            color: var(--text-d);
            line-height: 1.7
        }

        /* FATE */
        .fate-sc {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding: 10px 0 20px;
            scrollbar-width: none;
            scroll-behavior: smooth;
        }

        .fate-sc::-webkit-scrollbar {
            display: none;
        }

        .sl-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--ink);
            border: 1px solid var(--border);
            color: #fff;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(47, 111, 101, 0.1);
            transition: all 0.3s;
        }

        .sl-btn:hover {
            background: var(--gold);
            color: var(--ink);
            border-color: #fff;
        }

        .sl-l {
            left: -18px;
        }

        .sl-r {
            right: -18px;
        }

        @media (max-width: 1200px) {
            .sl-l {
                left: 0;
            }

            .sl-r {
                right: 0;
            }
        }

        .fc {
            flex: 0 0 138px;
            background: var(--ink);
            border: 1px solid var(--border);
            border-radius: var(--r);
            padding: 16px 12px;
            text-align: center;
            transition: border-color .3s, transform .2s
        }

        .fc:hover {
            border-color: rgba(47, 111, 101, .3);
            transform: translateY(-2px)
        }

        .fc-age {
            font-family: 'Manrope', sans-serif;
            font-size: 7.5px;
            letter-spacing: .26em;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 7px
        }

        .fc-num {
            font-family: 'Manrope', sans-serif;
            font-size: 1.7rem;
            font-weight: 700;
            color: var(--gold-p);
            line-height: 1;
            margin-bottom: 4px
        }

        .fc-name {
            font-family: 'Manrope', sans-serif;
            font-size: .8rem;
            font-style: italic;
            color: var(--text-d);
            margin-bottom: 5px
        }

        .fc-theme {
            font-size: .75rem;
            color: var(--text-f);
            line-height: 1.5
        }

        /* AI PANEL */
        .ai-pan {
            background: var(--ink);
            border: 1px solid var(--border);
            border-radius: var(--r);
            padding: 38px;
            margin-bottom: 36px;
            position: relative;
            overflow: hidden
        }

        .ai-pan::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 50% 30% at 50% 0%, rgba(47, 111, 101, .05), transparent 70%);
            pointer-events: none
        }

        .ai-hdr {
            text-align: center;
            margin-bottom: 26px
        }

        .ai-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(47, 111, 101, .15);
            border: 1px solid rgba(47, 111, 101, .4);
            border-radius: 99px;
            padding: 5px 14px;
            font-family: 'Manrope', sans-serif;
            font-size: 8px;
            letter-spacing: .28em;
            text-transform: uppercase;
            color: var(--gold-p);
            margin-bottom: 14px
        }

        .ai-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            animation: pulse 1.5s ease-in-out infinite
        }

        .ai-title {
            font-family: 'Manrope', sans-serif;
            font-size: 1.05rem;
            color: var(--gold-p);
            margin-bottom: 5px;
            font-weight: 600
        }

        .ai-sub {
            font-size: .88rem;
            color: var(--text-d);
            font-style: italic;
            max-width: 480px;
            margin: 0 auto
        }

        .ai-btn {
            display: block;
            width: 100%;
            max-width: 320px;
            margin: 0 auto 22px;
            padding: 16px 22px;
            background: linear-gradient(135deg, rgba(47, 111, 101, .12), rgba(47, 111, 101, .06));
            border: 1px solid var(--border-b);
            border-radius: var(--r);
            color: var(--gold-b);
            font-family: 'Manrope', sans-serif;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: .3em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all .3s;
            position: relative;
            overflow: hidden
        }

        .ai-btn::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, .03) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform .6s
        }

        .ai-btn:hover {
            background: linear-gradient(135deg, rgba(47, 111, 101, .2), rgba(47, 111, 101, .1));
            box-shadow: 0 0 30px rgba(47, 111, 101, .18), inset 0 0 20px rgba(47, 111, 101, .05);
            transform: translateY(-1px)
        }

        .ai-btn:hover::after {
            transform: translateX(100%)
        }

        .ai-btn:disabled {
            opacity: .4;
            cursor: not-allowed
        }

        /* AI LOADER */
        .ai-loader-inner {
            text-align: center;
            padding: 50px 20px 40px
        }

        .ai-orb {
            width: 48px;
            height: 48px;
            margin: 0 auto 22px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 35%, var(--gold-p), rgba(47, 111, 101, .3));
            box-shadow: 0 0 30px rgba(47, 111, 101, .25), 0 0 60px rgba(47, 111, 101, .1);
            animation: orbPulse 2s ease-in-out infinite
        }

        @keyframes orbPulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 0 30px rgba(47, 111, 101, .25), 0 0 60px rgba(47, 111, 101, .1)
            }

            50% {
                transform: scale(1.15);
                box-shadow: 0 0 45px rgba(47, 111, 101, .35), 0 0 80px rgba(47, 111, 101, .15)
            }
        }

        .ai-loader-text {
            font-family: 'Manrope', sans-serif;
            font-size: .82rem;
            color: var(--text-d);
            font-style: italic;
            letter-spacing: .05em;
            transition: opacity .3s ease
        }

        /* AI OUTPUT */
        #ai-out {
            font-size: .98rem;
            line-height: 1.9;
            color: var(--text);
            min-height: 0
        }

        #ai-out.ai-revealed .ai-sec {
            opacity: 0;
            transform: translateY(12px);
            animation: aiSecReveal .5s ease forwards
        }

        @keyframes aiSecReveal {
            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        .ai-sec {
            margin-bottom: 24px;
            padding: 20px 22px;
            background: rgba(47, 111, 101, .03);
            border: 1px solid rgba(47, 111, 101, .08);
            border-radius: 10px;
            transition: border-color .3s
        }

        .ai-sec:hover {
            border-color: rgba(47, 111, 101, .18)
        }

        .ai-sec.ai-error {
            background: rgba(239, 68, 68, .04);
            border-color: rgba(239, 68, 68, .15)
        }

        .ai-st {
            font-family: 'Manrope', sans-serif;
            font-size: 9px;
            letter-spacing: .25em;
            text-transform: uppercase;
            color: var(--gold-p);
            margin-bottom: 10px;
            font-weight: 700
        }

        .ai-sx {
            font-size: .95rem;
            color: var(--text);
            line-height: 1.85;
            font-style: italic
        }

        /* COMPAT */
        #tab-compat {
            display: none
        }

        #tab-compat.on {
            display: block
        }

        .cp-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 32px;
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
        }

        .cp-p {
            background: #fdfefe;
            border: 1.5px solid var(--border);
            border-radius: 24px;
            padding: 32px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
        }

        .cp-pt {
            font-family: 'Manrope', sans-serif;
            font-size: 9px;
            letter-spacing: .32em;
            text-transform: uppercase;
            color: var(--gold);
            text-align: center;
            margin-bottom: 18px;
            font-weight: 800;
        }

        .cp-res {
            background: var(--ink);
            border: 1px solid var(--border);
            border-radius: var(--r);
            padding: 38px;
            text-align: center;
            display: none
        }

        .cp-res.on {
            display: block
        }

        .cp-ban {
            margin-bottom: 40px;
            padding: 45px 20px;
            background: linear-gradient(135deg, rgba(47, 111, 101, 0.02) 0%, rgba(47, 111, 101, 0.06) 100%);
            border-radius: 24px;
            border: 1px solid var(--border);
            box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.5);
        }

        .cp-sc {
            font-family: 'Manrope', sans-serif;
            font-size: 4.5rem;
            font-weight: 900;
            color: var(--gold);
            line-height: 1;
            margin-bottom: 8px;
            text-shadow: 0 4px 12px rgba(47, 111, 101, 0.15);
        }

        .cp-sl {
            font-family: 'Manrope', sans-serif;
            font-size: 10px;
            letter-spacing: .4em;
            text-transform: uppercase;
            color: var(--text-d);
            font-weight: 700;
        }

        .cp-item {
            background: var(--ink);
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            width: 100%;
            max-width: 440px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
            transition: all .25s ease;
            margin: 0;
        }

        .cp-item:hover {
            transform: translateY(-2px);
            border-color: var(--gold-b);
            box-shadow: 0 10px 30px rgba(47, 111, 101, 0.08);
        }

        .cp-item-c {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--gold);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.15rem;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(47, 111, 101, 0.2);
        }

        .cp-item-l {
            font-family: 'Manrope', sans-serif;
            font-size: 15px;
            font-weight: 800;
            color: var(--text);
            text-align: left;
            letter-spacing: -0.01em;
            margin-bottom: 2px;
        }

        .cp-item-d {
            font-size: 11px;
            color: var(--text-d);
            line-height: 1.45;
            text-align: left;
        }

        .cp-shared-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            margin-top: 15px;
        }

        .cp-bars {
            margin-bottom: 24px
        }

        .cp-br {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px
        }

        .cp-bl {
            font-family: 'Manrope', sans-serif;
            font-size: 8px;
            letter-spacing: .18em;
            text-transform: uppercase;
            color: var(--text-d);
            width: 110px;
            text-align: right;
            flex-shrink: 0
        }

        .cp-bt {
            flex: 1;
            height: 3px;
            background: rgba(47, 111, 101, .1);
            border-radius: 2px;
            overflow: hidden
        }

        .cp-bf {
            height: 100%;
            background: linear-gradient(90deg, var(--gold-d), var(--gold-b));
            border-radius: 2px;
            transition: width 1.1s ease;
            width: 0
        }

        .cp-bv {
            font-family: 'Manrope', sans-serif;
            font-size: 10px;
            font-weight: 700;
            color: var(--text);
            width: 34px;
            text-align: right;
        }

        .cp-narr {
            font-size: 1.05rem;
            font-style: italic;
            color: var(--text);
            line-height: 1.9;
            max-width: 640px;
            margin: 32px auto;
            position: relative;
            padding: 0 20px;
        }

        .cp-narr::before {
            content: '"';
            position: absolute;
            left: -10px;
            top: -10px;
            font-size: 4rem;
            color: var(--gold);
            opacity: .1;
            font-family: serif;
        }

        .cp-sl {
            font-family: 'Manrope', sans-serif;
            font-size: 9px;
            letter-spacing: .32em;
            text-transform: uppercase;
            color: var(--text-d);
            font-weight: 700;
        }

        /* TOOLTIP */
        #tt {
            position: fixed;
            z-index: 9999;
            pointer-events: none;
            background: var(--ink);
            border: 1px solid rgba(47, 111, 101, .4);
            border-radius: var(--r);
            padding: 14px 17px;
            max-width: 230px;
            opacity: 0;
            transform: translateY(4px);
            transition: opacity .18s, transform .18s;
            box-shadow: 0 10px 40px rgba(0, 0, 0, .6)
        }

        #tt.on {
            opacity: 1;
            transform: translateY(0)
        }

        .tt-a {
            font-family: 'Manrope', sans-serif;
            font-size: 8px;
            letter-spacing: .22em;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 3px
        }

        .tt-n {
            font-family: 'Manrope', sans-serif;
            font-size: 1.05rem;
            font-style: italic;
            color: var(--gold-p);
            margin-bottom: 6px
        }

        .tt-t {
            font-size: .8rem;
            color: var(--text-d);
            line-height: 1.6
        }

        /* LOADER */
        #ldr {
            position: fixed;
            inset: 0;
            z-index: 9990;
            background: rgba(255, 255, 255, .88);
            backdrop-filter: blur(6px);
            display: none;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 20px
        }

        #ldr.on {
            display: flex
        }

        .lr {
            position: absolute;
            border-radius: 50%;
            border-style: solid;
            border-color: transparent;
            animation: spin 1s linear infinite
        }

        .lr1 {
            inset: 0;
            border-width: 1.5px;
            border-top-color: #fff
        }

        .lr2 {
            inset: 10px;
            border-width: 1px;
            border-bottom-color: rgba(47, 111, 101, .5);
            animation-duration: .7s;
            animation-direction: reverse
        }

        .lr3 {
            inset: 20px;
            border-width: 1px;
            border-top-color: rgba(47, 111, 101, .25);
            animation-duration: 1.4s
        }

        .lrw {
            position: relative;
            width: 80px;
            height: 80px
        }

        .l-txt {
            font-family: 'Manrope', sans-serif;
            font-size: 9.5px;
            letter-spacing: .4em;
            text-transform: uppercase;
            color: #fff;
            animation: pulse 1.6s ease-in-out infinite
        }

        .l-sub {
            font-size: .83rem;
            color: var(--text-d);
            font-style: italic
        }

        @keyframes spin {
            to {
                transform: rotate(360deg)
            }
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: .4
            }

            50% {
                opacity: 1
            }
        }

        /* SHARE */
        .share-r {
            display: flex;
            gap: 9px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 18px
        }

        .sh-b {
            padding: 9px 18px;
            background: rgba(47, 111, 101, .07);
            border: 1px solid var(--border);
            border-radius: var(--r);
            color: var(--text-d);
            font-family: 'Manrope', sans-serif;
            font-size: 8px;
            letter-spacing: .22em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all .25s
        }

        .sh-b:hover {
            border-color: var(--border-b);
            color: #fff;
            background: rgba(47, 111, 101, .12)
        }

        .sh-b-premium {
            padding: 12px 28px;
            background: rgba(47, 111, 101, 0.05);
            border: 1.5px solid var(--border-b);
            border-radius: 14px;
            color: var(--gold-p);
            font-family: 'Manrope', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .15em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(47, 111, 101, 0.04);
        }

        .sh-b-premium:hover {
            background: var(--gold);
            color: #fff;
            border-color: var(--gold);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(47, 111, 101, 0.15);
        }

        .sh-b-premium:active {
            transform: translateY(0);
        }

        /* REVEAL */
        .rv {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity .65s ease, transform .65s ease
        }

        .rv.vis {
            opacity: 1;
            transform: translateY(0)
        }

        footer {
            border-top: 1px solid rgba(47, 111, 101, .08);
            padding: 38px 20px;
            text-align: center;
            position: relative;
            z-index: 1;
            margin-top: 56px
        }

        .ft-l {
            font-family: 'Manrope', sans-serif;
            font-size: 8.5px;
            letter-spacing: .42em;
            text-transform: uppercase;
            color: #fff;
            margin-bottom: 7px
        }

        .ft-t {
            font-size: .83rem;
            color: var(--text-d);
            font-style: italic
        }

        @media(max-width:640px) {

            .inp-panel,
            .id-ban,
            .ai-pan {
                padding: 26px 16px
            }

            .pgrid,
            .dgrid {
                grid-template-columns: 1fr
            }

            .cp-grid {
                grid-template-columns: 1fr
            }

            .id-nums {
                gap: 18px
            }

            h1 {
                font-size: 1.75rem
            }
        }

        ::-webkit-scrollbar {
            width: 3px;
            height: 3px
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(47, 111, 101, .15);
            border-radius: 2px
        }

        /* FOOTER OPTIMIZATION */
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr !important;
                gap: 3rem !important;
                text-align: center;
            }

            .footer-grid>div {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .footer-grid p {
                max-width: 100% !important;
            }
        }
    