/* Extracted from /_design-samples/tailwind/ and used by the real multisite theme loader. */
/* =========================================================
       TAILWIND ELEGANT ג€” Tailwind-inspired neutral palette
       ========================================================= */
    :root {
        /* Tailwind slate */
        --slate-50:  #f8fafc;
        --slate-100: #f1f5f9;
        --slate-200: #e2e8f0;
        --slate-300: #cbd5e1;
        --slate-400: #94a3b8;
        --slate-500: #64748b;
        --slate-600: #475569;
        --slate-700: #334155;
        --slate-800: #1e293b;
        --slate-900: #0f172a;
        --slate-950: #020617;

        /* Tailwind indigo */
        --indigo-50:  #eef2ff;
        --indigo-100: #e0e7ff;
        --indigo-500: #6366f1;
        --indigo-600: #4f46e5;
        --indigo-700: #4338ca;

        --bg: #ffffff;
        --bg-soft: var(--slate-50);
        --bg-elev: #ffffff;
        --accent: var(--indigo-600);
        --accent-soft: var(--indigo-500);
        --accent-glow: rgba(79, 70, 229, 0.18);
        --accent-tint: var(--indigo-50);
        --text: var(--slate-900);
        --text-strong: var(--slate-950);
        --text-dim: var(--slate-600);
        --text-faint: var(--slate-500);
        --text-muted: var(--slate-400);
        --border: var(--slate-200);
        --border-strong: var(--slate-300);
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.04);
        --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.06), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
        --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.07), 0 2px 6px -2px rgba(15, 23, 42, 0.05);
        --shadow-lg: 0 12px 24px -8px rgba(15, 23, 42, 0.1), 0 4px 12px -4px rgba(15, 23, 42, 0.06);
        --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
        --radius-lg: 16px;
        --radius-md: 10px;
        --radius-sm: 6px;
    }

    * { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; min-height: 100vh; }

    body {
        font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
        color: var(--text);
        background: var(--bg);
        font-feature-settings: "ss01", "cv11", "cv02";
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    /* Subtle radial accent so the page isn't pure flat-white */
    .tw-bg {
        position: fixed; inset: 0;
        pointer-events: none;
        z-index: 0;
        background:
            radial-gradient(ellipse at 90% -10%, rgba(99, 102, 241, 0.08) 0%, transparent 40%),
            radial-gradient(ellipse at 10% 110%, rgba(79, 70, 229, 0.06) 0%, transparent 40%);
    }
    .tw-grid {
        position: fixed; inset: 0;
        pointer-events: none;
        z-index: 0;
        opacity: 0.6;
        background-image:
            linear-gradient(var(--slate-200) 1px, transparent 1px),
            linear-gradient(90deg, var(--slate-200) 1px, transparent 1px);
        background-size: 56px 56px;
        mask: radial-gradient(ellipse at top, #000 0%, transparent 60%);
        -webkit-mask: radial-gradient(ellipse at top, #000 0%, transparent 60%);
    }

    nav, section, .container, .sample-footer, .theme-switcher { position: relative; z-index: 1; }

    h1, h2, h3, h4 { font-family: "Inter", sans-serif; font-weight: 700; letter-spacing: -0.025em; color: var(--text-strong); }

    a { color: var(--accent); text-decoration: none; }
    a:hover { color: var(--indigo-700); }

    /* =========================================================
       THEME SWITCHER
       ========================================================= */
    .theme-switcher {
        position: fixed;
        top: 14px;
        right: 14px;
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 5px 8px;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(12px) saturate(180%);
        -webkit-backdrop-filter: blur(12px) saturate(180%);
        border: 1px solid var(--border);
        border-radius: 999px;
        z-index: 1100;
        box-shadow: var(--shadow-lg);
    }
    .theme-switcher-label {
        font-family: "JetBrains Mono", monospace;
        font-size: 10px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--text-faint);
        padding: 0 8px;
    }
    .theme-switch-btn {
        font-size: 12px;
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 999px;
        color: var(--text-dim);
        transition: all 0.15s ease;
    }
    .theme-switch-btn:hover { color: var(--text-strong); background: var(--slate-100); }
    .theme-switch-btn.is-active {
        background: var(--text-strong);
        color: #fff;
        font-weight: 700;
    }
    .theme-switch-home { padding: 6px 10px; opacity: 0.5; font-size: 14px; }

    /* =========================================================
       NAVBAR
       ========================================================= */
    .navbar {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(16px) saturate(180%);
        -webkit-backdrop-filter: blur(16px) saturate(180%);
        border-bottom: 1px solid var(--border);
        padding: 14px 0;
    }
    .navbar-brand {
        font-size: 19px;
        font-weight: 700;
        color: var(--text-strong) !important;
        letter-spacing: -0.025em;
    }
    .brand-star { color: var(--accent); }
    .nav-link {
        color: var(--text-dim) !important;
        font-weight: 500;
        font-size: 14px;
        transition: color 0.15s ease;
    }
    .nav-link:hover { color: var(--text-strong) !important; }

    .navbar [data-bs-theme="dark"] {
        /* Bootstrap inserted [data-bs-theme=dark] on the nav so dropdowns are dark.
           Override for our light theme. */
    }
    .navbar { color-scheme: light; }
    .navbar .navbar-toggler-icon {
        filter: invert(1);
    }
    .navbar .dropdown-menu {
        background: #fff;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }
    .navbar .dropdown-item { color: var(--text); }
    .navbar .dropdown-item:hover { background: var(--slate-100); color: var(--text-strong); }
    .navbar .dropdown-item.active { background: var(--accent-tint); color: var(--accent); }
    .navbar .dropdown-divider { border-color: var(--border); }

    /* =========================================================
       HERO
       ========================================================= */
    .model-hero { padding: 100px 0 60px; }
    .model-hero-inner {
        display: grid;
        grid-template-columns: 1.4fr 1fr;
        gap: 56px;
        align-items: center;
    }
    @media (max-width: 900px) { .model-hero-inner { grid-template-columns: 1fr; } }

    .model-hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
        border-radius: 999px;
        background: var(--accent-tint);
        border: 1px solid var(--indigo-100);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.02em;
        color: var(--accent);
        margin-bottom: 24px;
    }
    .model-hero-title {
        font-size: clamp(46px, 7vw, 80px);
        font-weight: 800;
        letter-spacing: -0.045em;
        line-height: 0.95;
        margin: 0 0 24px;
        color: var(--text-strong);
    }
    .model-hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 600;
        padding: 5px 12px;
        border-radius: 999px;
        background: var(--accent-tint);
        border: 1px solid var(--indigo-100);
        color: var(--accent);
        vertical-align: middle;
        letter-spacing: 0;
        margin-left: 14px;
    }
    .model-hero-desc {
        font-size: 19px;
        line-height: 1.55;
        color: var(--text-dim);
        max-width: 56ch;
        margin: 0 0 36px;
    }
    .model-hero-stats {
        display: flex;
        gap: 0;
        flex-wrap: wrap;
        border-left: 1px solid var(--border);
    }
    .stat {
        display: flex; flex-direction: column; gap: 4px;
        padding: 0 28px;
        border-right: 1px solid var(--border);
    }
    .stat-num {
        font-size: 26px;
        font-weight: 700;
        color: var(--text-strong);
        letter-spacing: -0.03em;
    }
    .stat-num .fa-star { color: #f59e0b; font-size: 16px; margin-left: 2px; }
    .stat-label {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.02em;
        color: var(--text-faint);
    }

    .model-hero-art { position: relative; height: 380px; }
    .hero-art-tile {
        position: absolute;
        border-radius: 18px;
        background-size: cover;
        box-shadow: var(--shadow-xl);
    }
    .hero-art-tile-1 { top: 8%;   left: 5%;  width: 48%; height: 58%;
        background: linear-gradient(135deg, #6366f1, #818cf8); }
    .hero-art-tile-2 { top: 4%;   right: 6%; width: 38%; height: 44%;
        background: linear-gradient(135deg, #ec4899, #f472b6); }
    .hero-art-tile-3 { bottom: 6%; left: 28%; width: 38%; height: 42%;
        background: linear-gradient(135deg, #10b981, #34d399); }
    .hero-art-tile-4 { bottom: 10%; right: 4%; width: 32%; height: 38%;
        background: linear-gradient(135deg, #f59e0b, #fbbf24); }

    /* =========================================================
       PANELS
       ========================================================= */
    .panel {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 32px;
        box-shadow: var(--shadow);
    }
    .panel-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 28px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border);
    }
    .panel-title {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        margin: 0;
        color: var(--text-faint);
        display: flex;
        align-items: center;
        gap: 12px;
    }
    .panel-icon-btn {
        font-size: 14px;
        color: var(--text-faint);
        cursor: pointer;
        padding: 7px;
        border-radius: 6px;
        transition: all 0.15s ease;
    }
    .panel-icon-btn:hover { color: var(--text-strong); background: var(--slate-100); }

    /* =========================================================
       FORM ELEMENTS
       ========================================================= */
    .form-group { margin-bottom: 24px; }
    .form-group > label > strong {
        font-size: 14px;
        color: var(--text-strong);
        font-weight: 600;
        letter-spacing: -0.01em;
    }
    .description {
        font-size: 13px;
        line-height: 1.5;
        color: var(--text-dim);
        margin: 4px 0 12px;
    }
    .form-control, .form-select {
        background: #fff !important;
        border: 1px solid var(--border-strong) !important;
        border-radius: var(--radius-sm) !important;
        color: var(--text-strong) !important;
        padding: 10px 14px !important;
        font-family: inherit;
        font-size: 14px;
        box-shadow: var(--shadow-sm);
        transition: all 0.12s ease;
    }
    .form-control:focus, .form-select:focus {
        border-color: var(--accent) !important;
        box-shadow: 0 0 0 3px var(--accent-glow) !important;
        outline: none;
    }
    textarea.form-control { min-height: 140px; resize: vertical; line-height: 1.55; }
    .form-control::placeholder { color: var(--text-muted); }

    .file-upload {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 36px 16px;
        border: 1.5px dashed var(--border-strong);
        border-radius: var(--radius-md);
        background: var(--bg-soft);
        cursor: pointer;
        transition: all 0.15s ease;
        color: var(--text-dim);
        font-size: 14px;
    }
    .file-upload:hover {
        border-color: var(--accent);
        border-style: solid;
        background: var(--accent-tint);
        color: var(--text-strong);
    }
    .file-upload .fa-upload { font-size: 16px; color: var(--accent); }
    .file-upload input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

    .btn-enhance {
        margin-top: 12px;
        background: #fff !important;
        color: var(--text-strong) !important;
        border: 1px solid var(--border-strong) !important;
        border-radius: 8px !important;
        padding: 9px 16px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        box-shadow: var(--shadow-sm);
        transition: all 0.15s ease;
    }
    .btn-enhance:hover {
        background: var(--accent-tint) !important;
        color: var(--accent) !important;
        border-color: var(--indigo-100) !important;
    }
    .btn-enhance .fa-wand-magic-sparkles { color: var(--accent); }

    .btn-group .btn-outline-light {
        background: #fff !important;
        border-color: var(--border-strong) !important;
        color: var(--text-dim) !important;
        padding: 12px 8px !important;
        font-weight: 500;
        font-size: 14px;
        box-shadow: var(--shadow-sm);
        transition: all 0.12s ease;
    }
    .btn-group .btn-outline-light:hover { color: var(--text-strong) !important; background: var(--slate-50) !important; }
    .btn-check:checked + .btn-outline-light {
        background: var(--text-strong) !important;
        border-color: var(--text-strong) !important;
        color: #fff !important;
    }
    .btn-group .btn-outline-light small { color: inherit; opacity: 0.7; font-size: 11px; }

    .ratio-row { gap: 8px; }
    .ratio-row input[type="radio"] { display: none; }
    .ratio-box {
        width: 80px; height: 80px;
        border-radius: 12px;
        background: #fff;
        border: 1px solid var(--border-strong);
        display: flex; align-items: center; justify-content: center;
        cursor: pointer;
        box-shadow: var(--shadow-sm);
        transition: all 0.15s ease;
    }
    .ratio-row label:hover .ratio-box { border-color: var(--text-strong); transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .ratio-shape {
        background: var(--slate-100);
        color: var(--slate-500);
        font-size: 11px;
        font-weight: 600;
        display: flex; align-items: center; justify-content: center;
        border-radius: 4px;
        transition: all 0.15s ease;
    }
    .circle-ratio .ratio-shape { border-radius: 50%; }
    input[type="radio"]:checked + label .ratio-box {
        background: var(--text-strong);
        border-color: var(--text-strong);
        box-shadow: var(--shadow-md);
    }
    input[type="radio"]:checked + label .ratio-shape { background: #fff; color: var(--text-strong); }

    .form-check-input {
        background-color: #fff !important;
        border-color: var(--border-strong) !important;
        cursor: pointer;
    }
    .form-check-input:checked {
        background-color: var(--accent) !important;
        border-color: var(--accent) !important;
    }
    .form-check-input:focus { box-shadow: 0 0 0 3px var(--accent-glow) !important; }

    .advanced { position: relative; padding-left: 14px; }
    .advanced::before {
        content: '';
        position: absolute;
        left: 0; top: 4px; bottom: 4px;
        width: 2px;
        background: var(--accent);
        opacity: 0.5;
        border-radius: 2px;
    }

    /* RUN BUTTON ג€” black, confident */
    .run-row { display: flex; align-items: center; margin-top: 28px; }
    .super-button {
        position: relative;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 30px;
        background: var(--text-strong);
        border: none;
        border-radius: 10px;
        color: #fff;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: -0.005em;
        cursor: pointer;
        box-shadow: var(--shadow-md);
        transition: all 0.15s ease;
    }
    .super-button:hover { background: #000; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
    .super-button:active { transform: translateY(0); }
    .super-button .arrow { width: 18px; height: 18px; color: #fff; transition: transform 0.15s ease; }
    .super-button:hover .arrow { transform: translateX(3px); }

    .allowance {
        font-size: 12px;
        color: var(--text-faint);
        margin-top: 14px;
    }

    /* OUTPUT */
    .output-container {
        min-height: 540px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
    }
    .output-empty { text-align: center; color: var(--text-dim); }
    .output-empty-icon {
        width: 64px; height: 64px;
        border-radius: 14px;
        background: var(--accent-tint);
        border: 1px solid var(--indigo-100);
        display: flex; align-items: center; justify-content: center;
        font-size: 24px;
        color: var(--accent);
        margin: 0 auto 20px;
    }
    .output-empty h3 { font-size: 20px; margin: 0 0 8px; color: var(--text-strong); letter-spacing: -0.02em; }
    .output-empty p { font-size: 14px; max-width: 36ch; margin: 0 auto; line-height: 1.5; }
    .output-thumbs {
        display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
        width: 100%; max-width: 320px;
    }
    .output-thumb { aspect-ratio: 1; border-radius: 10px; box-shadow: var(--shadow-sm); }
    .output-thumb-1 { background: linear-gradient(135deg, #6366f1, #818cf8); }
    .output-thumb-2 { background: linear-gradient(135deg, #ec4899, #f472b6); }
    .output-thumb-3 { background: linear-gradient(135deg, #10b981, #34d399); }
    .output-thumb-4 { background: linear-gradient(135deg, #f59e0b, #fbbf24); }

    /* CREATIONS */
    .creations-section { margin-top: 70px; }
    .creations-header { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
    .creations-header h3 { margin: 0; font-size: 22px; color: var(--text-strong); letter-spacing: -0.02em; }
    .creations-icons { display: flex; gap: 10px; }
    .creation-header-icon {
        font-size: 14px;
        color: var(--text-faint);
        cursor: pointer;
        padding: 7px;
        border-radius: 6px;
        transition: all 0.15s ease;
    }
    .creation-header-icon:hover { color: var(--text-strong); background: var(--slate-100); }

    .thumbnails-row { gap: 10px 0; }
    .thumbnail-wrapper { padding: 5px; position: relative; cursor: pointer; }
    .thumb-fake {
        width: 110px; height: 110px;
        border-radius: 12px;
        box-shadow: var(--shadow-sm);
        transition: all 0.15s ease;
    }
    .thumbnail-wrapper:hover .thumb-fake { transform: translateY(-3px); box-shadow: var(--shadow-md); }
    .thumb-fake-1 { background: linear-gradient(135deg, #6366f1, #818cf8); }
    .thumb-fake-2 { background: linear-gradient(135deg, #ec4899, #f472b6); }
    .thumb-fake-3 { background: linear-gradient(135deg, #10b981, #34d399); }
    .thumb-fake-4 { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
    .thumb-fake-5 { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
    .thumb-fake-6 { background: linear-gradient(135deg, #06b6d4, #22d3ee); }
    .thumb-fake-7 { background: linear-gradient(135deg, #ef4444, #f87171); }
    .thumb-fake-8 { background: linear-gradient(135deg, #14b8a6, #2dd4bf); }

    .public-example-badge {
        position: absolute; top: 11px; left: 11px;
        width: 22px; height: 22px;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.85);
        backdrop-filter: blur(8px);
        display: inline-flex; align-items: center; justify-content: center;
        color: #fff; font-size: 10px; z-index: 2;
    }
    .thumbnail-output-count {
        position: absolute; top: 11px; left: 11px; right: auto;
        width: 22px; height: 22px;
        padding: 0 8px;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.85);
        backdrop-filter: blur(8px);
        display: inline-flex; align-items: center; justify-content: center;
        font-size: 11px; font-weight: 600; color: #fff; z-index: 2;
    }

    /* PRICING */
    .pricing-section { padding: 100px 0 50px; background: var(--bg-soft); margin-top: 60px; }
    .pricing-intro { text-align: center; max-width: 720px; margin: 0 auto 60px; }
    .pricing-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px;
        border-radius: 999px;
        background: #fff;
        border: 1px solid var(--border);
        font-size: 12px;
        font-weight: 600;
        color: #f59e0b;
        margin-bottom: 22px;
        box-shadow: var(--shadow-sm);
    }
    .pricing-title {
        font-size: clamp(40px, 5vw, 60px);
        font-weight: 800;
        letter-spacing: -0.04em;
        line-height: 1.05;
        margin: 0 0 16px;
        color: var(--text-strong);
    }
    .pricing-sub { font-size: 18px; color: var(--text-dim); margin: 0 0 28px; }
    .compare-plans-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        border-radius: 10px;
        background: #fff;
        border: 1px solid var(--border-strong);
        color: var(--text-strong);
        font-weight: 600;
        font-size: 14px;
        box-shadow: var(--shadow-sm);
        transition: all 0.15s ease;
    }
    .compare-plans-link:hover {
        border-color: var(--text-strong);
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
    }

    .pricing-grid { gap: 24px 0; }
    .pricing-card {
        position: relative;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 36px 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
        box-shadow: var(--shadow);
        transition: all 0.2s ease;
    }
    .pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .pricing-card-ultimate {
        background: var(--text-strong);
        border-color: var(--text-strong);
        color: #fff;
        box-shadow: var(--shadow-xl);
    }
    .pricing-card-ultimate .plan-name,
    .pricing-card-ultimate .price-amount,
    .pricing-card-ultimate strong { color: #fff; }
    .pricing-card-ultimate .price-was { color: var(--slate-400); }
    .pricing-card-ultimate .price-per,
    .pricing-card-ultimate .plan-tag,
    .pricing-card-ultimate .plan-features li { color: var(--slate-300); }
    .pricing-card-ultimate .plan-features .fa-check { color: var(--indigo-500); }

    .recommended-ribbon {
        position: absolute;
        top: -12px; left: 50%;
        transform: translateX(-50%);
        padding: 6px 14px;
        background: var(--indigo-500);
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        border-radius: 999px;
        box-shadow: var(--shadow-md);
    }

    .plan-name {
        font-size: 18px;
        margin: 0 0 14px;
        color: var(--text-strong);
        letter-spacing: -0.01em;
    }
    .plan-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
    .price-was { font-size: 17px; color: var(--text-faint); }
    .price-amount {
        font-size: 48px;
        font-weight: 800;
        letter-spacing: -0.04em;
        color: var(--text-strong);
        line-height: 1;
    }
    .price-per { font-size: 14px; color: var(--text-dim); }
    .plan-tag { font-size: 13px; color: var(--text-dim); margin: 6px 0 26px; }

    .plan-features {
        list-style: none; padding: 0; margin: 0 0 28px;
        font-size: 14px; flex: 1;
    }
    .plan-features li {
        display: flex; align-items: flex-start; gap: 12px;
        padding: 9px 0;
        color: var(--text);
        line-height: 1.4;
    }
    .plan-features li.muted { color: var(--text-faint); }
    .plan-features .fa-check { color: var(--accent); margin-top: 4px; font-size: 13px; }
    .plan-features .fa-xmark { color: var(--text-muted); margin-top: 4px; }

    .plan-btn {
        display: inline-flex; align-items: center; justify-content: center;
        width: 100%;
        padding: 12px 20px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: -0.01em;
        border: 1px solid transparent;
        cursor: pointer;
        transition: all 0.15s ease;
    }
    .plan-btn-ghost {
        background: var(--slate-100);
        color: var(--text-dim);
        border-color: transparent;
    }
    .plan-btn-primary {
        background: #fff;
        color: var(--text-strong);
        border-color: var(--border-strong);
        box-shadow: var(--shadow-sm);
    }
    .plan-btn-primary:hover { background: var(--text-strong); color: #fff; border-color: var(--text-strong); }
    .plan-btn-accent {
        background: #fff;
        color: var(--text-strong);
        font-weight: 700;
    }
    .plan-btn-accent:hover { background: var(--indigo-500); color: #fff; }

    /* COMPARISON */
    .compare-section { padding: 60px 0 100px; background: var(--bg-soft); }
    .compare-head { text-align: center; margin-bottom: 40px; }
    .compare-title {
        font-size: clamp(32px, 4vw, 48px);
        font-weight: 800;
        letter-spacing: -0.04em;
        margin: 0 0 8px;
        color: var(--text-strong);
    }
    .compare-sub { color: var(--text-dim); font-size: 16px; }

    .cmp-table-wrap {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow);
    }
    .cmp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
    .cmp-table thead th {
        position: sticky; top: 0;
        background: var(--bg-soft);
        padding: 22px 22px;
        text-align: left;
        font-weight: 600;
        border-bottom: 1px solid var(--border);
        z-index: 2;
    }
    .cmp-feature-th {
        color: var(--text-faint);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 700;
    }
    .cmp-plan-th { text-align: center !important; }
    .cmp-plan-name { display: block; font-size: 16px; color: var(--text-strong); margin-bottom: 2px; letter-spacing: -0.01em; }
    .cmp-plan-price { display: block; font-size: 12px; color: var(--text-faint); font-weight: 500; }
    .cmp-plan-pro .cmp-plan-name { color: var(--accent); }
    .cmp-plan-ult .cmp-plan-name { color: var(--text-strong); }

    .cmp-table tbody tr { border-top: 1px solid var(--border); }
    .cmp-table tbody tr:hover { background: var(--bg-soft); }
    .cmp-table td {
        padding: 18px 22px;
        vertical-align: top;
        text-align: center;
        color: var(--text);
        line-height: 1.5;
    }
    .cmp-feature-td {
        text-align: left !important;
        color: var(--text-strong);
        font-weight: 600;
        font-size: 14px;
    }
    .cmp-line { display: block; }
    .cmp-line + .cmp-line { color: var(--text-dim); font-size: 13px; margin-top: 2px; }
    .cmp-dash { color: var(--text-muted); font-size: 18px; }
    .cmp-tag {
        display: inline-block;
        font-size: 10px;
        padding: 2px 8px;
        border-radius: 999px;
        background: var(--accent-tint);
        color: var(--accent);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-left: 6px;
        vertical-align: middle;
    }

    @media (max-width: 720px) {
        .cmp-table thead { display: none; }
        .cmp-table tbody, .cmp-table tr, .cmp-table td { display: block; width: 100%; }
        .cmp-table tr { padding: 16px 18px; border-top: 1px solid var(--border); }
        .cmp-table td { padding: 6px 0; text-align: left !important; }
        .cmp-table td[data-plan]::before {
            content: attr(data-plan) ":";
            display: inline-block;
            min-width: 80px;
            color: var(--accent);
            font-weight: 700;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-right: 10px;
        }
        .cmp-feature-td { font-size: 16px; padding-bottom: 8px !important; border-bottom: 1px solid var(--border); margin-bottom: 8px; }
    }

    /* SIGN-IN */
    .signin-section { padding: 50px 0 100px; background: #fff; }
    .signin-card {
        max-width: 460px;
        margin: 0 auto;
        text-align: center;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 56px 36px;
        box-shadow: var(--shadow-lg);
    }
    .signin-logo { margin-bottom: 24px; }
    .brand-star-lg { color: var(--accent); }
    .signin-title {
        font-size: 28px;
        font-weight: 800;
        letter-spacing: -0.03em;
        margin: 0 0 10px;
        color: var(--text-strong);
    }
    .signin-sub { color: var(--text-dim); margin: 0 0 30px; font-size: 15px; line-height: 1.5; }
    .signin-terms {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        text-align: left;
        font-size: 13px;
        color: var(--text-dim);
        margin: 0 0 22px;
        line-height: 1.4;
    }
    .signin-terms a { color: var(--accent); text-decoration: underline; }
    .login-with-google-btn-wrap { display: block; }
    .login-with-google-btn {
        width: 100%;
        padding: 13px 24px 13px 50px;
        border: 1px solid var(--border-strong);
        border-radius: 10px;
        background: #fff url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=") no-repeat 18px center;
        color: #1f2429;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: -0.01em;
        cursor: pointer;
        box-shadow: var(--shadow-sm);
        transition: all 0.15s ease;
    }
    .login-with-google-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); border-color: var(--text-strong); }
    .signin-foot { margin-top: 18px; font-size: 12px; color: var(--text-faint); }

    .sample-footer {
        padding: 32px 0;
        text-align: center;
        font-size: 13px;
        color: var(--text-faint);
        background: var(--bg-soft);
        border-top: 1px solid var(--border);
    }
    .sample-footer a { color: var(--text-dim); }
    .sample-footer a:hover { color: var(--text-strong); }
