        /* ===== FONT FACES ===== */
        @font-face {
            font-family: 'Ivy Presto';
            src: url('/fonts/ivypresto/IvyprestoHeadline-Thin.woff2') format('woff2');
            font-weight: 100;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Ivy Presto';
            src: url('/fonts/ivypresto/IvyprestoHeadline-Regular.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'Agrandir';
            src: url('/fonts/agrandir/PPAgrandirTight-Variable.woff2') format('woff2');
            font-weight: 100 900;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'SF Pro Text';
            src: url('/fonts/sfpro/SFProText-Regular.woff2') format('woff2');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'SF Pro Text';
            src: url('/fonts/sfpro/SFProText-Medium.woff2') format('woff2');
            font-weight: 500;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'SF Pro Text';
            src: url('/fonts/sfpro/SFProText-Semibold.woff2') format('woff2');
            font-weight: 600;
            font-style: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'SF Pro Text';
            src: url('/fonts/sfpro/SFProText-Bold.woff2') format('woff2');
            font-weight: 700;
            font-style: normal;
            font-display: swap;
        }

        /* ===== RESET & BASE ===== */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --orange-50: #fff1ed;
            --orange-100: #ffdbd3;
            --orange-200: #ffb8a7;
            --orange-300: #ff947b;
            --orange-400: #ff7150;
            --orange-500: #d96044;
            --orange-600: #bf553c;
            --orange-700: #994430;
            --orange-800: #803828;
            --orange-900: #59271c;

            --clay-50: #fcfbfa;
            --clay-100: #f7f6f2;
            --clay-200: #efede5;
            --clay-300: #e6e5d9;
            --clay-400: #dedccc;
            --clay-500: #bdbbad;
            --clay-600: #a6a599;
            --clay-700: #6f6e66;
            --clay-800: #4e4d47;
            --clay-900: #383733;

            --blue-100: #e8effb;
            --blue-500: #8aa1cc;
            --blue-600: #7a8eb4;

            --green-100: #eef6f5;
            --green-400: #badad5;
            --green-500: #9eb9b5;
            --green-600: #5a9990;
            --green-700: #3d7a72;

            --lilac-100: #f7f4ff;
            --lilac-200: #f0e9ff;
            --lilac-300: #e9ddff;
            --lilac-400: #e1d2ff;

            --yellow-100: #fffbeb;
            --yellow-300: #fcd34d;
            --yellow-600: #d97706;

            --red-100: #fee2e2;
            --red-500: #ef4444;
            --red-600: #dc2626;
            --red-700: #b91c1c;

            --white: #ffffff;
            --black: #000000;

            --page-bg: var(--clay-100);
            --surface: var(--white);
            --surface-subtle: var(--clay-100);
            --border: var(--clay-200);
            --text: var(--black);
            --text-subdued: var(--clay-700);
            --accent: var(--orange-400);
            --accent-hover: var(--orange-500);

            --font-primary: 'Ivy Presto', Georgia, 'Times New Roman', serif;
            --font-secondary: 'Agrandir', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --font-body: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;

            --radius-sm: 2px;
            --radius-md: 4px;
            --radius-lg: 8px;
            --radius-xl: 12px;
            --radius-full: 9999px;

            --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
            --shadow-hover: 0 2px 8px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.05);
            --shadow-elevated: 0 4px 16px rgba(0,0,0,0.08), 0 12px 40px rgba(0,0,0,0.04);

            --transition: 0.2s cubic-bezier(0.4,0,0.2,1);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-body);
            background-color: var(--page-bg);
            color: var(--text);
            line-height: 1.5;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ===== TOPNAV ===== */
        .topnav {
            position: sticky;
            top: 0;
            z-index: 200;
            background-color: var(--page-bg);
            border-bottom: 1px solid rgba(0,0,0,0.06);
            padding: 16px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .topnav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text);
        }

        .topnav-icon { height: 24px; width: auto; }

        .topnav-tool {
            font-size: 13px;
            color: var(--text-subdued);
            font-weight: 400;
        }

        /* ===== HERO ===== */
        .hero {
            background: transparent;
            padding: 56px 24px 40px;
            text-align: center;
        }

        .hero-inner {
            max-width: 640px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-block;
            background: var(--orange-50);
            color: var(--orange-600);
            font-family: var(--font-secondary);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            padding: 5px 14px;
            border-radius: var(--radius-full);
            margin-bottom: 20px;
        }

        .hero h1 {
            font-family: var(--font-primary);
            font-size: clamp(26px, 5vw, 40px);
            font-weight: 100;
            line-height: 1.1;
            letter-spacing: -0.025em;
            margin-bottom: 16px;
            color: var(--text);
        }

        .hero-sub {
            font-size: 16px;
            color: var(--text-subdued);
            line-height: 1.6;
            max-width: 520px;
            margin: 0 auto 28px;
        }

        .hero-proof {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .proof-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-subdued);
            font-weight: 500;
        }

        .proof-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--green-400);
            flex-shrink: 0;
        }

        /* ===== MAIN ===== */
        main {
            max-width: 680px;
            margin: 0 auto;
            padding: 0 20px 60px;
        }

        /* ===== PROGRESS ===== */
        .progress-wrap {
            margin-bottom: 28px;
        }

        .progress-track {
            background: rgba(0,0,0,0.07);
            height: 3px;
            border-radius: var(--radius-full);
            overflow: hidden;
            margin-bottom: 8px;
        }

        .progress-fill {
            background: var(--accent);
            height: 100%;
            transition: width 0.4s var(--transition);
            border-radius: var(--radius-full);
        }

        .progress-label {
            font-size: 11px;
            color: var(--text-subdued);
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        /* ===== QUESTION CARD ===== */
        .question-card {
            background: var(--surface);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-card);
            padding: 32px;
            margin-bottom: 20px;
            animation: slideUp 0.3s ease;
        }

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

        .q-step {
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--accent);
            margin-bottom: 8px;
        }

        .q-text {
            font-family: var(--font-secondary);
            font-size: clamp(18px, 4vw, 22px);
            font-weight: 700;
            letter-spacing: -0.01em;
            line-height: 1.2;
            color: var(--text);
            margin-bottom: 12px;
        }

        .q-help {
            font-size: 14px;
            color: var(--text-subdued);
            background: var(--clay-100);
            border-radius: var(--radius-md);
            padding: 12px 16px;
            margin-bottom: 24px;
            line-height: 1.6;
        }

        /* ===== OPTION BUTTONS ===== */
        .options-grid {
            display: grid;
            gap: 10px;
        }

        .options-grid.cols-2 {
            grid-template-columns: 1fr 1fr;
        }

        .options-grid.cols-4 {
            grid-template-columns: 1fr 1fr;
        }

        .opt-btn {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 6px;
            padding: 16px 18px;
            background: var(--surface);
            border: 1.5px solid var(--border);
            border-radius: var(--radius-lg);
            cursor: pointer;
            text-align: left;
            transition: all var(--transition);
            min-height: 52px;
            font-family: var(--font-body);
            width: 100%;
        }

        .opt-btn:hover {
            border-color: var(--clay-500);
            background: var(--clay-50);
            transform: translateY(-1px);
            box-shadow: var(--shadow-hover);
        }

        .opt-btn.selected {
            border-color: var(--accent);
            background: var(--orange-50);
        }

        .opt-btn.selected .opt-title { color: var(--accent); }

        /* Multi-select hint and checkbox indicator */
        .multi-select-hint {
            font-size: 13px;
            color: var(--text-subdued);
            margin-bottom: 8px;
            font-style: italic;
            font-family: var(--font-body);
        }

        .multi-select-btn {
            position: relative;
        }

        .ms-checkbox {
            display: inline-block;
            width: 18px;
            height: 18px;
            border: 2px solid var(--border);
            border-radius: 4px;
            flex-shrink: 0;
            transition: all var(--transition);
            position: relative;
        }

        .multi-select-btn.selected .ms-checkbox {
            background: var(--accent);
            border-color: var(--accent);
        }

        .multi-select-btn.selected .ms-checkbox::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 1px;
            width: 5px;
            height: 10px;
            border: solid #fff;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        /* For use-btn multi-select: checkbox on left, text stacked on right */
        .use-btn.multi-select-btn {
            display: grid;
            grid-template-columns: 18px 1fr;
            column-gap: 12px;
            row-gap: 4px;
            align-items: start;
        }

        .use-btn.multi-select-btn .ms-checkbox {
            grid-row: 1 / 3;
            margin-top: 3px;
        }

        /* For opt-btn multi-select: checkbox on left, text stacked on right */
        .opt-btn.multi-select-btn {
            display: grid;
            grid-template-columns: 18px 1fr;
            column-gap: 12px;
            row-gap: 4px;
            align-items: start;
        }

        .opt-btn.multi-select-btn .ms-checkbox {
            grid-row: 1 / 3;
            margin-top: 2px;
        }

        .opt-icon {
            font-size: 24px;
            line-height: 1;
            display: block;
        }

        .opt-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--text);
            line-height: 1.3;
        }

        .opt-desc {
            font-size: 12px;
            color: var(--text-subdued);
            line-height: 1.4;
        }

        /* Sector grid: 2 columns */
        .sector-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        /* Q2: ai-use 4 big cards */
        .use-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .use-btn {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 20px;
            background: var(--surface);
            border: 1.5px solid var(--border);
            border-radius: var(--radius-lg);
            cursor: pointer;
            text-align: left;
            transition: all var(--transition);
            min-height: 120px;
            font-family: var(--font-body);
        }

        .use-btn:hover {
            border-color: var(--clay-500);
            background: var(--clay-50);
            transform: translateY(-1px);
            box-shadow: var(--shadow-hover);
        }

        .use-btn.selected {
            border-color: var(--accent);
            background: var(--orange-50);
        }

        .use-btn.selected .use-title { color: var(--accent); }

        .use-title { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.3; }
        .use-examples { font-size: 12px; color: var(--text-subdued); line-height: 1.4; }

        /* Q3: vulnerable — 3 horizontal buttons */
        .vuln-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
        }

        .vuln-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 20px 12px;
            background: var(--surface);
            border: 1.5px solid var(--border);
            border-radius: var(--radius-lg);
            cursor: pointer;
            text-align: center;
            transition: all var(--transition);
            font-family: var(--font-body);
        }

        .vuln-btn:hover {
            border-color: var(--clay-500);
            background: var(--clay-50);
            transform: translateY(-1px);
        }

        .vuln-btn.selected {
            border-color: var(--accent);
            background: var(--orange-50);
        }

        .vuln-btn.selected .vuln-label { color: var(--accent); }

        .vuln-label { font-size: 14px; font-weight: 700; color: var(--text); }
        .vuln-sub { font-size: 11px; color: var(--text-subdued); }

        /* ===== NAVIGATION ===== */
        .nav-row {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .btn {
            font-family: var(--font-body);
            font-size: 15px;
            font-weight: 600;
            padding: 13px 28px;
            border: none;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all var(--transition);
            min-height: 48px;
            letter-spacing: 0.01em;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .btn-primary {
            background: var(--accent);
            color: white;
            box-shadow: 0 2px 8px rgba(255,113,80,0.25);
        }

        .btn-primary:hover:not(:disabled) {
            background: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(255,113,80,0.3);
        }

        .btn-primary:disabled {
            opacity: 0.35;
            cursor: not-allowed;
            transform: none;
        }

        .btn-ghost {
            background: transparent;
            color: var(--text-subdued);
            border: 1.5px solid var(--border);
        }

        .btn-ghost:hover {
            background: var(--surface);
            color: var(--text);
            border-color: var(--clay-500);
        }

        .btn-outline-accent {
            background: transparent;
            color: var(--accent);
            border: 1.5px solid var(--accent);
        }

        .btn-outline-accent:hover {
            background: var(--orange-50);
        }

        /* ===== RESULTS ===== */
        #result-container {
            animation: slideUp 0.4s ease;
        }

        /* Countdown sticky banner */
        .countdown-banner {
            background: var(--clay-900);
            color: white;
            border-radius: var(--radius-lg);
            padding: 16px 20px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .countdown-left {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .countdown-title {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255,255,255,0.6);
        }

        .countdown-date {
            font-family: var(--font-secondary);
            font-size: 16px;
            font-weight: 700;
            letter-spacing: -0.01em;
        }

        .countdown-right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 4px;
        }

        .countdown-days {
            font-family: var(--font-secondary);
            font-size: 28px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: -0.02em;
            line-height: 1;
        }

        .countdown-sub {
            font-size: 11px;
            color: rgba(255,255,255,0.5);
        }

        .countdown-progress {
            width: 100%;
            background: rgba(255,255,255,0.1);
            height: 4px;
            border-radius: var(--radius-full);
            overflow: hidden;
            margin-top: 4px;
        }

        .countdown-fill {
            background: var(--accent);
            height: 100%;
            border-radius: var(--radius-full);
            transition: width 1s linear;
        }

        /* Classification badge */
        .classification-card {
            background: var(--surface);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-card);
            padding: 28px 32px;
            margin-bottom: 16px;
        }

        .class-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-secondary);
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            padding: 5px 14px;
            border-radius: var(--radius-full);
            margin-bottom: 16px;
        }

        .badge-out { background: var(--green-100); color: var(--green-700); }
        .badge-low { background: var(--blue-100); color: var(--blue-600); }
        .badge-high { background: var(--orange-100); color: var(--orange-700); }
        .badge-prohibited { background: var(--red-100); color: var(--red-700); }

        .class-title {
            font-family: var(--font-primary);
            font-size: clamp(22px, 4vw, 30px);
            font-weight: 100;
            line-height: 1.15;
            letter-spacing: -0.025em;
            margin-bottom: 8px;
        }

        .class-subtitle {
            font-size: 16px;
            color: var(--text-subdued);
            line-height: 1.5;
        }

        /* Warning box */
        .warning-box {
            background: var(--yellow-100);
            border: 1.5px solid var(--yellow-300);
            border-radius: var(--radius-lg);
            padding: 16px 20px;
            margin: 16px 0;
            font-size: 14px;
            line-height: 1.6;
            color: var(--clay-800);
        }

        .warning-box strong { color: var(--yellow-600); }

        /* Action steps */
        .section-card {
            background: var(--surface);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-card);
            padding: 28px 32px;
            margin-bottom: 16px;
        }

        .section-label {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-subdued);
            margin-bottom: 12px;
        }

        .section-title {
            font-family: var(--font-secondary);
            font-size: 18px;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin-bottom: 20px;
            color: var(--text);
        }

        .action-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .action-item {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .action-num {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--clay-100);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: 700;
            color: var(--text-subdued);
            flex-shrink: 0;
            margin-top: 1px;
        }

        .action-content { flex: 1; }

        .action-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .action-desc {
            font-size: 13px;
            color: var(--text-subdued);
            line-height: 1.6;
        }

        .action-meta {
            display: flex;
            gap: 10px;
            margin-top: 6px;
            flex-wrap: wrap;
        }

        .meta-tag {
            font-size: 11px;
            font-weight: 600;
            padding: 3px 10px;
            border-radius: var(--radius-full);
            background: var(--clay-100);
            color: var(--text-subdued);
        }

        /* Penalty box */
        .penalty-box {
            background: var(--red-100);
            border-radius: var(--radius-lg);
            padding: 16px 20px;
            margin: 20px 0;
        }

        .penalty-label {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            color: var(--red-600);
            margin-bottom: 6px;
        }

        .penalty-amount {
            font-family: var(--font-secondary);
            font-size: 22px;
            font-weight: 700;
            color: var(--red-700);
            letter-spacing: -0.01em;
            margin-bottom: 4px;
        }

        .penalty-sub {
            font-size: 13px;
            color: var(--red-600);
        }

        /* AI Literacy block */
        .literacy-card {
            background: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-600) 100%);
            border-radius: var(--radius-xl);
            padding: 28px 32px;
            margin-bottom: 16px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .literacy-card::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            background: rgba(255,255,255,0.06);
            border-radius: 50%;
        }

        .literacy-badge {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            color: white;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 4px 12px;
            border-radius: var(--radius-full);
            margin-bottom: 14px;
        }

        .literacy-card h2 {
            font-family: var(--font-primary);
            font-size: 20px;
            font-weight: 100;
            line-height: 1.2;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .literacy-card p {
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255,255,255,0.9);
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .literacy-checks {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .literacy-check {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255,255,255,0.95);
        }

        .check-icon {
            width: 18px;
            height: 18px;
            background: rgba(255,255,255,0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            flex-shrink: 0;
        }

        .literacy-proof {
            font-size: 13px;
            font-weight: 600;
            color: rgba(255,255,255,0.85);
            margin-bottom: 16px;
            position: relative;
            z-index: 1;
        }

        .literacy-cta {
            display: inline-block;
            background: white;
            color: var(--orange-600);
            font-weight: 700;
            font-size: 14px;
            padding: 12px 24px;
            border-radius: var(--radius-md);
            text-decoration: none;
            transition: all var(--transition);
            position: relative;
            z-index: 1;
        }

        .literacy-cta:hover {
            background: var(--clay-100);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }

        /* Sector tip */
        .sector-tip {
            background: var(--blue-100);
            border-radius: var(--radius-lg);
            padding: 18px 22px;
            margin-bottom: 16px;
            border-left: 3px solid var(--blue-500);
        }

        .sector-tip-label {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            color: var(--blue-600);
            margin-bottom: 6px;
        }

        .sector-tip-text {
            font-size: 14px;
            color: var(--clay-800);
            line-height: 1.6;
        }

        /* Transformation teaser */
        .transform-card {
            background: var(--clay-900);
            color: white;
            border-radius: var(--radius-xl);
            padding: 32px;
            margin-bottom: 16px;
        }

        .transform-label {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.45);
            margin-bottom: 12px;
        }

        .transform-card h2 {
            font-family: var(--font-primary);
            font-size: 22px;
            font-weight: 100;
            line-height: 1.2;
            margin-bottom: 14px;
            letter-spacing: -0.02em;
        }

        .transform-card p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255,255,255,0.8);
            margin-bottom: 16px;
        }

        .transform-points {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 20px;
        }

        .transform-point {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            font-size: 14px;
            color: rgba(255,255,255,0.85);
            line-height: 1.5;
        }

        .tp-dash {
            color: var(--accent);
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .transform-quote {
            font-size: 13px;
            font-style: italic;
            color: rgba(255,255,255,0.55);
            border-left: 2px solid rgba(255,255,255,0.15);
            padding-left: 12px;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .transform-cta {
            display: inline-block;
            background: var(--accent);
            color: white;
            font-weight: 700;
            font-size: 14px;
            padding: 13px 26px;
            border-radius: var(--radius-md);
            text-decoration: none;
            transition: all var(--transition);
        }

        .transform-cta:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
        }

        /* Three-pillar CTAs */
        .cta-section {
            background: linear-gradient(145deg, var(--lilac-200) 0%, var(--clay-100) 50%, var(--orange-50) 100%);
            border-radius: var(--radius-xl);
            padding: 28px 32px;
            margin-bottom: 16px;
        }

        .cta-section h2 {
            font-family: var(--font-secondary);
            font-size: 17px;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin-bottom: 20px;
            text-align: center;
            color: var(--text);
        }

        .pillar-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 20px;
        }

        .pillar-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 18px;
            box-shadow: var(--shadow-card);
            display: flex;
            flex-direction: column;
            gap: 8px;
            transition: all var(--transition);
        }

        .pillar-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .pillar-label {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            color: var(--text-subdued);
        }

        .pillar-title {
            font-family: var(--font-secondary);
            font-size: 14px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.3;
        }

        .pillar-desc {
            font-size: 12px;
            color: var(--text-subdued);
            line-height: 1.5;
            flex: 1;
        }

        .pillar-link {
            display: inline-block;
            color: var(--accent);
            font-size: 12px;
            font-weight: 700;
            text-decoration: none;
            margin-top: 4px;
        }

        .pillar-link:hover { text-decoration: underline; }

        /* Phase 2: Deepening */
        .deepen-banner {
            background: var(--surface);
            border: 1.5px solid var(--border);
            border-radius: var(--radius-xl);
            padding: 24px 28px;
            margin-bottom: 16px;
            text-align: center;
        }

        .deepen-banner h2 {
            font-family: var(--font-secondary);
            font-size: 17px;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin-bottom: 8px;
        }

        .deepen-banner p {
            font-size: 14px;
            color: var(--text-subdued);
            margin-bottom: 16px;
            line-height: 1.5;
        }

        /* Phase 2 questions inline */
        .deepen-questions {
            display: none;
            flex-direction: column;
            gap: 24px;
            margin-top: 20px;
            text-align: left;
        }

        .deepen-questions.active {
            display: flex;
        }

        .dq-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 10px;
        }

        .dq-options {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .dq-btn {
            padding: 10px 16px;
            background: var(--surface);
            border: 1.5px solid var(--border);
            border-radius: var(--radius-full);
            font-size: 13px;
            font-weight: 600;
            color: var(--text);
            cursor: pointer;
            transition: all var(--transition);
            font-family: var(--font-body);
        }

        .dq-btn:hover {
            border-color: var(--clay-500);
            background: var(--clay-50);
        }

        .dq-btn.selected {
            border-color: var(--accent);
            background: var(--orange-50);
            color: var(--accent);
        }

        /* Penalty calculator (phase 2 result) */
        .penalty-calc {
            display: none;
            background: var(--surface);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-card);
            padding: 24px 28px;
            margin-bottom: 16px;
        }

        .penalty-calc.active { display: block; }

        .calc-title {
            font-family: var(--font-secondary);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.01em;
        }

        .calc-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
            font-size: 14px;
        }

        .calc-row:last-child { border-bottom: none; }
        .calc-key { color: var(--text-subdued); }
        .calc-val { font-weight: 700; color: var(--text); }
        .calc-val.red { color: var(--red-600); }
        .calc-val.green { color: var(--green-600); }

        .calc-compare {
            font-size: 12px;
            color: var(--text-subdued);
            font-style: italic;
            margin-top: 12px;
            padding: 10px 14px;
            background: var(--clay-100);
            border-radius: var(--radius-md);
            line-height: 1.5;
        }

        /* Maturity cross-link */
        .maturity-cross {
            background: var(--clay-200);
            border-radius: var(--radius-lg);
            padding: 18px 22px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            flex-wrap: wrap;
        }

        .maturity-cross p {
            font-size: 14px;
            color: var(--clay-800);
            line-height: 1.5;
        }

        .maturity-cross a {
            display: inline-block;
            background: var(--text);
            color: white;
            font-size: 13px;
            font-weight: 700;
            padding: 10px 20px;
            border-radius: var(--radius-md);
            text-decoration: none;
            white-space: nowrap;
            transition: all var(--transition);
        }

        .maturity-cross a:hover { opacity: 0.85; }

        /* Phase 3: PDF download */
        .pdf-section {
            background: var(--surface);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-card);
            padding: 28px 32px;
            margin-bottom: 16px;
            text-align: center;
        }

        .pdf-section h2 {
            font-family: var(--font-secondary);
            font-size: 18px;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin-bottom: 8px;
        }

        .pdf-section p {
            font-size: 14px;
            color: var(--text-subdued);
            margin-bottom: 20px;
            line-height: 1.5;
        }

        /* Modal */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 500;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-box {
            background: var(--surface);
            border-radius: var(--radius-xl);
            padding: 36px 32px;
            max-width: 440px;
            width: 100%;
            box-shadow: var(--shadow-elevated);
            animation: slideUp 0.25s ease;
        }

        .modal-box h3 {
            font-family: var(--font-secondary);
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin-bottom: 8px;
        }

        .modal-box p {
            font-size: 14px;
            color: var(--text-subdued);
            margin-bottom: 24px;
            line-height: 1.5;
        }

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

        .form-label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--text);
        }

        .form-input {
            width: 100%;
            padding: 12px 14px;
            border: 1.5px solid var(--clay-600);
            border-radius: var(--radius-md);
            font-size: 15px;
            font-family: var(--font-body);
            color: var(--text);
            background: var(--surface);
            transition: border-color var(--transition);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--orange-300);
            box-shadow: 0 0 0 3px rgba(255,113,80,0.15);
        }

        /* Keyboard focus indicators for accessibility */
        .btn:focus-visible,
        .opt-btn:focus-visible,
        .use-btn:focus-visible,
        .vuln-btn:focus-visible,
        .dq-btn:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .form-input:focus-visible {
            border-color: var(--orange-300);
            box-shadow: 0 0 0 3px rgba(255,113,80,0.15);
        }

        .form-submit {
            width: 100%;
            margin-top: 8px;
            margin-bottom: 12px;
        }

        .form-note {
            font-size: 12px;
            color: var(--text-subdued);
            text-align: center;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: var(--text-subdued);
            float: right;
            margin-top: -4px;
        }

        /* Restart button */
        .restart-row {
            text-align: center;
            margin-bottom: 40px;
        }

        /* NL context note */
        .nl-note {
            background: var(--clay-100);
            border-radius: var(--radius-md);
            padding: 12px 16px;
            font-size: 13px;
            color: var(--text-subdued);
            line-height: 1.6;
            margin-bottom: 16px;
            border-left: 2px solid var(--clay-400);
        }

        /* ===== FOOTER ===== */
        footer {
            border-top: 1px solid rgba(0,0,0,0.06);
            padding: 28px 24px;
            text-align: center;
            font-size: 12px;
            color: var(--text-subdued);
        }

        footer a { color: var(--accent); text-decoration: none; font-weight: 500; }
        footer a:hover { text-decoration: underline; }
        footer p { margin: 4px 0; }

        /* ===== UTILITY ===== */
        .hidden { display: none !important; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 600px) {
            .hero { padding: 36px 16px 28px; }
            main { padding: 0 16px 48px; }
            .question-card, .section-card, .classification-card, .literacy-card,
            .cta-section, .pdf-section, .transform-card, .deepen-banner,
            .penalty-calc { padding: 22px 20px; }
            .sector-grid, .use-grid { grid-template-columns: 1fr 1fr; }
            .vuln-grid { grid-template-columns: 1fr 1fr 1fr; }
            .pillar-grid { grid-template-columns: 1fr; }
            .countdown-banner { flex-direction: column; align-items: flex-start; }
            .countdown-right { align-items: flex-start; }
            .modal-box { padding: 28px 20px; }
        }

        @media (max-width: 400px) {
            .sector-grid { grid-template-columns: 1fr 1fr; }
            .use-grid { grid-template-columns: 1fr; }
            .vuln-grid { grid-template-columns: 1fr; }
        }

        /* ===== PRINT ===== */
        @media print {
            .topnav, .hero-proof, .nav-row, .deepen-banner, .pdf-section,
            .restart-row, footer, .modal-overlay { display: none !important; }
        }
