.landing-page {
    --ink: #161a1d;
    --muted: #5e646b;
    --line: #d9ded9;
    --paper: #f7f5ef;
    --surface: #ffffff;
    --sage: #5f796c;
    --blue: #234c63;
    --gold: #b58a44;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.landing-hero {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #f4f1ea;
    background-image: url("/assets/images/antonio_cv.png");
    background-repeat: no-repeat;
    background-position: right 10vw center;
    background-size: min(34vw, 360px) auto;
    border-bottom: 1px solid var(--line);
}

.landing-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 72%;
    background: rgba(247, 245, 239, 0.94);
}

.landing-hero__content {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 70px 0;
}

.landing-eyebrow,
.landing-kicker {
    margin: 0 0 14px;
    color: var(--sage);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.landing-title {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.65rem, 7vw, 5.75rem);
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: 0;
}

.landing-lead {
    max-width: 690px;
    margin: 28px 0 0;
    color: #33383d;
    font-size: clamp(1.05rem, 2vw, 1.32rem);
    line-height: 1.65;
}

.landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.landing-actions--center {
    justify-content: center;
}

.landing-button {
    min-width: 132px;
    border-radius: 6px;
    padding: 0.78rem 1.05rem;
    font-weight: 600;
}

.landing-band {
    padding: 88px 0;
    background: var(--paper);
}

.landing-band--muted {
    background: #eef1ed;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.landing-intro {
    padding-top: 74px;
}

.landing-section-heading {
    max-width: 760px;
    margin-bottom: 36px;
}

.landing-section-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    font-weight: 650;
    letter-spacing: 0;
}

.landing-copy {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.landing-copy--large {
    margin-top: 2px;
    font-size: 1.16rem;
}

.landing-capability,
.landing-project {
    height: 100%;
    min-height: 238px;
    padding: 28px;
    background: var(--surface);
    border: 1px solid rgba(22, 26, 29, 0.09);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(22, 26, 29, 0.06);
}

.landing-capability h3,
.landing-project h3 {
    margin: 0 0 14px;
    font-size: 1.22rem;
    line-height: 1.25;
    font-weight: 650;
}

.landing-capability p,
.landing-project p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.landing-project {
    display: flex;
    flex-direction: column;
}

.landing-project__tag {
    min-height: 22px;
    margin-bottom: 14px !important;
    color: var(--blue) !important;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.landing-project a {
    margin-top: auto;
    padding-top: 24px;
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

.landing-project a:hover {
    color: var(--gold);
}

.landing-proof {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-proof li {
    padding: 18px 20px;
    background: var(--surface);
    border-left: 4px solid var(--gold);
    border-radius: 6px;
    color: #30363b;
    box-shadow: 0 14px 34px rgba(22, 26, 29, 0.05);
}

.landing-cta {
    padding: 86px 0;
    text-align: center;
    color: #ffffff;
    background: #0b1114;
}

.landing-cta .landing-kicker {
    color: #f0c56f;
}

.landing-cta__title {
    max-width: 880px;
    margin: 0 auto;
    color: #ffffff;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.1;
    font-weight: 650;
    letter-spacing: 0;
}

.landing-cta .btn-light {
    color: #0b1114;
    background: #ffffff;
    border-color: #ffffff;
}

.landing-cta .btn-outline-light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.84);
}

.landing-cta .btn-outline-light:hover {
    color: #0b1114;
    background: #ffffff;
    border-color: #ffffff;
}

@media (max-width: 991px) {
    .landing-hero {
        min-height: auto;
        background-position: right 24px bottom 24px;
        background-size: 190px auto;
    }

    .landing-hero::before {
        width: 100%;
        background: rgba(247, 245, 239, 0.86);
    }

    .landing-hero__content {
        padding: 58px 0 230px;
    }
}

@media (max-width: 575px) {
    .landing-hero {
        background-size: 150px auto;
        background-position: right 16px bottom 18px;
    }

    .landing-hero__content {
        width: min(100% - 28px, 1120px);
        padding: 44px 0 190px;
    }

    .landing-band,
    .landing-cta {
        padding: 58px 0;
    }

    .landing-actions {
        width: 100%;
    }

    .landing-button {
        width: 100%;
    }

    .landing-capability,
    .landing-project {
        min-height: auto;
        padding: 24px;
    }
}
