/* ===== Data Readiness Scorecard — Elait Style ===== */

#airs-scorecard {
    max-width: 760px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1f2937;
}

/* Header — Elait dark banner style */
.airs-header {
    background: linear-gradient(135deg, #0d2137 0%, #0f2d4a 60%, #1a3a52 100%);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}
.airs-header::after {
    content: 'DATA · AI · CLOUD';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.4);
    font-weight: 400;
}
.airs-header-logo {
    margin-bottom: 1.25rem;
}
.airs-header-logo img {
    height: 60px;
    width: auto;
    display: block;
}
.airs-header-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #e8a87c;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.airs-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}
.airs-header p {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    max-width: 600px;
}

/* Dimension card */
.airs-dimension {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    background: #fff;
}
.airs-dim-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.airs-dim-number {
    background: #1f2937;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    padding: 3px 8px;
    flex-shrink: 0;
    margin-top: 4px;
    letter-spacing: 0.5px;
}
.airs-dim-header h2 {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    color: #111827;
}
.airs-dim-sub {
    font-size: 13px;
    color: #6b7280;
    margin: 4px 0 0;
    width: 100%;
}

/* 4-column option grid */
.airs-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.airs-opt {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    position: relative;
    display: block;
}
.airs-opt:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}
.airs-opt.selected {
    background: #eff6ff;
    border-color: #3b82f6;
}
.airs-opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.airs-opt-score {
    font-size: 22px;
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 6px;
    line-height: 1;
}
.airs-opt.selected .airs-opt-score { color: #2563eb; }
.airs-opt-text {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
}
.airs-opt.selected .airs-opt-text { color: #1e40af; }

/* Submit section */
.airs-submit-section {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 0.5rem;
}
.airs-submit-section h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111827;
}
.airs-submit-section p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 1rem;
}
.airs-email-input {
    width: 100%;
    max-width: 360px;
    display: block;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 12px;
    background: #fff;
    color: #111827;
    outline: none;
    transition: border-color 0.15s;
}
.airs-email-input:focus { border-color: #3b82f6; }
.airs-submit-btn {
    background: #1f2937;
    color: #fff;
    border: none;
    padding: 11px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.airs-submit-btn:hover   { background: #374151; }
.airs-submit-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.airs-error {
    font-size: 13px;
    color: #dc2626;
    margin-top: 10px;
    display: none;
}
.airs-email-error {
    font-size: 13px;
    color: #dc2626;
    margin-top: -8px;
    margin-bottom: 10px;
    display: none;
}

/* How to use it */
.airs-how-to {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f0f4f8;
    border: 1px solid #d0dce8;
    border-top: 3px solid #1a6fa8;
    border-radius: 0 0 10px 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.25rem;
    font-size: 14px;
    line-height: 1.6;
}
.airs-how-label {
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    flex-shrink: 0;
}
.airs-how-text { color: #374151; }

/* Header tagline top-right */
.airs-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}
.airs-header-tagline {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.35);
}

/* ===== Results ===== */
.airs-result-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2.5rem;
}
.airs-result-card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}
.airs-result-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 1.75rem 0 0.875rem;
}

/* Score badge */
.airs-score-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    border: 3px solid;
    border-radius: 14px;
    padding: 14px 26px;
    margin-bottom: 14px;
}
.airs-score-num   { font-size: 52px; font-weight: 700; line-height: 1; }
.airs-score-denom { font-size: 20px; font-weight: 500; opacity: 0.65; }

/* Band pill */
.airs-band-pill {
    display: inline-block;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    padding: 5px 16px;
    margin-bottom: 10px;
}
.airs-band-desc {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

/* Dimension bars */
.airs-dim-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
}
.airs-dim-label {
    width: 220px;
    flex-shrink: 0;
    color: #4b5563;
}
.airs-dim-track {
    flex: 1;
    background: #f3f4f6;
    border-radius: 999px;
    height: 7px;
}
.airs-dim-fill {
    height: 7px;
    border-radius: 999px;
    transition: width 0.6s ease;
}
.airs-dim-val {
    width: 32px;
    text-align: right;
    font-weight: 600;
    color: #111827;
}

/* Recommendations / score band table */
.airs-recs {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    font-size: 14px;
}
.airs-recs table {
    width: 100%;
    border-collapse: collapse;
}
.airs-recs th {
    text-align: left;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e5e7eb;
    background: #fff;
}
.airs-recs td {
    padding: 10px 14px;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
    vertical-align: middle;
    line-height: 1.5;
}
.airs-recs tr:last-child td { border-bottom: none; }
.airs-recs tr.active-band td { background: #f0f9ff; color: #111827; font-weight: 500; }
.airs-band-tag {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    padding: 3px 11px;
    white-space: nowrap;
}
.airs-band-range {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 3px;
}

/* Footer CTA */
.airs-cta {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e5e7eb;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}
.airs-cta a { color: #2563eb; text-decoration: none; }
.airs-cta a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 580px) {
    .airs-options       { grid-template-columns: repeat(2, 1fr); }
    .airs-dim-label     { width: 130px; font-size: 12px; }
    .airs-score-num     { font-size: 40px; }
    .airs-result-card   { padding: 1.5rem; }
    .airs-score-badge   { padding: 10px 18px; }
}
