.home-hero {
    position: relative;
    height: calc(100svh - 154px);
    min-height: 440px;
    max-height: 650px;
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.home-hero-content {
    position: relative;
    z-index: 3;
    width: min(var(--public-container), calc(100% - 32px));
    margin-inline: auto;
    padding-block: 46px 78px;
}

.home-hero-copy {
    max-width: 760px;
    color: #fff;
}

.home-hero-identity {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-block-end: 16px;
}

.home-hero-identity-logo {
    width: 78px;
    height: 78px;
    flex: 0 0 auto;
    padding: 5px;
    border: 2px solid rgba(255, 255, 255, .82);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2), 0 0 0 5px rgba(255, 255, 255, .1);
    object-fit: contain;
}

.home-hero-identity-copy {
    min-width: 0;
    display: grid;
    gap: 2px;
    padding-inline-start: 12px;
    border-inline-start: 3px solid var(--public-gold);
}

.home-hero-identity-copy > span {
    color: #fff;
    font-size: .86rem;
    font-weight: 800;
}

.home-hero-identity-copy > strong {
    color: rgba(255, 255, 255, .76);
    font-size: .78rem;
    font-weight: 700;
}

.home-hero h1 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-size: 2.15rem;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.home-hero-copy > p {
    max-width: 680px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: .98rem;
    line-height: 1.85;
}

.home-hero-copy > .home-hero-pillars {
    position: relative;
    width: fit-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-block-start: 17px;
    padding-block: 7px 11px;
    overflow: hidden;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.3;
    white-space: nowrap;
    text-shadow: 0 5px 20px rgba(0, 0, 0, .24);
}

.home-hero-pillars::after {
    position: absolute;
    inset-inline-start: -32%;
    inset-block-end: 3px;
    width: 34%;
    height: 2px;
    border-radius: 999px;
    background: var(--public-gold);
    box-shadow: 0 0 14px rgba(242, 165, 65, .72);
    content: "";
    opacity: 0;
    animation: hero-pillar-light 4.8s 1.3s ease-in-out infinite;
}

.home-hero-pillars span {
    display: inline-block;
    opacity: 0;
    transform: translateY(13px);
    animation: hero-pillar-word .82s cubic-bezier(.2, .78, .24, 1) forwards;
}

.home-hero-pillars span:nth-of-type(1) {
    animation-delay: .3s;
}

.home-hero-pillars span:nth-of-type(2) {
    animation-delay: .48s;
}

.home-hero-pillars span:nth-of-type(3) {
    animation-delay: .66s;
}

.home-hero-pillars i {
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--public-gold);
    box-shadow: 0 0 0 4px rgba(242, 165, 65, .12);
    animation: hero-pillar-separator 2.8s .9s ease-in-out infinite;
}

@keyframes hero-pillar-word {
    0% {
        opacity: 0;
        transform: translateY(13px);
        filter: blur(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes hero-pillar-separator {
    0%, 100% {
        opacity: .48;
        transform: scale(.82);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

@keyframes hero-pillar-light {
    0%, 18% {
        opacity: 0;
        transform: translateX(0);
    }

    35%, 68% {
        opacity: .95;
    }

    82%, 100% {
        opacity: 0;
        transform: translateX(390%);
    }
}

html[dir="rtl"] .home-hero-pillars::after {
    animation-name: hero-pillar-light-rtl;
}

@keyframes hero-pillar-light-rtl {
    0%, 18% {
        opacity: 0;
        transform: translateX(0);
    }

    35%, 68% {
        opacity: .95;
    }

    82%, 100% {
        opacity: 0;
        transform: translateX(-390%);
    }
}

.hero-actions,
.join-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    margin-block-start: 22px;
}

.movement-layout {
    display: grid;
    gap: 30px;
}

.movement-visual {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(9, 108, 111, .18);
    border-radius: 8px;
    background: var(--public-dark);
    box-shadow: 0 22px 48px rgba(15, 35, 49, .14);
    aspect-ratio: 4 / 3;
}

.movement-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.045);
    transition: transform 1.15s cubic-bezier(.2, .72, .24, 1), filter .55s ease;
}

.movement-visual.is-visible > img {
    transform: scale(1);
}

.movement-visual::before {
    position: absolute;
    inset: 11px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 5px;
    content: "";
    pointer-events: none;
}

.movement-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 40, 50, .66), transparent 52%);
    content: "";
    pointer-events: none;
}

.movement-visual-identity {
    position: absolute;
    inset-inline: 16px;
    inset-block-end: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    font-weight: 800;
}

.movement-visual-identity img {
    width: 58px;
    height: 58px;
    padding: 4px;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
}

.movement-copy {
    min-width: 0;
    position: relative;
    padding-inline-start: 18px;
}

.movement-copy::before {
    position: absolute;
    inset-block: 5px 10px;
    inset-inline-start: 0;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(to bottom, var(--public-primary), var(--public-gold));
    content: "";
}

.movement-copy h2 {
    margin-block-end: 14px;
}

.movement-copy p {
    margin: 0 0 13px;
    color: var(--public-muted);
    line-height: 1.9;
}

.movement-copy .movement-lead {
    color: var(--public-primary);
    font-size: 1.08rem;
    font-weight: 800;
}

@media (hover: hover) and (pointer: fine) {
    .movement-visual.is-visible:hover > img {
        filter: saturate(1.04) contrast(1.02);
        transform: scale(1.025);
    }
}

.vision-grid {
    display: grid;
    gap: 14px;
}

.direction-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--public-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(15, 35, 49, .055);
}

.direction-card:nth-child(2) {
    border-block-start-color: rgba(242, 165, 65, .65);
}

.direction-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #e8f6f5;
    color: var(--public-primary);
}

.direction-card:nth-child(2) .direction-icon {
    background: #fff3df;
    color: #9b6210;
}

.direction-card h3 {
    margin: 0;
    color: var(--public-dark);
    font-size: 1.05rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.direction-card p {
    margin: 8px 0 0;
    color: var(--public-muted);
    line-height: 1.85;
}

.framework-section {
    overflow: clip;
}

.framework-shell {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--public-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 24px 64px rgba(15, 35, 49, .1);
}

.framework-tablist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    padding: 8px;
    background: var(--public-dark);
}

.framework-tablist button {
    min-width: 0;
    min-height: 68px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 7px;
    background: rgba(255, 255, 255, .045);
    color: rgba(255, 255, 255, .72);
    text-align: start;
    cursor: pointer;
    transition: color .48s ease, background-color .48s ease, border-color .48s ease, transform .48s cubic-bezier(.2, .75, .25, 1);
}

.framework-tablist button:hover {
    border-color: rgba(255, 255, 255, .26);
    color: #fff;
    transform: translateY(-2px);
}

.framework-tablist button:focus-visible {
    outline: 3px solid rgba(242, 165, 65, .78);
    outline-offset: 2px;
}

.framework-tablist button.is-active {
    border-color: #fff;
    background: #fff;
    color: var(--public-dark);
    transform: none;
}

.framework-tab-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: rgba(255, 255, 255, .1);
    color: var(--public-gold);
    transition: background-color .48s ease, color .48s ease, transform .48s cubic-bezier(.2, .75, .25, 1);
}

.framework-tab-icon .ui-icon {
    width: 19px;
    height: 19px;
}

.framework-tablist button.is-active .framework-tab-icon {
    background: #e8f6f5;
    color: var(--public-primary);
    transform: rotate(-4deg);
}

.framework-tab-copy {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
}

.framework-tab-copy strong {
    min-width: 0;
    font-size: .79rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.framework-tab-copy small {
    color: currentColor;
    font-size: .68rem;
    font-weight: 800;
    opacity: .62;
}

.framework-tab-arrow {
    display: none;
}

.framework-panels {
    min-width: 0;
    background: #fff;
}

.framework-panel {
    min-width: 0;
    padding: 24px 16px 28px;
}

.framework-panel[hidden],
.js .framework-panel:not(.is-active) {
    display: none;
}

.framework-panel.is-active {
    animation: framework-panel-enter .64s cubic-bezier(.2, .78, .24, 1) both;
}

.framework-panel-heading {
    max-width: 760px;
    margin-block-end: 22px;
}

.framework-panel-heading > span {
    display: block;
    margin-block-end: 6px;
    color: var(--public-primary);
    font-size: .75rem;
    font-weight: 900;
}

.framework-panel-heading h3 {
    margin: 0;
    color: var(--public-dark);
    font-size: 1.45rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.framework-panel-heading p {
    margin: 9px 0 0;
    color: var(--public-muted);
    font-size: .9rem;
    line-height: 1.8;
}

.framework-values,
.framework-services,
.framework-fields,
.framework-goals {
    display: grid;
}

.framework-value {
    min-width: 0;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding-block: 14px;
    border-block-start: 1px solid var(--public-line);
    transition: padding-inline .46s ease, background-color .46s ease;
}

.framework-value > span,
.framework-service > span,
.framework-row-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 7px;
    background: #e8f6f5;
    color: var(--public-primary);
    transition: color .46s ease, background-color .46s ease, transform .46s cubic-bezier(.2, .75, .25, 1);
}

.framework-value .ui-icon,
.framework-service .ui-icon,
.framework-row-icon .ui-icon {
    width: 20px;
    height: 20px;
}

.framework-value h4 {
    margin: 0;
    color: var(--public-dark);
    font-size: .94rem;
    line-height: 1.45;
}

.framework-value p {
    margin: 5px 0 0;
    color: var(--public-muted);
    font-size: .82rem;
    line-height: 1.75;
}

.framework-goal,
.framework-field {
    min-width: 0;
    border-block-start: 1px solid var(--public-line);
}

.framework-goal > summary,
.framework-field > summary {
    min-height: 70px;
    display: grid;
    align-items: center;
    gap: 10px;
    padding-block: 12px;
    color: var(--public-dark);
    list-style: none;
    cursor: pointer;
    transition: color .4s ease, padding-inline .4s ease;
}

.framework-goal > summary {
    grid-template-columns: 40px minmax(0, 1fr) 28px 18px;
}

.framework-field > summary {
    grid-template-columns: 40px minmax(0, 1fr) 18px;
}

.framework-goal > summary::-webkit-details-marker,
.framework-field > summary::-webkit-details-marker {
    display: none;
}

.framework-goal > summary strong,
.framework-field > summary strong {
    font-size: .9rem;
    line-height: 1.5;
}

.framework-field > summary > span:nth-child(2) {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.framework-field > summary small {
    color: var(--public-muted);
    font-size: .76rem;
    line-height: 1.55;
}

.framework-count {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--public-soft);
    color: var(--public-muted);
    font-size: .72rem;
    font-weight: 900;
}

.framework-chevron {
    width: 17px;
    height: 17px;
    color: var(--public-muted);
    transition: color .4s ease, transform .5s cubic-bezier(.2, .75, .25, 1);
}

.framework-goal[open] > summary,
.framework-field[open] > summary {
    color: var(--public-primary);
}

.framework-goal[open] .framework-row-icon,
.framework-field[open] .framework-row-icon {
    background: var(--public-primary);
    color: #fff;
    transform: rotate(-4deg);
}

.framework-goal[open] .framework-chevron,
.framework-field[open] .framework-chevron {
    color: var(--public-primary);
    transform: rotate(180deg);
}

.framework-goal ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 2px 0 18px 50px;
    list-style: none;
    animation: framework-detail-enter .45s ease both;
}

html[dir="rtl"] .framework-goal ul {
    padding-right: 50px;
    padding-left: 0;
}

.framework-goal li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    color: var(--public-muted);
    font-size: .84rem;
    line-height: 1.7;
}

.framework-goal li > span {
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    margin-block-start: 3px;
    border-radius: 50%;
    background: #e8f6f5;
    color: var(--public-primary);
}

.framework-goal li .ui-icon {
    width: 13px;
    height: 13px;
    stroke-width: 2.3;
}

.framework-field > p {
    margin: 0;
    padding: 0 0 17px 50px;
    color: var(--public-muted);
    font-size: .82rem;
    line-height: 1.75;
    animation: framework-detail-enter .45s ease both;
}

html[dir="rtl"] .framework-field > p {
    padding-right: 50px;
    padding-left: 0;
}

.framework-service {
    min-width: 0;
    min-height: 68px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    padding-block: 13px;
    border-block-start: 1px solid var(--public-line);
    transition: padding-inline .46s ease, color .46s ease;
}

.framework-service strong {
    color: var(--public-dark);
    font-size: .86rem;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.framework-value:hover,
.framework-service:hover,
.framework-goal > summary:hover,
.framework-field > summary:hover {
    padding-inline: 8px;
}

.framework-value:hover > span,
.framework-service:hover > span {
    background: var(--public-primary);
    color: #fff;
    transform: translateY(-2px);
}

.framework-panel.is-active .framework-value,
.framework-panel.is-active .framework-goal,
.framework-panel.is-active .framework-field,
.framework-panel.is-active .framework-service {
    animation: framework-item-enter .54s cubic-bezier(.2, .75, .25, 1) both;
    animation-delay: var(--framework-item-delay, .08s);
}

.framework-panel.is-active :is(.framework-value, .framework-goal, .framework-field, .framework-service):nth-child(2) {
    --framework-item-delay: .12s;
}

.framework-panel.is-active :is(.framework-value, .framework-goal, .framework-field, .framework-service):nth-child(3) {
    --framework-item-delay: .16s;
}

.framework-panel.is-active :is(.framework-value, .framework-goal, .framework-field, .framework-service):nth-child(4) {
    --framework-item-delay: .2s;
}

.framework-panel.is-active :is(.framework-value, .framework-goal, .framework-field, .framework-service):nth-child(n + 5) {
    --framework-item-delay: .24s;
}

@keyframes framework-panel-enter {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes framework-item-enter {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes framework-detail-enter {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.commitment-tabs {
    border: 1px solid var(--public-line);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--public-shadow);
}

.commitment-tablist {
    display: flex;
    gap: 3px;
    padding: 7px;
    overflow-x: auto;
    border-block-end: 1px solid var(--public-line);
    background: var(--public-soft);
    scrollbar-width: none;
}

.commitment-tablist::-webkit-scrollbar {
    display: none;
}

.commitment-tablist button {
    min-width: 190px;
    min-height: 46px;
    flex: 1 0 auto;
    padding: 8px 12px;
    border-radius: 7px;
    background: transparent;
    color: var(--public-muted);
    font-weight: 800;
    cursor: pointer;
}

.commitment-tablist button:hover,
.commitment-tablist button.is-active {
    background: #fff;
    color: var(--public-primary);
    box-shadow: 0 7px 18px rgba(15, 35, 49, .07);
}

.commitment-panels {
    min-height: 340px;
}

.commitment-panel {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 15px;
    padding: 22px 18px;
}

.js .commitment-panel:not(.is-active) {
    display: none;
}

.commitment-panel-index {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--public-dark);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
}

.commitment-panel h3 {
    margin: 0;
    color: var(--public-dark);
    font-size: 1.18rem;
}

.commitment-panel p {
    margin: 10px 0 0;
    color: var(--public-muted);
    line-height: 1.9;
}

.team-grid {
    display: grid;
    gap: 14px;
}

.team-member-card {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    border: 1px solid var(--public-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 35, 49, .06);
    text-align: center;
    transition: transform .34s ease, border-color .34s ease, box-shadow .34s ease;
}

.team-member-card::before {
    position: absolute;
    inset-inline: 0;
    inset-block-start: 0;
    z-index: 2;
    height: 3px;
    background: var(--public-gold);
    content: "";
    transform: scaleX(.2);
    transition: transform .34s ease;
}

.team-member-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 167, 165, .28);
    box-shadow: var(--public-shadow-hover);
}

.team-member-card:hover::before {
    transform: scaleX(1);
}

.member-media {
    min-height: 202px;
    display: grid;
    place-items: center;
    padding: 24px 16px 8px;
    background: var(--public-soft);
}

.member-avatar-shell {
    position: relative;
    width: 156px;
    height: 156px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.member-avatar-shell::before {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-block-start-color: var(--public-gold);
    border-inline-end-color: var(--public-accent);
    border-radius: inherit;
    content: "";
}

.member-avatar {
    width: 140px;
    height: 140px;
    overflow: hidden;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--public-primary);
    box-shadow: 0 10px 28px rgba(7, 59, 76, .18);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .46s ease;
}

.member-initials {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
}

.team-member-card:hover .member-avatar-shell::before {
    animation: team-orbit 2.8s linear infinite;
}

.team-member-card:hover .member-avatar img {
    transform: scale(1.04) rotate(1.5deg);
}

@keyframes team-orbit {
    to {
        transform: rotate(360deg);
    }
}

.member-body {
    padding: 17px 14px 19px;
}

.member-body h3 {
    margin: 0;
    color: var(--public-dark);
    font-size: 1.03rem;
    overflow-wrap: anywhere;
}

.member-body p {
    margin: 5px 0 0;
    color: var(--public-muted);
    font-size: .88rem;
}

.join-section {
    padding-block: 64px;
    overflow: hidden;
    background: var(--public-dark);
    color: #fff;
}

.join-layout {
    display: grid;
    gap: 30px;
}

.join-copy h2 {
    color: #fff;
}

.join-copy p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .76);
    line-height: 1.9;
}

.join-motto {
    position: relative;
    margin: 0;
    padding: 24px;
    border-inline-start: 3px solid var(--public-gold);
    background: rgba(255, 255, 255, .065);
}

.join-motto-mark {
    position: absolute;
    inset-inline-start: 15px;
    inset-block-start: 4px;
    color: rgba(255, 255, 255, .14);
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
}

.join-motto p {
    position: relative;
    margin: 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.75;
}

.join-motto img {
    width: 64px;
    height: 64px;
    margin-block-start: 18px;
    padding: 4px;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
}

.contribution-layout {
    display: grid;
    gap: 16px;
}

.contribution-note {
    padding: 22px;
    border-block-start: 4px solid var(--public-accent);
    border-radius: 8px;
    background: var(--public-dark);
    color: #fff;
}

.contribution-note-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.contribution-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.contribution-review-badge {
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    color: #b8eeee;
    font-size: .72rem;
    font-weight: 800;
}

.contribution-note h3 {
    margin: 18px 0 0;
    font-size: 1.35rem;
    line-height: 1.4;
}

.contribution-note > p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .72);
}

.contribution-steps {
    display: grid;
    gap: 8px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.contribution-steps li {
    min-height: 48px;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 7px;
    background: rgba(255, 255, 255, .045);
    transition: transform var(--public-transition), background-color var(--public-transition);
}

.contribution-steps li:hover {
    transform: translateX(-3px);
    background: rgba(255, 255, 255, .08);
}

html[dir="rtl"] .contribution-steps li:hover {
    transform: translateX(3px);
}

.contribution-steps li > span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--public-gold);
    color: #332000;
    font-size: .76rem;
    font-weight: 800;
}

.contribution-form {
    display: grid;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--public-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--public-shadow);
}

.contribution-form:focus-within {
    border-color: rgba(0, 167, 165, .4);
}

.contribution-form-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-block-end: 14px;
    border-block-end: 1px solid var(--public-line);
}

.contribution-form-title h3 {
    margin: 0;
    color: var(--public-dark);
    font-size: 1.16rem;
}

.contribution-form-title > span {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #e8f6f5;
    color: var(--public-primary);
}

.public-field {
    min-width: 0;
    display: grid;
    gap: 7px;
}

.public-field > label:not(.direct-file-upload) {
    color: var(--public-dark);
    font-size: .9rem;
    font-weight: 800;
}

.public-field > input {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #cbd9df;
    border-radius: 7px;
    outline: 0;
    background: var(--public-soft);
    color: var(--public-ink);
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.public-field > input:focus {
    border-color: var(--public-accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 167, 165, .11);
}

.field-error {
    color: var(--public-danger);
    font-size: .78rem;
    font-weight: 700;
}

.direct-file-upload {
    min-height: 112px;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    padding: 14px;
    border: 1px dashed #aebfc7;
    border-radius: 8px;
    background: var(--public-soft);
    cursor: pointer;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.direct-file-upload:hover,
.direct-file-upload:focus-within {
    border-color: var(--public-accent);
    background: #f0fbfa;
}

.direct-file-upload.has-file {
    border-style: solid;
    border-color: rgba(22, 138, 84, .48);
    background: #f0faf4;
    box-shadow: inset 0 0 0 1px rgba(22, 138, 84, .08);
}

.direct-file-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #e8f6f5;
    color: var(--public-primary);
}

.direct-file-copy {
    min-width: 0;
    display: grid;
}

.direct-file-copy strong {
    color: var(--public-dark);
}

.direct-file-copy small {
    color: var(--public-muted);
}

.direct-file-name {
    grid-column: 1 / -1;
    width: fit-content;
    max-width: 100%;
    padding: 5px 8px;
    overflow: hidden;
    border-radius: 5px;
    background: #fff;
    color: var(--public-muted);
    font-size: .75rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.direct-file-upload input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.contribution-submit {
    width: 100%;
}

@media (min-width: 480px) {
    .hero-actions,
    .join-actions {
        flex-direction: row;
        align-items: center;
    }

    .hero-actions .public-button,
    .join-actions .public-button {
        width: auto;
    }
}

@media (min-width: 640px) {
    .home-hero {
        min-height: 560px;
    }

    .home-hero-content {
        width: min(var(--public-container), calc(100% - 48px));
        padding-block: 36px 74px;
        text-align: center;
    }

    .home-hero-copy {
        width: 100%;
        max-width: 1000px;
        margin-inline: auto;
    }

    .home-hero-identity {
        justify-content: center;
    }

    .home-hero-identity-logo {
        width: 86px;
        height: 86px;
    }

    .home-hero h1 {
        max-width: 960px;
        margin-inline: auto;
        font-size: 2.75rem;
    }

    .home-hero-copy > p {
        max-width: 820px;
        margin-inline: auto;
        margin-block-start: 14px;
        font-size: 1.04rem;
    }

    .home-hero-copy > .home-hero-pillars {
        justify-content: center;
        gap: 14px;
        margin-inline: auto;
        margin-block-start: 16px;
        font-size: 1.32rem;
    }

    .hero-actions {
        justify-content: center;
        margin-block-start: 20px;
    }

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

    .direction-card {
        padding: 24px;
    }

    .framework-panel {
        padding: 30px 26px 34px;
    }

    .framework-values,
    .framework-services,
    .framework-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 24px;
    }

    .commitment-panel {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 22px;
        padding: 30px;
    }

    .commitment-panel-index {
        width: 54px;
        height: 54px;
    }

    .contribution-form,
    .contribution-note {
        padding: 26px;
    }
}

@media (min-width: 900px) {
    .movement-layout {
        grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
        align-items: center;
        gap: 54px;
    }

    html[dir="rtl"] .movement-visual {
        order: 2;
    }

    .framework-shell {
        min-height: 650px;
        display: grid;
        grid-template-columns: 248px minmax(0, 1fr);
    }

    .framework-tablist {
        grid-template-columns: 1fr;
        grid-auto-rows: max-content;
        align-content: start;
        gap: 8px;
        padding: 12px;
        border-inline-end: 1px solid rgba(255, 255, 255, .1);
    }

    .framework-tablist button {
        min-height: 78px;
        grid-template-columns: 40px minmax(0, 1fr) 17px;
        gap: 11px;
        padding: 11px 12px;
    }

    .framework-tab-icon {
        width: 40px;
        height: 40px;
    }

    .framework-tab-copy strong {
        font-size: .88rem;
    }

    .framework-tab-arrow {
        width: 17px;
        height: 17px;
        display: block;
        opacity: .52;
        transition: opacity .48s ease, transform .48s cubic-bezier(.2, .75, .25, 1);
    }

    html[dir="rtl"] .framework-tab-arrow {
        transform: scaleX(-1);
    }

    .framework-tablist button.is-active .framework-tab-arrow {
        opacity: 1;
        transform: translateX(3px);
    }

    html[dir="rtl"] .framework-tablist button.is-active .framework-tab-arrow {
        transform: scaleX(-1) translateX(3px);
    }

    .framework-panels {
        min-height: 650px;
    }

    .framework-panel {
        padding: 36px 34px 40px;
    }

    .framework-panel-heading h3 {
        font-size: 1.7rem;
    }

    .join-layout {
        grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
        align-items: center;
        gap: 56px;
    }

    .contribution-layout {
        grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
        align-items: start;
    }

    .contribution-note {
        position: sticky;
        inset-block-start: 100px;
    }
}

@media (min-width: 1100px) {
    .home-hero h1 {
        font-size: 3.35rem;
    }

    .home-hero-copy > p {
        font-size: 1.04rem;
    }

    .home-hero-copy > .home-hero-pillars {
        font-size: 1.48rem;
    }

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

    .framework-fields {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        column-gap: 18px;
    }

    .vision-grid {
        gap: 20px;
    }

    .direction-card {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .direction-icon {
        width: 56px;
        height: 56px;
    }
}

@media (min-width: 1440px) {
    .home-hero h1 {
        font-size: 3.55rem;
    }

    .movement-layout {
        gap: 68px;
    }
}

@media (max-width: 429px) {
    .home-hero-content {
        padding-block: 24px 62px;
    }

    .home-hero-identity {
        gap: 8px;
        margin-block-end: 10px;
    }

    .home-hero-identity-logo {
        width: 62px;
        height: 62px;
        padding: 4px;
    }

    .home-hero-identity-copy {
        gap: 0;
        padding-inline-start: 8px;
    }

    .home-hero-identity-copy > span {
        font-size: .72rem;
    }

    .home-hero-identity-copy > strong {
        font-size: .66rem;
    }

    .home-hero h1 {
        font-size: 1.65rem;
    }

    .home-hero-copy > p {
        margin-block-start: 10px;
        font-size: .82rem;
        line-height: 1.6;
    }

    .home-hero-copy > .home-hero-pillars {
        gap: 9px;
        margin-block-start: 11px;
        padding-block: 5px 9px;
        font-size: 1.12rem;
        line-height: 1.3;
    }

    .hero-actions {
        flex-direction: row;
        gap: 7px;
        margin-block-start: 14px;
    }

    .hero-actions .public-button {
        min-width: 0;
        flex: 1 1 0;
        min-height: 42px;
        padding-inline: 7px;
        font-size: .76rem;
    }

    .hero-actions .ui-icon {
        width: 17px;
        height: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .team-member-card:hover .member-avatar-shell::before {
        animation: none;
    }

    .team-member-card:hover .member-avatar img,
    .team-member-card:hover {
        transform: none;
    }

    .home-hero-pillars::after,
    .home-hero-pillars span,
    .home-hero-pillars i,
    .framework-panel.is-active,
    .framework-panel.is-active .framework-value,
    .framework-panel.is-active .framework-goal,
    .framework-panel.is-active .framework-field,
    .framework-panel.is-active .framework-service,
    .framework-goal ul,
    .framework-field > p {
        animation: none;
    }

    .home-hero-pillars span {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .movement-visual > img,
    .movement-visual:hover > img {
        transform: none;
    }

    .framework-tablist button:hover,
    .framework-tablist button.is-active .framework-tab-icon,
    .framework-value:hover > span,
    .framework-service:hover > span,
    .framework-goal[open] .framework-row-icon,
    .framework-field[open] .framework-row-icon {
        transform: none;
    }
}
