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

        :root {
            /* Windows 11 Fluent-inspired tokens */
            --accent: 209 100% 56%;          /* Win11-ish blue */
            --accent-2: 195 100% 50%;

            --background: 210 20% 96%;       /* light mica */
            --foreground: 222 47% 11%;

            --muted: 210 16% 92%;
            --muted-foreground: 215 16% 42%;

            /* Acrylic surfaces */
            --surface: 0 0% 100%;
            --surface-alpha: 0.72;
            --surface-2: 0 0% 100%;
            --surface-2-alpha: 0.58;

            --card: 0 0% 100%;
            --card-foreground: 222 47% 11%;
            --border: 214 25% 86%;

            /* Radii + shadow (Fluent) */
            --radius-sm: 10px;
            --radius-md: 14px;
            --radius-lg: 18px;
            --shadow-1: 0 6px 18px rgba(0,0,0,0.08);
            --shadow-2: 0 14px 40px rgba(0,0,0,0.12);

            /* Primary (kept for existing gradients) */
            --primary: var(--accent);
            --primary-light: 210 100% 66%;
            --primary-dark: 212 92% 46%;
        }

        @media (prefers-color-scheme: dark) {
            :root {
                --background: 222 30% 10%;
                --foreground: 210 20% 96%;
                --muted: 222 24% 14%;
                --muted-foreground: 215 18% 72%;

                --surface: 222 22% 14%;
                --surface-alpha: 0.72;
                --surface-2: 222 22% 14%;
                --surface-2-alpha: 0.56;

                --card: 222 22% 14%;
                --card-foreground: 210 20% 96%;
                --border: 222 18% 22%;

                --shadow-1: 0 10px 26px rgba(0,0,0,0.35);
                --shadow-2: 0 18px 60px rgba(0,0,0,0.45);
            }
        }

        body {
            font-family: "Segoe UI Variable", "Segoe UI", -apple-system, BlinkMacFont, Roboto, "Helvetica Neue", Arial, sans-serif;
            background: hsl(var(--background));
            color: hsl(var(--foreground));
            line-height: 1.6;
        }

        /* Subtle Win11-style background tint (mica-ish) */
        body::before {
            content: "";
            position: fixed;
            inset: -20vh -20vw;
            pointer-events: none;
            z-index: -1;
            background:
                radial-gradient(50% 40% at 25% 20%, hsl(var(--accent) / 0.18), transparent 60%),
                radial-gradient(60% 45% at 70% 30%, hsl(var(--accent-2) / 0.14), transparent 55%),
                radial-gradient(65% 55% at 50% 85%, hsl(var(--accent) / 0.12), transparent 60%);
            filter: blur(28px);
            opacity: 0.9;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Logo Styles */
        .logo-wrapper {
            position: relative;
            display: inline-block;
        }

        .logo-glow {
            position: absolute;
            inset: 0;
            background: hsl(var(--primary) / 0.6);
            border-radius: 50%;
            filter: blur(40px);
        }

        .gota-container {
            position: relative;
            width: 80px;
            height: 80px;
            overflow: hidden;
            animation: float 3s ease-in-out infinite;
        }

        .gota {
            position: absolute;
            width: 40px;
            height: 40px;
            border-radius: 0% 50% 50% 50%;
        }

        .gota-1 { background-color: hsl(var(--primary)); transform: rotate(0deg); top: 0; left: 0; }
        .gota-2 { background-color: hsl(var(--primary-light)); transform: rotate(90deg); top: 0; right: 0; }
        .gota-3 { background-color: hsl(var(--primary-dark)); transform: rotate(-90deg); bottom: 0; left: 0; }
        .gota-4 { background-color: hsl(var(--accent)); transform: rotate(180deg); bottom: 0; right: 0; }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .animate-slide-up {
            animation: slideUp 0.8s ease-out;
        }

        .animate-pulse {
            animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        .animate-bounce {
            animation: bounce 2s infinite;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: linear-gradient(180deg, hsl(var(--background)), hsl(var(--background) / 0.9), hsl(var(--muted)));
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .hero-bg-blob-1 {
            position: absolute;
            top: 25%;
            left: 25%;
            width: 384px;
            height: 384px;
            background: hsl(var(--primary) / 0.1);
            border-radius: 50%;
            filter: blur(80px);
            animation: pulse 3s infinite;
        }

        .hero-bg-blob-2 {
            position: absolute;
            bottom: 25%;
            right: 25%;
            width: 384px;
            height: 384px;
            background: hsl(var(--accent) / 0.1);
            border-radius: 50%;
            filter: blur(80px);
            animation: pulse 3s infinite 1s;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 5rem 1rem;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: bold;
            background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--primary-light)), hsl(var(--accent)));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
        }

        .hero .subtitle {
            font-size: 1.5rem;
            color: hsl(var(--muted-foreground));
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .hero .description {
            font-size: 1.125rem;
            color: hsl(var(--foreground) / 0.8);
            max-width: 42rem;
            margin: 0 auto 2rem;
            line-height: 1.8;
        }

        .hero .description strong {
            color: hsl(var(--primary));
            font-weight: 600;
        }

        /* Buttons */
        .btn-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin: 2rem 0;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            font-size: 1.125rem;
            font-weight: 500;
            border-radius: var(--radius-md);
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--primary-light)));
            color: #fff;
            box-shadow: var(--shadow-1);
            border: 1px solid hsl(var(--accent) / 0.35);
        }

        .btn-primary:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: var(--shadow-2);
            filter: saturate(1.05);
        }

        .btn-outline {
            background: hsl(var(--surface) / 0.18);
            color: hsl(var(--foreground));
            border: 1px solid hsl(var(--border));
            backdrop-filter: blur(10px) saturate(150%);
            box-shadow: var(--shadow-1);
        }

        .btn-outline:hover {
            transform: translateY(-2px) scale(1.03);
            border-color: hsl(var(--accent) / 0.5);
            box-shadow: var(--shadow-2);
        }

        /* Stats */
        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 42rem;
            margin: 3rem auto 0;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            font-weight: bold;
            color: hsl(var(--primary));
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 0.875rem;
            color: hsl(var(--muted-foreground));
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
        }

        .scroll-indicator-inner {
            width: 24px;
            height: 40px;
            border: 2px solid hsl(var(--primary) / 0.3);
            border-radius: 20px;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 8px;
        }

        .scroll-indicator-dot {
            width: 4px;
            height: 12px;
            background: hsl(var(--primary));
            border-radius: 2px;
        }

        /* Features Section */
        .features {
            padding: 5rem 1rem;
            background: hsl(var(--background));
        }

        .features-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .features-header h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .features-header p {
            font-size: 1.125rem;
            color: hsl(var(--muted-foreground));
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .card {
            background: hsl(var(--surface) / var(--surface-alpha));
            border: 1px solid hsl(var(--border));
            border-radius: var(--radius-lg);
            padding: 2rem;
            transition: all 0.3s;
            backdrop-filter: blur(14px) saturate(160%);
            box-shadow: var(--shadow-1);
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-2);
            border-color: hsl(var(--accent) / 0.28);
        }

        .card-icon {
            width: 48px;
            height: 48px;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: hsl(var(--card-foreground));
        }

        .card p {
            color: hsl(var(--muted-foreground));
            line-height: 1.6;
        }

        .callout-card {
            background:
                linear-gradient(135deg, hsl(var(--accent) / 0.14), hsl(var(--accent-2) / 0.10)),
                hsl(var(--surface) / var(--surface-alpha));
            border: 1px solid hsl(var(--accent) / 0.28);
            text-align: center;
            padding: 3rem 2rem;
        }

        .callout-card h3 {
            font-size: 2rem;
            background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* CTA Section */
        .cta {
            padding: 5rem 1rem;
            background: linear-gradient(135deg, hsl(var(--primary) / 0.05), hsl(var(--accent) / 0.05));
            position: relative;
            overflow: hidden;
        }

        .cta-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .cta-header h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .cta-header p {
            font-size: 1.125rem;
            color: hsl(var(--muted-foreground));
        }

        .cta-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .pricing-card {
            background: hsl(var(--surface) / var(--surface-alpha));
            border: 1px solid hsl(var(--border));
            border-radius: calc(var(--radius-lg) + 2px);
            padding: 2.5rem;
            transition: all 0.3s;
            backdrop-filter: blur(14px) saturate(160%);
            box-shadow: var(--shadow-1);
        }

        .pricing-card.featured {
            border-color: hsl(var(--accent) / 0.65);
            box-shadow: var(--shadow-2);
            transform: scale(1.03);
        }

        .pricing-card:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: var(--shadow-2);
            border-color: hsl(var(--accent) / 0.35);
        }

        .pricing-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .pricing-badge.free {
            background: hsl(var(--muted));
            color: hsl(var(--foreground));
        }

        .pricing-badge.premium {
            background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
            color: white;
        }

        .pricing-card h3 {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .price {
            font-size: 3rem;
            font-weight: bold;
            color: hsl(var(--primary));
            margin-bottom: 2rem;
        }

        .price-small {
            font-size: 1.5rem;
            color: hsl(var(--muted-foreground));
        }

        .features-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .features-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid hsl(var(--border));
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .features-list li:before {
            content: "✓";
            color: hsl(var(--primary));
            font-weight: bold;
            font-size: 1.25rem;
        }

        .cta-note {
            text-align: center;
            margin-top: 3rem;
            padding: 2rem;
            background: hsl(var(--muted) / 0.5);
            border-radius: 0.75rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-note p {
            color: hsl(var(--muted-foreground));
            margin-bottom: 0.5rem;
        }

        /* Footer */
        .footer {
            background: hsl(var(--card));
            border-top: 1px solid hsl(var(--border));
            padding: 4rem 1rem 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: hsl(var(--foreground));
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 0.75rem;
        }

        .footer-section a {
            color: hsl(var(--muted-foreground));
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-section a:hover {
            color: hsl(var(--primary));
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .footer-brand .gota-container {
            width: 48px;
            height: 48px;
        }

        .footer-brand .gota {
            width: 24px;
            height: 24px;
        }

        .footer-brand h4 {
            margin: 0;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid hsl(var(--border));
            color: hsl(var(--muted-foreground));
            font-size: 0.875rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero .subtitle {
                font-size: 1.25rem;
            }

            .stats {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

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

            .pricing-card.featured {
                transform: scale(1);
            }

            .btn-group {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Header Navigation (match PowerTools) */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            backdrop-filter: blur(16px) saturate(170%);
            background: hsl(var(--surface) / 0.72);
            border-bottom: 1px solid hsl(var(--border));
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

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

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: hsl(var(--foreground));
            font-weight: 800;
            letter-spacing: -0.02em;
            transition: opacity 0.2s ease;
        }

        .nav-logo:hover {
            opacity: 0.85;
        }

        .nav-logo-text {
            font-size: 20px;
        }

        /* Menu logo size (same as PowerTools) */
        .nav-logo .gota-container {
            width: 28px;
            height: 28px;
            animation: none !important;
        }

        .nav-logo .gota {
            width: 14px;
            height: 14px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .nav-menu a {
            text-decoration: none;
            color: hsl(var(--muted-foreground));
            font-weight: 600;
            font-size: 14px;
            padding: 10px 12px;
            border-radius: 12px;
            transition: all .15s ease;
        }

        .nav-menu a:hover {
            color: hsl(var(--foreground));
            background: hsl(var(--muted));
        }

        /* Theme controls */
        .theme-controls {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .theme-toggle {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .theme-toggle input {
            position: absolute;
            opacity: 0;
            width: 1px;
            height: 1px;
        }

        .theme-toggle-track {
            width: 54px;
            height: 30px;
            border-radius: 999px;
            background: hsl(var(--muted));
            border: 1px solid hsl(var(--border));
            position: relative;
            transition: all .2s ease;
            box-shadow: var(--shadow-1);
        }

        .theme-toggle-thumb {
            width: 24px;
            height: 24px;
            border-radius: 999px;
            background: hsl(var(--card));
            border: 1px solid hsl(var(--border));
            position: absolute;
            top: 50%;
            left: 3px;
            transform: translateY(-50%);
            box-shadow: 0 6px 18px rgba(0,0,0,.15);
            transition: all .2s ease;
        }

        .theme-toggle input:checked + .theme-toggle-track .theme-toggle-thumb {
            transform: translate(24px, -50%);
        }

        .theme-toggle input:focus-visible + .theme-toggle-track {
            outline: 2px solid hsl(var(--primary) / 0.5);
            outline-offset: 2px;
        }

        /* CTA button in the menu: default is tighter + flatter like PowerTools */
        .nav-menu .btn {
            padding: 10px 16px;
            font-size: 14px;
            border-radius: 12px;
        }

        .nav-menu .btn-primary {
            box-shadow: none;
        }

        .nav-menu .btn-primary:hover {
            transform: none;
            box-shadow: none;
            filter: none;
        }

        /* Professional Key: copy the exact model of the "Download Free" primary button */
        .nav-menu .btn.btn-download-free,
        .nav-mobile-menu .btn.btn-download-free {
            padding: 1rem 2rem;
            font-size: 1.125rem;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--primary-light)));
            color: #fff;
            box-shadow: var(--shadow-1);
            border: 1px solid hsl(var(--accent) / 0.35);
        }

        .nav-menu .btn.btn-download-free:hover,
        .nav-mobile-menu .btn.btn-download-free:hover {
            transform: translateY(-2px) scale(1.03);
            box-shadow: var(--shadow-2);
            filter: saturate(1.05);
        }

        /* Professional Key: 30% smaller than Download Free (keeps same visual model) */
        .nav-menu .btn.btn-pro-key,
        .nav-mobile-menu .btn.btn-pro-key {
            padding: calc(1rem * 0.7) calc(2rem * 0.7);
            font-size: calc(1.125rem * 0.7);
        }

        /* Mobile */
        .nav-mobile-toggle {
            display: none;
            background: transparent;
            border: 0;
            color: hsl(var(--foreground));
            padding: 10px;
            border-radius: 12px;
            cursor: pointer;
        }

        .nav-mobile-toggle:hover {
            background: hsl(var(--muted));
        }

        .nav-mobile-menu {
            display: none;
            position: absolute;
            top: 64px;
            left: 16px;
            right: 16px;
            background: hsl(var(--surface) / 0.58);
            backdrop-filter: blur(16px);
            border: 1px solid hsl(var(--border));
            border-radius: 16px;
            box-shadow: var(--shadow-2);
            padding: 14px;
        }

        .nav-mobile-menu.active {
            display: block;
        }

        .nav-mobile-menu a {
            display: block;
            padding: 12px 10px;
            border-radius: 12px;
            color: hsl(var(--muted-foreground));
            font-weight: 600;
            text-decoration: none;
        }

        .nav-mobile-menu a:hover {
            background: hsl(var(--muted));
            color: hsl(var(--foreground));
        }

        .nav-mobile-menu .btn {
            width: 100%;
            margin-top: 10px;
        }

        @media (max-width: 860px) {
            .nav-menu { display: none; }
            .nav-mobile-toggle { display: inline-flex; }
        }

        /* Keep sections from hiding behind fixed header */
        section[id] { scroll-margin-top: 80px; }


        /* === Smooth theme transition (global) === */
        @media (prefers-reduced-motion: no-preference) {
            html { transition: background-color .35s ease, color .35s ease; }
            body, header, nav, section, footer, .nav-mobile-menu, .theme-toggle-track, .theme-toggle-thumb, .nav-menu a, .nav-mobile-menu a, button, a {
                transition: background-color .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease, opacity .35s ease;
            }
        }
        /* Theme override (manual selector) */
        html[data-theme="dark"] {
            --background: 222 30% 10%;
            --foreground: 210 20% 96%;
            --muted: 222 24% 14%;
            --muted-foreground: 215 18% 72%;

            --surface: 222 22% 14%;
            --surface-alpha: 0.72;
            --surface-2: 222 22% 14%;
            --surface-2-alpha: 0.56;

            --card: 222 22% 14%;
            --card-foreground: 210 20% 96%;
            --border: 222 18% 22%;

            --shadow-1: 0 10px 26px rgba(0,0,0,0.35);
            --shadow-2: 0 18px 60px rgba(0,0,0,0.45);
        }

        html[data-theme="light"] {
            --background: 210 20% 96%;
            --foreground: 222 47% 11%;
            --muted: 210 16% 92%;
            --muted-foreground: 215 16% 42%;

            --surface: 0 0% 100%;
            --surface-alpha: 0.72;
            --surface-2: 0 0% 100%;
            --surface-2-alpha: 0.58;

            --card: 0 0% 100%;
            --card-foreground: 222 47% 11%;
            --border: 214 25% 86%;

            --shadow-1: 0 6px 18px rgba(0,0,0,0.08);
            --shadow-2: 0 14px 40px rgba(0,0,0,0.12);
        }

        /* Stop the menu logo from moving */
        .nav-logo .gota-container {
            animation: none !important;
        }

    
/* === PowerTools menu typography (unified) === */
body {
    font-family: "Segoe UI Variable", "Segoe UI", Inter, -apple-system,
                 BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
}


.nav-logo-text {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.nav-menu a,
.nav-mobile-menu a,
.nav-menu .btn-primary {
    font-family: Inter, "Segoe UI Variable", "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 600;
}


/* === PowerTools logo sizing (menu) === */
.nav-logo .gota-container {
    width: 28px;
    height: 28px;
    animation: none !important;
}

.nav-logo .gota {
    width: 14px;
    height: 14px;
}

/* === Professional Key button typography === */
.nav-menu .btn-primary,
.nav-mobile-menu .btn-primary {
    font-family: Inter, "Segoe UI Variable", "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff !important;
}


/* === Theme toggle icons (animated moon <-> sun) === */
.theme-toggle { gap: 10px; }
.theme-icon-wrap { position: relative; width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; }
.theme-icon { position: absolute; inset: 0; width: 18px; height: 18px; color: hsl(var(--muted-foreground)); transition: transform .25s ease, opacity .25s ease, color .25s ease; }
html[data-effective-theme="dark"] .theme-icon { color: hsl(var(--foreground)); }

/* Light: show sun */
html[data-effective-theme="light"] .theme-icon--sun { opacity: 1; transform: rotate(0deg) scale(1); }
html[data-effective-theme="light"] .theme-icon--moon { opacity: 0; transform: rotate(-20deg) scale(.85); }

/* Dark: show moon */
html[data-effective-theme="dark"] .theme-icon--sun { opacity: 0; transform: rotate(20deg) scale(.85); }
html[data-effective-theme="dark"] .theme-icon--moon { opacity: 1; transform: rotate(0deg) scale(1); }


/* === Theme toggle (match PowerTools) === */
.theme-toggle-track { box-shadow: none !important; }

/* === Footer logo static override === */
.footer .gota-container {
    animation: none !important;
}