/* =========================================================
   DIGITECULTRA — Team / Careers / Awards / Legal (Part 6)
   ========================================================= */

/* ---------- Team archive ---------- */
.team-section {
    margin-bottom: 64px;
}
.team-section-label {
    font-family: var(--font-mono); font-size: 12px;
    color: var(--accent); letter-spacing: 0.12em;
    text-transform: uppercase; margin-bottom: 20px;
}
.team-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}
.team-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); overflow: hidden;
    transition: all 0.25s ease; display: flex; flex-direction: column;
}
.team-card:hover { border-color: rgba(34, 224, 120, 0.3); transform: translateY(-2px); }
.team-card-image {
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 48px; font-weight: 700;
    color: var(--accent); position: relative; overflow: hidden;
}
.team-card-image::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(34, 224, 120, 0.08), transparent 60%);
}
.team-card-body { padding: 22px; flex: 1; }
.team-card-name {
    font-size: 18px; font-weight: 600;
    margin-bottom: 4px; letter-spacing: -0.005em;
}
.team-card-role {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--accent); letter-spacing: 0.08em;
    text-transform: uppercase; margin-bottom: 10px;
}
.team-card-bio { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ---------- Single team member ---------- */
.team-hero {
    padding: 64px 0;
}
.team-hero-grid {
    display: grid; grid-template-columns: 320px 1fr;
    gap: 64px; align-items: start;
}
@media (max-width: 800px) { .team-hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.team-hero-image {
    aspect-ratio: 1 / 1; border-radius: var(--radius);
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 96px;
    font-weight: 700; color: var(--accent);
    overflow: hidden; position: relative;
}
.team-hero-image::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(34, 224, 120, 0.1), transparent 60%);
}
.team-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.team-hero-meta {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--accent); letter-spacing: 0.12em;
    text-transform: uppercase; margin-bottom: 16px;
}
.team-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700; line-height: 1.05;
    letter-spacing: -0.02em; margin-bottom: 12px;
}
.team-hero-role {
    font-size: 20px; color: var(--text-muted); margin-bottom: 24px;
}
.team-hero-bio {
    font-size: 17px; line-height: 1.7;
    color: var(--text-muted); margin-bottom: 32px;
}
.team-hero-links {
    display: flex; gap: 12px;
}
.team-hero-link {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px; border: 1px solid var(--border);
    border-radius: 6px; font-family: var(--font-mono);
    font-size: 11px; color: var(--text-muted);
    letter-spacing: 0.08em; text-transform: uppercase;
    transition: all 0.2s ease;
}
.team-hero-link:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Careers / Jobs ---------- */
.jobs-list {
    display: flex; flex-direction: column; gap: 4px;
    border-top: 1px solid var(--border);
}
.job-row {
    display: grid; grid-template-columns: 1fr auto auto auto;
    gap: 24px; align-items: center;
    padding: 24px 0; border-bottom: 1px solid var(--border);
    transition: padding 0.2s ease;
}
.job-row:hover { padding-left: 16px; padding-right: 16px; }
@media (max-width: 700px) {
    .job-row { grid-template-columns: 1fr; gap: 8px; }
}
.job-row-title {
    font-size: 20px; font-weight: 600;
    letter-spacing: -0.005em;
}
.job-row-meta {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--text-dim); letter-spacing: 0.08em;
    text-transform: uppercase;
}
.job-row-meta.accent { color: var(--accent); }
.job-row-arrow {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(34, 224, 120, 0.08);
    color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; transition: all 0.2s ease;
}
.job-row:hover .job-row-arrow {
    background: var(--accent); color: #000; transform: translateX(4px);
}

/* ---------- Single job ---------- */
.job-hero {
    padding: 56px 0 24px;
}
.job-hero-meta {
    display: flex; flex-wrap: wrap; gap: 12px;
    font-family: var(--font-mono); font-size: 11px;
    color: var(--text-dim); letter-spacing: 0.08em;
    text-transform: uppercase; margin-bottom: 20px;
}
.job-hero-meta span:not(.sep) {
    padding: 4px 10px; background: var(--bg-card);
    border: 1px solid var(--border); border-radius: 4px;
}
.job-hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700; line-height: 1.05;
    letter-spacing: -0.02em; margin-bottom: 16px;
}
.job-body {
    display: grid; grid-template-columns: 1fr 320px;
    gap: 64px; align-items: start;
}
@media (max-width: 900px) { .job-body { grid-template-columns: 1fr; } }
.job-content {
    font-size: 17px; line-height: 1.75; color: var(--text-muted);
}
.job-content h2 {
    font-size: 22px; font-weight: 600;
    color: var(--text); margin: 40px 0 12px;
}
.job-content ul { list-style: none; padding: 0; margin: 16px 0; }
.job-content ul li {
    padding: 8px 0 8px 28px; position: relative;
    line-height: 1.6;
}
.job-content ul li::before {
    content: '→'; position: absolute; left: 0;
    color: var(--accent); font-weight: 700;
}
.job-apply-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px;
    position: sticky; top: 100px;
}
.job-apply-card h3 {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--accent); letter-spacing: 0.12em;
    text-transform: uppercase; margin-bottom: 16px;
}
.job-apply-row {
    display: flex; justify-content: space-between;
    padding: 10px 0; border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.job-apply-row:last-of-type { border-bottom: none; margin-bottom: 16px; }
.job-apply-label { color: var(--text-muted); }
.job-apply-value { color: var(--text); font-weight: 500; }

/* ---------- Awards / Sustainability ---------- */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.award-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 28px;
    transition: all 0.2s ease;
}
.award-card:hover { border-color: rgba(34, 224, 120, 0.3); transform: translateY(-2px); }
.award-card-year {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--accent); letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 12px;
}
.award-card-title {
    font-size: 18px; font-weight: 600;
    line-height: 1.3; margin-bottom: 8px;
    letter-spacing: -0.005em;
}
.award-card-org { font-size: 13px; color: var(--text-muted); }
.award-card-category {
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 12px; color: var(--text-dim);
}

.sustainability-pillars {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px; margin: 48px 0;
}
.pillar-card {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 36px;
}
.pillar-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: rgba(34, 224, 120, 0.1);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 20px;
}
.pillar-card h3 { font-size: 20px; margin-bottom: 12px; }
.pillar-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ---------- Legal / long-form text pages ---------- */
.legal-page {
    max-width: 760px; padding: 64px 0;
}
.legal-page h1 {
    font-size: clamp(36px, 4.5vw, 52px);
    font-weight: 700; line-height: 1.05;
    letter-spacing: -0.02em; margin-bottom: 16px;
}
.legal-page > p:first-of-type {
    font-size: 17px; color: var(--text-muted);
    margin-bottom: 32px;
}
.legal-content {
    font-size: 16px; line-height: 1.75; color: var(--text-muted);
}
.legal-content h2 {
    font-size: 22px; font-weight: 600;
    color: var(--text); margin: 40px 0 12px;
    letter-spacing: -0.005em;
}
.legal-content h3 {
    font-size: 17px; font-weight: 600;
    color: var(--text); margin: 28px 0 10px;
}
.legal-content p { margin-bottom: 16px; }
.legal-content ul, .legal-content ol {
    margin: 12px 0 16px 0; padding-left: 24px;
    list-style: revert;
}
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-content strong { color: var(--text); }
.legal-content table {
    width: 100%; border-collapse: collapse; margin: 16px 0;
    font-size: 14px;
}
.legal-content th, .legal-content td {
    padding: 10px 12px; text-align: left;
    border-bottom: 1px solid var(--border);
}
.legal-content th { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.legal-meta {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--text-dim); letter-spacing: 0.1em;
    text-transform: uppercase; margin-top: 48px;
    padding-top: 24px; border-top: 1px solid var(--border);
}

/* ---------- Sitemap ---------- */
.sitemap-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}
.sitemap-col h3 {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--accent); letter-spacing: 0.12em;
    text-transform: uppercase; margin-bottom: 16px;
}
.sitemap-col ul { list-style: none; padding: 0; margin: 0; }
.sitemap-col li { padding: 6px 0; }
.sitemap-col a { color: var(--text-muted); font-size: 14px; }
.sitemap-col a:hover { color: var(--accent); }

/* ---------- Glossary ---------- */
.glossary-letters {
    display: flex; gap: 6px; flex-wrap: wrap;
    padding: 20px 0; margin-bottom: 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.glossary-letter {
    padding: 6px 11px;
    font-family: var(--font-mono); font-size: 12px;
    color: var(--text-muted); border: 1px solid var(--border);
    border-radius: 4px; transition: all 0.2s ease;
}
.glossary-letter:hover { border-color: var(--accent); color: var(--accent); }
.glossary-list {
    border-top: 1px solid var(--border);
}
.glossary-term {
    padding: 24px 0; border-bottom: 1px solid var(--border);
    display: grid; grid-template-columns: 220px 1fr;
    gap: 32px; align-items: baseline;
}
@media (max-width: 700px) { .glossary-term { grid-template-columns: 1fr; gap: 8px; } }
.glossary-term-name {
    font-size: 18px; font-weight: 600;
    letter-spacing: -0.005em;
}
.glossary-term-acronym {
    font-family: var(--font-mono); font-size: 11px;
    color: var(--accent); letter-spacing: 0.1em;
    text-transform: uppercase; margin-top: 4px;
}
.glossary-term-def {
    color: var(--text-muted); line-height: 1.65;
}
