        :root {
            --bg: #f3efe7;
            --bg-accent: #e0f0ea;
            --surface: rgba(255, 255, 255, 0.9);
            --surface-strong: #ffffff;
            --surface-muted: #f7f4ee;
            --line: rgba(21, 53, 44, 0.12);
            --line-strong: rgba(21, 53, 44, 0.22);
            --text: #18342b;
            --muted: #5f746d;
            --brand: #0f766e;
            --brand-strong: #0b5a54;
            --brand-soft: #dff3ef;
            --accent: #e97451;
            --accent-soft: #fde7df;
            --success-bg: #d9f7e8;
            --success-text: #17603f;
            --danger-bg: #fde4e1;
            --danger-text: #b33d31;
            --shadow-xl: 0 28px 80px rgba(24, 52, 43, 0.16);
            --shadow-md: 0 16px 40px rgba(24, 52, 43, 0.1);
            --radius-xl: 28px;
            --radius-lg: 20px;
            --radius-md: 14px;
            --radius-sm: 10px;
        }

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

        body {
            min-height: 100vh;
            font-family: "Avenir Next", "Segoe UI", sans-serif;
            color: var(--text);
            background:
                radial-gradient(circle at top left, rgba(233, 116, 81, 0.24), transparent 34%),
                radial-gradient(circle at top right, rgba(15, 118, 110, 0.22), transparent 26%),
                linear-gradient(180deg, var(--bg) 0%, #f8f5ef 48%, #eef5f2 100%);
            padding: 28px;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            pointer-events: none;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
            background-size: 36px 36px;
            opacity: 0.3;
        }

        .container {
            width: 100%;
            max-width: 1360px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .login-screen {
            max-width: 1120px;
            margin: 0 auto;
            min-height: calc(100vh - 56px);
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: 26px;
            align-items: stretch;
        }

        .login-panel,
        .login-card,
        .header,
        .sidebar,
        .content-panel {
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

        .login-panel {
            background: linear-gradient(145deg, rgba(15, 118, 110, 0.94), rgba(11, 90, 84, 0.96));
            color: #f2fffb;
            border-radius: var(--radius-xl);
            padding: 44px;
            box-shadow: var(--shadow-xl);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            position: relative;
        }

        .login-panel::after {
            content: "";
            position: absolute;
            width: 320px;
            height: 320px;
            right: -80px;
            top: -80px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
        }

        .hero-copy,
        .hero-points,
        .hero-band {
            position: relative;
            z-index: 1;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.12);
            font-size: 12px;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .login-panel h1 {
            font-size: clamp(2.6rem, 5vw, 4.4rem);
            line-height: 0.94;
            letter-spacing: -0.06em;
            max-width: 9ch;
            margin-bottom: 18px;
        }

        .hero-copy p {
            max-width: 54ch;
            color: rgba(242, 255, 251, 0.84);
            line-height: 1.7;
            font-size: 1rem;
        }

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

        .hero-point {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 18px;
            padding: 18px 16px;
        }

        .hero-point strong {
            display: block;
            font-size: 1.3rem;
            margin-bottom: 6px;
        }

        .hero-point span {
            color: rgba(242, 255, 251, 0.78);
            font-size: 0.9rem;
            line-height: 1.45;
        }

        .hero-band {
            margin-top: 28px;
            display: flex;
            justify-content: space-between;
            gap: 16px;
            align-items: center;
            padding-top: 22px;
            border-top: 1px solid rgba(255, 255, 255, 0.16);
        }

        .hero-band div {
            max-width: 25ch;
        }

        .hero-band small {
            display: block;
            color: rgba(242, 255, 251, 0.64);
            font-size: 0.82rem;
            margin-bottom: 4px;
        }

        .hero-band strong {
            font-size: 0.98rem;
        }

        .login-card {
            background: var(--surface);
            border-radius: var(--radius-xl);
            padding: 38px;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(255, 255, 255, 0.66);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .logo {
            margin-bottom: 28px;
        }

        .logo h2 {
            font-size: 2rem;
            letter-spacing: -0.04em;
            margin-bottom: 8px;
        }

        .logo p {
            color: var(--muted);
            line-height: 1.6;
        }

        .error-message,
        .success-message {
            padding: 14px 16px;
            border-radius: var(--radius-md);
            margin-bottom: 18px;
            font-size: 0.94rem;
            display: none;
        }

        .error-message {
            background: var(--danger-bg);
            color: var(--danger-text);
            border: 1px solid rgba(179, 61, 49, 0.16);
        }

        .success-message {
            background: var(--success-bg);
            color: var(--success-text);
            border: 1px solid rgba(23, 96, 63, 0.12);
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label,
        .schedule-heading {
            display: block;
            margin-bottom: 8px;
            color: var(--text);
            font-weight: 700;
            font-size: 0.92rem;
        }

        .form-group small {
            display: block;
            color: var(--muted);
            margin-top: 7px;
            line-height: 1.5;
            font-size: 0.84rem;
        }

        .form-group input,
        .form-group select,
        .field-surface {
            width: 100%;
            border: 1.5px solid var(--line);
            border-radius: var(--radius-md);
            background: var(--surface-strong);
            color: var(--text);
            padding: 14px 15px;
            font: inherit;
            transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        #emailInput:focus {
            outline: none;
            border-color: rgba(15, 118, 110, 0.7);
            box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.08);
        }

        .password-input-wrapper {
            position: relative;
        }

        .password-input-wrapper input {
            padding-right: 54px;
        }

        .password-toggle {
            position: absolute;
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
            width: 38px;
            height: 38px;
            border: none;
            border-radius: 10px;
            background: var(--surface-muted);
            cursor: pointer;
            font-size: 18px;
        }

        .btn {
            border: none;
            border-radius: 999px;
            font: inherit;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.24s ease, box-shadow 0.24s ease, opacity 0.24s ease, background 0.24s ease;
        }

        .btn:hover {
            transform: translateY(-1px);
        }

        .btn:disabled {
            cursor: not-allowed;
            opacity: 0.58;
            transform: none;
            box-shadow: none;
        }

        .btn-primary {
            width: 100%;
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
            color: #fff;
            padding: 15px 18px;
            box-shadow: 0 16px 34px rgba(15, 118, 110, 0.22);
        }

        .btn-secondary {
            background: var(--surface-muted);
            color: var(--text);
            border: 1px solid var(--line);
            padding: 12px 16px;
        }

        .dashboard-screen {
            display: none;
        }

        .header {
            background: var(--surface);
            border-radius: var(--radius-xl);
            padding: 16px 20px;
            margin-bottom: 18px;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(255, 255, 255, 0.66);
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 16px;
            align-items: center;
        }

        .header h1 {
            font-size: clamp(1.15rem, 2vw, 1.6rem);
            line-height: 1.1;
            letter-spacing: -0.05em;
            margin: 0;
        }

        .header-right {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 12px;
            align-items: center;
        }

        .user-card {
            background: linear-gradient(135deg, #fffdf8 0%, #f2f8f5 100%);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 12px 14px;
        }

        .user-info {
            font-size: 0.88rem;
            color: var(--muted);
        }

        .user-info .username {
            display: block;
            color: var(--text);
            font-size: 0.96rem;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .user-info .role {
            display: inline-flex;
            margin-top: 4px;
            padding: 5px 9px;
            border-radius: 999px;
            background: var(--brand-soft);
            color: var(--brand-strong);
            font-size: 0.72rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 800;
        }

        .logout-btn {
            width: 104px;
            min-height: 48px;
        }

        .workspace-nav {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }

        .workspace-btn {
            border: 1px solid var(--line);
            background: rgba(255, 255, 255, 0.72);
            color: var(--muted);
            padding: 12px 16px;
            border-radius: 999px;
            font: inherit;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.24s ease;
        }

        .workspace-btn.is-active {
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 12px 24px rgba(15, 118, 110, 0.18);
        }

        .main-content {
            display: grid;
            grid-template-columns: 360px minmax(0, 1fr);
            gap: 24px;
        }

        .configurations-workspace {
            display: grid;
            gap: 24px;
        }

        .configurations-workspace.is-editor-focus .workspace-stage {
            display: none;
        }

        .configurations-workspace.is-editor-focus .editor-panel {
            min-height: calc(100vh - 180px);
            padding: 36px;
            box-shadow: var(--shadow-xl);
        }

        .workspace-stage {
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 18px;
            align-items: start;
        }

        .workspace-main,
        .workspace-side {
            display: grid;
            gap: 20px;
        }

        .workspace-side {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            position: static;
        }

        .workspace-hero-card {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 18px 24px;
            border-radius: var(--radius-xl);
            background: linear-gradient(145deg, rgba(15, 118, 110, 0.92), rgba(11, 90, 84, 0.95));
            color: #f4fffc;
            box-shadow: var(--shadow-xl);
            overflow: hidden;
            position: relative;
        }

        .workspace-hero-card::after {
            content: "";
            position: absolute;
            width: 300px;
            height: 300px;
            right: -80px;
            top: -90px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
        }

        .workspace-hero-actions {
            position: relative;
            z-index: 1;
        }

        .config-browser-copy small,
        .wizard-progress-head small,
        .wizard-step-heading small,
        .side-kicker-card small {
            display: inline-flex;
            padding: 8px 12px;
            border-radius: 999px;
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .workspace-hero-actions {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .btn-add-config-main {
            min-width: min(420px, 100%);
            min-height: 58px;
            padding: 16px 24px;
            font-size: 1.02rem;
            box-shadow: 0 22px 42px rgba(233, 116, 81, 0.26);
        }

        .config-browser-panel,
        .editor-panel {
            background: var(--surface);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(255, 255, 255, 0.66);
        }

        .config-browser-panel {
            padding: 28px 30px 32px;
            display: grid;
            gap: 20px;
        }

        .config-browser-head {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            align-items: end;
        }

        .config-browser-copy small,
        .wizard-progress-head small,
        .wizard-step-heading small,
        .side-kicker-card small {
            background: var(--brand-soft);
            color: var(--brand-strong);
        }

        .config-browser-copy h3 {
            font-size: 1.3rem;
            letter-spacing: -0.04em;
            margin-bottom: 4px;
        }

        .config-browser-copy p {
            color: var(--muted);
            line-height: 1.5;
            max-width: 42ch;
            font-size: 0.92rem;
        }

        .config-browser-stats {
            min-width: 280px;
        }

        .config-browser-toolbar {
            display: grid;
            grid-template-columns: 1fr;
            gap: 14px;
            padding: 18px;
            border-radius: 22px;
            background: linear-gradient(180deg, #fffefb 0%, #f4f8f5 100%);
            border: 1px solid var(--line);
        }

        .config-browser-search,
        .config-browser-filters {
            display: grid;
            gap: 10px;
        }

        .config-browser-search label {
            font-size: 0.88rem;
            font-weight: 800;
            color: var(--text);
        }

        .search-input-shell {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            align-items: center;
            gap: 12px;
            min-height: 60px;
            padding: 0 18px;
            border-radius: 20px;
            background: linear-gradient(180deg, #fffefb 0%, #f8fbf9 100%);
            border: 1px solid rgba(15, 118, 110, 0.12);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
        }

        .search-input-shell:focus-within {
            border-color: rgba(15, 118, 110, 0.38);
            box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.08);
        }

        .search-input-icon {
            color: var(--brand-strong);
            font-size: 1rem;
            font-weight: 800;
        }

        .config-browser-search input {
            min-height: 58px;
            font-size: 0.98rem;
            border: none;
            background: transparent;
            padding: 0;
            box-shadow: none;
        }

        .config-browser-search input:focus {
            box-shadow: none;
        }

        .config-browser-filters-label {
            font-size: 0.82rem;
            font-weight: 800;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .config-list.config-gallery {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            max-height: none;
            overflow: visible;
            padding-right: 0;
            list-style: none;
        }

        .config-list.config-gallery .config-item {
            min-height: 0;
            aspect-ratio: 1 / 1;
            display: flex;
            flex-direction: column;
            gap: 14px;
            padding: 18px;
        }

        .side-kicker-card {
            padding: 20px 22px;
            border-radius: 22px;
            background: linear-gradient(180deg, #fffefb 0%, #f2f7f4 100%);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-md);
        }

        .side-kicker-card strong {
            display: block;
            font-size: 1.02rem;
            letter-spacing: -0.03em;
            margin-bottom: 8px;
        }

        .side-kicker-card p {
            color: var(--muted);
            line-height: 1.6;
            font-size: 0.9rem;
        }

        .sidebar,
        .content-panel {
            background: var(--surface);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(255, 255, 255, 0.66);
        }

        .sidebar {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            height: fit-content;
        }

        .sidebar-top h3 {
            font-size: 1.28rem;
            letter-spacing: -0.03em;
            margin-bottom: 8px;
        }

        .sidebar-top p {
            color: var(--muted);
            line-height: 1.6;
            font-size: 0.92rem;
        }

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

        .sidebar-tools {
            display: grid;
            gap: 12px;
        }

        .quick-filter-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding: 6px;
            border-radius: 18px;
            background: var(--surface-strong);
            border: 1px solid var(--line);
            width: fit-content;
        }

        .quick-filter-chip {
            border: 1px solid transparent;
            background: transparent;
            color: var(--muted);
            border-radius: 999px;
            padding: 11px 16px;
            font: inherit;
            font-size: 0.84rem;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.24s ease;
            min-width: 108px;
        }

        .quick-filter-chip.is-active {
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
            border-color: transparent;
            color: #fff;
            box-shadow: 0 10px 22px rgba(15, 118, 110, 0.18);
        }

        .list-context {
            color: var(--muted);
            font-size: 0.84rem;
            line-height: 1.55;
        }

        .notice-card {
            padding: 16px 18px;
            border-radius: 18px;
            background: linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(233, 116, 81, 0.12));
            border: 1px solid rgba(15, 118, 110, 0.16);
            box-shadow: var(--shadow-md);
        }

        .notice-card strong {
            display: block;
            font-size: 0.96rem;
            margin-bottom: 6px;
            color: var(--brand-strong);
        }

        .notice-card p {
            color: var(--muted);
            font-size: 0.93rem;
            line-height: 1.6;
        }

        .admin-filters {
            display: none;
            padding: 18px;
            border-radius: 22px;
            background: linear-gradient(180deg, #fffefb 0%, #f2f7f4 100%);
            border: 1px solid var(--line);
            gap: 14px;
        }

        .admin-filters.is-visible {
            display: grid;
        }

        .admin-filters-head {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            align-items: flex-start;
        }

        .admin-filters-head h4 {
            font-size: 1rem;
            letter-spacing: -0.03em;
            margin-bottom: 4px;
        }

        .admin-filters-head p {
            color: var(--muted);
            font-size: 0.88rem;
            line-height: 1.55;
        }

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

        .admin-filter-grid .form-group {
            margin-bottom: 0;
        }

        .admin-filters-foot {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            align-items: center;
        }

        .admin-filter-result {
            color: var(--muted);
            font-size: 0.86rem;
        }

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

        .admin-result-card,
        .admin-result-empty {
            background: var(--surface);
            border-radius: 22px;
            border: 1px solid var(--line);
            box-shadow: var(--shadow-md);
            padding: 22px;
        }

        .admin-result-card h3,
        .admin-result-empty h3 {
            font-size: 1.08rem;
            letter-spacing: -0.03em;
            margin-bottom: 8px;
        }

        .admin-result-card p,
        .admin-result-empty p {
            color: var(--muted);
            line-height: 1.6;
        }

        .admin-result-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 16px 0;
        }

        .admin-result-footer {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            align-items: center;
            margin-top: 18px;
        }

        .admin-result-owner {
            color: var(--muted);
            font-size: 0.84rem;
        }

        .stat-card {
            background: var(--surface-strong);
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 14px;
        }

        .stat-card strong {
            display: block;
            font-size: 1.3rem;
            margin-bottom: 4px;
        }

        .stat-card span {
            color: var(--muted);
            font-size: 0.86rem;
        }

        .config-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-height: 540px;
            overflow: auto;
            padding-right: 4px;
        }

        .config-list.config-gallery {
            max-height: none;
            overflow: visible;
            gap: 18px;
            padding-right: 0;
        }

        .config-item {
            padding: 16px 16px 14px;
            background: var(--surface-strong);
            border-radius: 16px;
            cursor: pointer;
            border: 1px solid var(--line);
            transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
            color: var(--text);
            position: relative;
            overflow: hidden;
        }

        .config-item:hover {
            transform: translateY(-1px);
            border-color: rgba(15, 118, 110, 0.3);
            box-shadow: 0 12px 24px rgba(24, 52, 43, 0.08);
        }

        .config-item::before {
            content: "";
            position: absolute;
            inset: 0 auto 0 0;
            width: 5px;
            background: rgba(15, 118, 110, 0.1);
        }

        .config-item.active {
            border-color: rgba(15, 118, 110, 0.45);
            background: linear-gradient(135deg, #f7fffc 0%, #eef8f5 100%);
            box-shadow: inset 0 0 0 1px rgba(15, 118, 110, 0.08);
        }

        .config-item.active::before {
            background: linear-gradient(180deg, var(--brand) 0%, var(--brand-strong) 100%);
        }

        .config-card-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }

        .config-item-head {
            display: block;
        }

        .config-item-title {
            min-width: 0;
        }

        .config-item-title strong {
            margin-bottom: 8px;
            font-size: 1.12rem;
            line-height: 1.1;
            letter-spacing: -0.04em;
        }

        .config-kicker {
            color: var(--muted);
            font-size: 0.8rem;
            line-height: 1.5;
        }

        .config-reasons {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 4px;
        }

        .config-reason-pill {
            display: inline-flex;
            align-items: center;
            padding: 7px 10px;
            border-radius: 999px;
            background: #fff4e7;
            color: #a54c31;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .config-status-pill {
            display: inline-flex;
            align-items: center;
            padding: 7px 11px;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            border: 1px solid transparent;
        }

        .config-status-pill.is-active {
            background: #e5f8ef;
            color: #157347;
            border-color: rgba(21, 115, 71, 0.12);
        }

        .config-status-pill.is-inactive {
            background: #fde7e4;
            color: #b33d31;
            border-color: rgba(179, 61, 49, 0.12);
        }

        .config-edit-btn {
            width: 38px;
            height: 38px;
            border: 1px solid var(--line);
            border-radius: 12px;
            background: var(--surface-muted);
            color: var(--text);
            font: inherit;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.24s ease;
        }

        .config-edit-btn:hover {
            border-color: rgba(15, 118, 110, 0.28);
            background: #f0f8f5;
            color: var(--brand-strong);
        }

        .config-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 10px;
            border-radius: 999px;
            background: var(--surface-muted);
            color: var(--muted);
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .config-badge.is-active {
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
            color: #fff;
            box-shadow: 0 10px 20px rgba(15, 118, 110, 0.14);
        }

        .config-card-details {
            margin-top: auto;
            display: grid;
            gap: 10px;
            padding-top: 12px;
            border-top: 1px solid rgba(21, 53, 44, 0.08);
        }

        .config-detail-row {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            align-items: baseline;
        }

        .config-detail-label {
            color: var(--muted);
            font-size: 0.74rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            font-weight: 800;
        }

        .config-detail-value {
            color: var(--text);
            font-size: 0.84rem;
            font-weight: 700;
            text-align: right;
            line-height: 1.4;
        }

        .btn-add-config {
            background: linear-gradient(135deg, var(--accent) 0%, #d85c37 100%);
            color: #fff;
            padding: 15px 18px;
            box-shadow: 0 14px 28px rgba(233, 116, 81, 0.2);
        }

        .content-panel {
            padding: 28px;
        }

        .editor-panel {
            padding: 30px;
        }

        .summary-eyebrow {
            display: inline-flex;
            padding: 8px 12px;
            border-radius: 999px;
            background: var(--accent-soft);
            color: #a54c31;
            font-size: 0.74rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 12px;
        }

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

        .summary-panel {
            padding: 20px 22px;
            border-radius: 22px;
            background: linear-gradient(180deg, #fffefb 0%, #f4f8f5 100%);
            border: 1px solid var(--line);
        }

        .summary-panel small {
            display: inline-flex;
            margin-bottom: 10px;
            color: var(--brand-strong);
            font-size: 0.74rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .summary-panel strong {
            display: block;
            font-size: 1.05rem;
            letter-spacing: -0.03em;
            margin-bottom: 8px;
        }

        .summary-panel p {
            color: var(--muted);
            line-height: 1.6;
            font-size: 0.92rem;
        }

        .editor-actions-static {
            position: static;
            bottom: auto;
        }

        .admin-screen {
            display: grid;
            gap: 20px;
        }

        .admin-hero {
            display: grid;
            grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
            gap: 20px;
            background: var(--surface);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(255, 255, 255, 0.66);
            padding: 26px 28px;
        }

        .admin-hero small {
            display: inline-flex;
            padding: 8px 12px;
            border-radius: 999px;
            background: var(--brand-soft);
            color: var(--brand-strong);
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .admin-hero h2 {
            font-size: 2rem;
            line-height: 1;
            letter-spacing: -0.05em;
            margin-bottom: 10px;
        }

        .admin-hero p {
            color: var(--muted);
            line-height: 1.65;
            max-width: 62ch;
        }

        .admin-hero-stats {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            align-content: start;
        }

        .empty-state {
            text-align: center;
            padding: 70px 24px;
            border-radius: 22px;
            border: 1px dashed var(--line-strong);
            background: linear-gradient(180deg, #fffdf9 0%, #f4f8f5 100%);
        }

        .empty-state-mark {
            width: 78px;
            height: 78px;
            margin: 0 auto 18px;
            border-radius: 24px;
            background: linear-gradient(135deg, var(--brand-soft) 0%, #fff3ec 100%);
            display: grid;
            place-items: center;
            font-size: 2rem;
        }

        .empty-state h2 {
            font-size: 1.6rem;
            letter-spacing: -0.04em;
            margin-bottom: 10px;
        }

        .empty-state p {
            color: var(--muted);
            max-width: 48ch;
            margin: 0 auto;
            line-height: 1.7;
        }

        .editor-shell {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .editor-status-note {
            color: var(--muted);
            line-height: 1.55;
            font-size: 0.88rem;
            margin-top: 10px;
        }

        .wizard-progress-shell {
            display: grid;
            gap: 18px;
            padding: 22px;
            border-radius: 24px;
            background: linear-gradient(180deg, #fffefb 0%, #f4f8f5 100%);
            border: 1px solid var(--line);
        }

        .wizard-progress-head {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            align-items: flex-start;
        }

        .wizard-progress-head h3 {
            font-size: 1.18rem;
            letter-spacing: -0.03em;
            margin-bottom: 6px;
        }

        .wizard-progress-head p {
            color: var(--muted);
            line-height: 1.6;
            max-width: 62ch;
        }

        .wizard-progress-label {
            display: inline-flex;
            align-items: center;
            min-height: 40px;
            padding: 8px 12px;
            border-radius: 999px;
            background: var(--surface-strong);
            border: 1px solid rgba(15, 118, 110, 0.16);
            color: var(--brand-strong);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .wizard-timeline {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 12px;
            --wizard-progress: 0%;
        }

        .wizard-timeline::before {
            content: "";
            position: absolute;
            top: 20px;
            left: 24px;
            right: 24px;
            height: 3px;
            background: rgba(21, 53, 44, 0.12);
            border-radius: 999px;
        }

        .wizard-timeline::after {
            content: "";
            position: absolute;
            top: 20px;
            left: 24px;
            width: calc((100% - 48px) * var(--wizard-progress));
            max-width: calc(100% - 48px);
            height: 3px;
            background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
            border-radius: 999px;
            transition: width 0.24s ease;
        }

        .wizard-step-item {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 10px;
            justify-items: start;
            text-align: left;
            padding: 0;
            border: none;
            background: transparent;
            color: var(--text);
        }

        .wizard-step-item:not(.is-locked) {
            cursor: pointer;
        }

        .wizard-step-item.is-locked {
            cursor: not-allowed;
        }

        .wizard-step-node {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: var(--surface-strong);
            border: 2px solid rgba(21, 53, 44, 0.16);
            color: var(--muted);
            font-size: 0.92rem;
            font-weight: 800;
            transition: all 0.24s ease;
        }

        .wizard-step-card {
            width: 100%;
            padding: 14px 14px 16px;
            border-radius: 18px;
            background: var(--surface-strong);
            border: 1px solid var(--line);
            box-shadow: var(--shadow-md);
            transition: all 0.24s ease;
            min-height: 104px;
        }

        .wizard-step-card strong {
            display: block;
            font-size: 0.94rem;
            letter-spacing: -0.02em;
            margin-bottom: 6px;
        }

        .wizard-step-card span {
            color: var(--muted);
            font-size: 0.82rem;
            line-height: 1.45;
        }

        .wizard-step-item.is-current .wizard-step-node {
            background: var(--brand);
            border-color: var(--brand);
            color: #fff;
            box-shadow: 0 12px 24px rgba(15, 118, 110, 0.22);
        }

        .wizard-step-item.is-current .wizard-step-card {
            border-color: rgba(15, 118, 110, 0.24);
            background: linear-gradient(135deg, #f7fffc 0%, #eef8f5 100%);
        }

        .wizard-step-item.is-done .wizard-step-node {
            background: var(--brand-soft);
            border-color: rgba(15, 118, 110, 0.24);
            color: var(--brand-strong);
        }

        .wizard-step-item.is-done .wizard-step-card {
            border-color: rgba(15, 118, 110, 0.16);
        }

        .wizard-step-item.is-open .wizard-step-card {
            border-color: rgba(15, 118, 110, 0.12);
            background: linear-gradient(180deg, #fffefb 0%, #f7faf8 100%);
        }

        .wizard-step-item.is-locked .wizard-step-node {
            opacity: 0.5;
        }

        .wizard-step-item.is-locked .wizard-step-card {
            opacity: 0.58;
        }

        .wizard-body {
            display: grid;
            gap: 18px;
        }

        .wizard-step {
            display: none;
            gap: 18px;
        }

        .wizard-step.is-active {
            display: grid;
        }

        .wizard-step-heading h4 {
            font-size: 1.28rem;
            letter-spacing: -0.03em;
            margin-bottom: 8px;
        }

        .wizard-step-heading p {
            color: var(--muted);
            line-height: 1.6;
            max-width: 62ch;
        }

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

        .wizard-active-toggle {
            background: linear-gradient(135deg, #fffdf8 0%, #f2f8f5 100%);
        }

        .wizard-footer {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            align-items: center;
            padding: 18px 20px;
            border-radius: 22px;
            background: linear-gradient(180deg, #fffefb 0%, #f4f8f5 100%);
            border: 1px solid var(--line);
        }

        .wizard-footer-copy small {
            display: inline-flex;
            margin-bottom: 8px;
            color: var(--brand-strong);
            font-size: 0.74rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 800;
        }

        .wizard-footer-copy strong {
            display: block;
            font-size: 1rem;
            letter-spacing: -0.03em;
            margin-bottom: 6px;
        }

        .wizard-footer-copy p {
            color: var(--muted);
            line-height: 1.55;
            font-size: 0.9rem;
            max-width: 56ch;
        }

        .wizard-navigation {
            display: flex;
            gap: 12px;
            align-items: stretch;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .wizard-navigation .btn {
            min-width: 178px;
        }

        .wizard-navigation .btn-primary {
            width: auto;
        }

        .editor-overview {
            display: grid;
            gap: 18px;
            padding: 22px;
            border-radius: 24px;
            border: 1px solid rgba(15, 118, 110, 0.12);
            background: linear-gradient(145deg, rgba(15, 118, 110, 0.08), rgba(233, 116, 81, 0.08));
        }

        .editor-overview-head {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            align-items: flex-start;
        }

        .editor-overview-head small,
        .editor-actions-copy small {
            display: inline-flex;
            margin-bottom: 8px;
            color: var(--brand-strong);
            font-size: 0.74rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 800;
        }

        .editor-overview-head h3 {
            font-size: 1.18rem;
            letter-spacing: -0.03em;
            margin-bottom: 6px;
        }

        .editor-overview-head p {
            color: var(--muted);
            line-height: 1.6;
            max-width: 62ch;
        }

        .editor-overview-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: flex-end;
            gap: 8px;
        }

        .overview-badge {
            display: inline-flex;
            align-items: center;
            min-height: 38px;
            padding: 8px 12px;
            border-radius: 999px;
            background: var(--surface-strong);
            border: 1px solid rgba(15, 118, 110, 0.16);
            color: var(--brand-strong);
            font-size: 0.78rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        .overview-badge.is-muted {
            color: var(--muted);
            border-color: var(--line);
        }

        .overview-badge.is-warning {
            background: #fff4e7;
            border-color: rgba(233, 116, 81, 0.2);
            color: #a54c31;
        }

        .overview-badge.is-ready {
            background: var(--brand-soft);
            border-color: rgba(15, 118, 110, 0.24);
            color: var(--brand-strong);
        }

        .editor-checklist {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 10px;
        }

        .checklist-item {
            padding: 14px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.78);
            border: 1px solid rgba(15, 118, 110, 0.1);
            display: grid;
            gap: 4px;
        }

        .checklist-item small {
            color: var(--muted);
            font-size: 0.76rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 800;
        }

        .checklist-item strong {
            font-size: 0.92rem;
            letter-spacing: -0.02em;
        }

        .checklist-item span {
            color: var(--muted);
            font-size: 0.84rem;
            line-height: 1.45;
        }

        .checklist-item.is-done {
            background: #f4fcf9;
            border-color: rgba(15, 118, 110, 0.18);
        }

        .checklist-item.is-done strong {
            color: var(--brand-strong);
        }

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

        .summary-card {
            padding: 16px 18px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.82);
            border: 1px solid rgba(21, 53, 44, 0.08);
        }

        .summary-card small {
            display: block;
            color: var(--muted);
            font-size: 0.76rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .summary-card strong {
            display: block;
            font-size: 1rem;
            letter-spacing: -0.03em;
            margin-bottom: 6px;
        }

        .summary-card p {
            color: var(--muted);
            line-height: 1.55;
            font-size: 0.88rem;
        }

        .editor-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 18px;
            padding-bottom: 14px;
            border-bottom: 1px solid var(--line);
        }

        .editor-title h2 {
            font-size: 1.9rem;
            letter-spacing: -0.05em;
            margin-bottom: 8px;
        }

        .editor-back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            padding: 0;
            border: none;
            background: transparent;
            color: var(--brand-strong);
            font: inherit;
            font-size: 0.9rem;
            font-weight: 800;
            cursor: pointer;
        }

        .editor-back-link:hover {
            text-decoration: underline;
        }

        .editor-title p {
            color: var(--muted);
            line-height: 1.6;
            max-width: 60ch;
        }

        .editor-status {
            min-width: 220px;
            padding: 16px 18px;
            border: 1px solid var(--line);
            border-radius: 18px;
            background: linear-gradient(135deg, #fffdf8 0%, #f2f8f5 100%);
        }

        .editor-status small {
            display: block;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.09em;
            font-size: 0.72rem;
            margin-bottom: 7px;
            font-weight: 800;
        }

        .editor-status strong {
            display: block;
            margin-bottom: 8px;
            font-size: 1rem;
        }

        .editor-grid {
            display: grid;
            grid-template-columns: repeat(12, minmax(0, 1fr));
            gap: 18px;
        }

        .form-section {
            grid-column: span 12;
            padding: 22px;
            border-radius: 22px;
            background: var(--surface-strong);
            border: 1px solid var(--line);
        }

        .form-section.compact {
            grid-column: span 6;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            gap: 18px;
            align-items: flex-start;
            margin-bottom: 18px;
        }

        .section-header h4 {
            font-size: 1rem;
            letter-spacing: -0.03em;
            margin-bottom: 4px;
        }

        .section-header p {
            color: var(--muted);
            line-height: 1.55;
            font-size: 0.9rem;
            max-width: 58ch;
        }

        .section-chip {
            flex: 0 0 auto;
            padding: 8px 11px;
            border-radius: 999px;
            background: var(--surface-muted);
            color: var(--muted);
            font-size: 0.72rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .accordion-toggle {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            margin-top: 4px;
            padding: 16px 18px;
            border: 1px solid var(--line);
            border-radius: 18px;
            background: linear-gradient(135deg, #fffdf8 0%, #f2f8f5 100%);
            color: var(--text);
            text-align: left;
        }

        .accordion-toggle span {
            color: var(--muted);
            font-size: 0.9rem;
            font-weight: 600;
        }

        .accordion-toggle strong {
            font-size: 0.98rem;
        }

        .accordion-meta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .accordion-status {
            display: inline-flex;
            align-items: center;
            min-height: 30px;
            padding: 6px 10px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(15, 118, 110, 0.12);
            color: var(--brand-strong);
            font-size: 0.75rem;
            font-weight: 800;
        }

        .accordion-icon {
            flex: 0 0 auto;
            font-size: 1.1rem;
            color: var(--brand-strong);
            transition: transform 0.24s ease;
        }

        .accordion-toggle[aria-expanded="true"] .accordion-icon {
            transform: rotate(45deg);
        }

        .accordion-panel {
            display: none;
            margin-top: 14px;
        }

        .accordion-panel.is-open {
            display: block;
        }

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

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

        .checkbox-card {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            padding: 14px;
            border-radius: 16px;
            border: 1px solid var(--line);
            background: var(--surface-muted);
        }

        .checkbox-card input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            accent-color: var(--brand);
            cursor: pointer;
        }

        .checkbox-card label {
            margin: 0;
            font-weight: 700;
            line-height: 1.45;
            cursor: pointer;
        }

        .tags-panel {
            display: grid;
            gap: 12px;
        }

        .email-entry {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 10px;
            padding: 8px;
            border-radius: 18px;
            background: var(--surface-muted);
            border: 1px solid var(--line);
        }

        .email-entry button {
            width: auto;
            padding: 0 20px;
            border-radius: 14px;
            min-height: 52px;
        }

        .email-entry input {
            border: none;
            background: var(--surface-strong);
            border-radius: 14px;
            min-height: 52px;
            padding: 14px 16px;
            width: 100%;
            color: var(--text);
            font: inherit;
        }

        .email-entry input:focus {
            outline: none;
            box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.08);
        }

        .tags-input {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            min-height: 62px;
            padding: 14px;
            border-radius: 16px;
            background: var(--surface-muted);
            border: 1px solid var(--line);
            align-items: flex-start;
            align-content: flex-start;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            border-radius: 999px;
            background: linear-gradient(135deg, #edf8f6 0%, #fff2eb 100%);
            border: 1px solid rgba(15, 118, 110, 0.15);
            color: var(--brand-strong);
            font-size: 0.86rem;
            font-weight: 700;
        }

        .tag button {
            width: 22px;
            height: 22px;
            border: none;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.82);
            color: var(--accent);
            font-size: 16px;
            line-height: 1;
            cursor: pointer;
        }

        .schedule-wrap {
            display: grid;
            gap: 16px;
        }

        .schedule-grid {
            display: grid;
            grid-template-columns: repeat(7, minmax(0, 1fr));
            gap: 10px;
        }

        .schedule-day {
            text-align: center;
            padding: 12px 8px;
            border-radius: 16px;
            border: 1px solid var(--line);
            background: var(--surface-muted);
        }

        .schedule-day label {
            display: block;
            font-size: 0.82rem;
            color: var(--muted);
            margin-bottom: 8px;
            font-weight: 800;
        }

        .schedule-day input[type="checkbox"] {
            width: 20px;
            height: 20px;
            accent-color: var(--brand);
            cursor: pointer;
        }

        .button-group {
            display: flex;
            gap: 12px;
            margin-top: 6px;
            align-items: stretch;
        }

        .editor-actions {
            position: sticky;
            bottom: 14px;
            z-index: 5;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 18px;
            padding: 16px 18px;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.94);
            border: 1px solid rgba(21, 53, 44, 0.1);
            box-shadow: 0 20px 40px rgba(24, 52, 43, 0.12);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

        .editor-actions-copy {
            min-width: 0;
        }

        .editor-actions-copy strong {
            display: block;
            margin-bottom: 6px;
            font-size: 1rem;
            letter-spacing: -0.03em;
        }

        .editor-actions-copy p {
            color: var(--muted);
            line-height: 1.55;
            font-size: 0.9rem;
            max-width: 52ch;
        }

        .btn-save,
        .btn-delete {
            flex: 1;
            padding: 15px 18px;
        }

        .btn-save {
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
            color: #fff;
        }

        .btn-delete {
            background: linear-gradient(135deg, #dd5e50 0%, #bb4035 100%);
            color: #fff;
        }

        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(24, 52, 43, 0.38);
            display: grid;
            place-items: center;
            padding: 24px;
            z-index: 50;
        }

        .modal-card {
            width: min(620px, 100%);
            background: var(--surface-strong);
            border-radius: 26px;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(255, 255, 255, 0.66);
            padding: 24px;
            display: grid;
            gap: 18px;
        }

        .modal-head,
        .modal-actions {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            align-items: flex-start;
        }

        .modal-head h3 {
            font-size: 1.3rem;
            letter-spacing: -0.04em;
            margin-bottom: 6px;
        }

        .modal-head p {
            color: var(--muted);
            line-height: 1.6;
        }

        .modal-body {
            display: grid;
            gap: 16px;
        }

        .loading {
            display: none;
            color: var(--muted);
            font-size: 0.92rem;
        }

        .spinner {
            display: inline-block;
            width: 18px;
            height: 18px;
            border: 3px solid rgba(15, 118, 110, 0.18);
            border-top-color: var(--brand);
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
            margin-right: 8px;
            vertical-align: middle;
        }

        .no-config {
            text-align: center;
            color: var(--muted);
            padding: 20px;
            border-radius: 16px;
            background: var(--surface-muted);
            border: 1px dashed var(--line-strong);
        }

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

        @media (max-width: 1180px) {
            .login-screen,
            .main-content,
            .workspace-stage,
            .workspace-hero-card,
            .header,
            .admin-hero {
                grid-template-columns: 1fr;
            }

            .header-right {
                grid-template-columns: 1fr;
            }

            .logout-btn {
                width: 100%;
            }

            .form-section.compact {
                grid-column: span 12;
            }

            .workspace-side {
                grid-template-columns: 1fr;
                position: static;
            }

            .config-browser-toolbar,
            .wizard-step-grid {
                grid-template-columns: 1fr;
            }

            .config-list.config-gallery {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 820px) {
            body {
                padding: 16px;
            }

            .login-panel,
            .login-card,
            .sidebar,
            .content-panel,
            .header {
                padding: 22px;
            }

            .hero-points,
            .grid-2,
            .checkbox-group,
            .workspace-side,
            .sidebar-stats,
            .summary-grid,
            .editor-checklist,
            .editor-preview-grid,
            .admin-filter-grid,
            .admin-results-grid,
            .admin-hero-stats {
                grid-template-columns: 1fr;
            }

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

            .config-list.config-gallery {
                grid-template-columns: 1fr;
            }

            .editor-header,
            .editor-overview-head,
            .config-browser-head,
            .wizard-progress-head,
            .wizard-footer,
            .editor-actions,
            .section-header,
            .button-group,
            .hero-band,
            .email-entry {
                display: grid;
                grid-template-columns: 1fr;
            }

            .editor-overview-badges {
                justify-content: flex-start;
            }

            .wizard-timeline {
                grid-template-columns: 1fr;
            }

            .wizard-timeline::before {
                display: none;
            }

            .wizard-step-item {
                grid-template-columns: auto 1fr;
                align-items: start;
                gap: 12px;
            }

            .configurations-workspace.is-editor-focus .editor-panel {
                min-height: auto;
                padding: 22px;
            }
        }

        @media (max-width: 560px) {
            .schedule-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .login-panel h1 {
                max-width: none;
            }
        }
