@font-face {
    font-family: "Gilroy";
    src: url("../font/Gilroy/Gilroy-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../font/Gilroy/Gilroy-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../font/Gilroy/Gilroy-Semibold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../font/Gilroy/Gilroy-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("../font/Gilroy/Gilroy-Heavy.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

:root {
    --header-offset: 6.5rem;
}

body {
    background-color: #000;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    font-family: "Gilroy", sans-serif;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

::selection {
    background-color: #ed1c24;
    color: #ffffff;
}

.site-header {
    position: fixed;
    z-index: 50;
    width: 100%;
    background: transparent;
    transition: background-color 0.28s ease, backdrop-filter 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    /* padding-top: 1.5rem; */
    /* padding-bottom: 1.5rem; */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.2); */
    transition: border-color 0.28s ease;
}

.site-header.is-scrolled .site-header__inner {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-header__brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    text-decoration: none;
}

.site-header__brand-mark {
    position: relative;
    width: 2.05rem;
    height: 2.8rem;
    flex: 0 0 auto;
}

.site-header__brand-mark::before,
.site-header__brand-mark::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
}

.site-header__brand-mark::before {
    inset: 0 auto 0 0;
    width: 0.72rem;
}

.site-header__brand-mark::after {
    inset: 0 0 0 auto;
    width: 1.3rem;
    clip-path: polygon(100% 0, 100% 24%, 48% 50%, 100% 76%, 100% 100%, 0 50%);
}

.site-header__brand-copy {
    display: inline-flex;
    align-items: baseline;
    gap: 0.75rem;
}

.site-header__brand-title {
    font-size: clamp(2rem, 2.4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 1;
}

.site-header__brand-subtitle {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.36em;
    line-height: 1;
    opacity: 0.72;
    text-transform: uppercase;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 2vw, 2.75rem);
}

.site-header__link {
    position: relative;
    padding-bottom: 0;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-decoration: none;
    transition: color 0.24s ease;
}

.site-header__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -22px;
    height: 3px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.24s ease;
}

.site-header__link:hover,
.site-header__link:focus-visible {
    color: #ffffff;
}

.site-header__link:hover::after,
.site-header__link:focus-visible::after {
    transform: scaleX(1);
}

.site-header__toggle {
    color: #ffffff;
}

.org-line-v {
    width: 1px;
    background: linear-gradient(to bottom, #ed1c24 0%, #333333 100%);
}

.org-line-h {
    height: 1px;
    background: #333333;
}

[data-aos] {
    opacity: 0;
    will-change: opacity, transform, filter;
    transition-duration: 0.82s;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    transition-property: opacity, transform, filter;
    transition-delay: var(--aos-delay, 0ms);
}

[data-aos="fade-up"] {
    transform: translate3d(0, 2.2rem, 0);
}

[data-aos="fade-right"] {
    transform: translate3d(-2.4rem, 0, 0);
}

[data-aos="fade-left"] {
    transform: translate3d(2.4rem, 0, 0);
}

[data-aos="zoom-in"] {
    transform: translate3d(0, 1.2rem, 0) scale(0.94);
    filter: blur(10px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.section-shell {
    display: grid;
    gap: 3rem;
}

.section-body {
    min-width: 0;
}

.section-body-heading {
    margin-bottom: 3rem;
}

.page-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
    
}

.body-copy {
    color: #ededed;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.85;
}

.item-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    text-transform: uppercase;
}

.item-copy {
    color: #909090;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.85;
}

.stat-value {
    color: #ffffff;
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1;
}

.stat-label {
    color: #909090;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1.6;
    text-transform: uppercase;
}

.founder-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 88vh;
    overflow: hidden;
    isolation: isolate;
    background-color: #000000;
}

.founder-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 82% 42%, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 38%), linear-gradient(90deg, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 0%) 52%, rgb(0 0 0 / 0%) 100%);
    z-index: 0;
}

.founder-portrait-layer {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: -1;
    pointer-events: none;
}

.founder-portrait {
    width: min(32vw, 29rem);
    max-width: 38%;
    height:80%;
    margin-right: clamp(1rem, 4vw, 4rem);
    object-fit: cover;
    object-position: center top;
    filter: grayscale(1) contrast(1.04) brightness(0.62);
    opacity: 0.14;
    transform: translate3d(0, 3%, 0) scale(1.02);
    mix-blend-mode: lighten;
}

.founder-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    
    margin: 0;
    padding-top: 8rem;
    padding-bottom: 8rem;
    padding-right: clamp(10rem, 28vw, 26rem);
    text-align: left;
}

.founder-quote {
    color: rgba(255, 255, 255, 0.18);
    letter-spacing: -0.045em;
    line-height: 1.06;
    text-transform: none;
}

.founder-quote-char {
    display: inline-block;
    color: rgba(255, 255, 255, 0.18);
    opacity: 0.78;
    transform: translate3d(0, 0.12em, 0);
    transition:
        color 0.22s ease,
        opacity 0.22s ease,
        transform 0.22s ease;
    will-change: color, opacity, transform;
}

.founder-quote-char.is-revealed {
    color: #ffffff;
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.founder-quote-space {
    display: inline;
    white-space: pre;
}

.founder-icon {
    color: rgba(255, 255, 255, 0.2);
    transition: color 0.18s linear;
}

.founder-credit-title {
    color: rgba(255, 255, 255, 0.56);
    transition: color 0.18s linear;
}

.founder-credit-subtitle {
    color: rgba(255, 255, 255, 0.32);
    transition: color 0.18s linear;
}

.founder-divider {
    background-color: rgba(255, 255, 255, 0.16);
    transition: background-color 0.18s linear;
}

.founder-credit {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
}

.organization-section {
    position: relative;
    overflow: visible;
}

.organization-layout {
    display: grid;
    gap: clamp(2.5rem, 5vw, 6rem);
    align-items: start;
}

.organization-brand-panel {
    opacity: 1;
}

.organization-header {
    max-width: 30rem;
    margin: 0 0 2.5rem;
    text-align: left;
}

.organization-copy {
    max-width: 28rem;
    margin: 0;
}

.organization-brand-mark {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.organization-brand-logo {
    width: min(18rem, 100%);
    height: auto;
}

.organization-brand-label {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    line-height: 1.5;
    text-transform: uppercase;
}

.organization-list {
    display: grid;
    gap: 7.35rem;
}

.organization-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 11.75rem;
    /* padding: 2rem; */
    overflow: hidden;
    isolation: isolate;
    border-radius: 1.25rem;
    /* background: linear-gradient(180deg, #f3efea 0%, #eae4dd 100%); */
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.2);
    color: inherit;
    text-decoration: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.organization-item:hover,
.organization-item:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.organization-item__main {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.organization-item__brand {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: transform 0.28s ease;
}

.organization-item:hover .organization-item__logo {
    filter: grayscale(0);
    transition: 0.4s ease;
}

.organization-item__logo {
    display: block;
    /* width: min(13rem, 100%); */
    height: auto;
    /* max-width: 100%; */
    /* max-height: 4.75rem; */
    /* object-fit: contain; */
    object-position: center;
    flex: 0 0 auto;
    filter: grayscale(1);
    transition: 0.4s ease;
}

.organization-item__logo--ink {
    filter: brightness(0.16) saturate(100%) contrast(1.08);
}

.organization-item__title {
    display: none;
}

.organization-item__text {
    display: none;
}

.organization-item__cta {
    position: absolute;
    left: 50%;
    bottom: 1.1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.72rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
    color: #111111;
    font-size: 16px;
    font-weight: 400;
    /* letter-spacing: 0.14em; */
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    /* text-transform: uppercase; */
    transform: translate(-50%, 150%);
    transition: transform 0.28s ease, opacity 0.28s ease;
    white-space: nowrap;
}

.organization-item__cta-icon {
    font-size: 1rem;
    line-height: 1;
}

.organization-item:hover .organization-item__title,
.organization-item:focus-visible .organization-item__title {
    color: inherit;
}

.organization-item:hover .organization-item__brand,
.organization-item:focus-visible .organization-item__brand {
    transform: translateY(-0.45rem);
}

.organization-item:hover .organization-item__cta,
.organization-item:focus-visible .organization-item__cta {
    opacity: 1;
    transform: translate(-50%, 0);
}

.leadership-section {
    position: relative;
}

.leadership-header {
    max-width: 48rem;
    margin: 0 0 4rem;
    text-align: left;
}

.leadership-title {
    margin: 1rem 0 1.5rem;
    max-width: 34rem;
}

.leadership-copy {
    max-width: 40rem;
    margin: 0;
}

.leadership-grid {
    display: grid;
    gap: 1.35rem;
}

.leadership-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 24rem;
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #f3efea 0%, #eae4dd 100%);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.2);
    color: inherit;
    text-decoration: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.leadership-card:hover,
.leadership-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.leadership-card__body {
    padding: 1.9rem 1.9rem 0;
}

.leadership-card__name {
    margin: 0 0 0.45rem;
    color: #151515;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.08;
    text-transform: uppercase;
}

.leadership-card__role {
    margin: 0;
    color: rgba(21, 21, 21, 0.6);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.55;
}

.leadership-card__visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex: 1;
    min-height: 16.75rem;
    padding: 1.25rem 1.1rem 0 1.1rem;
    overflow: hidden;
}

.leadership-card__visual::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(234, 228, 221, 0) 0%, rgba(234, 228, 221, 0.95) 100%);
    pointer-events: none;
}

.leadership-card__visual img {
    position: relative;
    z-index: 1;
    width: auto;
    max-width: none;
    height: 16.2rem;
    object-fit: contain;
    object-position: right bottom;
    filter: grayscale(1) contrast(1.02) brightness(0.9);
    transform: translate3d(0.2rem, 0.3rem, 0) scale(1.02);
    transition: transform 0.6s ease, filter 0.4s ease;
}

.leadership-card__visual--offset img {
    width: auto;
    max-width: none;
    height: 16.2rem;
    transform: translate3d(0.2rem, 0.3rem, 0) scale(1.02);
}

.leadership-card__visual--right img {
    width: auto;
    max-width: none;
    height: 16.2rem;
}

.leadership-card:hover .leadership-card__visual img,
.leadership-card:focus-within .leadership-card__visual img {
    filter: grayscale(0) contrast(1) brightness(1);
    transform: translate3d(0.2rem, 0.3rem, 0) scale(1.05);
}

@media (min-width: 768px) {
    .organization-list {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.manifesto-section {
    position: relative;
    display: flex;
    align-items: stretch;
    height: 75vh;
    overflow: hidden;
    background: #000000;
}

.manifesto-media,
.manifesto-overlay,
.manifesto-glow {
    position: absolute;
    inset: 0;
}

.manifesto-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: translate3d(0, 0, 0) scale(1.08);
    will-change: transform;
}

.manifesto-overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 34%, rgba(0, 0, 0, 0.1) 58%, rgba(0, 0, 0, 0.1) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.36) 100%);
}

.manifesto-glow {
    inset: auto auto 8% 58%;
    width: min(32rem, 36vw);
    height: min(32rem, 36vw);
    border-radius: 9999px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.28) 0%, rgba(237, 28, 36, 0) 72%);
    filter: blur(20px);
    opacity: 0.82;
}

.manifesto-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
}

.manifesto-content__inner {
    width: 100%;
    padding-top: 9rem;
    padding-bottom: 8rem;
    will-change: transform;
}

.manifesto-eyebrow {
    display: inline-block;
    margin-bottom: 1.4rem;
}

.manifesto-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: clamp(4rem, 9vw, 9rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.88;
    /* text-transform: uppercase; */
}

.manifesto-title span {
    display: block;
    will-change: transform, opacity;
}

.manifesto-copy {
    max-width: 24rem;
    color: rgba(255, 255, 255, 0.72);
}

.career-layout {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

.career-copy-panel {
    max-width: 28rem;
}

.career-copy-text {
    max-width: 26rem;
}

.career-form-panel {
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.career-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.career-form-grid {
    display: grid;
    gap: 1rem;
}

.career-field {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.career-field__label {
    color: #ededed;
    font-size: 12px;
    font-weight: 400;
    /* letter-spacing: 0.24em; */
    line-height: 1.4;
    /* text-transform: uppercase; */
}

.career-field__input {
    width: 100%;
    min-height: 3.65rem;
    padding: 0 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    transition: border-color 0.24s ease, background-color 0.24s ease;
}

.career-field__input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.career-field__input:focus {
    outline: none;
    border-color: rgba(237, 28, 36, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.career-field__input--textarea {
    min-height: 9rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    resize: vertical;
}

.career-company-selector {
    position: relative;
}

.career-company-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    min-height: 3.65rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    transition: border-color 0.24s ease, background-color 0.24s ease;
}

.career-company-trigger[aria-expanded="true"] {
    border-color: rgba(237, 28, 36, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.career-company-trigger__selected {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
}

.career-company-trigger__selected img {
    width: 1.8rem;
    height: 1.8rem;
    object-fit: contain;
}

.career-company-trigger__selected span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.career-company-menu {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    z-index: 20;
    display: grid;
    gap: 0.35rem;
    padding: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(12, 12, 12, 0.98);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.career-company-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    padding: 0.8rem 0.85rem;
    border-radius: 0.85rem;
    color: rgba(255, 255, 255, 0.84);
    text-align: left;
    transition: background-color 0.22s ease, color 0.22s ease;
}

.career-company-option img {
    width: 1.7rem;
    height: 1.7rem;
    object-fit: contain;
}

.career-company-option:hover,
.career-company-option:focus-visible,
.career-company-option.is-selected {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.career-upload {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.career-upload__input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.career-upload__surface {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-height: 4rem;
    padding: 0 1.1rem;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.72);
    cursor: pointer;
    transition: border-color 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

.career-upload:hover .career-upload__surface,
.career-upload:focus-within .career-upload__surface {
    border-color: rgba(237, 28, 36, 0.55);
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
}

.career-submit {
    width: 100%;
    min-height: 3.9rem;
    padding: 0 1.5rem;
    border-radius: 1rem;
    background: #ed1c24;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    /* letter-spacing: 0.28em; */
    /* text-transform: uppercase; */
    transition: filter 0.24s ease, transform 0.24s ease;
}

.career-submit:hover,
.career-submit:focus-visible {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

.news-layout {
    display: grid;
    gap: clamp(2.5rem, 5vw, 6rem);
    align-items: start;
}

.news-aside {
    position: relative;
}

.news-aside__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.news-intro {
    max-width: 26rem;
}

.news-archive-link {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    line-height: 1.4;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.22s ease;
}

.news-archive-link:hover,
.news-archive-link:focus-visible {
    color: #ed1c24;
}

.news-panel {
    min-width: 0;
}

.news-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.news-filter {
    min-height: 2.3rem;
    padding: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.25rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.news-filter:hover,
.news-filter:focus-visible {
    border-color: rgba(237, 28, 36, 0.55);
    color: #ffffff;
}

.news-filter.is-active {
    border-color: #ed1c24;
    background: rgba(237, 28, 36, 0.12);
    color: #ffffff;
}

.news-list {
    display: flex;
    flex-direction: column;
}

.news-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    padding: 2rem 13rem 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.news-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.news-item:hover,
.news-item:focus-visible {
    background: rgba(255, 255, 255, 0.02);
}

.news-item__content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.news-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.news-item__date,
.news-item__company {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.news-item__date {
    color: #ed1c24;
}

.news-item__company {
    color: rgba(255, 255, 255, 0.54);
}

.news-item__title {
    text-transform: none;
    transition: color 0.22s ease;
}

.news-item__summary {
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.7;
}

.news-item__preview {
    position: absolute;
    top: 50%;
    right: 3rem;
    width: 9.75rem;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 1rem;
    opacity: 0;
    transform: translate3d(1rem, -50%, 0) scale(0.92) rotate(-3deg);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.32s ease;
}

.news-item__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item:hover .news-item__preview,
.news-item:focus-visible .news-item__preview {
    opacity: 1;
    transform: translate3d(0, -50%, 0) scale(1) rotate(0deg);
}

.news-item__icon {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.42);
    transition: color 0.22s ease, transform 0.22s ease;
}

.news-item:hover .news-item__icon,
.news-item:focus-visible .news-item__icon {
    color: #ed1c24;
    transform: translate(0.2rem, -0.2rem);
}

.news-item.is-hidden {
    display: none;
}

.news-modal[hidden] {
    display: none;
}

.news-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    align-items: center;
    display: flex;
}

.news-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
}

.news-modal__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    width: min(70rem, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    margin: 1rem auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    background: #0c0c0c;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
}

.news-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.42);
    color: #ffffff;
    transition: background-color 0.22s ease;
}

.news-modal__close:hover,
.news-modal__close:focus-visible {
    background: rgba(237, 28, 36, 0.82);
}

.news-modal__media {
    min-height: 24rem;
}

.news-modal__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-modal__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
}

.news-modal__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.news-modal__meta span {
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.4;
    text-transform: uppercase;
}

.news-modal__meta span:first-child {
    color: #ed1c24;
}

.news-modal__title {
    margin-bottom: 1.25rem;
    text-transform: none;
}

.news-modal__description {
    color: rgba(255, 255, 255, 0.68);
    max-width: 32rem;
}

body.news-modal-open {
    overflow: hidden;
}

.contact-layout {
    display: grid;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.contact-copy-panel {
    max-width: 28rem;
}

.contact-copy-note {
    margin: 0 0 1.75rem;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.96rem;
    font-weight: 500;
    line-height: 1.8;
}

.contact-cards {
    display: grid;
    gap: 1rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
}

.contact-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 3rem;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(237, 28, 36, 0.18);
    border-radius: 9999px;
    background: rgba(237, 28, 36, 0.08);
    color: #ed1c24;
}

.contact-card__icon .material-symbols-outlined {
    font-size: 1.2rem;
}

.contact-card__content {
    min-width: 0;
}

.contact-card__label {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    line-height: 1.4;
    text-transform: uppercase;
}

.contact-card__value {
    margin: 0;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
    text-decoration: none;
}

a.contact-card__value:hover,
a.contact-card__value:focus-visible {
    color: #ed1c24;
}

.contact-map-panel {
    min-width: 0;
}

.contact-map-frame {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    background: #0c0c0c;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    min-height: 32rem;
    filter: grayscale(1) contrast(1.05) brightness(0.9);
}

.contact-fab {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.6rem;
    padding: 0 1.3rem;
    border-radius: 1.25rem;
    background: #ed1c24;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    box-shadow: 0 18px 40px rgba(237, 28, 36, 0.28);
    transition: transform 0.24s ease, filter 0.24s ease;
}

.contact-fab:hover,
.contact-fab:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.contact-modal[hidden] {
    display: none;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(8px);
}

.contact-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(48rem, calc(100vw - 1.2rem));
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.6rem;
    background: #0c0c0c;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
}

.contact-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    transition: background-color 0.22s ease;
}

.contact-modal__close:hover,
.contact-modal__close:focus-visible {
    background: rgba(237, 28, 36, 0.82);
}

.contact-modal__body {
    padding: 1.65rem;
}

.contact-modal__title {
    margin-bottom: 1.1rem;
    padding-right: 3.5rem;
    font-size: 1.72rem;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-form__label {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    line-height: 1.4;
    text-transform: uppercase;
}

.contact-form__input {
    width: 100%;
    min-height: 3.2rem;
    padding: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    transition: border-color 0.24s ease, background-color 0.24s ease;
}

.contact-form__input::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.contact-form__input:focus {
    outline: none;
    border-color: rgba(237, 28, 36, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.contact-form__input--textarea {
    min-height: 6.2rem;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    resize: vertical;
}

.contact-form__submit {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 3.35rem;
    padding: 0 1.5rem;
    border-radius: 1rem;
    background: #ed1c24;
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    transition: filter 0.24s ease, transform 0.24s ease;
}

.contact-form__field:nth-of-type(5) {
    grid-column: 1 / -1;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

body.contact-modal-open {
    overflow: hidden;
}

@media (min-width: 768px) {
    .section-shell {
        grid-template-columns: minmax(0, 8fr) minmax(0, 4fr);
        gap: 0;
    }

    .section-shell > .section-body {
        grid-column: 1 / 2;
    }

    .page-title {
        font-size: 2.25rem;
    }

    .body-copy {
        font-size: 1.125rem;
    }

    .item-copy {
        font-size: 1.125rem;
    }

    .founder-section {
        min-height: 92vh;
    }

    .founder-content {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }

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

    .news-layout {
        grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    }

    .news-aside {
        position: sticky;
        top: calc(var(--header-offset) + 1.5rem);
        align-self: start;
        height: fit-content;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.28fr);
    }

    .career-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .organization-layout {
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    }

    .organization-brand-panel {
        position: sticky;
        top: calc(var(--header-offset) + 1.5rem);
        align-self: start;
        height: fit-content;
    }
}

@media (min-width: 1024px) {
    .career-layout {
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
        gap: 3rem;
    }

    .career-copy-panel {
        position: sticky;
        top: calc(var(--header-offset) + 1.5rem);
        align-self: start;
        height: fit-content;
    }
}

@media (max-width: 1023px) {
    .site-header__inner {
        padding-top: 1.2rem;
        padding-bottom: 1.05rem;
    }

    .site-header__brand {
        gap: 0.8rem;
    }

    .site-header__brand-mark {
        width: 1.55rem;
        height: 2.15rem;
    }

    .site-header__brand-title {
        font-size: 1.6rem;
    }

    .site-header__brand-subtitle {
        font-size: 0.6rem;
        letter-spacing: 0.28em;
    }

    .organization-item {
        min-height: 9.5rem;
        padding: 1.75rem;
    }

    .organization-item:hover,
    .organization-item:focus-visible {
        transform: none;
    }

    .organization-item__cta {
        bottom: 0.85rem;
        padding: 0.64rem 0.82rem;
        font-size: 0.6rem;
        letter-spacing: 0.12em;
    }

    .organization-item__logo {
        width: min(11rem, 100%);
        max-height: 3.9rem;
    }

    .organization-brand-logo {
        width: min(15rem, 100%);
    }

    .founder-portrait {
        width: min(58vw, 20rem);
        max-width: none;
        margin-right: -2rem;
        opacity: 0.12;
    }

    .founder-content {
        padding-top: 7rem;
        padding-bottom: 7rem;
        padding-right: 0;
    }

    .founder-credit {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .leadership-card {
        min-height: 27rem;
    }

    .leadership-card__visual {
        min-height: 15rem;
    }

    .leadership-card__visual img,
    .leadership-card__visual--offset img,
    .leadership-card__visual--right img {
        height: 14.4rem;
    }

    .manifesto-section {
        min-height: 82vh;
    }

    .manifesto-content__inner {
        padding-top: 8rem;
        padding-bottom: 6rem;
    }

    .manifesto-title {
        font-size: clamp(3.4rem, 20vw, 5.4rem);
        line-height: 0.9;
    }

    .manifesto-glow {
        left: auto;
        right: -4rem;
        bottom: 12%;
        width: 18rem;
        height: 18rem;
    }

    .manifesto-copy {
        max-width: 18rem;
    }

    .career-form-panel {
        padding: 1.2rem;
    }

    .contact-map-frame iframe {
        min-height: 24rem;
    }

    .contact-fab {
        right: 1rem;
        bottom: 1rem;
        min-height: 3.3rem;
        padding: 0 1rem;
        font-size: 0.7rem;
    }

    .contact-modal__body {
        padding: 1.35rem 1.15rem 1.5rem;
    }

    .contact-modal {
        align-items: start;
        padding: 0.8rem;
    }

    .contact-modal__dialog {
        width: 100%;
        max-height: calc(100dvh - 1.6rem);
    }

    .contact-modal__title {
        margin-bottom: 0.95rem;
        font-size: 1.45rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .contact-form__field:nth-of-type(5),
    .contact-form__submit {
        grid-column: auto;
    }

    .contact-form__input {
        min-height: 3rem;
    }

    .contact-form__input--textarea {
        min-height: 5.2rem;
    }

    .news-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.35rem;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
        padding-right: 0;
    }

    .news-item__preview {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: 18rem;
        opacity: 1;
        transform: none;
        order: -1;
        margin-bottom: 0.5rem;
    }

    .news-item:hover .news-item__preview,
    .news-item:focus-visible .news-item__preview {
        transform: none;
    }

    .news-modal__dialog {
        grid-template-columns: minmax(0, 1fr);
        width: min(42rem, calc(100vw - 1rem));
    }

    .news-modal__media {
        min-height: 14rem;
    }

    .news-modal__body {
        padding: 1.4rem 1.25rem 1.6rem;
    }
}

@media (min-width: 1024px) {
    .leadership-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}


a.site-header__brand img {
    width: 200px;
}


.material-symbols-outlined img {
    width: 110px;
    filter: invert(1);
}


input.career-field__input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    min-height: 3.65rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    transition: border-color 0.24s ease, background-color 0.24s ease;
}


input.contact-form__input {
    width: 100%;
    min-height: 3.65rem;
    padding: 0 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    transition: border-color 0.24s ease, background-color 0.24s ease;
}

.logo-footer {
    margin-bottom: 28px;
}

footer{
    align-items: end !important;
}

.organization-item[data-aos] {
    transition: opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1), transform 0.82s cubic-bezier(0.22, 1, 0.36, 1), filter 0.82s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.28s ease;
}

.leadership-card[data-aos] {
    transition: opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1), transform 0.82s cubic-bezier(0.22, 1, 0.36, 1), filter 0.82s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}

.news-filter[data-aos] {
    transition: opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1), transform 0.82s cubic-bezier(0.22, 1, 0.36, 1), filter 0.82s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

.news-item[data-aos] {
    transition: opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1), transform 0.82s cubic-bezier(0.22, 1, 0.36, 1), filter 0.82s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.22s ease;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    [data-aos] {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}
