@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.page-header {
    padding: 160px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.048) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(50px, 10vw, 90px);
    font-weight: 700;
    letter-spacing: -3px;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
}

.page-header .lead {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto 8px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.page-header .sub {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.page-header h1 {
    animation: fadeUp 0.55s ease forwards;
}

.story-section {
    max-width: 820px;
    margin: 0 auto;
    padding: 64px 40px 72px;
}

.story-eyebrow {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 18px;
}

.story-section .story-sub-label {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-top: 40px;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 400;
}

.story-section h2 {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.story-section p {
    font-size: 15px;
    line-height: 1.95;
    color: rgba(255,255,255,0.82);
    margin-bottom: 22px;
    font-weight: 400;
}

.story-section p:last-child {
    margin-bottom: 0;
}

.values-section {
    padding: 100px 40px;
    background: rgba(255,255,255,0.018);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.12);
}

.value-card {
    background: #000;
    padding: 50px 40px;
    transition: all 0.4s;
    position: relative;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #fff, transparent);
    transition: height 0.4s;
}

.value-card:hover::before {
    height: 100%;
}

.value-card:hover {
    background: rgba(255,255,255,0.055);
    transform: translateY(-4px);
}

.value-num {
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.25);
    margin-bottom: 14px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -1px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.78);
    font-weight: 400;
}

/* ── TEAM SECTION ────────────────────────── */

.team-section {
    padding: 100px 40px;
    background: rgba(255,255,255,0.018);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.team-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.team-label {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.42);
    margin-bottom: 56px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.team-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.team-dept {
    margin-bottom: 52px;
}

.team-dept:last-child {
    margin-bottom: 0;
}

.dept-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.dept-row::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

.dept-number {
    font-size: 10px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.28);
    flex-shrink: 0;
}

.dept-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.dept-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 24px;
    max-width: 560px;
}

.dept-members {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.member-card {
    flex: 1 0 186px;
    max-width: 240px;
    height: 196px;
    padding: 20px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255,255,255,0.55);
    transition: width 0.32s ease;
}

.member-card:hover::before { width: 100%; }

.member-card:hover {
    background: rgba(255,255,255,0.062);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 18px 48px rgba(0,0,0,0.5);
}

.member-monogram {
    position: absolute;
    top: 12px;
    right: 10px;
    font-size: 70px;
    font-weight: 700;
    color: rgba(255,255,255,0.10);
    letter-spacing: -4px;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.member-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.2px;
    margin-bottom: 5px;
    color: #fff;
    position: relative;
    z-index: 1;
}

.member-role {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.2px;
    line-height: 1.55;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.cta-section {
    padding: 100px 40px;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(36px, 7vw, 56px);
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -2px;
}

.cta-section p {
    max-width: 520px;
    margin: 0 auto 40px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.68);
    font-weight: 400;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s;
    min-height: 52px;
    touch-action: manipulation;
}

.btn:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255,255,255,0.2);
}

@media (max-width: 968px) {
    .page-header { padding: 120px 32px 56px; }
    .story-section { padding: 52px 32px 60px; }
    .values-section { padding: 72px 32px; }
    .values-grid { grid-template-columns: 1fr; }
    .value-card { padding: 36px 28px; }
    .team-section { padding: 80px 32px; }
    .member-card { max-width: none; flex: 1 1 calc(50% - 6px); height: auto; min-height: 164px; }
    .cta-section { padding: 72px 32px; }
}

@media (max-width: 768px) {
    .page-header { padding: 104px 24px 48px; }
    .story-section { padding: 44px 24px 52px; }
    .values-section { padding: 60px 24px; }
    .team-section { padding: 68px 24px; }
    .cta-section { padding: 60px 24px; }
}

@media (max-width: 640px) {
    .page-header { padding: 96px 20px 44px; }
    .page-header h1 { letter-spacing: -2px; }
    .story-section { padding: 40px 20px 48px; }
    .values-section { padding: 52px 20px; }
    .value-card { padding: 32px 22px; }
    .team-section { padding: 56px 20px; }
    .member-card { max-width: none; flex: 1 1 calc(50% - 6px); min-height: 150px; }
    .cta-section { padding: 52px 20px; }
}

@media (max-width: 480px) {
    .page-header { padding: 88px 16px 40px; }
    .story-section { padding: 36px 16px 44px; }
    .values-section { padding: 48px 16px; }
    .value-card { padding: 28px 18px; }
    .team-section { padding: 48px 16px; }
    .team-dept { margin-bottom: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .team-dept:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
    .member-card { flex: 1 1 100%; height: auto; min-height: 140px; }
    .cta-section { padding: 48px 16px; }
    .btn { width: 100%; }
}

@media (max-width: 380px) {
    .page-header { padding: 80px 14px 36px; }
    .page-header h1 { letter-spacing: -1.5px; }
    .story-section { padding: 32px 14px 40px; }
    .team-section { padding: 40px 14px; }
    .values-section { padding: 40px 14px; }
}
