/* css/se.css — Security Engineer profile page */

/* ── Standalone header (no nav links) ── */
.se-standalone-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 25, 47, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #233554;
    padding: 0.85rem 0;
}

.se-header-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.se-header-brand img {
    width: 42px;
    height: 42px;
}

.se-header-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ccd6f6;
    line-height: 1.2;
    display: block;
}

.se-header-role {
    font-size: 0.68rem;
    color: #64ffda;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.06em;
    display: block;
}

.se-header-actions {
    display: flex;
    gap: 0.65rem;
    align-items: center;
    flex-wrap: wrap;
}

.se-header-btn-primary {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.45rem 1rem;
    border-radius: 4px;
    background: #64ffda;
    color: #0a192f;
    text-decoration: none;
    border: 1px solid #64ffda;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.se-header-btn-primary:hover {
    background: transparent;
    color: #64ffda;
}

.se-header-btn-secondary {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.45rem 1rem;
    border-radius: 4px;
    background: transparent;
    color: #64ffda;
    text-decoration: none;
    border: 1px solid rgba(100, 255, 218, 0.4);
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.se-header-btn-secondary:hover {
    background: rgba(100, 255, 218, 0.08);
    border-color: #64ffda;
}

/* ── Stats strip ── */
.se-stats {
    padding: 3rem 0;
    background: rgba(13, 26, 46, 0.55);
    border-top: 1px solid #233554;
    border-bottom: 1px solid #233554;
}

.se-stat-card {
    text-align: center;
    padding: 1rem 0.5rem;
}

.se-stat-value {
    display: block;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: #64ffda;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.se-stat-label {
    display: block;
    font-size: 0.72rem;
    color: #8892b0;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Section layout ── */
.se-section {
    padding: 5rem 0;
}

.se-label {
    display: inline-block;
    font-family: 'Courier New', monospace;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #64ffda;
    border: 1px solid rgba(100, 255, 218, 0.25);
    padding: 0.28rem 0.8rem;
    border-radius: 3px;
    margin-bottom: 0.9rem;
}

.se-section-title {
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    font-weight: 700;
    color: #ccd6f6;
    margin-bottom: 0.55rem;
    line-height: 1.2;
}

.se-section-sub {
    font-size: 0.93rem;
    color: #8892b0;
    margin-bottom: 2.5rem;
    max-width: 580px;
    line-height: 1.65;
}

/* ── Domain cards ── */
.se-domain-card {
    background: #112240;
    border: 1px solid #233554;
    border-radius: 14px;
    padding: 1.75rem;
    height: 100%;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.se-domain-card:hover {
    border-color: rgba(100, 255, 218, 0.4);
    transform: translateY(-4px);
}

.se-domain-icon {
    font-size: 1.7rem;
    color: #64ffda;
    margin-bottom: 0.9rem;
    display: block;
}

.se-domain-card h3 {
    font-size: 0.98rem;
    font-weight: 700;
    color: #ccd6f6;
    margin-bottom: 0.55rem;
}

.se-domain-card p {
    font-size: 0.86rem;
    color: #8892b0;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.se-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.38rem;
}

.se-chips span {
    font-family: 'Courier New', monospace;
    font-size: 0.67rem;
    color: #64ffda;
    background: rgba(100, 255, 218, 0.07);
    border: 1px solid rgba(100, 255, 218, 0.17);
    padding: 0.2rem 0.52rem;
    border-radius: 3px;
}

/* ── Work cards ── */
.se-work-card {
    background: #112240;
    border: 1px solid #233554;
    border-radius: 14px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.se-work-type {
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #64ffda;
    margin-bottom: 0.4rem;
    display: block;
}

.se-work-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #ccd6f6;
    margin-bottom: 1rem;
}

.se-work-meta {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.5rem 1.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #233554;
}

.se-work-meta-item .meta-key {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 0.66rem;
    color: #8892b0;
    margin-bottom: 0.12rem;
}

.se-work-meta-item .meta-val {
    font-size: 0.84rem;
    color: #ccd6f6;
}

.se-work-findings {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
}

.se-finding-chip {
    font-size: 0.72rem;
    padding: 0.26rem 0.65rem;
    border-radius: 4px;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.se-finding-chip.critical {
    background: rgba(220, 38, 38, 0.12);
    color: #f87171;
    border: 1px solid rgba(220, 38, 38, 0.25);
}

.se-finding-chip.high {
    background: rgba(234, 88, 12, 0.12);
    color: #fb923c;
    border: 1px solid rgba(234, 88, 12, 0.25);
}

.se-finding-chip.medium {
    background: rgba(234, 179, 8, 0.10);
    color: #fbbf24;
    border: 1px solid rgba(234, 179, 8, 0.22);
}

.se-work-outcome {
    background: rgba(100, 255, 218, 0.05);
    border-left: 3px solid #64ffda;
    padding: 0.75rem 1rem;
    border-radius: 0 6px 6px 0;
    font-size: 0.875rem;
    color: #ccd6f6;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.se-work-outcome strong {
    color: #64ffda;
}

.se-work-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.se-metric-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.se-metric {
    text-align: center;
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.15);
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
}

.se-metric-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #64ffda;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.se-metric-label {
    display: block;
    font-size: 0.68rem;
    color: #8892b0;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── Experience condensed ── */
.se-exp-card {
    background: #112240;
    border: 1px solid #233554;
    border-radius: 12px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 1rem;
}

.se-exp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.3rem;
}

.se-exp-role {
    font-size: 1rem;
    font-weight: 700;
    color: #ccd6f6;
    margin: 0;
}

.se-exp-dates {
    font-size: 0.71rem;
    color: #8892b0;
    font-family: 'Courier New', monospace;
    white-space: nowrap;
    flex-shrink: 0;
}

.se-exp-company {
    font-size: 0.78rem;
    color: #64ffda;
    margin-bottom: 0.85rem;
    display: block;
}

.se-exp-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.38rem;
}

.se-exp-bullets li {
    font-size: 0.855rem;
    color: #8892b0;
    display: flex;
    gap: 0.5rem;
    line-height: 1.55;
}

.se-exp-bullets li::before {
    content: '›';
    color: #64ffda;
    flex-shrink: 0;
    margin-top: 0.05em;
}

.se-exp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.32rem;
}

.se-exp-tags span {
    font-family: 'Courier New', monospace;
    font-size: 0.67rem;
    color: #8892b0;
    background: rgba(136, 146, 176, 0.07);
    border: 1px solid rgba(136, 146, 176, 0.17);
    padding: 0.18rem 0.5rem;
    border-radius: 3px;
}

/* ── Cert cards ── */
.se-cert-card {
    background: #112240;
    border: 1px solid #233554;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    height: 100%;
    text-decoration: none;
    display: block;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.se-cert-card:hover {
    border-color: rgba(100, 255, 218, 0.4);
    transform: translateY(-3px);
}

.se-cert-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 0.8rem;
}

.se-cert-name {
    font-size: 0.87rem;
    font-weight: 700;
    color: #ccd6f6;
    display: block;
    margin-bottom: 0.2rem;
}

.se-cert-org {
    font-size: 0.7rem;
    color: #8892b0;
    font-family: 'Courier New', monospace;
    display: block;
}

/* ── CTA section ── */
.se-cta {
    padding: 5rem 0;
    border-top: 1px solid #233554;
    text-align: center;
}

.se-cta h2 {
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    font-weight: 700;
    color: #ccd6f6;
    margin-bottom: 0.85rem;
}

.se-cta p {
    color: #8892b0;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.se-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
