@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

:root {
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --teal-500: #14b8a6;
    --teal-400: #2dd4bf;
    --orange-500: #f97316;
    --orange-400: #fb923c;
    --white: #ffffff;
    --gradient-accent: linear-gradient(135deg, var(--teal-500), var(--orange-500));
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    background-color: var(--slate-900);
    color: var(--white);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background-color: var(--slate-900);
    border-bottom: 1px solid var(--slate-700);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

header nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

header nav span {
    color: var(--slate-400);
    font-size: 14px;
}

header nav a {
    color: var(--slate-300);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

header nav a:hover {
    color: var(--white);
}

main {
    padding: 48px 0;
    min-height: calc(100vh - 140px);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--white);
}

p {
    color: var(--slate-400);
    font-size: 1rem;
    line-height: 1.7;
}

.card {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--slate-300);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 8px;
    font-size: 16px;
    color: var(--white);
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.form-group input::placeholder {
    color: var(--slate-600);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select option {
    background-color: var(--slate-800);
    color: var(--white);
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
}

.btn-secondary {
    background-color: var(--slate-700);
    color: var(--white);
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: var(--slate-600);
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

.error {
    background-color: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #fca5a5;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.success {
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.hero {
    text-align: center;
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn-primary {
    padding: 18px 40px;
    font-size: 18px;
}

.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider {
    height: 1px;
    background: var(--gradient-accent);
    margin: 60px 0;
    opacity: 0.5;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 60px 0;
}

.feature-card {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 16px;
    padding: 32px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
}

.progress-bar-container {
    background-color: var(--slate-800);
    border-radius: 100px;
    height: 8px;
    margin: 24px 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 100px;
    transition: width 0.3s ease;
}

.question-card {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 16px;
    padding: 40px;
    margin: 24px 0;
}

.question-number {
    color: var(--teal-400);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.question-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background-color: var(--slate-800);
    border: 2px solid var(--slate-700);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
}

.option-item:hover {
    border-color: var(--slate-600);
    background-color: var(--slate-700);
}

.option-item.selected {
    border-color: var(--teal-500);
    background-color: rgba(20, 184, 166, 0.1);
}

.option-item input {
    display: none;
}

.option-label {
    font-size: 16px;
    color: var(--white);
}

.score-display {
    text-align: center;
    padding: 60px 0;
}

.score-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    position: relative;
}

.score-circle::before {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    background-color: var(--slate-900);
    border-radius: 50%;
}

.score-number {
    position: relative;
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
}

.score-label {
    font-size: 1.5rem;
    color: var(--slate-400);
    margin-bottom: 16px;
}

.category-scores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 40px 0;
}

.category-score-card {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.category-name {
    font-size: 14px;
    color: var(--slate-400);
    margin-bottom: 8px;
}

.category-value {
    font-size: 2rem;
    font-weight: 700;
}

.category-value.high { color: #22c55e; }
.category-value.medium { color: #eab308; }
.category-value.low { color: #ef4444; }

.priority-list {
    margin: 40px 0;
}

.priority-item {
    background-color: rgba(30, 41, 59, 0.5);
    border-left: 4px solid;
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin-bottom: 12px;
}

.priority-item.high {
    border-left-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.1);
}

.priority-item.medium {
    border-left-color: #eab308;
    background-color: rgba(234, 179, 8, 0.1);
}

.priority-item h4 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 14px;
}

.priority-item p {
    font-size: 13px;
}

.severity-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 8px;
}

.severity-badge.high {
    background-color: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

.severity-badge.medium {
    background-color: rgba(234, 179, 8, 0.2);
    color: #fde047;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid var(--slate-700);
}

table th {
    color: var(--slate-400);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

table td {
    color: var(--white);
    font-size: 14px;
}

table tr:hover {
    background-color: rgba(30, 41, 59, 0.3);
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.completed {
    background-color: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.status-badge.in-progress {
    background-color: rgba(234, 179, 8, 0.2);
    color: #fde047;
}

.status-badge.paid {
    background-color: rgba(20, 184, 166, 0.2);
    color: var(--teal-400);
}

.admin-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: var(--slate-800);
    border-radius: 8px;
}

.toggle-label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.toggle-label strong {
    color: var(--white);
}

.toggle-label span {
    color: var(--slate-400);
    font-size: 13px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--slate-600);
    transition: 0.3s;
    border-radius: 28px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--teal-500);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

footer {
    text-align: center;
    padding: 32px 24px;
    border-top: 1px solid var(--slate-800);
    color: var(--slate-600);
    font-size: 14px;
}

.login-container {
    max-width: 440px;
    margin: 60px auto;
}

.login-container h1 {
    text-align: center;
    margin-bottom: 32px;
}

.text-center {
    text-align: center;
}

.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.gap-4 {
    gap: 16px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .card {
        padding: 24px;
    }
    
    .question-card {
        padding: 24px;
    }
    
    header nav {
        gap: 12px;
    }
}

@media print {
    header, footer, .btn-primary, .btn-secondary {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .card {
        border: 1px solid #ddd;
        background: white;
    }
}

.action-plan {
    margin: 40px 0;
}

.action-item {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 16px;
    margin-bottom: 24px;
    overflow: hidden;
}

.action-item.high {
    border-left: 4px solid #ef4444;
}

.action-item.medium {
    border-left: 4px solid #eab308;
}

.action-item.low {
    border-left: 4px solid #22c55e;
}

.action-header {
    display: flex;
    align-items: flex-start;
    padding: 24px;
    background-color: rgba(30, 41, 59, 0.3);
}

.action-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 16px;
    flex-shrink: 0;
}

.action-title h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.action-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.timeline-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    background-color: rgba(20, 184, 166, 0.2);
    color: var(--teal-400);
}

.action-content {
    padding: 24px;
}

.your-answer {
    margin-bottom: 16px;
    padding: 12px 16px;
    background-color: var(--slate-800);
    border-radius: 8px;
    font-size: 14px;
}

.your-answer strong {
    color: var(--slate-400);
}

.answer-text {
    color: #f87171;
    font-weight: 600;
}

.issue-box {
    margin-bottom: 16px;
    padding: 16px;
    background-color: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    border-left: 3px solid #ef4444;
}

.issue-box strong {
    color: #fca5a5;
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
}

.issue-box p {
    color: var(--slate-300);
    font-size: 14px;
    margin: 0;
}

.action-box {
    margin-bottom: 16px;
    padding: 16px;
    background-color: rgba(20, 184, 166, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--teal-500);
}

.action-box strong {
    color: var(--teal-400);
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
}

.action-box p {
    color: var(--slate-300);
    font-size: 14px;
    margin: 0;
}

.resources-box {
    padding: 12px 16px;
    background-color: var(--slate-800);
    border-radius: 8px;
}

.resources-box strong {
    color: var(--slate-400);
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.resources-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.resources-box li {
    color: var(--slate-300);
    font-size: 13px;
    padding: 4px 0;
}

.resources-box li::before {
    content: "→";
    color: var(--teal-400);
    margin-right: 8px;
}

.toolkit-section {
    margin: 40px 0;
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.toolkit-card {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.toolkit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.toolkit-card h4 {
    color: var(--white);
    margin-bottom: 8px;
}

.toolkit-card p {
    font-size: 14px;
    margin-bottom: 0;
}

.next-steps-section {
    margin: 40px 0;
}

.steps-timeline {
    max-width: 600px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    margin-bottom: 32px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--white);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    margin: 0;
}

.prep-section {
    margin: 40px 0;
}

.prep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.prep-card {
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 16px;
    padding: 28px;
}

.prep-card h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.prep-icon {
    font-size: 24px;
}

.prep-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prep-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--slate-700);
    color: var(--slate-300);
    font-size: 14px;
}

.prep-list li:last-child {
    border-bottom: none;
}

.prep-list li::before {
    content: "✓";
    color: var(--teal-400);
    margin-right: 12px;
    font-weight: bold;
}

.cost-table {
    width: 100%;
}

.cost-table tr td {
    padding: 12px 0;
    border-bottom: 1px solid var(--slate-700);
}

.cost-table tr:last-child td {
    border-bottom: none;
}

.cost-table td:first-child {
    color: var(--slate-400);
    font-size: 14px;
}

.cost-table td:last-child {
    color: var(--teal-400);
    font-weight: 600;
    text-align: right;
}

.template-list {
    margin: 40px 0;
}

.template-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(51, 65, 85, 0.5);
    border-radius: 12px;
    margin-bottom: 12px;
}

.template-info h4 {
    color: var(--white);
    margin-bottom: 4px;
}

.template-info p {
    font-size: 13px;
    margin: 0;
}

.gap-2 {
    gap: 8px;
}

.space-y-2 > * + * {
    margin-top: 8px;
}

.space-y-4 > * + * {
    margin-top: 16px;
}

.space-y-6 > * + * {
    margin-top: 24px;
}

.grid {
    display: grid;
}

.md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.md\:grid-cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.gap-6 {
    gap: 24px;
}

@media (max-width: 768px) {
    .md\:grid-cols-2,
    .md\:grid-cols-5 {
        grid-template-columns: 1fr;
    }
    
    .toolkit-grid {
        grid-template-columns: 1fr;
    }
    
    .template-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

.locked-preview {
    background-color: var(--slate-800);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.preview-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.75rem 0;
    flex-wrap: wrap;
}

.preview-icon {
    font-size: 1.25rem;
}

.preview-label {
    color: var(--slate-400);
}

.preview-value {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
}

.preview-value.blurred {
    filter: blur(8px);
    user-select: none;
}

.what-you-get h4 {
    color: var(--slate-300);
}

.admin-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background-color: var(--slate-800);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--slate-600);
    transition: 0.3s;
    border-radius: 26px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-accent);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

.toggle-label {
    display: flex;
    flex-direction: column;
}

.toggle-label strong {
    color: var(--white);
    margin-bottom: 4px;
}

.toggle-label span {
    color: var(--slate-400);
    font-size: 13px;
}

/* RWO Framework Styles */
.rwo-section {
    margin: 2rem 0;
}

.rwo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .rwo-grid {
        grid-template-columns: 1fr;
    }
}

.rwo-card {
    background: var(--slate-800);
    border: 2px solid var(--slate-700);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.rwo-card.active {
    border-color: var(--teal-500);
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(20, 184, 166, 0.05));
}

.rwo-card.partial {
    border-color: var(--orange-400);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
}

.rwo-card.inactive {
    border-color: var(--slate-600);
    opacity: 0.7;
}

.rwo-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.rwo-card.active .rwo-icon {
    color: var(--teal-400);
}

.rwo-card.partial .rwo-icon {
    color: var(--orange-400);
}

.rwo-card.inactive .rwo-icon {
    color: var(--slate-400);
}

.rwo-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.rwo-card p {
    font-size: 0.875rem;
    color: var(--slate-400);
    margin-bottom: 1rem;
}

.rwo-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.rwo-status.success {
    background: rgba(20, 184, 166, 0.2);
    color: var(--teal-400);
}

.rwo-status.warning {
    background: rgba(249, 115, 22, 0.2);
    color: var(--orange-400);
}

.rwo-status.danger {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.rwo-summary {
    margin-top: 2rem;
}

.rwo-message {
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.rwo-message.perfect {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(249, 115, 22, 0.1));
    border: 2px solid var(--teal-500);
}

.rwo-message.excellent {
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid var(--teal-500);
}

.rwo-message.good {
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid var(--teal-400);
}

.rwo-message.moderate {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid var(--orange-400);
}

.rwo-message.early {
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid var(--slate-600);
}

.rwo-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rwo-message p {
    color: var(--slate-300);
    font-size: 1.1rem;
}

.rwo-value-box {
    background: var(--slate-800);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: left;
}

.rwo-value-box h4 {
    color: var(--teal-400);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.rwo-value-box ul {
    list-style: none;
    padding: 0;
}

.rwo-value-box li {
    padding: 0.5rem 0;
    color: var(--slate-300);
    border-bottom: 1px solid var(--slate-700);
}

.rwo-value-box li:last-child {
    border-bottom: none;
}

.rwo-note {
    font-size: 0.875rem !important;
    color: var(--slate-400) !important;
    font-style: italic;
    margin-top: 1rem !important;
}

/* Value Proposition Section */
.value-prop-section {
    margin: 2rem 0;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.value-card h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.value-card p {
    color: var(--slate-400);
    font-size: 0.875rem;
}

/* Pilot Program Landing Page */
.hero-section {
    padding: 2rem 0;
}

.pilot-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--teal-500), var(--orange-500));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pilot-card {
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 700px;
    margin: 2rem auto;
}

.pilot-header h2 {
    color: var(--teal-400);
    margin-bottom: 0.5rem;
}

.pilot-header p {
    color: var(--slate-400);
    margin-bottom: 1.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem;
    background: var(--slate-900);
    border-radius: 10px;
}

.benefit-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.benefit-item strong {
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}

.benefit-item p {
    color: var(--slate-400);
    font-size: 0.875rem;
    margin: 0;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.what-you-get {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-700);
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 768px) {
    .toolkit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .toolkit-grid {
        grid-template-columns: 1fr;
    }
}

.toolkit-item {
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 10px;
    padding: 1.25rem;
}

.toolkit-item h3 {
    color: var(--teal-400);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.toolkit-item p {
    color: var(--slate-400);
    font-size: 0.875rem;
    margin: 0;
}

/* Apply Form */
.required {
    color: var(--orange-400);
}

textarea {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--slate-700);
    border-radius: 8px;
    font-size: 16px;
    background-color: var(--slate-800);
    color: var(--white);
    transition: border-color 0.2s;
    resize: vertical;
}

textarea:focus {
    outline: none;
    border-color: var(--teal-500);
}

/* Thank You Page */
.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal-500), var(--orange-500));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--teal-500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.step-item strong {
    color: var(--white);
    display: block;
    margin-bottom: 2px;
}

.step-item p {
    color: var(--slate-400);
    font-size: 0.875rem;
    margin: 0;
}

.momentum-box {
    background: var(--slate-800);
    border: 1px solid var(--teal-500);
    border-radius: 10px;
    padding: 1.25rem;
    margin-top: 1.5rem;
    text-align: center;
}

/* Admin Applications */
.applications-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.applications-table th,
.applications-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--slate-700);
}

.applications-table th {
    color: var(--slate-400);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.applications-table td {
    color: var(--white);
    font-size: 0.875rem;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: var(--slate-700);
    color: var(--slate-300);
}

.status-invoiced {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.status-paid {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.status-active {
    background: rgba(20, 184, 166, 0.2);
    color: var(--teal-400);
}

.status-rejected {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.action-btn {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    margin-right: 4px;
    transition: opacity 0.2s;
}

.action-btn:hover {
    opacity: 0.8;
}

.action-btn-invoice {
    background: #fbbf24;
    color: #1e293b;
}

.action-btn-paid {
    background: #22c55e;
    color: white;
}

.action-btn-create {
    background: var(--teal-500);
    color: white;
}

.action-btn-view {
    background: var(--slate-700);
    color: var(--white);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h2 {
    margin: 0;
    color: var(--white);
}

.modal-close {
    background: none;
    border: none;
    color: var(--slate-400);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--white);
}

.detail-row {
    display: flex;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--slate-700);
}

.detail-label {
    width: 120px;
    color: var(--slate-400);
    font-size: 0.875rem;
}

.detail-value {
    flex: 1;
    color: var(--white);
    font-size: 0.875rem;
}

.notes-textarea {
    margin-top: 1rem;
}

.notes-textarea label {
    display: block;
    color: var(--slate-400);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.copy-btn {
    background: var(--slate-700);
    border: none;
    color: var(--teal-400);
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    margin-left: 8px;
}

.copy-btn:hover {
    background: var(--slate-600);
}

.filter-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.filter-bar select {
    padding: 8px 12px;
    background: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 6px;
    color: var(--white);
    font-size: 0.875rem;
}

.stats-mini {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

.stat-mini {
    background: var(--slate-800);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
}

.stat-mini span {
    color: var(--teal-400);
    font-weight: 700;
}
