﻿:root {
            --bg: #f5f7fb;
            --surface: rgba(255, 255, 255, 0.96);
            --text: #15233b;
            --text-soft: #5f6d84;
            --line: rgba(21, 35, 59, 0.1);
            --line-strong: rgba(21, 35, 59, 0.16);
            --primary: #174da1;
            --primary-strong: #103972;
            --primary-soft: rgba(23, 77, 161, 0.08);
            --success: #1d7f58;
            --warning: #ae7515;
            --danger: #be4d45;
            --shadow-lg: 0 30px 80px rgba(20, 40, 77, 0.08);
            --shadow-md: 0 18px 48px rgba(20, 40, 77, 0.06);
            --radius-xl: 24px;
            --radius-lg: 18px;
            --radius-md: 12px;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            color: var(--text);
            font-family: "Source Han Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            background:
                radial-gradient(circle at top left, rgba(23, 77, 161, 0.1), transparent 28%),
                radial-gradient(circle at 92% 18%, rgba(67, 122, 203, 0.08), transparent 26%),
                linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        a {
            color: inherit;
        }

        .page {
            position: relative;
            overflow: hidden;
        }

        .page::before,
        .page::after {
            content: "";
            position: fixed;
            border-radius: 999px;
            pointer-events: none;
            filter: blur(20px);
            z-index: 0;
        }

        .page::before {
            top: -90px;
            right: -70px;
            width: 320px;
            height: 320px;
            background: rgba(23, 77, 161, 0.06);
        }

        .page::after {
            left: -110px;
            bottom: 10%;
            width: 280px;
            height: 280px;
            background: rgba(96, 132, 191, 0.08);
        }

        .wrap {
            width: min(1180px, calc(100vw - 32px));
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .topbar {
            padding: 14px 0 8px;
        }

        .topbar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 12px 16px;
            border: 1px solid rgba(255, 255, 255, 0.45);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            box-shadow: 0 10px 30px rgba(16, 38, 74, 0.04);
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
        }

        .brand-copy {
            min-width: 0;
        }

        .brand-mark {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
            color: #fff;
            font-size: 17px;
            font-weight: 800;
            letter-spacing: 0.08em;
            box-shadow: 0 12px 24px rgba(23, 77, 161, 0.18);
        }

        .brand-title {
            margin: 0;
            font-size: 15px;
            font-weight: 800;
            letter-spacing: 0.01em;
        }

        .brand-subtitle {
            margin: 4px 0 0;
            color: var(--text-soft);
            font-size: 12px;
            white-space: nowrap;
        }

        .nav {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: flex-end;
            gap: 8px;
        }

        .topbar-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 10px;
        }

        .nav a {
            text-decoration: none;
            color: var(--text-soft);
            font-size: 13px;
            font-weight: 700;
            padding: 10px 14px;
            border-radius: 999px;
            transition: background 0.2s ease, color 0.2s ease;
        }

        .nav a:hover {
            color: var(--primary-strong);
            background: rgba(255, 255, 255, 0.7);
        }

        .nav-user {
            min-height: 38px;
            padding: 0 16px;
            border: 1px solid rgba(23, 77, 161, 0.14);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.86);
            color: var(--primary-strong);
            font-size: 13px;
            font-weight: 800;
            box-shadow: none;
        }

        .nav-user:hover {
            background: rgba(23, 77, 161, 0.08);
        }

        .nav-user.is-busy {
            opacity: 0.7;
            pointer-events: none;
        }

        .hero {
            display: grid;
            grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
            gap: 22px;
            align-items: stretch;
            padding: 22px 0 18px;
        }

        .hero-main,
        .hero-side,
        .panel,
        .info-card,
        .step,
        .faq-item,
        .seo-copy,
        .footer-inner {
            border: 1px solid var(--line);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.94) 100%);
            box-shadow: var(--shadow-md);
        }

        .hero-main,
        .hero-side {
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
        }

        .hero-main {
            padding: 34px 36px;
            position: relative;
            overflow: hidden;
        }

        .hero-main::after {
            content: "";
            position: absolute;
            right: -40px;
            bottom: -70px;
            width: 240px;
            height: 240px;
            border-radius: 999px;
            background: radial-gradient(circle, rgba(23, 77, 161, 0.14) 0%, rgba(23, 77, 161, 0) 70%);
        }

        .hero-kicker,
        .section-tag {
            display: inline-flex;
            align-items: center;
            padding: 8px 14px;
            border-radius: 999px;
            background: var(--primary-soft);
            color: var(--primary-strong);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.08em;
        }

        .hero h1 {
            margin: 18px 0 14px;
            max-width: 760px;
            font-size: clamp(34px, 5vw, 62px);
            line-height: 1.05;
            letter-spacing: -0.05em;
        }

        .hero-copy,
        .section-copy,
        .info-card p,
        .step p,
        .faq-item p,
        .seo-copy p,
        .side-copy,
        .inline-note,
        .panel-subtitle,
        .hint,
        .footer-copy {
            color: var(--text-soft);
            line-height: 1.85;
        }

        .hero-copy {
            margin: 0;
            max-width: 760px;
            font-size: 17px;
        }

        .hero-points {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 24px;
        }

        .hero-point {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 11px 16px;
            border: 1px solid rgba(23, 77, 161, 0.12);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.86);
            color: #334765;
            font-size: 13px;
            font-weight: 700;
        }

        .hero-actions,
        .actions,
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .hero-actions {
            margin-top: 28px;
        }

        .cta,
        .cta-secondary,
        button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 0 20px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 800;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
        }

        .cta,
        .btn-primary {
            color: #f8fbff;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
            box-shadow: 0 16px 30px rgba(23, 77, 161, 0.18);
        }

        .cta-secondary,
        .btn-secondary {
            color: var(--primary-strong);
            background: rgba(23, 77, 161, 0.08);
        }

        .cta:hover,
        .cta-secondary:hover,
        button:hover {
            transform: translateY(-1px);
        }

        .hero-side {
            padding: 24px;
            display: grid;
            gap: 16px;
        }

        .side-card,
        .metric {
            padding: 18px;
            border: 1px solid rgba(21, 35, 59, 0.08);
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.92);
        }

        .side-title {
            margin: 0 0 8px;
            font-size: 16px;
            font-weight: 800;
        }

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

        .metric-value {
            display: block;
            color: var(--primary-strong);
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -0.03em;
        }

        .metric-label {
            display: block;
            margin-top: 6px;
            color: var(--text-soft);
            font-size: 12px;
            line-height: 1.6;
        }

        .section {
            padding: 10px 0;
        }

        .section-head {
            margin-bottom: 18px;
        }

        .section-title {
            margin: 14px 0 8px;
            font-size: clamp(26px, 3.4vw, 40px);
            line-height: 1.15;
            letter-spacing: -0.04em;
        }

        .section-copy {
            margin: 0;
            max-width: 760px;
            font-size: 15px;
        }

        .tool-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
            gap: 20px;
            align-items: start;
        }

        .panel {
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        .panel-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 28px 24px 20px;
        }

        .panel-title {
            margin: 0;
            font-size: 21px;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .panel-subtitle,
        .hint,
        .inline-note,
        .footer-copy {
            margin: 4px 0 0;
            font-size: 13px;
        }

        .panel-body {
            padding: 0 18px 18px;
        }

        label {
            display: block;
            margin: 18px 0 8px;
            font-size: 14px;
            font-weight: 800;
        }

        textarea,
        select {
            width: 100%;
            border: 1px solid rgba(21, 35, 59, 0.14);
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, 0.98);
            color: var(--text);
            padding: 11px 13px;
            font: inherit;
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
        }

        textarea:focus,
        select:focus {
            border-color: rgba(23, 77, 161, 0.48);
            box-shadow: 0 0 0 4px rgba(23, 77, 161, 0.08);
            transform: translateY(-1px);
        }

        textarea {
            resize: vertical;
            min-height: 132px;
            font-size: 14px;
            line-height: 1.6;
        }

        textarea::placeholder {
            color: var(--text-soft);
            font-size: inherit;
            line-height: 1.5;
        }

        #tool textarea {
            padding: 11px 13px;
            box-sizing: border-box;
            font-size: 14px;
            line-height: 1.6;
        }

        #tool textarea::placeholder {
            font-size: 14px;
            line-height: 1.5;
        }

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

        button {
            border: 0;
            cursor: pointer;
        }

        .btn-primary {
            min-width: 176px;
        }

        .btn-primary.is-busy {
            opacity: 0.92;
        }

        .flash {
            margin-top: 12px;
            padding: 10px 12px;
            border-radius: 10px;
            font-size: 14px;
            display: none;
        }

        .flash.show {
            display: block;
        }

        .flash-ok {
            background: rgba(29, 127, 88, 0.1);
            color: var(--success);
        }

        .flash-bad {
            background: rgba(190, 77, 69, 0.1);
            color: var(--danger);
        }

        .account-modal {
            display: grid;
            gap: 16px;
            padding: 18px 20px 20px;
        }

        .account-modal-copy {
            display: grid;
            gap: 12px;
        }

        .account-modal-row {
            display: grid;
            gap: 6px;
            padding: 12px 14px;
            border: 1px solid rgba(21, 35, 59, 0.08);
            border-radius: 12px;
            background: rgba(247, 250, 255, 0.9);
        }

        .account-modal-label {
            color: var(--text-soft);
            font-size: 12px;
            line-height: 1.5;
        }

        .account-modal-value {
            color: var(--text);
            font-size: 14px;
            font-weight: 700;
            line-height: 1.5;
        }

        .account-modal-value em {
            margin-left: 8px;
            color: var(--danger);
            font-style: normal;
            font-size: 12px;
            font-weight: 700;
        }

        .account-modal-button {
            width: 100%;
            min-height: 42px;
        }

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

        .tasks {
            display: grid;
            gap: 10px;
        }

        .task {
            padding: 12px;
            border: 1px solid var(--line);
            border-radius: 14px;
            background: rgba(248, 251, 255, 0.96);
        }

        .task-header,
        .task-meta,
        .task-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .task-header {
            margin-bottom: 8px;
        }

        .task-title {
            margin: 0;
            font-size: 14px;
            font-weight: 800;
            word-break: break-all;
        }

        .task-meta,
        .task-item-extra {
            color: var(--text-soft);
            font-size: 12px;
        }

        .task-meta {
            flex-wrap: wrap;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 82px;
            padding: 6px 10px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 800;
        }

        .status-pending,
        .status-queued,
        .status-running {
            background: rgba(174, 117, 21, 0.12);
            color: var(--warning);
        }

        .status-completed,
        .status-partial {
            background: rgba(29, 127, 88, 0.12);
            color: var(--success);
        }

        .status-failed,
        .status-dispatch_failed {
            background: rgba(190, 77, 69, 0.12);
            color: var(--danger);
        }

        .task-items {
            display: grid;
            gap: 8px;
            margin-top: 10px;
        }

        .task-item {
            align-items: flex-start;
            padding: 8px 10px;
            border-radius: 10px;
            background: rgba(241, 246, 252, 0.92);
        }

        .task-item-main {
            min-width: 0;
        }

        .task-item-url {
            color: var(--text);
            font-size: 12px;
            line-height: 1.5;
            word-break: break-all;
        }

        .task-links a {
            color: var(--primary-strong);
            text-decoration: none;
            font-size: 12px;
            font-weight: 800;
        }

        .task-links a:hover {
            text-decoration: underline;
        }

        .task-item-merged {
            border: 1px dashed rgba(23, 77, 161, 0.18);
        }

        .task-actions {
            display: flex;
            justify-content: flex-end;
            gap: 8px;
            margin-top: 10px;
            flex-wrap: wrap;
        }

        .empty {
            padding: 12px;
            border: 1px dashed var(--line-strong);
            border-radius: 12px;
            color: var(--text-soft);
            font-size: 13px;
            line-height: 1.5;
            text-align: center;
            background: rgba(248, 251, 255, 0.9);
        }

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

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

        .info-card,
        .step,
        .faq-item,
        .seo-copy,
        .footer-inner {
            border-radius: 22px;
        }

        .info-card,
        .step,
        .seo-copy {
            padding: 22px;
        }

        .info-index {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            border-radius: 12px;
            background: rgba(23, 77, 161, 0.08);
            color: var(--primary-strong);
            font-size: 13px;
            font-weight: 800;
        }

        .info-card h3,
        .step h3 {
            margin: 16px 0 8px;
            font-size: 18px;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

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

        .step {
            position: relative;
            padding-left: 24px;
        }

        .step::before {
            content: "";
            position: absolute;
            left: 0;
            top: 22px;
            bottom: 22px;
            width: 4px;
            border-radius: 999px;
            background: linear-gradient(180deg, var(--primary) 0%, rgba(23, 77, 161, 0.1) 100%);
        }

        .step-number {
            color: var(--primary-strong);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.06em;
        }

        .faq-list {
            display: grid;
            gap: 14px;
        }

        .faq-item {
            overflow: hidden;
        }

        .faq-item summary {
            list-style: none;
            cursor: pointer;
            padding: 18px 20px;
            font-size: 16px;
            font-weight: 800;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item p {
            margin: 0;
            padding: 0 20px 18px;
            font-size: 14px;
        }

        .seo-copy p {
            margin: 0;
            font-size: 14px;
            line-height: 1.95;
        }

        .footer {
            padding: 28px 0 42px;
        }

        .footer-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 22px 24px;
            background: rgba(255, 255, 255, 0.9);
        }

        .footer-links a {
            text-decoration: none;
            font-size: 13px;
            font-weight: 700;
            color: var(--primary-strong);
        }

        @media (max-width: 1100px) {
            .hero,
            .tool-grid,
            .card-grid,
            .card-grid.cards-4,
            .steps {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 780px) {
            .wrap {
                width: min(100vw - 20px, 1180px);
            }

            .topbar {
                padding-top: 14px;
            }

            .topbar-inner,
            .footer-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .topbar-actions {
                width: 100%;
                flex-wrap: wrap;
                justify-content: flex-start;
            }

            .hero-main,
            .hero-side,
            .panel-body,
            .seo-copy {
                padding-left: 18px;
                padding-right: 18px;
            }

            .hero-main {
                padding-top: 28px;
                padding-bottom: 28px;
            }

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

            .actions {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-copy,
            .section-copy {
                font-size: 14px;
            }
        }

.topbar {
            padding: 18px 0 10px;
        }

        .topbar-inner {
            background: rgba(255, 255, 255, 0.72);
        }

        .brand {
            text-decoration: none;
        }

        .brand-title {
            font-size: 16px;
        }

        .tool-shell {
            display: grid;
            gap: 12px;
        }

        .tool-panel .panel-head {
            display: block;
            padding: 32px 24px 28px;
        }

        .tool-panel .panel-body {
            padding: 0 18px 41px;
        }

        .panel-head-shell {
            display: flex;
            flex-direction: column;
            gap: 18px;
            width: 100%;
            padding: 0;
            border: 0;
            border-radius: 0;
            background: transparent;
        }

        .panel-head-main {
            min-width: 0;
            max-width: 680px;
        }

        .panel-head-aside {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .panel-kicker {
            display: inline-flex;
            align-items: center;
            padding: 7px 12px;
            border-radius: 999px;
            background: rgba(23, 77, 161, 0.08);
            color: var(--primary-strong);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.08em;
        }

        .tool-panel-title {
            margin: 10px 0 4px;
            font-size: clamp(21px, 2.2vw, 27px);
            line-height: 1.18;
            letter-spacing: -0.03em;
        }

        .task-panel-title {
            margin: 10px 0 4px;
            font-size: 18px;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .panel-subtitle,
        .hint,
        .inline-note,
        .footer-copy {
            line-height: 1.75;
        }

        .panel-subtitle {
            font-size: 14px;
        }

        .panel-chip {
            display: inline-flex;
            align-items: center;
            position: relative;
            min-height: 38px;
            padding: 10px 12px 10px 38px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid rgba(21, 35, 59, 0.1);
            color: var(--text-soft);
            font-size: 12px;
            font-weight: 700;
            white-space: nowrap;
        }

        .panel-chip::before {
            content: "";
            position: absolute;
            left: 14px;
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--primary);
            box-shadow: 0 0 0 4px rgba(23, 77, 161, 0.12);
        }

        .step-timeline {
            position: relative;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .step-timeline::before {
            content: "";
            position: absolute;
            top: 7px;
            left: 16.666%;
            right: 16.666%;
            height: 2px;
            background: linear-gradient(90deg, rgba(23, 77, 161, 0.28) 0%, rgba(23, 77, 161, 0.6) 48%, rgba(23, 77, 161, 0.28) 100%);
        }

        .step-item {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-rows: 16px auto;
            justify-items: center;
            gap: 12px;
            min-height: 0;
            padding: 0;
        }

        .step-badge {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 14px;
            height: 14px;
            border-radius: 999px;
            background: var(--primary-strong);
            box-shadow: 0 0 0 5px rgba(23, 77, 161, 0.12);
        }

        .step-title {
            color: var(--text-main);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: -0.02em;
            line-height: 1.45;
            text-align: center;
            white-space: nowrap;
        }

        .step-copy {
            display: none;
        }

        .field-label {
            display: block;
            margin: 0;
            font-size: 13px;
            font-weight: 800;
        }

        .compact-form {
            display: grid;
            gap: 12px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 132px minmax(0, 1fr);
            gap: 12px;
            align-items: start;
        }

        .row-meta {
            display: grid;
            gap: 4px;
            padding-top: 8px;
        }

        .row-note {
            color: var(--text-soft);
            font-size: 12px;
            line-height: 1.5;
        }

        .row-control {
            min-width: 0;
        }

        .tool-panel textarea {
            min-height: 108px;
        }

        #cookie_text {
            min-height: 78px;
        }

        .choice-group + .choice-group {
            margin-top: 18px;
        }

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

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

        .choice-card {
            display: block;
            cursor: pointer;
        }

        .choice-input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .choice-card-body {
            display: flex;
            align-items: center;
            gap: 10px;
            min-height: 58px;
            padding: 10px 12px;
            border: 1px solid rgba(21, 35, 59, 0.12);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.92);
            transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
        }

        .choice-card:hover .choice-card-body {
            transform: translateY(-1px);
            border-color: rgba(23, 77, 161, 0.24);
        }

        .choice-card.is-disabled {
            cursor: not-allowed;
        }

        .choice-card.is-disabled .choice-card-body {
            opacity: 0.48;
            box-shadow: none;
            transform: none;
        }

        .choice-input:checked + .choice-card-body {
            border-color: rgba(16, 57, 114, 0.88);
            background: linear-gradient(180deg, rgba(233, 242, 255, 0.98) 0%, rgba(246, 250, 255, 0.98) 100%);
            box-shadow: inset 0 0 0 1px rgba(16, 57, 114, 0.24), 0 10px 22px rgba(23, 77, 161, 0.12);
        }

        .choice-input:checked + .choice-card-body .choice-icon {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
            color: #fff;
        }

        .choice-input:checked + .choice-card-body .choice-copy strong {
            color: var(--primary-strong);
        }

        .choice-icon {
            width: 32px;
            height: 32px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: rgba(23, 77, 161, 0.08);
            color: var(--primary-strong);
            flex-shrink: 0;
        }

        .choice-icon svg {
            display: block;
        }

        .choice-copy {
            display: block;
            min-width: 0;
        }

        .choice-copy strong {
            font-size: 13px;
            font-weight: 800;
        }

        .choice-copy small {
            display: none;
        }

        .tool-actions {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 2px;
        }

        .tool-actions .btn-primary {
            min-width: 160px;
            min-height: 42px;
            padding: 0 18px;
            box-shadow: 0 12px 24px rgba(23, 77, 161, 0.16);
        }

        .inline-note {
            margin: 0;
            font-size: 12px;
            line-height: 1.5;
        }

        .task-panel .panel-head {
            padding: 28px 24px 20px;
        }

        .task-panel-inline {
            display: block;
            width: 100%;
            color: var(--text-soft);
            font-size: 12px;
            line-height: 1.5;
            font-weight: 700;
        }

        .simple-footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .section-title {
            font-size: clamp(18px, 1.85vw, 22px);
            letter-spacing: -0.02em;
        }

        @media (max-width: 980px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 8px;
            }

            .row-meta {
                padding-top: 0;
            }

            .step-timeline {
                gap: 8px;
            }

            .step-item {
                gap: 10px;
            }

            .step-title {
                font-size: 12px;
            }
        }

        @media (max-width: 780px) {
            .topbar-actions {
                gap: 8px;
            }

            .nav {
                width: 100%;
                justify-content: flex-start;
            }

            .nav-user {
                min-width: 88px;
            }

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

            .tool-actions .inline-note {
                width: 100%;
            }

            .panel-body {
                padding-left: 14px;
                padding-right: 14px;
            }

            .tool-actions {
                align-items: stretch;
            }

            .tool-actions .btn-primary {
                width: 100%;
            }
        }

