/* --- CLAIM PAGE SPECIFIC STYLES --- */

/* --- Sections --- */
.tool-section {
    padding: 3rem 0 5rem;
}

.how-it-works-section {
    padding: 5rem 0;
    background-color: var(--surface-color);
}
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: start;
}
.how-it-works-step {
    text-align: center;
}
.how-it-works-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.how-it-works-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- Main Tool Container --- */
.tool-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.wizard-step {
    display: none; 
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.wizard-step.active {
    display: flex;
}

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

.wizard-step h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.wizard-step .step-description {
    color: var(--text-muted);
    margin-top: 0;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* --- Inputs & Summaries --- */
.large-textarea {
    width: 100%;
    min-height: 160px;
    background-color: #0d1117;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1rem;
    color: var(--text-color);
    font-family: var(--font-mono);
    font-size: 0.95rem;
    resize: vertical;
    margin-bottom: 1.5rem;
}

.large-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.summary-box {
    width: 100%;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1rem;
}

.summary-item span {
    color: var(--text-muted);
}

.summary-item strong {
    color: var(--text-color);
    font-weight: 600;
}

.summary-item.total strong {
    font-size: 1.25rem;
    color: var(--primary-color);
}

/* --- Info Box & Success Step --- */
.wizard-step h2 .icon {
    margin-right: 0.5rem;
}

.info-box {
    width: 100%;
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.hero-info-box {
    max-width: 550px;
    margin: 2rem auto 0;
    text-align: center;
    background-color: rgba(0, 123, 255, 0.1);
    border-color: var(--primary-color);
}

.info-box strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.code-display {
    display: block;
    background-color: #000;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    font-family: var(--font-mono);
    color: #c9d1d9;
    word-break: break-all;
    font-size: 0.9rem;
}

/* --- Status & Loader --- */
.status-box {
    width: 100%;
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.status-box p {
    margin: 0;
    font-weight: 600;
}

.status-box.error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #f8d7da;
}

.loader {
    width: 20px;
    height: 20px;
    border: 3px solid var(--text-muted);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}