        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: #f8f9fa;
            min-height: 100vh;
            padding: 20px;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        .header {
            background: white;
            color: #2d3748;
            padding: 50px 40px 40px;
            text-align: center;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .header h1 {
            font-size: 32px;
            margin-bottom: 10px;
            font-weight: 700;
            color: #1a202c;
        }
        
        .header .trademark {
            font-size: 16px;
            opacity: 0.8;
        }
        
        .header p {
            font-size: 16px;
            font-weight: 400;
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto;
            color: #4a5568;
        }
        
        .trust-badge {
            font-size: 13px;
            margin-top: 8px;
            color: #718096;
        }
        
        .landing-section {
            animation: fadeIn 0.5s ease;
        }
        
        .landing-hero {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .landing-title {
            font-size: 32px;
            color: #1a202c;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .landing-subtitle {
            font-size: 18px;
            color: #4a5568;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .landing-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 50px;
        }
        
        .landing-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 30px;
            transition: all 0.2s ease;
        }
        
        .landing-card:hover {
            border-color: #3b82f6;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
        }
        
        .landing-card-icon {
            font-size: 32px;
            margin-bottom: 15px;
        }
        
        .landing-card-title {
            font-size: 18px;
            color: #1a202c;
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .landing-card-text {
            font-size: 15px;
            color: #4a5568;
            line-height: 1.6;
            margin: 0;
        }
        
        .landing-cta {
            text-align: center;
            margin-top: 50px;
        }
        
        .btn-large {
            padding: 18px 48px;
            font-size: 18px;
        }
        
        .landing-cta-note {
            margin-top: 15px;
            font-size: 14px;
            color: #718096;
        }
        
        .progress-container {
            background: white;
            padding: 30px 40px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .progress-bar {
            width: 100%;
            height: 6px;
            background: #e2e8f0;
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 12px;
        }
        
        .progress-fill {
            height: 100%;
            background: #3b82f6;
            transition: width 0.3s ease;
            border-radius: 3px;
        }
        
        .progress-text {
            font-size: 14px;
            color: #4a5568;
            font-weight: 500;
            text-align: center;
        }
        
        .progress-subtext {
            font-size: 12px;
            color: #718096;
            text-align: center;
            margin-top: 4px;
        }
        
        .content {
            padding: 50px 40px;
        }
        
        .intro-section {
            animation: fadeIn 0.5s ease;
            text-align: center;
        }
        
        .intro-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .intro-title {
            font-size: 28px;
            color: #1a202c;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .intro-text {
            font-size: 16px;
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 30px;
            text-align: left;
        }
        
        .intro-benefits {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 30px;
            margin: 40px 0;
            text-align: left;
            border: 1px solid #e2e8f0;
        }
        
        .benefit-item {
            display: flex;
            align-items: start;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .benefit-item:last-child {
            margin-bottom: 0;
        }
        
        .benefit-icon {
            font-size: 24px;
            flex-shrink: 0;
        }
        
        .benefit-text {
            flex: 1;
        }
        
        .benefit-title {
            font-size: 16px;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 5px;
        }
        
        .benefit-description {
            font-size: 15px;
            color: #718096;
            line-height: 1.5;
        }
        
        .intro-stats {
            display: flex;
            justify-content: space-around;
            margin: 40px 0;
            padding: 25px;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: #3b82f6;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 13px;
            color: #718096;
        }
        
        .question-section {
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .question-title {
            font-size: 18px;
            color: #1a202c;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .question-subtitle {
            font-size: 17px;
            color: #4a5568;
            margin-bottom: 15px;
            line-height: 1.5;
        }
        
        .question-reassurance {
            font-size: 14px;
            color: #718096;
            margin-bottom: 35px;
            font-style: italic;
        }
        
        .option {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            padding: 18px 20px;
            margin-bottom: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .option:hover {
            border-color: #3b82f6;
            background: #f8fafc;
        }
        
        .option.selected {
            background: #3b82f6;
            border-color: #3b82f6;
            color: white;
        }
        
        .option-radio {
            width: 20px;
            height: 20px;
            border: 2px solid #cbd5e0;
            border-radius: 50%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }
        
        .option.selected .option-radio {
            border-color: white;
            background: white;
        }
        
        .option.selected .option-radio::after {
            content: '';
            width: 10px;
            height: 10px;
            background: #3b82f6;
            border-radius: 50%;
        }
        
        .option-text {
            flex: 1;
            font-size: 16px;
            line-height: 1.5;
        }
        
        .ranking-section {
            margin-top: 20px;
        }
        
        .ranking-instruction {
            background: #eff6ff;
            border-left: 3px solid #3b82f6;
            padding: 15px 20px;
            margin-bottom: 25px;
            border-radius: 4px;
            font-size: 14px;
            color: #1e40af;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .ranking-instruction-icon {
            font-size: 20px;
        }
        
        .ranking-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }
        
        .rank-number-outside {
            width: 36px;
            height: 36px;
            background: #3b82f6;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }
        
        .ranking-item {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: grab;
            transition: all 0.2s ease;
            user-select: none;
            flex: 1;
        }
        
        .ranking-item:active {
            cursor: grabbing;
        }
        
        .ranking-item:hover {
            border-color: #3b82f6;
            background: #f8fafc;
        }
        
        .ranking-item.dragging {
            opacity: 0.5;
            transform: scale(0.98);
        }
        
        .ranking-item.drag-over {
            border-color: #3b82f6;
            border-style: dashed;
            background: #eff6ff;
        }
        
        .option-letter {
            width: 32px;
            height: 32px;
            background: #f1f5f9;
            color: #475569;
            border: 2px solid #cbd5e0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 15px;
            flex-shrink: 0;
        }
        
        .drag-handle {
            color: #cbd5e0;
            font-size: 18px;
            flex-shrink: 0;
            cursor: grab;
        }
        
        .drag-handle:active {
            cursor: grabbing;
        }
        
        .ranking-item-text {
            flex: 1;
            font-size: 16px;
            color: #1a202c;
            font-weight: 400;
        }
        
        .buttons {
            display: flex;
            gap: 15px;
            margin-top: 50px;
            justify-content: space-between;
        }
        
        .btn {
            padding: 14px 32px;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            flex: 1;
        }
        
        .btn-primary {
            background: #3b82f6;
            color: white;
        }
        
        .btn-primary:hover:not(:disabled) {
            background: #2563eb;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }
        
        .btn-primary:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .btn-secondary {
            background: #f1f5f9;
            color: #475569;
        }
        
        .btn-secondary:hover {
            background: #e2e8f0;
        }
        
        .results-section {
            animation: fadeIn 0.5s ease;
        }
        
        .results-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .results-category {
            display: inline-block;
            background: #3b82f6;
            color: white;
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .results-title {
            font-size: 32px;
            color: #1a202c;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .results-intro {
            font-size: 16px;
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 40px;
        }
        
        .results-main-section {
            background: #f8f9fa;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid #e2e8f0;
        }
        
        .results-section-title {
            font-size: 20px;
            color: #1a202c;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .core-driver-section {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .core-driver-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        
        .core-driver-item {
            padding: 20px;
            background: #f8f9fa;
            border-radius: 6px;
            border: 1px solid #e2e8f0;
        }
        
        .core-driver-label {
            font-size: 13px;
            color: #718096;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }
        
        .core-driver-value {
            font-size: 15px;
            color: #1a202c;
            line-height: 1.5;
        }
        
        .quick-win-highlight {
            background: #f0fdf4;
            border: 1px solid #d1fae5;
            border-left: 4px solid #10b981;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 25px;
            display: flex;
            align-items: start;
            gap: 20px;
        }
        
        .quick-win-icon {
            font-size: 32px;
            flex-shrink: 0;
        }
        
        .quick-win-title-inline {
            font-size: 18px;
            color: #065f46;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .quick-win-text-inline {
            font-size: 15px;
            color: #064e3b;
            line-height: 1.6;
            margin: 0;
        }
        
        .peer-box {
            background: #eff6ff;
            border: 1px solid #dbeafe;
            border-left: 4px solid #3b82f6;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 40px;
            display: flex;
            align-items: start;
            gap: 20px;
        }
        
        .peer-icon {
            font-size: 32px;
            flex-shrink: 0;
        }
        
        .peer-title-inline {
            font-size: 18px;
            color: #1e40af;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .peer-text-inline {
            font-size: 15px;
            color: #1e40af;
            line-height: 1.6;
            margin: 0;
        }
        
        .roadmap-section {
            margin-top: 50px;
        }
        
        .roadmap-title {
            font-size: 24px;
            color: #1a202c;
            font-weight: 700;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .roadmap-subtitle {
            font-size: 16px;
            color: #4a5568;
            line-height: 1.6;
            text-align: center;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .canvas-visual {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .canvas-step {
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 20px;
        }
        
        .canvas-step-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .canvas-step-number {
            width: 40px;
            height: 40px;
            background: #3b82f6;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            flex-shrink: 0;
        }
        
        .canvas-step-title {
            flex: 1;
            font-size: 17px;
            color: #1a202c;
            font-weight: 600;
        }
        
        .canvas-start-badge {
            background: #10b981;
            color: white;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .canvas-step-description {
            font-size: 15px;
            color: #4a5568;
            line-height: 1.6;
            padding-left: 55px;
        }
        
        .canvas-arrow {
            text-align: center;
            font-size: 24px;
            color: #3b82f6;
            margin: -10px 0;
        }
        
        .email-capture {
            background: #f8f9fa;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 30px;
            margin: 30px 0;
            text-align: center;
        }
        
        .email-capture-title {
            font-size: 18px;
            color: #1a202c;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .email-capture-text {
            font-size: 15px;
            color: #718096;
            margin-bottom: 20px;
        }
        
        .email-input-group {
            display: flex;
            gap: 10px;
            max-width: 500px;
            margin: 0 auto;
        }
        
        .email-input {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #e2e8f0;
            border-radius: 6px;
            font-size: 16px;
            transition: border-color 0.2s ease;
            font-family: 'Inter', sans-serif;
        }
        
        .email-input:focus {
            outline: none;
            border-color: #3b82f6;
        }
        
        .email-submit {
            padding: 12px 24px;
            background: #3b82f6;
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .email-submit:hover {
            background: #2563eb;
        }
        
        .email-submit:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .email-skip {
            margin-top: 15px;
            font-size: 14px;
            color: #718096;
            cursor: pointer;
            text-decoration: underline;
        }
        
        .email-skip:hover {
            color: #4a5568;
        }
        
        .email-error {
            color: #ef4444;
            font-size: 14px;
            margin-top: 10px;
        }
        
        .email-success {
            color: #10b981;
            font-size: 14px;
            margin-top: 10px;
        }
        
        .analyzing-screen {
            text-align: center;
            padding: 60px 20px;
            animation: fadeIn 0.5s ease;
        }
        
        .analyzing-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid #e2e8f0;
            border-top-color: #3b82f6;
            border-radius: 50%;
            margin: 0 auto 30px;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .analyzing-text {
            font-size: 18px;
            color: #1a202c;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .analyzing-subtext {
            font-size: 15px;
            color: #718096;
        }
        
        .retake-section {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #e2e8f0;
        }
        
        @media (max-width: 640px) {
            .header h1 {
                font-size: 24px;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .question-title {
                font-size: 17px;
            }
            
            .question-subtitle {
                font-size: 16px;
            }
            
            .buttons {
                flex-direction: column;
            }
            
            .intro-stats {
                flex-direction: column;
                gap: 15px;
            }
            
            .email-input-group {
                flex-direction: column;
            }
            
            .ranking-instruction {
                font-size: 13px;
            }
            
            .landing-grid {
                grid-template-columns: 1fr;
            }
            
            .core-driver-grid {
                grid-template-columns: 1fr;
            }
            
            .canvas-step-description {
                padding-left: 0;
                margin-top: 10px;
            }
        }
    </style>
