/* ------------------------------------------------------------
   HERO SECTION
------------------------------------------------------------ */

.hero {
    padding: 4rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc, #eef2f7);
    border-radius: 12px;
    margin-bottom: 3rem;
}

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

.hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1f2937;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ------------------------------------------------------------
   VALUE GRID
------------------------------------------------------------ */

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.value-card {
    background: #fff;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    text-align: center;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.value-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.45;
}

/* ------------------------------------------------------------
   CTA SECTION
------------------------------------------------------------ */

.cta {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    margin-top: 3rem;
}

.cta h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.cta p {
    color: #4b5563;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* ------------------------------------------------------------
   BUTTONS (inherits your global button styles)
------------------------------------------------------------ */

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.4rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
}

/* URL Row Layout */
.url-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Blue parse button (matches .auth-btn style) */
.btn-parse {
    background: #2563eb;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.15s ease, transform 0.15s ease;
}

.btn-parse:hover {
    background: #1e4fcf;
    transform: translateY(-1px);
}

.btn-parse:active {
    background: #1b46b8;
    transform: translateY(0);
}

/* Circular spinner */
.parse-spinner {
    width: 16px;
    height: 16px;
    border: 3px solid rgba(255,255,255,0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

/* Hide/show helper */
.hidden {
    display: none !important;
}

/* Spinner animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}
