@supports selector(body:has(> .fm-landing)) {
    html:has(> body > .fm-landing),
    body:has(> .fm-landing) {
        margin: 0;
        background: #24150f;
    }
}

.fm-landing {
    --fm-deep: #24150f;
    --fm-earth: #3a2418;
    --fm-earth-2: #5b3621;
    --fm-copper: #df6b27;
    --fm-copper-2: #b94e18;
    --fm-green: #1f7a53;
    --fm-green-2: #dff4e8;
    --fm-cream: #fbf7f1;
    --fm-sand: #f1e5d7;
    --fm-graphite: #232527;
    --fm-muted: #6d625b;
    --fm-line: rgba(36, 21, 15, 0.14);
    color: var(--fm-graphite);
    background: var(--fm-cream);
    font-family: Inter, Manrope, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1.5;
}

.fm-landing *,
.fm-landing *::before,
.fm-landing *::after {
    box-sizing: border-box;
}

.fm-landing a {
    color: inherit;
    text-decoration: none;
}

.fm-landing img {
    display: block;
    max-width: 100%;
}

.fm-landing button,
.fm-landing input,
.fm-landing textarea {
    font: inherit;
}

.fm-landing button {
    cursor: pointer;
}

.fm-landing :focus-visible {
    outline: 3px solid rgba(223, 107, 39, 0.55);
    outline-offset: 4px;
}

.fm-landing .fm-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.fm-landing .fm-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(36, 21, 15, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.fm-landing .fm-header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.fm-landing .fm-brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
    min-width: 0;
}

.fm-landing .fm-brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 0;
    background: transparent;
    border: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.fm-landing .fm-brand-mark img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.fm-landing .fm-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 750;
}

.fm-landing .fm-nav a {
    position: relative;
    padding: 10px 0;
}

.fm-landing .fm-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    background: var(--fm-copper);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.fm-landing .fm-nav a:hover,
.fm-landing .fm-nav a:focus-visible {
    color: #fff;
}

.fm-landing .fm-nav a:hover::after,
.fm-landing .fm-nav a:focus-visible::after {
    transform: scaleX(1);
}

.fm-landing .fm-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fm-landing .fm-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.fm-landing .fm-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
    border-radius: 99px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.fm-landing.fm-menu-open .fm-menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.fm-landing.fm-menu-open .fm-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.fm-landing.fm-menu-open .fm-menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.fm-landing .fm-mobile-nav {
    display: none;
    padding: 0 0 22px;
}

.fm-landing .fm-mobile-nav a {
    display: block;
    padding: 13px 0;
    color: rgba(255, 255, 255, 0.84);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 800;
}

.fm-landing .fm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    padding: 13px 18px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 850;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.fm-landing .fm-btn:hover {
    transform: translateY(-2px);
}

.fm-landing .fm-btn-primary {
    background: var(--fm-copper);
    color: #fff;
    box-shadow: 0 18px 36px rgba(223, 107, 39, 0.28);
}

.fm-landing .fm-btn-primary:hover {
    background: var(--fm-copper-2);
    box-shadow: 0 22px 42px rgba(223, 107, 39, 0.34);
}

.fm-landing .fm-btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
}

.fm-landing .fm-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.fm-landing .fm-btn-light {
    background: #fff;
    color: var(--fm-deep);
    border-color: rgba(36, 21, 15, 0.12);
    box-shadow: 0 16px 34px rgba(36, 21, 15, 0.08);
}

.fm-landing .fm-btn-light:hover {
    border-color: rgba(223, 107, 39, 0.35);
    color: var(--fm-copper-2);
}

.fm-landing .fm-btn-green {
    background: var(--fm-green);
    color: #fff;
    box-shadow: 0 16px 34px rgba(31, 122, 83, 0.22);
}

.fm-landing .fm-btn-green:hover {
    background: #176342;
}

.fm-landing .fm-hero {
    position: relative;
    min-height: 660px;
    background: var(--fm-deep);
    color: #fff;
}

.fm-landing .fm-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 640ms ease;
}

.fm-landing .fm-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.fm-landing .fm-slide-bg,
.fm-landing .fm-slide-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.fm-landing .fm-slide-bg img {
    object-fit: cover;
}

.fm-landing .fm-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at 82% 20%, rgba(223, 107, 39, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(36, 21, 15, 0.94) 0%, rgba(36, 21, 15, 0.78) 42%, rgba(36, 21, 15, 0.34) 78%, rgba(36, 21, 15, 0.18) 100%),
    linear-gradient(0deg, rgba(36, 21, 15, 0.62), transparent 55%);
}

.fm-landing .fm-slide-content {
    position: relative;
    z-index: 2;
    min-height: 660px;
    display: grid;
    grid-template-columns: minmax(0, 700px) minmax(180px, 1fr);
    align-items: center;
    gap: 32px;
    padding: 96px 0 86px;
}

.fm-landing .fm-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.fm-landing .fm-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fm-copper);
    box-shadow: 0 0 0 6px rgba(223, 107, 39, 0.14);
}

.fm-landing .fm-hero .fm-hero-title {
    margin: 18px 0 18px;
    max-width: 760px;
    color: #fff;
    font-size: clamp(2.45rem, 5vw, 5.65rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
    font-weight: 950;
}

.fm-landing .fm-hero .fm-hero-title span {
    color: #ffb278;
}

.fm-landing .fm-hero p {
    margin: 0;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.fm-landing .fm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.fm-landing .fm-hero-proof {
    align-self: end;
    justify-self: end;
    width: min(310px, 100%);
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
    box-shadow: none;
}

.fm-landing .fm-hero-proof img {
    margin: 0 auto;
    max-height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.42));
}

.fm-landing .fm-hero-proof p {
    display: none;
}

.fm-landing .fm-slider-controls {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.fm-landing .fm-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    transition: width 180ms ease, background 180ms ease;
}

.fm-landing .fm-dot.is-active {
    width: 34px;
    background: var(--fm-copper);
}

.fm-landing .fm-arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
    transform: translateY(-50%);
}

.fm-landing .fm-arrow:hover {
    background: rgba(0, 0, 0, 0.34);
}

.fm-landing .fm-arrow-prev {
    left: 20px;
}

.fm-landing .fm-arrow-next {
    right: 20px;
}

.fm-landing .fm-section {
    padding: 96px 0;
}

.fm-landing .fm-section-dark {
    background: radial-gradient(circle at 12% 10%, rgba(223, 107, 39, 0.16), transparent 26%),
    linear-gradient(180deg, var(--fm-deep), #171311);
    color: #fff;
}

.fm-landing .fm-section-light {
    background: var(--fm-cream);
}

.fm-landing .fm-section-sand {
    background: linear-gradient(180deg, #fff, var(--fm-sand));
}

.fm-landing .fm-section-head {
    max-width: 760px;
    margin-bottom: 42px;
}

.fm-landing .fm-section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.fm-landing .fm-eyebrow {
    display: block;
    margin-bottom: 10px;
    color: var(--fm-copper);
    font-size: 0.78rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.fm-landing .fm-section-dark .fm-eyebrow {
    color: #ffb278;
}

.fm-landing h2 {
    margin: 0;
    color: var(--fm-deep);
    font-size: clamp(2rem, 3.3vw, 3.35rem);
    line-height: 1.02;
    letter-spacing: -0.035em;
    font-weight: 950;
}

.fm-landing .fm-section-dark h2 {
    color: #fff;
}

.fm-landing .fm-section-head p {
    margin: 16px 0 0;
    color: var(--fm-muted);
    font-size: 1.05rem;
}

.fm-landing .fm-section-dark .fm-section-head p {
    color: rgba(255, 255, 255, 0.72);
}

.fm-landing .fm-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.fm-landing .fm-pillar-card {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    color: var(--fm-graphite);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.fm-landing .fm-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.fm-landing .fm-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #ddd;
    overflow: hidden;
}

.fm-landing .fm-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease;
}

.fm-landing .fm-pillar-card:hover .fm-card-media img {
    transform: scale(1.04);
}

.fm-landing .fm-card-icon {
    position: absolute;
    left: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--fm-copper);
    color: #fff;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.fm-landing .fm-card-icon svg,
.fm-landing .fm-mini-icon svg,
.fm-landing .fm-feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fm-landing .fm-card-body {
    padding: 24px;
}

.fm-landing h3 {
    margin: 0;
    color: var(--fm-deep);
    font-size: 1.28rem;
    line-height: 1.16;
    letter-spacing: -0.015em;
    font-weight: 920;
}

.fm-landing .fm-card-body p {
    margin: 12px 0 18px;
    color: var(--fm-muted);
}

.fm-landing .fm-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fm-copper-2);
    font-weight: 900;
}

.fm-landing .fm-link:hover {
    color: var(--fm-deep);
}

.fm-landing .fm-employment-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: 56px;
}

.fm-landing .fm-visual-panel {
    position: relative;
    min-height: 0;
    aspect-ratio: 0.74 / 1;
    border-radius: 30px;
    background: #f6f0e8;
    border: 1px solid rgba(36, 21, 15, 0.1);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(36, 21, 15, 0.13);
}

.fm-landing .fm-visual-panel::before {
    content: none;
}

.fm-landing .fm-visual-panel::after {
    content: none;
}

.fm-landing .fm-talent-bubbles {
    position: absolute;
    inset: 24px 24px 132px;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.fm-landing .fm-talent-bubble {
    position: relative;
    display: grid;
    place-items: end center;
    margin: 0;
    overflow: hidden;
    width: auto;
    height: auto;
    inset: auto;
    border-radius: 18px;
    background: #f6f0e8;
    border: 1px solid rgba(223, 107, 39, 0.22);
    opacity: 1;
    transform: none;
}

.fm-landing .fm-talent-bubble img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: none;
}

.fm-landing .fm-talent-bubble.is-third img,
.fm-landing .fm-talent-bubble.is-fourth img {
    width: 100%;
}

.fm-landing .fm-talent-bubble.is-main,
.fm-landing .fm-talent-bubble.is-second,
.fm-landing .fm-talent-bubble.is-third,
.fm-landing .fm-talent-bubble.is-fourth {
    inset: auto;
    width: auto;
    height: auto;
    z-index: 1;
    background: #f6f0e8;
}

.fm-landing .fm-panel-stat {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.fm-landing .fm-panel-stat div {
    padding: 17px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(36, 21, 15, 0.08);
    backdrop-filter: blur(10px);
}

.fm-landing .fm-panel-stat strong {
    display: block;
    color: var(--fm-deep);
    font-size: 1.55rem;
    line-height: 1;
    font-weight: 950;
}

.fm-landing .fm-panel-stat span {
    display: block;
    margin-top: 5px;
    color: var(--fm-muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.fm-landing .fm-opportunities {
    display: grid;
    gap: 16px;
}

.fm-landing .fm-opportunity {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(36, 21, 15, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    text-align: left;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.fm-landing .fm-opportunity:hover,
.fm-landing .fm-opportunity.is-active {
    transform: translateY(-3px);
    border-color: rgba(223, 107, 39, 0.38);
    box-shadow: 0 18px 42px rgba(36, 21, 15, 0.09);
    background: #fff;
}

.fm-landing .fm-mini-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(223, 107, 39, 0.12);
    color: var(--fm-copper-2);
}

.fm-landing .fm-opportunity h3 {
    font-size: 1.08rem;
}

.fm-landing .fm-opportunity p {
    margin: 8px 0 12px;
    color: var(--fm-muted);
}

.fm-landing .fm-diversity-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 54px;
}

.fm-landing .fm-diversity-copy {
    max-width: 640px;
}

.fm-landing .fm-diversity-copy p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.08rem;
}

.fm-landing .fm-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0 30px;
}

.fm-landing .fm-metric {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fm-landing .fm-metric strong {
    display: block;
    color: #ffb278;
    font-size: 1.7rem;
    font-weight: 950;
    line-height: 1;
}

.fm-landing .fm-metric span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 750;
}

.fm-landing .fm-person-card {
    position: relative;
    min-height: 500px;
    border-radius: 30px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 18%, rgba(223, 107, 39, 0.24), transparent 34%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 44%),
    #12100e;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.fm-landing .fm-person-card img {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(92%, 430px);
    height: 92%;
    object-fit: contain;
    object-position: center bottom;
    transform: translateX(-50%);
    filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.42));
}

.fm-landing .fm-person-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(36, 21, 15, 0.88), rgba(36, 21, 15, 0.12) 58%);
}

.fm-landing .fm-person-caption {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    backdrop-filter: blur(10px);
}

.fm-landing .fm-person-caption strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
}

.fm-landing .fm-person-caption span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
}

.fm-landing .fm-hub-grid {
    display: grid;
    grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
}

.fm-landing .fm-hub-tabs {
    display: grid;
    gap: 12px;
    align-content: start;
}

.fm-landing .fm-hub-tab {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    text-align: left;
    font-weight: 900;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.fm-landing .fm-hub-tab:hover,
.fm-landing .fm-hub-tab.is-active {
    background: var(--fm-copper);
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: translateX(4px);
}

.fm-landing .fm-hub-tab span:last-child {
    color: #ffb278;
    font-size: 1rem;
    transition: color 180ms ease;
}

.fm-landing .fm-hub-tab:hover span:last-child,
.fm-landing .fm-hub-tab.is-active span:last-child {
    color: #fff;
}

.fm-landing .fm-hub-card {
    position: relative;
    min-height: 410px;
    padding: 32px;
    border-radius: 22px;
    background: rgba(25, 28, 30, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 26px 76px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.fm-landing .fm-hub-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 86% 18%, rgba(223, 107, 39, 0.16), transparent 30%);
    pointer-events: none;
}

.fm-landing .fm-hub-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
    align-items: start;
}

.fm-landing .fm-hub-label {
    display: inline-flex;
    width: fit-content;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255, 178, 120, 0.14);
    color: #ffd071;
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fm-landing .fm-hub-card h3 {
    margin-top: 22px;
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.fm-landing .fm-hub-card p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
}

.fm-landing .fm-hub-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.fm-landing .fm-hub-meta span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.82rem;
    font-weight: 800;
}

.fm-landing .fm-hub-card .fm-btn {
    margin-top: 28px;
}

.fm-landing .fm-hub-images {
    display: block;
}

.fm-landing .fm-hub-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.05);
    aspect-ratio: 1 / 1.06;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.fm-landing .fm-hub-image:first-child {
    aspect-ratio: 1 / 1.06;
}

.fm-landing .fm-hub-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 180ms ease, transform 220ms ease;
}

.fm-landing .fm-hub-card.is-changing .fm-hub-image img,
.fm-landing .fm-hub-card.is-changing .fm-hub-copy {
    opacity: 0.38;
}

.fm-landing .fm-tech-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.6fr);
    gap: 48px;
    align-items: start;
}

.fm-landing .fm-tech-intro {
    position: sticky;
    top: 104px;
}

.fm-landing .fm-tech-intro h2 {
    color: #fff;
    max-width: 560px;
}

.fm-landing .fm-tech-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.fm-landing .fm-tech-card {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.fm-landing .fm-tech-card:hover {
    transform: translateY(-4px);
    border-color: rgba(223, 107, 39, 0.42);
    background: rgba(255, 255, 255, 0.08);
}

.fm-landing .fm-tech-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 16px;
    background: rgba(223, 107, 39, 0.12);
    color: var(--fm-copper);
}

.fm-landing .fm-tech-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fm-landing .fm-tech-card h3 {
    color: #fff;
    font-size: 1.48rem;
    line-height: 1.2;
}

.fm-landing .fm-tech-card p {
    margin: 18px 0 24px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
}

.fm-landing .fm-tech-card .fm-link {
    margin-top: auto;
    color: #ffb278;
}

.fm-landing .fm-tech-card .fm-link:hover {
    color: #fff;
}

.fm-landing .fm-safety-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.fm-landing .fm-safety-card {
    position: relative;
    display: block;
    min-height: 330px;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 22px 54px rgba(36, 21, 15, 0.12);
    border: 1px solid rgba(36, 21, 15, 0.08);
    text-decoration: none;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.fm-landing .fm-safety-card img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    transition: transform 320ms ease;
}

.fm-landing .fm-safety-card:hover,
.fm-landing .fm-safety-card:focus-visible {
    transform: translateY(-8px);
    border-color: rgba(223, 107, 39, 0.42);
    box-shadow: 0 30px 64px rgba(36, 21, 15, 0.2);
}

.fm-landing .fm-safety-card:hover img,
.fm-landing .fm-safety-card:focus-visible img {
    transform: scale(1.045);
}

.fm-landing .fm-safety-card:focus-visible {
    outline: 3px solid var(--fm-copper);
    outline-offset: 4px;
}

.fm-landing .fm-safety-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(36, 21, 15, 0.42));
}

.fm-landing .fm-safety-bubble {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 0;
    z-index: 2;
    min-height: 118px;
    display: grid;
    place-items: center;
    padding: 18px;
    border-radius: 18px 18px 0 0;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -12px 28px rgba(36, 21, 15, 0.1);
}

.fm-landing .fm-safety-bubble h3 {
    color: var(--fm-copper-2);
    text-align: center;
    text-transform: uppercase;
    font-size: 1.22rem;
    line-height: 1.12;
}

.fm-landing .fm-learning-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.fm-landing .fm-feature {
    padding: 24px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(36, 21, 15, 0.1);
    box-shadow: 0 16px 44px rgba(36, 21, 15, 0.06);
}

.fm-landing .fm-feature-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: rgba(31, 122, 83, 0.11);
    color: var(--fm-green);
}

.fm-landing .fm-feature:nth-child(2n) .fm-feature-icon {
    background: rgba(223, 107, 39, 0.12);
    color: var(--fm-copper-2);
}

.fm-landing .fm-feature h3 {
    font-size: 1.04rem;
}

.fm-landing .fm-feature p {
    margin: 10px 0 0;
    color: var(--fm-muted);
    font-size: 0.94rem;
}

.fm-landing .fm-sustainability {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 42px;
    align-items: start;
}

.fm-landing .fm-green-panel {
    padding: 32px;
    border-radius: 26px;
    background: radial-gradient(circle at 18% 0%, rgba(218, 255, 226, 0.2), transparent 30%),
    linear-gradient(135deg, #113e2b, var(--fm-green));
    color: #fff;
    min-height: 100%;
    box-shadow: 0 24px 70px rgba(31, 122, 83, 0.18);
}

.fm-landing .fm-green-panel h2 {
    color: #fff;
}

.fm-landing .fm-green-panel p {
    color: rgba(255, 255, 255, 0.78);
}

.fm-landing .fm-green-visual {
    position: relative;
    overflow: hidden;
    margin-top: 28px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.fm-landing .fm-green-visual img {
    width: 100%;
    aspect-ratio: 16 / 12;
    object-fit: cover;
}

.fm-landing .fm-green-visual::after {
    content: "Minería verde";
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(17, 62, 43, 0.82);
    color: #dff4e8;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.fm-landing .fm-topic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.fm-landing .fm-topic {
    padding: 20px;
    border-radius: 18px;
    background: #eef8f1;
    border: 1px solid rgba(31, 122, 83, 0.2);
    box-shadow: 0 16px 38px rgba(31, 122, 83, 0.08);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.fm-landing .fm-topic:first-child {
    grid-column: 1 / -1;
}

.fm-landing .fm-topic:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 122, 83, 0.34);
    box-shadow: 0 20px 46px rgba(31, 122, 83, 0.14);
}

.fm-landing .fm-topic strong {
    display: block;
    color: var(--fm-deep);
    font-weight: 920;
}

.fm-landing .fm-topic span {
    display: block;
    margin-top: 7px;
    color: var(--fm-muted);
    font-size: 0.92rem;
}

.fm-landing .fm-topic a {
    display: inline-flex;
    margin-top: 12px;
    color: var(--fm-green);
    font-weight: 900;
}

.fm-landing .fm-faq {
    max-width: 870px;
    margin: 0 auto;
    display: grid;
    gap: 13px;
}

.fm-landing .fm-faq-item {
    border: 1px solid rgba(241, 229, 215, 0.45);
    border-radius: 18px;
    background: rgba(241, 229, 215, 0.94);
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.fm-landing .fm-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    color: var(--fm-deep);
    text-align: left;
    font-weight: 900;
}

.fm-landing .fm-faq-question svg {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    transition: transform 180ms ease;
}

.fm-landing .fm-faq-item.is-open .fm-faq-question svg {
    transform: rotate(180deg);
}

.fm-landing .fm-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 200ms ease;
}

.fm-landing .fm-faq-item.is-open .fm-faq-answer {
    grid-template-rows: 1fr;
}

.fm-landing .fm-faq-answer > div {
    min-height: 0;
    overflow: hidden;
}

.fm-landing .fm-faq-answer p {
    margin: 0;
    padding: 0 22px 22px;
    color: #5f5148;
}

.fm-landing .fm-footer {
    width: 100%;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 0.8fr;
    gap: 30px;
    padding: 48px max(20px, calc((100% - 1180px) / 2)) 42px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(circle at 86% 10%, rgba(223, 107, 39, 0.14), transparent 30%),
    linear-gradient(135deg, #17110e, #27170f 58%, #130f0d);
    color: rgba(255, 246, 238, 0.76);
}

.fm-landing .fm-footer h3,
.fm-landing .fm-footer strong {
    color: #fff;
}

.fm-landing .fm-footer h3 {
    font-size: 1.25rem;
}

.fm-landing .fm-footer p,
.fm-landing .fm-footer li {
    font-size: 0.92rem;
}

.fm-landing .fm-footer p {
    color: rgba(255, 246, 238, 0.74);
}

.fm-landing .fm-footer a {
    color: rgba(255, 246, 238, 0.76);
}

.fm-landing .fm-footer ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: grid;
    gap: 8px;
}

.fm-landing .fm-footer a:hover {
    color: #ffb278;
}

.fm-landing .fm-by-dl {
    width: 100%;
    align-self: center;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fm-landing .fm-by-dl img {
    width: 60%;
    max-width: 240px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1040px) {
    .fm-landing .fm-nav {
        display: none;
    }

    .fm-landing .fm-menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .fm-landing.fm-menu-open .fm-mobile-nav {
        display: block;
    }

    .fm-landing .fm-slide-content,
    .fm-landing .fm-employment-grid,
    .fm-landing .fm-diversity-grid,
    .fm-landing .fm-hub-grid,
    .fm-landing .fm-tech-grid,
    .fm-landing .fm-sustainability {
        grid-template-columns: 1fr;
    }

    .fm-landing .fm-hub-content {
        grid-template-columns: 1fr;
    }

    .fm-landing .fm-hub-images {
        max-width: 420px;
    }

    .fm-landing .fm-tech-intro {
        position: static;
    }

    .fm-landing .fm-hero-proof {
        justify-self: start;
        align-self: start;
        width: min(230px, 100%);
    }

    .fm-landing .fm-pillars,
    .fm-landing .fm-safety-grid,
    .fm-landing .fm-learning-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fm-landing .fm-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fm-landing .fm-by-dl {
        justify-self: center;
        text-align: center;
    }
}

@media (max-width: 720px) {
    .fm-landing .fm-container {
        width: min(100% - 28px, 1180px);
    }

    .fm-landing .fm-actions > .fm-btn {
        display: none;
    }

    .fm-landing .fm-hero,
    .fm-landing .fm-slide-content {
        min-height: 720px;
    }

    .fm-landing .fm-slide-content {
        padding-top: 70px;
        padding-bottom: 88px;
    }

    .fm-landing .fm-hero .fm-hero-title {
        font-size: clamp(2.25rem, 12vw, 3.5rem);
    }

    .fm-landing .fm-hero-actions {
        flex-direction: column;
    }

    .fm-landing .fm-btn {
        width: 100%;
    }

    .fm-landing .fm-arrow {
        display: none;
    }

    .fm-landing .fm-section {
        padding: 70px 0;
    }

    .fm-landing .fm-pillars,
    .fm-landing .fm-learning-grid,
    .fm-landing .fm-metrics,
    .fm-landing .fm-topic-grid,
    .fm-landing .fm-tech-cards,
    .fm-landing .fm-footer {
        grid-template-columns: 1fr;
    }

    .fm-landing .fm-tech-card {
        min-height: auto;
        padding: 24px;
    }

    .fm-landing .fm-hub-card {
        padding: 24px;
    }

    .fm-landing .fm-hub-tabs {
        gap: 8px;
    }

    .fm-landing .fm-hub-tab {
        padding: 15px 16px;
    }

    .fm-landing .fm-hub-images {
        max-width: none;
    }

    .fm-landing .fm-visual-panel,
    .fm-landing .fm-person-card {
        border-radius: 22px;
    }

    .fm-landing .fm-talent-bubbles {
        inset: 16px 16px 124px;
        gap: 12px;
    }

    .fm-landing .fm-panel-stat {
        left: 16px;
        right: 16px;
        bottom: 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fm-landing .fm-opportunity {
        grid-template-columns: 1fr;
    }

    .fm-landing .fm-safety-card {
        min-height: 280px;
        border-radius: 16px;
    }

    .fm-landing .fm-safety-card img {
        min-height: 280px;
    }

}

@media (prefers-reduced-motion: reduce) {
    .fm-landing *,
    .fm-landing *::before,
    .fm-landing *::after {
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
        animation-duration: 1ms !important;
    }
}
