/* ================================================
   AxisShield DDoS Protection Page
   AxisNetworks Design System
   ================================================ */

.AN-shield-eyebrow {
    color: #4da3ff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.AN-shield-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.AN-shield-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(0, 102, 204, 0.15);
    border: 1px solid rgba(77, 163, 255, 0.4);
    color: #4da3ff;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ----------------------------------------
   Stats Strip
   ---------------------------------------- */
.AN-shield-stats-section {
    padding: 56px 0;
    background: #0a1628;
}

.AN-shield-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .AN-shield-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.AN-shield-stat-card {
    text-align: center;
    padding: 20px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.AN-shield-stat-value {
    font-size: 1.9rem;
    font-weight: 800;
    color: #4da3ff;
    margin: 0 0 4px;
}

.AN-shield-stat-label {
    font-size: 0.8rem;
    color: #a0aec0;
    margin: 0;
}

/* ----------------------------------------
   Generic Section Shells
   ---------------------------------------- */
.AN-shield-section {
    padding: 72px 0;
    background: #ffffff;
}

.AN-shield-section-alt {
    background: #f8f9fa;
}

/* ----------------------------------------
   Pipeline Diagram
   ---------------------------------------- */
.AN-shield-pipeline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 32px 0 12px;
}

.AN-shield-pipeline-step {
    padding: 12px 18px;
    border-radius: 8px;
    background: #0a1628;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.AN-shield-pipeline-arrow {
    color: #94a3b8;
    font-size: 1.1rem;
}

.AN-shield-pipeline-caption {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    margin: 0 0 40px;
}

.AN-shield-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .AN-shield-steps { grid-template-columns: 1fr; }
}

.AN-shield-step-card {
    padding: 28px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
}

.AN-shield-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0066cc;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.AN-shield-step-card h3 {
    font-size: 1.1rem;
    margin: 0 0 8px;
    color: #1a1a1a;
}

.AN-shield-step-card p {
    font-size: 0.9rem;
    color: #555;
    margin: 0 0 12px;
}

.AN-shield-step-card ul {
    margin: 0;
    padding-left: 18px;
    font-size: 0.85rem;
    color: #444;
}

.AN-shield-step-card li {
    margin-bottom: 6px;
}

/* ----------------------------------------
   Filter Layers
   ---------------------------------------- */
.AN-shield-filter-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.AN-shield-filter-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #0066cc;
}

.AN-shield-filter-layer {
    flex: 0 0 auto;
    min-width: 32px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0066cc;
    background: #eef4ff;
    border-radius: 6px;
    padding: 4px 8px;
}

.AN-shield-filter-body {
    flex: 1;
}

.AN-shield-filter-name {
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 2px;
    font-size: 0.95rem;
}

.AN-shield-filter-desc {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.AN-shield-status-badge {
    flex: 0 0 auto;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.AN-shield-status-active { background: #dbeafe; color: #1d4ed8; }
.AN-shield-status-inDev { background: #fef3c7; color: #b45309; }
.AN-shield-status-planned { background: #e2e8f0; color: #475569; }

/* ----------------------------------------
   Two Column (Control Plane / Security)
   ---------------------------------------- */
.AN-shield-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .AN-shield-two-col { grid-template-columns: 1fr; }
}

.AN-shield-col-card {
    padding: 28px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
}

.AN-shield-col-card h3 {
    font-size: 1.05rem;
    color: #1a1a1a;
    margin: 0 0 14px;
}

.AN-shield-col-card ul {
    margin: 0;
    padding-left: 18px;
    font-size: 0.88rem;
    color: #444;
}

.AN-shield-col-card li {
    margin-bottom: 8px;
}

.AN-shield-code-list li {
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
}

/* ----------------------------------------
   Data Tables (Benchmarks, Deployment, Roadmap)
   ---------------------------------------- */
.AN-shield-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.AN-shield-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.AN-shield-table th,
.AN-shield-table td {
    padding: 14px 18px;
    text-align: left;
    font-size: 0.88rem;
    border-bottom: 1px solid #eef0f2;
    white-space: nowrap;
}

.AN-shield-table th {
    background: #0a1628;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.AN-shield-table td {
    color: #333;
    white-space: normal;
}

.AN-shield-table tbody tr:last-child td {
    border-bottom: none;
}

/* ----------------------------------------
   Attack Coverage Matrix
   ---------------------------------------- */
.AN-shield-coverage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .AN-shield-coverage-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .AN-shield-coverage-grid { grid-template-columns: 1fr; }
}

.AN-shield-coverage-card {
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
}

.AN-shield-coverage-card h3 {
    font-size: 0.95rem;
    color: #0066cc;
    margin: 0 0 10px;
}

.AN-shield-coverage-card ul {
    margin: 0;
    padding-left: 16px;
    font-size: 0.82rem;
    color: #444;
}

.AN-shield-coverage-card li {
    margin-bottom: 5px;
}

.AN-shield-coverage-note {
    text-align: center;
    font-size: 0.82rem;
    color: #888;
    font-style: italic;
    margin: 24px 0 0;
}

/* ----------------------------------------
   Team / Licensing
   ---------------------------------------- */
.AN-shield-team {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    padding: 32px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
}

.AN-shield-team h2 {
    font-size: 1.4rem;
    margin: 0 0 8px;
}

.AN-shield-team p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

.AN-shield-founder {
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 8px !important;
}

.AN-shield-licensing {
    max-width: 320px;
    font-size: 0.8rem;
    color: #888;
    text-align: right;
}

@media (max-width: 700px) {
    .AN-shield-team { flex-direction: column; align-items: flex-start; }
    .AN-shield-licensing { text-align: left; }
}

/* ----------------------------------------
   CTA Box
   ---------------------------------------- */
.AN-shield-cta-section {
    padding-top: 0;
}

.AN-shield-cta-box {
    text-align: center;
    padding: 56px 32px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    color: #ffffff;
}

.AN-shield-cta-box h2 {
    font-size: 1.8rem;
    margin: 0 0 12px;
}

.AN-shield-cta-box p {
    font-size: 1rem;
    color: #cbd5e1;
    max-width: 560px;
    margin: 0 auto 24px;
}
