/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-600: #2563eb;
    --blue-900: #1e3a8a;
    --white: #ffffff;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--slate-50);
    color: var(--slate-900);
    line-height: 1.6;
    min-height: 100vh;
}

/* Page Structure */
.page {
    display: none;
    min-height: 100vh;
    position: relative;
}

.page.active {
    display: block;
}

/* Hero Section */
#hero {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

#hero.active {
    display: flex;
}

.hero-content {
    max-width: 800px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    color: var(--slate-600);
    font-weight: 300;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .note {
    font-size: 0.875rem;
    color: var(--slate-500);
    font-weight: 300;
    margin-bottom: 2rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    text-align: left;
}

.hero-logo {
    margin-top: 4rem;
    text-align: center;
}

.hero-logo img {
    max-height: 40px;
    width: auto;
    opacity: 0.7;
}

.page-logo {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.page-logo img {
    max-height: 32px;
    width: auto;
}

.stat {
    border-left: 2px solid var(--slate-300);
    padding-left: 1rem;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--slate-900);
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--slate-600);
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--slate-900);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--slate-800);
}

.btn-primary:disabled {
    background-color: var(--slate-400);
    cursor: not-allowed;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--slate-700);
    border: 1px solid var(--slate-300);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn svg {
    flex-shrink: 0;
}

/* Progress Bar */
.progress-bar {
    background-color: var(--white);
    border-bottom: 1px solid var(--slate-200);
    padding: 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.progress-bar.hidden {
    display: none;
}

.progress-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.progress-steps {
    display: flex;
    align-items: center;
}

.progress-logo img {
    max-height: 32px;
    width: auto;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 400;
    background-color: var(--slate-200);
    color: var(--slate-500);
    transition: all 0.3s ease;
}

.progress-step.active .step-number,
.progress-step.completed .step-number {
    background-color: var(--slate-900);
    color: var(--white);
}

.step-label {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--slate-500);
    transition: color 0.3s ease;
}

.progress-step.active .step-label {
    color: var(--slate-900);
}

.progress-line {
    flex: 1;
    height: 2px;
    background-color: var(--slate-200);
    margin: 0 1rem;
    transition: background-color 0.3s ease;
}

.progress-line.completed {
    background-color: var(--slate-900);
}

/* Step Pages */
.step-page {
    padding-top: 0;
}

.step-page.active {
    display: block;
}

.step-content {
    max-width: 640px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.step-header {
    margin-bottom: 2rem;
}

.step-header h2 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.step-header p {
    font-size: 1rem;
    color: var(--slate-600);
    font-weight: 300;
}

/* Question Card */
.question-card {
    background-color: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.question {
    margin-bottom: 2rem;
}

.question:last-of-type {
    margin-bottom: 1.5rem;
}

.question label {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

/* Slider */
.slider-container {
    padding: 0.5rem 0;
}

input[type="range"] {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--slate-200);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--slate-900);
    cursor: pointer;
    transition: transform 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--slate-900);
    cursor: pointer;
    border: none;
}

.slider-value {
    text-align: right;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--slate-900);
    margin-top: 0.75rem;
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.25rem;
    background-color: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.radio-option:hover {
    border-color: var(--slate-300);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.radio-option.selected {
    background-color: #eff6ff;
    border-color: #bfdbfe;
}

.radio-circle {
    width: 0.5rem;
    height: 0.5rem;
    background-color: transparent;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

.radio-option.selected .radio-circle {
    background-color: var(--slate-900);
}

.radio-option span {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--slate-700);
}

.radio-option.selected span {
    color: var(--slate-900);
}

/* Volume Chart */
.volume-chart-container {
    background-color: var(--slate-50);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.volume-chart-icon {
    text-align: center;
    margin-bottom: 0.5rem;
}

.volume-chart-icon svg {
    color: var(--slate-400);
}

.volume-chart {
    width: 100%;
    height: 100px;
    display: block;
}

.volume-chart-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--slate-600);
}

.legend-line {
    display: inline-block;
    width: 24px;
    height: 2px;
}

.legend-forecast {
    background-color: #94a3b8;
    background-image: repeating-linear-gradient(
        90deg,
        #94a3b8 0px,
        #94a3b8 6px,
        transparent 6px,
        transparent 10px
    );
}

.legend-actual {
    background-color: #1e293b;
}

/* Lifecycle Diagram */
.lifecycle-diagram {
    padding: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.lifecycle-drift-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.lifecycle-drift-icon svg {
    color: var(--slate-400);
}

.lifecycle-stages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.lifecycle-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stage-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.stage-circle.stage-1 {
    background-color: #cbd5e1;
}

.stage-circle.stage-2 {
    background-color: #94a3b8;
}

.stage-circle.stage-3 {
    background-color: #64748b;
}

.stage-circle.stage-4 {
    background-color: #1e293b;
}

.stage-label {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--slate-600);
}

.lifecycle-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0 0.5rem;
}

.connector-line {
    width: 40px;
    height: 2px;
    background-color: var(--slate-300);
    margin-top: 12px;
}

.connector-label {
    font-size: 0.6875rem;
    font-weight: 400;
    color: var(--slate-400);
    font-style: italic;
}

@media (max-width: 480px) {
    .stage-circle {
        width: 36px;
        height: 36px;
    }

    .connector-line {
        width: 24px;
    }

    .stage-label {
        font-size: 0.75rem;
    }
}

/* Info Box */
.info-box {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: 0.5rem;
    margin-top: 1rem;
}

.info-box svg {
    flex-shrink: 0;
    color: var(--blue-600);
    margin-top: 0.125rem;
}

.info-box p {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--blue-900);
    line-height: 1.5;
}

/* Step Navigation */
.step-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

/* Results Section */
#results {
    padding: 0;
}

#results.active {
    display: block;
}

.results-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.results-header h2 {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--slate-600);
    margin-bottom: 1rem;
}

.leakage-value {
    margin-bottom: 1rem;
}

.leakage-value span:first-child {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--slate-900);
    letter-spacing: -0.02em;
}

.leakage-label {
    display: block;
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--slate-600);
    margin-top: 0.25rem;
}

.results-note {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--slate-500);
    max-width: 500px;
    margin: 0 auto;
}

/* Revenue Calculator */
.revenue-calculator {
    background-color: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.revenue-slider-container {
    flex: 1;
}

.revenue-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    margin-bottom: 0.5rem;
}

.revenue-display {
    font-size: 2rem;
    font-weight: 300;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.revenue-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--slate-200);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.revenue-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--slate-900);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.revenue-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.revenue-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--slate-900);
    cursor: pointer;
    border: none;
}

.revenue-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: var(--slate-400);
}

.savings-display {
    text-align: center;
    padding-left: 2rem;
    border-left: 1px solid var(--slate-200);
}

.savings-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    margin-bottom: 0.5rem;
}

.savings-value {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--slate-900);
    white-space: nowrap;
}

@media (max-width: 640px) {
    .revenue-calculator {
        flex-direction: column;
        gap: 1.5rem;
    }

    .savings-display {
        padding-left: 0;
        padding-top: 1.5rem;
        border-left: none;
        border-top: 1px solid var(--slate-200);
        width: 100%;
    }
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.hidden {
    display: none;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    background-color: var(--white);
    border-radius: 0.75rem;
    width: 90%;
    max-width: 700px;
    height: 80vh;
    max-height: 700px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    background: var(--white);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--slate-600);
    transition: all 0.15s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background-color: var(--slate-100);
    color: var(--slate-900);
}

#calendlyEmbed {
    width: 100%;
    height: 100%;
}

#calendlyEmbed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Results Cards */
.results-card {
    background-color: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.results-card h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
}

/* Breakdown Chart */
.breakdown-chart {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.chart-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chart-label {
    width: 160px;
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--slate-600);
    text-align: right;
}

.chart-bar-container {
    flex: 1;
    height: 24px;
    background-color: var(--slate-100);
    border-left: 2px solid var(--slate-300);
    position: relative;
}

.chart-bar {
    height: 100%;
    background-color: #64748b;
    transition: width 0.5s ease;
}

.chart-caption {
    font-size: 0.8125rem;
    font-weight: 400;
    color: var(--slate-500);
    text-align: center;
    margin-top: 1rem;
}

/* Benchmark */
.benchmark-container {
    margin-bottom: 1rem;
}

.benchmark-labels {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    color: var(--slate-500);
    position: relative;
}

.benchmark-you-label {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 500;
    color: var(--slate-700);
}

.benchmark-track {
    position: relative;
    height: 12px;
    background: linear-gradient(90deg, #cbd5e1 0%, #64748b 100%);
    border-radius: 6px;
}

.benchmark-marker {
    position: absolute;
    top: -2px;
    width: 3px;
    height: 16px;
    background-color: var(--slate-900);
    border-radius: 1px;
    transition: left 0.5s ease;
}

.benchmark-caption {
    font-size: 0.875rem;
    font-weight: 400;
    color: #2563eb;
    margin-top: 0.75rem;
}

/* Observations */
.observations-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.observation-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.observation-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #64748b;
}

.observation-item p {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--slate-700);
    line-height: 1.5;
}

/* Results CTA */
.results-cta {
    background-color: #0f172a;
    border-radius: 0.75rem;
    padding: 3rem 2rem;
    text-align: center;
}

.cta-state {
    max-width: 600px;
    margin: 0 auto;
}

.cta-state.hidden {
    display: none;
}

.results-cta h3 {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.results-cta p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--slate-400);
    margin-bottom: 1.5rem;
}

.btn-cta-white {
    background-color: var(--white);
    color: var(--slate-900);
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.15s ease;
}

.btn-cta-white:hover {
    background-color: var(--slate-100);
}

.btn-cta-white:disabled {
    background-color: var(--slate-300);
    color: var(--slate-500);
    cursor: not-allowed;
}

/* Email Form */
.email-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.email-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    font-weight: 400;
    color: var(--slate-900);
    background-color: var(--white);
    border: none;
    border-radius: 0.5rem;
    outline: none;
}

.email-form input::placeholder {
    color: var(--slate-400);
}

.email-form input:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
    .email-form {
        flex-direction: column;
    }
}

/* Results Footer */
.results-footer {
    margin-top: 2rem;
    text-align: center;
}

.results-disclaimer {
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--slate-500);
    margin-bottom: 1.5rem;
}

.results-footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--slate-600);
    text-decoration: none;
    transition: color 0.15s ease;
}

.footer-link:hover {
    color: var(--slate-900);
}

.footer-link svg {
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .results-footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Execution Analysis Intro */
#execution-intro {
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

#execution-intro.active {
    display: flex;
}

.execution-intro-content {
    max-width: 700px;
    text-align: center;
}

.execution-icon {
    width: 72px;
    height: 72px;
    background-color: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.execution-icon svg {
    color: #0284c7;
}

.execution-intro-content h1 {
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--slate-900);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.execution-subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--slate-600);
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .execution-intro-content h1 {
        font-size: 2rem;
    }
}

/* Execution Questionnaire */
#execution-questionnaire {
    padding: 0;
}

#execution-questionnaire.active {
    display: block;
}

.execution-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.execution-header {
    margin-bottom: 2.5rem;
}

.execution-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.execution-header p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--slate-600);
}

.execution-section {
    background-color: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    padding: 1.5rem 2rem 2rem;
    margin-bottom: 1.5rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--slate-500);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.execution-section .question {
    margin-bottom: 2rem;
}

.execution-section .question:last-child {
    margin-bottom: 0;
}

.execution-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.btn-text {
    background: none;
    border: none;
    color: var(--slate-500);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.15s ease;
}

.btn-text:hover:not(:disabled) {
    color: var(--slate-900);
}

.btn-text:disabled {
    color: var(--slate-300);
    cursor: not-allowed;
}

@media (max-width: 640px) {
    .execution-header h2 {
        font-size: 2rem;
    }

    .execution-section {
        padding: 1.25rem 1.5rem 1.5rem;
    }
}

/* Execution Results */
#execution-results {
    padding: 0;
}

#execution-results.active {
    display: block;
}

.execution-results-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.execution-results-header {
    text-align: center;
    margin-bottom: 2rem;
}

.execution-results-label {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--slate-500);
}

.execution-risk-icon {
    margin: 1.5rem 0;
}

.execution-risk-icon svg {
    color: var(--slate-400);
}

.execution-results-header h2 {
    font-size: 3rem;
    font-weight: 300;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.execution-results-header p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--slate-600);
    max-width: 450px;
    margin: 0 auto;
}

.execution-insight-box {
    background-color: #eff6ff;
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.execution-insight-box p {
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    color: var(--slate-700);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 640px) {
    .execution-results-header h2 {
        font-size: 2.25rem;
    }

    .execution-insight-box {
        padding: 1.25rem 1.5rem;
    }
}

/* Responsive */
@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .progress-bar {
        overflow-x: auto;
    }

    .progress-steps {
        min-width: 500px;
    }

    .step-label {
        display: none;
    }

    .progress-logo {
        display: none;
    }

    .step-content {
        padding: 2rem 1rem;
    }

    .leakage-value span:first-child {
        font-size: 2.5rem;
    }
}
