﻿    .arw-wrapper {
        --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
        --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        padding-top: 10px;
    }

    .arw-bg-canvas { pointer-events: none; opacity: 0.35; }

    /* ── Hero Section ── */
    .arw-hero { text-align: center; position: relative; z-index: 2; margin-bottom: 36px; padding: 20px 0 10px 0; }
    .hero-ambient-glow {
        position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
        width: 600px; height: 300px; background: radial-gradient(circle, color-mix(in srgb, var(--primary-color) 20%, transparent) 0%, var(--primary-glow) 40%, transparent 70%);
        filter: blur(50px); pointer-events: none; z-index: -1; border-radius: 50%;
    }
    .arw-hero-badge {
        display: inline-flex; align-items: center; gap: 8px;
        font-size: 12px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase;
        color: var(--primary-color); background: var(--primary-light);
        padding: 8px 20px; border-radius: 100px; margin-bottom: 20px;
        border: 1px solid color-mix(in srgb, var(--primary-color) 30%, transparent);
        box-shadow: 0 4px 16px color-mix(in srgb, var(--primary-color) 12%, transparent);
        backdrop-filter: blur(8px);
    }
    .badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary-color); box-shadow: 0 0 10px var(--primary-color); animation: pulseDot 2s infinite; }
    @keyframes pulseDot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.6; } }

    .arw-hero-title { font-size: clamp(32px, 4.5vw, 50px); font-weight: 900; line-height: 1.15; letter-spacing: -0.035em; color: var(--text-main); margin-bottom: 16px; }
    .arw-hero-title em { font-style: normal; background: linear-gradient(135deg, var(--primary-color), var(--primary-gradient-end)); -webkit-background-clip: text; background-clip: text; color: transparent; }
    .arw-hero-desc { font-size: 15.5px; color: var(--text-muted); font-weight: 500; max-width: 640px; margin: 0 auto 20px auto; line-height: 1.6; }

    .hero-features-belt { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 16px; }
    .hfb-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: var(--text-main); background: var(--card-bg); padding: 6px 16px; border-radius: 100px; border: 1px solid var(--border-color); box-shadow: 0 2px 8px rgba(0,0,0,0.02); }
    .hfb-icon { width: 14px; height: 14px; color: var(--primary-color); }

    /* ── Main Workspace ── */
    .arw-panel { position: relative; z-index: 2; margin-bottom: 50px; }
    .arw-workspace { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 36px; }

    .arw-card {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 24px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.03);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        position: relative;
        min-height: 520px;
    }

    /* ── Card Header ── */
    .cc-card-header {
        display: flex; justify-content: space-between; align-items: center;
        padding: 16px 20px; border-bottom: 1px solid var(--border-color); background: var(--bg-body);
        gap: 12px; flex-wrap: wrap;
    }
    .cc-header-title { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 800; color: var(--text-main); text-transform: uppercase; letter-spacing: 0.5px; }
    .badge-mode-tag { font-size: 10.5px; font-weight: 800; text-transform: uppercase; padding: 2px 8px; border-radius: 6px; background: var(--primary-light); color: var(--primary-color); border: 1px solid color-mix(in srgb, var(--primary-color) 25%, transparent); }

    .cc-lang-box { display: flex; align-items: center; gap: 8px; }

    /* Custom Dropdown Standard */
    .custom-dropdown { position: relative; display: inline-block; }
    .cd-header {
        display: flex; align-items: center; justify-content: space-between; gap: 8px;
        padding: 6px 12px; border-radius: 10px; border: 1px solid var(--border-color);
        background: var(--card-bg); font-size: 12.5px; font-weight: 700; color: var(--text-main);
        cursor: pointer; transition: all 0.2s; min-width: 130px;
    }
    .cd-header:hover { border-color: var(--primary-color); }
    .custom-dropdown.active .cd-header { border-color: var(--primary-color); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 15%, transparent); }
    .cd-value { display: flex; align-items: center; gap: 6px; }

    .cd-body {
        position: absolute; top: calc(100% + 6px); right: 0; width: 240px;
        background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 14px;
        box-shadow: 0 16px 40px rgba(0,0,0,0.12); z-index: 100; overflow: hidden; animation: fadeIn 0.2s ease;
    }
    .cd-search { padding: 8px; border-bottom: 1px solid var(--border-color); }
    .cd-search input { width: 100%; padding: 6px 10px; border: 1px solid var(--border-color); border-radius: 8px; background: var(--bg-body); font-size: 12.5px; color: var(--text-main); outline: none; }
    .cd-list { max-height: 220px; overflow-y: auto; padding: 6px; }
    .cd-group-lbl { font-size: 10px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; padding: 4px 8px; letter-spacing: 0.5px; }
    .cd-item { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 8px 10px; border-radius: 8px; font-size: 12.5px; font-weight: 600; color: var(--text-main); cursor: pointer; transition: background 0.15s; }
    .cd-item:hover { background: var(--bg-body); color: var(--primary-color); }
    .cd-item.active { background: var(--primary-light); color: var(--primary-color); font-weight: 700; }
    .cd-check { color: var(--primary-color); width: 13px; height: 13px; }
    .cd-no-results { padding: 12px; font-size: 12px; color: var(--text-muted); text-align: center; }

    .dir-toggle-btn {
        display: flex; align-items: center; gap: 4px; padding: 6px 10px; border-radius: 10px;
        border: 1px solid var(--border-color); background: var(--card-bg); font-size: 12px; font-weight: 800;
        color: var(--text-muted); cursor: pointer; transition: all 0.2s;
    }
    .dir-toggle-btn:hover { color: var(--primary-color); border-color: var(--primary-color); }

    /* ── Mode Pills Segmented Bar ── */
    .arw-modes-bar {
        display: flex; align-items: center; gap: 6px; padding: 10px 16px;
        background: var(--bg-body); border-bottom: 1px solid var(--border-color);
        overflow-x: auto; white-space: nowrap;
    }
    .mode-pill-btn {
        display: flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 100px;
        border: 1px solid transparent; background: transparent; font-size: 12.5px; font-weight: 700;
        color: var(--text-muted); cursor: pointer; transition: all 0.2s; flex-shrink: 0;
    }
    .mode-pill-btn:hover { background: var(--card-bg); color: var(--text-main); border-color: var(--border-color); }
    .mode-pill-btn.active { background: var(--card-bg); color: var(--primary-color); border-color: var(--primary-color); box-shadow: 0 2px 8px color-mix(in srgb, var(--primary-color) 15%, transparent); }

    /* ── Card Toolbar ── */
    .arw-card-toolbar {
        display: flex; justify-content: space-between; align-items: center;
        padding: 8px 16px; border-bottom: 1px solid var(--border-color);
    }
    .arw-tool-btn {
        display: flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 8px;
        border: 1px solid var(--border-color); background: var(--bg-body); font-size: 12px; font-weight: 700;
        color: var(--text-main); cursor: pointer; transition: all 0.2s;
    }
    .arw-tool-btn:hover, .arw-tool-btn.active { border-color: var(--primary-color); color: var(--primary-color); background: var(--primary-light); }
    .badge-mini { font-size: 9.5px; font-weight: 800; text-transform: uppercase; background: var(--primary-color); color: white; padding: 1px 5px; border-radius: 4px; }

    .arw-toolbar-actions { display: flex; align-items: center; gap: 6px; }
    .icon-tool-btn { width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--border-color); background: var(--bg-body); display: flex; align-items: center; justify-content: center; color: var(--text-muted); cursor: pointer; transition: all 0.2s; }
    .icon-tool-btn:hover { color: var(--danger, #ef4444); border-color: var(--danger, #ef4444); background: rgba(239,68,68,0.06); }

    /* ── Advanced SEO Drawer ── */
    .arw-keywords-drawer {
        background: var(--bg-body); padding: 16px; border-bottom: 1px solid var(--border-color);
        animation: fadeIn 0.25s ease;
    }
    .akd-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
    .akd-field { display: flex; flex-direction: column; gap: 5px; }
    .akd-label-row { display: flex; justify-content: space-between; align-items: center; }
    .akd-label { font-size: 11px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; gap: 4px; }
    .akd-counter { font-size: 10.5px; font-weight: 700; color: var(--text-muted); font-family: 'Space Mono', monospace; }
    .akd-counter.warn { color: var(--danger, #ef4444); font-weight: 800; }
    .akd-input {
        width: 100%; padding: 7px 10px; border: 1px solid var(--border-color); border-radius: 8px;
        background: var(--card-bg); font-size: 12.5px; font-weight: 600; color: var(--text-main); outline: none; transition: all 0.2s;
    }
    .akd-input:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color) 15%, transparent); }

    /* ── Editor Textareas & Content ── */
    .arw-editor-box { flex: 1; display: flex; flex-direction: column; position: relative; min-height: 280px; }
    .arw-textarea {
        flex: 1; width: 100%; padding: 18px 20px; border: none; background: transparent;
        color: var(--text-main); font-size: 14.5px; line-height: 1.7; resize: none; outline: none; font-family: inherit;
    }
    .arw-textarea::placeholder { color: var(--text-muted); opacity: 0.5; }

    .arw-output-content {
        flex: 1; width: 100%; padding: 18px 20px; color: var(--text-main); font-size: 14.5px;
        line-height: 1.7; overflow-y: auto; white-space: pre-wrap; word-break: break-word;
    }

    /* Direction enforcement */
    [dir="rtl"] .arw-textarea, [dir="rtl"] .arw-output-content, .arw-textarea[dir="rtl"], .arw-output-content[dir="rtl"], [dir="rtl"] .output-rendered-text, [dir="rtl"] .output-diff-view {
        direction: rtl !important; text-align: right !important; unicode-bidi: plaintext !important;
    }

    /* Diff View Highlight Spans */
    .diff-add { background: color-mix(in srgb, var(--success, #10b981) 18%, transparent); color: var(--success, #10b981); padding: 1px 4px; border-radius: 4px; font-weight: 700; }
    .diff-same { color: var(--text-main); }

    /* Dedicated Empty State Box */
    .arw-empty-state { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; padding: 40px 20px; text-align: center; }
    .empty-icon-ring { width: 56px; height: 56px; border-radius: 18px; background: var(--bg-body); border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; color: var(--text-muted); margin-bottom: 14px; }
    .empty-title { font-size: 15px; font-weight: 800; color: var(--text-main); margin-bottom: 6px; }
    .empty-desc { font-size: 13px; color: var(--text-muted); max-width: 280px; line-height: 1.5; }

    /* ── Card Footer ── */
    .arw-card-footer {
        display: flex; justify-content: space-between; align-items: center;
        padding: 12px 18px; border-top: 1px solid var(--border-color); background: var(--bg-body); gap: 10px; flex-wrap: wrap;
    }
    .arw-meta-stats { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
    .meta-badge { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; font-weight: 700; color: var(--text-muted); font-family: 'Space Mono', monospace; }
    .meta-badge.warn { color: var(--danger, #ef4444); }
    .meta-badge.success { color: var(--success, #10b981); }
    .meta-badge.neutral { font-style: italic; opacity: 0.7; }

    /* Action Buttons */
    .arw-action-btn {
        display: inline-flex; align-items: center; justify-content: center; gap: 8px;
        padding: 8px 20px; border-radius: 12px; border: none; font-size: 13.5px; font-weight: 800;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-gradient-end)); color: white;
        cursor: pointer; transition: all 0.25s var(--ease-spring); box-shadow: 0 4px 16px color-mix(in srgb, var(--primary-color) 25%, transparent);
    }
    .arw-action-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 24px color-mix(in srgb, var(--primary-color) 35%, transparent); }
    .arw-action-btn:disabled { opacity: 0.5; cursor: not-allowed; background: var(--border-color); color: var(--text-muted); box-shadow: none; }

    .arw-action-btn.secondary { background: var(--card-bg); border: 1px solid var(--border-color); color: var(--text-main); box-shadow: none; }
    .arw-action-btn.secondary:hover { border-color: var(--primary-color); color: var(--primary-color); background: var(--primary-light); }
    .arw-action-btn.sm { padding: 6px 12px; font-size: 12px; border-radius: 8px; }

    .arw-export-actions { display: flex; align-items: center; gap: 6px; }

    /* Output Controls */
    .arw-output-controls { display: flex; align-items: center; gap: 8px; }
    .variations-pill-group { display: flex; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 8px; padding: 2px; }
    .var-pill-btn { padding: 3px 8px; font-size: 11px; font-weight: 700; border: none; background: transparent; color: var(--text-muted); cursor: pointer; border-radius: 6px; }
    .var-pill-btn.active { background: var(--primary-light); color: var(--primary-color); font-weight: 800; }

    .diff-toggle-btn {
        display: flex; align-items: center; gap: 5px; padding: 5px 10px; border-radius: 8px;
        border: 1px solid var(--border-color); background: var(--card-bg); font-size: 11.5px; font-weight: 700;
        color: var(--text-muted); cursor: pointer; transition: all 0.2s;
    }
    .diff-toggle-btn.active { border-color: var(--primary-color); background: var(--primary-light); color: var(--primary-color); }

    .streaming-cursor { display: inline-block; width: 2px; height: 16px; background-color: var(--primary-color); vertical-align: text-bottom; margin-left: 2px; animation: blink 1s step-end infinite; }
    @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

    .spinner-dot { width: 8px; height: 8px; border-radius: 50%; background: white; animation: pulseDot 1s infinite; }

    /* ── Comparison & Analysis Panel ── */
    .comparison-panel {
        background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 24px;
        padding: 28px; margin-top: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.02); margin-bottom: 36px;
    }
    .cp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
    .cp-title { font-size: 15px; font-weight: 800; color: var(--text-main); display: flex; align-items: center; gap: 10px; }
    .cp-badge { font-size: 12px; font-weight: 800; padding: 6px 14px; border-radius: 100px; }
    .badge-high { background: color-mix(in srgb, var(--success, #10b981) 15%, transparent); color: var(--success, #10b981); border: 1px solid color-mix(in srgb, var(--success, #10b981) 30%, transparent); }
    .badge-med { background: color-mix(in srgb, var(--primary-color) 15%, transparent); color: var(--primary-color); border: 1px solid color-mix(in srgb, var(--primary-color) 30%, transparent); }

    .cp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
    .cp-card { background: var(--bg-body); border: 1px solid var(--border-color); border-radius: 16px; padding: 18px; display: flex; flex-direction: column; gap: 12px; }
    .cpc-header { display: flex; justify-content: space-between; align-items: center; }
    .cpc-title { font-size: 12px; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
    .cpc-tag { font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 6px; }
    .cpc-tag.increased { background: color-mix(in srgb, var(--primary-color) 15%, transparent); color: var(--primary-color); }
    .cpc-tag.decreased { background: color-mix(in srgb, var(--pink, #ec4899) 15%, transparent); color: var(--pink, #ec4899); }
    .cpc-tag.equal { background: var(--card-bg); color: var(--text-muted); border: 1px solid var(--border-color); }
    .cpc-tag.info { background: rgba(59,130,246,0.1); color: #3B82F6; }
    .cpc-tag.success { background: color-mix(in srgb, var(--success, #10b981) 15%, transparent); color: var(--success, #10b981); }

    .cpc-badge { font-size: 10.5px; font-weight: 800; padding: 2px 8px; border-radius: 6px; }
    .kw-success { background: rgba(16,185,129,0.15); color: #10B981; }
    .kw-warn { background: rgba(239,68,68,0.15); color: #EF4444; }
    .kw-info { background: rgba(59,130,246,0.15); color: #3B82F6; }

    .cpc-body { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--text-main); }
    .cpc-stat-row { font-size: 12.5px; color: var(--text-muted); display: flex; justify-content: space-between; }
    .cpc-stat-row strong { color: var(--text-main); font-weight: 700; }
    .cpc-keyword-name { font-weight: 800; color: var(--primary-color); word-break: break-all; margin-bottom: 4px; font-size: 13.5px; }

    .cpc-progress-bar { width: 100%; height: 6px; background: var(--border-color); border-radius: 100px; overflow: hidden; margin-top: 4px; }
    .cpc-progress-fill { height: 100%; background: var(--primary-color); border-radius: 100px; transition: width 0.4s ease; }
    .cpc-progress-fill.bg-success { background: #10B981 !important; }
    .cpc-progress-fill.bg-gradient { background: linear-gradient(90deg, var(--primary-color), var(--primary-gradient-end)) !important; }

    .cpc-tags-cloud { display: flex; flex-wrap: wrap; gap: 6px; max-height: 70px; overflow-y: auto; margin-top: 4px; }
    .cpc-kw-tag { font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 6px; background: var(--card-bg); border: 1px solid var(--border-color); color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
    .cpc-kw-tag.active { background: var(--primary-light); border-color: var(--primary-color); color: var(--primary-color); }

    /* ── History Section ── */
    .da-history-section { animation: fadeIn 0.4s ease; }
    .dh-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
    .dh-title { font-size: 14px; font-weight: 800; color: var(--text-main); display: flex; align-items: center; gap: 8px; margin: 0; }
    .dh-clear-btn { background: transparent; border: none; font-size: 12px; font-weight: 700; color: #ef4444; cursor: pointer; padding: 4px 10px; border-radius: 6px; transition: background 0.2s; }
    .dh-clear-btn:hover { background: rgba(239,68,68,0.1); }
    .dh-list { display: flex; flex-direction: column; gap: 8px; max-height: 250px; overflow-y: auto; padding-right: 4px; }
    .dh-item { display: flex; align-items: center; justify-content: space-between; background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; padding: 10px 16px; transition: all 0.2s; }
    .dh-item:hover { border-color: var(--primary-color); transform: translateX(4px); box-shadow: 0 4px 12px rgba(0,0,0,0.02); }
    .dh-info { flex: 1; min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; }
    .dh-domain { font-size: 13.5px; font-weight: 700; color: var(--text-main); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .dh-meta { display: flex; align-items: center; gap: 10px; }
    .dh-badge { background: var(--primary-light); color: var(--primary-color); padding: 3px 8px; border-radius: 6px; font-size: 10.5px; font-weight: 800; text-transform: uppercase; }
    .dh-date { font-size: 11.5px; font-weight: 600; color: var(--text-muted); white-space: nowrap; }
    .dh-delete-btn { background: transparent; border: none; color: var(--text-muted); cursor: pointer; padding: 6px; border-radius: 8px; transition: all 0.2s; display: flex; align-items: center; }
    .dh-delete-btn:hover { background: rgba(239,68,68,0.1); color: #ef4444; }

    /* Limit Warning */
    .limit-warning { display: none; margin: 20px 0; padding: 14px 18px; background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); border-radius: 16px; align-items: flex-start; gap: 12px; }
    .limit-warning.show { display: flex; }
    .lw-ico { color: var(--danger, #ef4444); flex-shrink: 0; }
    .lw-text { font-size: 13.5px; color: var(--danger, #ef4444); line-height: 1.5; font-weight: 500; }
    .lw-link { display: inline-flex; align-items: center; gap: 4px; color: var(--danger, #ef4444); text-decoration: underline; font-weight: 700; margin-top: 4px; }

    /* ── Bento Box Features Cluster ── */
    .console-features { margin-top: 40px; width: 100%; }
    .bento-features-cluster { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-flow: dense; grid-auto-rows: minmax(130px, auto); gap: 18px; width: 100%; position: relative; z-index: 2; }
    .bento-card { background: rgba(255, 255, 255, 0.015); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--border-color); border-radius: 20px; padding: 24px; display: flex; flex-direction: column; align-items: flex-start; position: relative; overflow: hidden; transition: all 0.5s var(--ease-out); box-shadow: 0 4px 20px rgba(0,0,0,0.02); }
    .bento-card:hover { transform: translateY(-4px) scale(1.01); border-color: var(--primary-color); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
    .bento-card-content { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; gap: 10px; }
    
    .dashed-ring-wrapper { position: relative; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 6px; width: 42px; height: 42px; }
    .dashed-ring-wrapper::before { content: ''; position: absolute; top: -4px; left: -4px; right: -4px; bottom: -4px; border: 1px dashed var(--border-color); border-radius: 14px; opacity: 0.5; transition: all 0.5s var(--ease-out); z-index: 0; transform-origin: center center; }
    .bento-card:hover .dashed-ring-wrapper::before { opacity: 1; transform: scale(1.1) rotate(180deg); border-color: var(--primary-color); }
    
    .bc-icon-wrapper { width: 42px; height: 42px; border-radius: 12px; background: var(--bg-body); border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all 0.4s ease; margin-bottom: 0; position: relative; z-index: 1; }
    .bento-card:hover .bc-icon-wrapper { background: linear-gradient(135deg, var(--primary-color), var(--border-color)); color: white; border-color: transparent; transform: scale(1.1) rotate(4deg); }
    .bc-icon-wrapper i, .bc-icon-wrapper svg { width: 16px; height: 16px; }

    .bc-title { font-size: 15px; font-weight: 800; color: var(--text-main); margin: 0; }
    .bc-desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin: 0; font-weight: 500; }
    
    .bc-wide-top { grid-column: span 2; }
    .bc-tall { grid-row: span 2; }
    .bc-wide-mid { grid-column: span 2; }
    .bc-wide-top .bento-card-content, .bc-wide-mid .bento-card-content { justify-content: center; }
    .bc-wide-top .bc-desc, .bc-wide-mid .bc-desc { max-width: 85%; }

    /* ── Responsive ── */
    @media (max-width: 960px) {
        .arw-workspace { grid-template-columns: 1fr; }
        .bento-features-cluster { grid-template-columns: repeat(2, 1fr); }
        .bc-wide-top, .bc-wide-mid { grid-column: span 2; }
        .bc-tall { grid-row: span 1; grid-column: span 1; }
    }
    @media (max-width: 600px) {
        .bento-features-cluster { grid-template-columns: 1fr; }
        .bc-wide-top, .bc-wide-mid, .bc-tall { grid-column: span 1; }
        .bc-wide-top .bc-desc, .bc-wide-mid .bc-desc { max-width: 100%; }
    }