/* index.css */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0d1117;
    color: #f0f6fc;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

#logo {
    width: 175px;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

.container {
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 6rem 0;
}

.sectionAlt {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.eyebrow {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sectionHeading {
    max-width: 720px;
    margin-bottom: 3rem;
}

.sectionHeading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 800;
}

.sectionHeading p {
    color: #9aa4b2;
    font-size: 1.05rem;
}

.siteHeader {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(13, 17, 23, 0.75);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.headerInner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand img {
    width: 72px;
    height: auto;
}

.headerTitleContainer {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.brandTitle {
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffffff;
}

.brandSubtitle {
    color: #9aa4b2;
    font-size: 0.9rem;
}

.mainNav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.mainNav a {
    color: #c9d1d9;
    font-weight: 500;
    transition: 0.2s ease;
}

.mainNav a:hover {
    color: #ffffff;
}

.navCta {
    padding: 0.8rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: #ffffff;
}

.burgerMenu {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.burgerMenu span {
    display: block;
    width: 18px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
}

.hero {
    padding: 7rem 0 5rem;
}

.heroGrid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.heroContent h1 {
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 0.98;
    font-weight: 900;
    max-width: 900px;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.heroText {
    max-width: 700px;
    color: #9aa4b2;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.heroActions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 1.4rem;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.2s ease;
}

.btnPrimary {
    background: linear-gradient(135deg, #d4af37, #f1d77a);
    color: #0d1117;
}

.btnPrimary:hover {
    transform: translateY(-2px);
}

.btnSecondary {
    border: 1px solid rgba(255,255,255,0.14);
    color: #ffffff;
    background: rgba(255,255,255,0.03);
}

.btnSecondary:hover {
    border-color: rgba(255,255,255,0.3);
}

.heroStats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
}

.heroStats li {
    min-width: 180px;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.heroStats strong {
    display: block;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.35rem;
}

.heroStats span {
    color: #9aa4b2;
    font-size: 0.95rem;
}

.heroCard {
    padding: 2rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.20), transparent 35%),
        rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.heroCardBadge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.14);
    color: #f1d77a;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.heroCard h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.heroCard p {
    color: #9aa4b2;
    margin-bottom: 1.5rem;
}

.heroCardPoints {
    display: grid;
    gap: 0.9rem;
}

.point {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pointDot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d4af37;
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.12);
}

.cardsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.card {
    padding: 1.5rem;
    border-radius: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.28);
}

.cardIcon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(212, 175, 55, 0.12);
    color: #f1d77a;
    font-weight: 800;
}

.card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.card p {
    color: #9aa4b2;
}

.timeline {
    display: grid;
    gap: 1rem;
}

.timelineItem {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.4rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.timelineStep {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.12);
    color: #f1d77a;
    font-weight: 800;
    font-size: 1.1rem;
}

.timelineItem h3 {
    margin-bottom: 0.4rem;
    font-size: 1.25rem;
}

.timelineItem p {
    color: #9aa4b2;
}

.projectsGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.projectCard {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.projectThumb {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.projectThumbOne {
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.35), rgba(255,255,255,0.03)),
        #151b23;
}

.projectThumbTwo {
    background:
        linear-gradient(135deg, rgba(255,255,255,0.12), rgba(212, 175, 55, 0.10)),
        #10151d;
}

.projectThumbThree {
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.20), rgba(212, 175, 55, 0.05)),
        #121720;
}

.projectContent {
    padding: 1.4rem;
}

.projectTag {
    color: #d4af37;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.projectContent h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.projectContent p:last-child {
    color: #9aa4b2;
}

.aboutGrid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: start;
}

.aboutGrid h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 800;
}

.aboutText {
    display: grid;
    gap: 1rem;
}

.aboutText p {
    color: #9aa4b2;
    font-size: 1.05rem;
}

.teamGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.teamCard {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.teamPhoto {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(255,255,255,0.03));
}

.teamPhoto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teamContent {
    padding: 1.5rem;
}

.teamContent h3 {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}

.teamRole {
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 1rem;
}

.teamContent p:last-child {
    color: #9aa4b2;
}

.ctaSection {
    padding-top: 2rem;
}

.ctaBox {
    padding: 2rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.22), transparent 30%),
        rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.ctaBox h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 1rem;
    font-weight: 800;
}

.ctaBox p {
    color: #9aa4b2;
    max-width: 700px;
}

.ctaActions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.siteFooter {
    padding: 2rem 0 3rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 4rem;
}

.footerInner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footerInner p {
    color: #9aa4b2;
    margin-top: 0.4rem;
}

.footerLinks {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footerLinks a {
    color: #9aa4b2;
}

.footerLinks a:hover {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .heroGrid,
    .aboutGrid,
    .ctaBox {
        grid-template-columns: 1fr;
    }

    .cardsGrid,
    .projectsGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .mainNav {
        display: none;
    }

    .burgerMenu {
        display: inline-flex;
    }

    .cardsGrid,
    .projectsGrid,
    .teamGrid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 5rem 0 4rem;
    }

    .section {
        padding: 4.5rem 0;
    }

    .headerInner {
        min-height: 78px;
    }

    .brand img {
        width: 58px;
    }

    .brandSubtitle {
        display: none;
    }

    .timelineItem {
        grid-template-columns: 1fr;
    }

    .footerInner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 1.25rem, 1200px);
    }

    .heroContent h1 {
        font-size: 2.4rem;
    }

    .btn {
        width: 100%;
    }

    .heroStats li {
        width: 100%;
    }

    .ctaBox {
        padding: 1.5rem;
    }
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 820px) {
    .mainNav {
        display: none;
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        width: 100%;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        background: rgba(13, 17, 23, 0.98);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    }

    .mainNav.is-open {
        display: flex;
    }

    .mainNav a {
        padding: 0.95rem 1rem;
        border-radius: 12px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.05);
    }

    .mainNav .navCta {
        text-align: center;
    }

    .siteHeader {
        position: sticky;
    }

    .headerInner {
        position: relative;
    }

    .burgerMenu.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .burgerMenu.is-active span:nth-child(2) {
        opacity: 0;
    }

    .burgerMenu.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .burgerMenu span {
        transition: transform 0.25s ease, opacity 0.25s ease;
    }
}