@font-face {
    font-family: 'Prosto One';
    src: url('assets/fonts/ProstoOne-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gruppo';
    src: url('assets/fonts/Gruppo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Scope One';
    src: url('assets/fonts/ScopeOne-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --accent: #F2FF84;
    --white: #ffffff;
    --hero-height: 730px;
    --content-max: 1440px;
    --hero-copy-max: 760px;
    --nav-font: 'Gruppo', sans-serif;
    --body-font: 'Gruppo', sans-serif;
    --heading-font: 'Prosto One', sans-serif;
    --scope-font: 'Scope One', serif;
    --section-dark-text: #153740;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: #ffffff;
    color: var(--white);
    font-family: var(--body-font);
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.page-shell {
    width: 100%;
    overflow-x: hidden;
}

.hero {
    position: relative;
    min-height: var(--hero-height);
    background-color: transparent;
    background-image: url('assets/images/hero-background.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 22, 34, 0.18) 0%, rgba(0, 22, 34, 0.12) 100%);
    z-index: -1;
    pointer-events: none;
}

.hero-inner {
    width: min(100%, var(--content-max));
    min-height: var(--hero-height);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.site-header {
    width: 100%;
    padding-top: 48px;
}

.site-header-row {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    width: clamp(190px, 14.5vw, 267px);
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 54px;
    margin-left: auto;
    margin-right: 0;
    font-family: var(--nav-font);
    font-size: clamp(22px, 1.65vw, 30px);
    line-height: 1;
    letter-spacing: 0;
    color: var(--white);
}

.desktop-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.active {
    color: var(--accent);
    outline: none;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: 24px;
    color: #ffffff;
    font-family: var(--nav-font);
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 1;
}

.lang-button {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    padding: 0;
    min-width: 34px;
    transition: color 0.2s ease;
}

.lang-button:hover,
.lang-button:focus-visible,
.lang-button.is-active {
    color: var(--accent);
    outline: none;
}

.lang-divider {
    opacity: 0.8;
}

.mobile-lang-switch {
    display: none;
}

.mobile-menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
}

.mobile-menu-button img {
    width: 28px;
    height: auto;
    display: block;
}

.mobile-nav {
    display: none;
}

.hero-copy-wrap {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    padding-top: 158px;
    padding-bottom: 80px;
}

.hero-copy {
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    max-width: 100%;
    font-family: var(--heading-font);
    font-size: clamp(34px, 3vw, 46px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0;
    color: var(--white);
    white-space: nowrap;
}

.hero-description {
    margin-top: 28px;
    max-width: 700px;
    font-family: var(--body-font);
    font-size: clamp(22px, 1.9vw, 30px);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: 0;
    color: var(--white);
}

.mission-vision {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 95px 24px 0;
    background: #ffffff;
    color: #0d2230;
}

.mission-vision-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.mission-card,
.vision-card {
    min-height: 560px;
    padding: 62px 42px 46px 98px;
    display: flex;
    flex-direction: column;
}

.mission-card {
    background: #000000;
    color: #ffffff;
}

.vision-card {
    background: #ffffff;
    color: #000000;
    border: 4px solid #000000;
}

.section-card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 13px;
    flex: 0 0 auto;
}

.section-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.section-card-title {
    font-family: var(--heading-font);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.08;
    margin-bottom: 0;
    color: inherit;
}

.section-card-text {
    font-family: var(--body-font);
    font-size: 24px;
    line-height: 1.14;
    max-width: 30ch;
    color: inherit;
}

.mission-vision-image-wrap {
    max-width: 1400px;
    margin: 0 auto;
}

.mission-vision-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center;
}

.difference-section {
    width: min(100%, 1640px);
    margin: 0 auto;
    padding: 72px 24px 0;
    background: #ffffff;
}

.difference-title {
    font-family: var(--scope-font);
    font-size: clamp(56px, 5.8vw, 94px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0;
    color: var(--section-dark-text);
    text-align: center;
}

.goals-section {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 60px 24px 0;
    background: #ffffff;
}

.goals-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
}

.goals-cell {
    position: relative;
    min-height: 423px;
    padding: 32px 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.goals-dark {
    background: #000000;
    color: #ffffff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    padding-bottom: 64px;
}

.goals-dark-copy {
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

.goals-lime {
    background: #F3FE84;
    color: #000000;
}

.goals-gradient {
    background: linear-gradient(180deg, #021518 0%, #126678 100%);
    color: #ffffff;
}

.goals-gradient-left {
    background: linear-gradient(180deg, #05161A 0%, #136678 100%);
    color: #ffffff;
}

.goals-gradient-bottom {
    background: linear-gradient(180deg, #04171B 0%, #13687A 100%);
    color: #ffffff;
}

.goals-black-icon {
    position: absolute;
    top: 52px;
    right: 52px;
    left: auto;
    transform: none;
    width: 90px;
    height: 90px;
}

.goals-black-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.goals-small-label {
    font-family: var(--body-font);
    font-size: 26px;
    line-height: 1;
    color: #ffffff;
    margin-top: 0;
}

.goals-main-title {
    font-family: var(--heading-font);
    font-size: clamp(58px, 4.5vw, 74px);
    line-height: 0.95;
    color: #ffffff;
    margin-top: 8px;
}

.goals-text {
    position: relative;
    z-index: 1;
    max-width: 92%;
    text-align: center;
    font-family: var(--body-font);
    font-size: 26px;
    line-height: 1.1;
}

.goals-rounded {
    border-radius: 300px;
}

.goals-typing {
    background: #ffffff;
    color: #ffffff;
}

.goals-typing-merged {
    grid-column: 2 / 4;
}

.goals-typing::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/typing.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: 0;
}

.goals-typing::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    -webkit-clip-path: polygon(0 0, 50% 0, 0 100%);
    clip-path: polygon(0 0, 50% 0, 0 100%);
    z-index: 1;
}

.goals-typing .goals-text {
    width: min(58%, 24ch);
    max-width: 24ch;
    margin-left: auto;
    margin-right: 5%;
    text-align: right;
    line-height: 1.16;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.founder-section {
    width: min(100%, 1200px);
    margin: 0 auto;
    padding: 74px 43px 74px;
    background: #ffffff;
}

.founder-grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.92fr) minmax(380px, 1.08fr);
    gap: 56px;
    align-items: start;
}

.founder-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 420px;
}

.founder-heading {
    width: max-content;
    max-width: 100%;
    margin: 0 auto 26px;
    text-align: left;
}

.founder-symbol {
    font-family: var(--heading-font);
    font-size: 40px;
    line-height: 1;
    color: #153740;
    margin-bottom: 14px;
}

.founder-title {
    font-family: var(--heading-font);
    font-size: clamp(30px, 2.6vw, 42px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: 0;
    color: #153740;
    margin-bottom: 0;
}

.founder-image {
    width: min(100%, 300px);
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.founder-right {
    color: #000000;
    max-width: 620px;
}

.founder-text {
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.48;
    color: #000000;
}

.founder-text p + p {
    margin-top: 28px;
}

.founder-text strong {
    font-weight: 900;
    color: #0a1a22;
}

.impact-section {
    position: relative;
    --impact-visual-width: clamp(520px, 45%, 606px);
    width: 100%;
    min-height: 390px;
    margin: 0 auto;
    background: #F3FE84;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.impact-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: var(--impact-visual-width);
    background-color: #08374A;
    background-image: url('assets/images/matrix.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
    z-index: 0;
}

.impact-content {
    width: calc(100% - var(--impact-visual-width));
    padding-left: clamp(64px, 8vw, 145px);
    padding-right: 40px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.impact-text {
    max-width: 650px;
    font-family: var(--body-font);
    font-size: clamp(32px, 2.7vw, 44px);
    line-height: 1.18;
    color: #153740;
    text-align: left;
}

.impact-text span {
    display: block;
    margin-top: 40px;
}

.contact-section {
    width: 100%;
    min-height: 780px;
    margin: 0 auto;
    background: #000000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 96px 24px;
}

.contact-left,
.contact-right {
    min-height: 520px;
    display: flex;
    align-items: center;
}

.contact-left {
    justify-content: center;
}

.contact-left-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-title {
    font-family: var(--heading-font);
    font-size: clamp(32px, 3.2vw, 52px);
    font-weight: 400;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 58px;
}

.contact-triangles {
    width: min(100%, 260px);
    height: auto;
}

.contact-right {
    justify-content: center;
}

.contact-form {
    width: min(100%, 520px);
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contact-field {
    position: relative;
    width: 100%;
    margin-bottom: 18px;
}

.contact-field-icon {
    position: absolute;
    left: 18px;
    top: 18px;
    width: 20px;
    height: 20px;
    z-index: 1;
    pointer-events: none;
}

.contact-field-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-input,
.contact-textarea {
    width: 100%;
    border: 1px solid #ffffff;
    background: #000000;
    color: #ffffff;
    font-family: var(--body-font);
    font-size: 20px;
    line-height: 1.2;
    outline: none;
    border-radius: 9px;
}

.contact-input {
    height: 56px;
    padding: 0 18px 0 52px;
}

.contact-textarea {
    min-height: 190px;
    padding: 18px 18px 18px 52px;
    resize: vertical;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #ffffff;
    opacity: 1;
}

.contact-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 56px;
    background: #ffffff;
    color: #000000;
    font-family: var(--body-font);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    border-radius: 9px;
    border-color: transparent;
}

.contact-submit.is-loading::before {
    content: '';
    width: 16px;
    height: 16px;
    margin-right: 10px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000000;
    animation: contact-submit-spin 0.8s linear infinite;
}

.contact-submit:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

@keyframes contact-submit-spin {
    to {
        transform: rotate(360deg);
    }
}

.contact-form-status {
    min-height: 24px;
    margin-top: 12px;
    color: #ffffff;
    font-family: var(--body-font);
    font-size: 18px;
    line-height: 1.3;
}

.footer-section {
    width: 100%;
    margin: 0 auto;
    background: #143741;
    color: #ffffff;
}

.footer-main {
    position: relative;
    min-height: 410px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 92px 24px 70px;
    gap: 0;
}

.footer-column {
    justify-self: center;
}

.footer-column:first-child {
    width: min(100%, 260px);
}

.footer-column:last-child {
    width: min(100%, 360px);
}

.footer-column-title {
    font-family: var(--heading-font);
    font-size: clamp(30px, 2.6vw, 44px);
    font-weight: 400;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 34px;
}

.footer-links,
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    font-size: clamp(18px, 1.4vw, 26px);
    line-height: 1.42;
    color: #ffffff;
}

.footer-links li + li {
    margin-top: 8px;
}

.footer-contact-list li + li {
    margin-top: 8px;
}

.footer-links a,
.footer-contact-list a {
    color: #ffffff;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact-list a:hover {
    color: var(--accent);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 44px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
}

.footer-socials img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.page-up-link {
    position: absolute;
    right: clamp(31px, 2vw, 139px);
    bottom: 52px;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.page-up-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-bottom {
    min-height: 102px;
    background: #102C34;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

.footer-copyright {
    font-family: var(--body-font);
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.4;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .mission-vision {
        padding-top: 56px;
    }

    .mission-vision-inner {
        max-width: 100%;
    }

    .mission-card,
    .vision-card {
        min-height: 460px;
        padding: 44px 30px 34px 52px;
    }

    .section-card-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 6px;
        flex: 0 0 auto;
    }

    .section-card-title {
        font-size: 30px;
    }

    .section-card-text {
        font-size: 20px;
        max-width: 30ch;
    }

    .mission-vision-image {
        height: 126px;
    }

    .difference-section {
        padding-top: 40px;
    }

    .difference-title {
        font-size: clamp(40px, 5vw, 60px);
    }

    .goals-section {
        padding-top: 38px;
    }

    .goals-cell {
        min-height: 390px;
        padding: 24px 24px;
    }

    .goals-black-icon {
        top: 42px;
        right: 40px;
        left: auto;
        transform: none;
        width: 48px;
        height: 48px;
    }

    .goals-small-label {
        font-size: 22px;
        margin-top: 0;
    }

    .goals-main-title {
        font-size: 56px;
    }

    .goals-text {
        font-size: 21px;
    }

    .goals-typing .goals-text {
        width: min(58%, 24ch);
        max-width: 24ch;
        margin-right: 3%;
        text-align: right;
    }

    .goals-typing::after {
        -webkit-clip-path: polygon(0 0, 50% 0, 0 100%);
        clip-path: polygon(0 0, 50% 0, 0 100%);
    }

    :root {
        --hero-height: 740px;
    }

    .hero-copy-wrap {
        padding-top: 150px;
    }

    .desktop-nav {
        gap: 34px;
        font-size: clamp(18px, 1.8vw, 24px);
    }

    .lang-switch {
        margin-left: 16px;
        gap: 8px;
        font-size: clamp(14px, 1.1vw, 18px);
    }

    .brand img {
        width: clamp(150px, 19vw, 220px);
    }

    .site-header {
        padding-top: 28px;
    }

    .hero-copy {
        max-width: 860px;
    }

    .hero-title {
        max-width: 100%;
        font-size: clamp(30px, 3.4vw, 40px);
        white-space: normal;
    }

    .hero-description {
        max-width: 620px;
        font-size: clamp(20px, 2.2vw, 26px);
    }

    .founder-section {
        padding-top: 58px;
    }

    .founder-grid {
        grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
        gap: 40px;
    }

    .founder-symbol {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .founder-title {
        font-size: clamp(28px, 3.1vw, 36px);
        font-weight: 300;
        margin-bottom: 20px;
    }

    .founder-image {
        width: min(100%, 260px);
    }

    .founder-text {
        font-size: 17px;
        line-height: 1.46;
    }

    .founder-text p + p {
        margin-top: 22px;
    }

    .contact-section {
        min-height: 680px;
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .contact-title {
        font-size: clamp(34px, 4vw, 52px);
        margin-bottom: 44px;
    }

    .contact-triangles {
        width: min(100%, 220px);
    }

    .contact-form {
        width: min(100%, 460px);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        padding: 74px 24px 64px;
        gap: 0;
    }

    .page-up-link {
        right: 34px;
        bottom: 44px;
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 768px) {
    .mission-vision {
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
    }

    .mission-vision-inner {
        grid-template-columns: 1fr;
    }

    .mission-card,
    .vision-card {
        min-height: auto;
        padding: 36px 60px;
    }

    .vision-card {
        border-width: 0;
        border-top-width: 0;
    }

    .section-card-icon {
        width: 22px;
        height: 22px;
        margin-bottom: 5px;
    }

    .section-card-title {
        font-size: 23px;
        margin-bottom: 0;
    }

    .section-card-header {
        gap: 10px;
        margin-bottom: 16px;
    }

    .section-card-text {
        font-size: 14px;
        line-height: 1.16;
        max-width: 100%;
    }

    .mission-vision-image {
        height: 120px;
    }

    .difference-section {
        padding-left: 18px;
        padding-right: 18px;
        padding-top: 32px;
    }

    .difference-title {
        font-size: 44px;
        line-height: 1.2;
    }

    .goals-section {
        padding-left: 0;
        padding-right: 0;
        padding-top: 28px;
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }

    .goals-cell {
        min-height: 800px;
        padding: 22px 20px;
    }

    .goals-rounded {
        border-radius: 397px;
    }

    .goals-black-icon {
        top: 90px;
        right: 90px;
        left: auto;
        transform: none;
        width: 120px;
        height: 120px;
    }

    .goals-small-label {
        font-size: 28px;
        margin-top: 0;
    }

    .goals-main-title {
        font-size: 77px;
    }

    .goals-text {
        max-width: 80%;
        font-size: 28px;
        line-height: 1.12;
    }

    .goals-typing::before {
        background-position: right top;
        background-size: cover;
    }

    .goals-typing::after {
        background: #ffffff;
        -webkit-clip-path: polygon(0 0, 50% 0, 0 100%);
        clip-path: polygon(0 0, 50% 0, 0 100%);
    }

    .goals-typing .goals-text {
        width: 58%;
        max-width: 58%;
        margin-right: 0;
    }

    .goals-typing-merged .goals-text {
        max-width: 58%;
    }

    .goals-typing-merged {
        grid-column: auto;
    }

    :root {
        --hero-height: auto;
    }

    .hero {
        min-height: 600px;
        background-position: center top;
    }

    .hero-inner {
        min-height: 600px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .site-header {
        padding-top: 14px;
    }

    .brand img {
        width: 96px;
    }

    .desktop-nav {
        display: none;
    }

    .lang-switch {
        display: none;
    }

    .mobile-menu-button {
        display: inline-flex;
    }

    .mobile-nav {
        position: absolute;
        top: 72px;
        left: 18px;
        right: 18px;
        background: rgba(7, 39, 54, 0.92);
        backdrop-filter: blur(8px);
        padding: 44px 18px 16px;
        border-radius: 10px;
        flex-direction: column;
        gap: 14px;
        text-align: left;
        font-family: var(--nav-font);
        font-size: 18px;
        z-index: 10;
    }

    .mobile-nav-close {
        position: absolute;
        top: 10px;
        right: 12px;
        width: 28px;
        height: 28px;
        border: 0;
        background: transparent;
        color: var(--white);
        cursor: pointer;
        font-family: Arial, sans-serif;
        font-size: 28px;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-close:hover,
    .mobile-nav-close:focus-visible {
        color: var(--accent);
        outline: none;
    }

    .mobile-nav.is-open {
        display: flex;
    }

    .mobile-nav a {
        color: var(--white);
    }

    .mobile-nav a.active,
    .mobile-nav a:hover,
    .mobile-nav a:focus-visible {
        color: var(--accent);
        outline: none;
    }

    .mobile-lang-switch {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 4px;
        color: #ffffff;
        font-family: var(--nav-font);
        font-size: 16px;
    }

    .hero-copy-wrap {
        align-items: center;
        padding-top: 0;
        padding-bottom: 60px;
    }

    .hero-copy {
        max-width: 540px;
    }

    .hero-title {
        font-size: clamp(28px, 8.2vw, 40px);
        line-height: 1.16;
    }

    .hero-description {
        max-width: 92%;
        margin-top: 18px;
        font-size: clamp(17px, 4.5vw, 22px);
        line-height: 1.22;
    }

    .founder-section {
        padding-left: 18px;
        padding-right: 18px;
        padding-top: 46px;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .founder-left {
        align-items: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .founder-right {
        margin-left: auto;
        margin-right: auto;
    }

    .founder-symbol {
        font-size: 38px;
        margin-bottom: 16px;
    }

    .founder-title {
        font-size: 34px;
        font-weight: 300;
        margin-bottom: 22px;
    }

    .founder-image {
        width: min(100%, 320px);
    }

    .founder-text {
        font-size: 18px;
        line-height: 1.48;
    }

    .founder-text p + p {
        margin-top: 24px;
    }

    .impact-section {
        min-height: auto;
        align-items: flex-start;
        padding-top: 44px;
        padding-left: 26px;
        padding-right: 26px;
        padding-bottom: calc(clamp(170px, 38vw, 240px) + 64px);
    }

    .impact-section::after {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: clamp(170px, 38vw, 240px);
        background-position: center top;
        background-size: cover;
    }

    .impact-content {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .impact-text {
        max-width: 100%;
        font-size: 25px;
        line-height: 1.18;
    }

    .impact-text span {
        margin-top: 25px;
    }

    .contact-section {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 64px 18px;
        gap: 48px;
    }

    .contact-left,
    .contact-right {
        min-height: auto;
    }

    .contact-left-inner {
        align-items: center;
        text-align: center;
    }

    .contact-title {
        font-size: 40px;
        margin-bottom: 32px;
    }

    .contact-triangles {
        width: min(100%, 358px);
    }

    .contact-form {
        width: 100%;
        max-width: 520px;
    }

    .contact-input,
    .contact-textarea,
    .contact-submit {
        font-size: 18px;
    }

    .footer-main {
        min-height: auto;
        grid-template-columns: 1fr;
        padding: 58px 28px 96px;
        gap: 46px;
    }

    .footer-column:first-child {
        width: min(100%, 260px);
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer-column:last-child {
        width: min(100%, 360px);
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer-column-title {
        font-size: 32px;
        margin-bottom: 24px;
        text-align: center;
    }

    .footer-links,
    .footer-contact-list {
        font-size: 21px;
    }

    .footer-contact-list {
        line-height: 1;
    }

    .footer-socials {
        gap: 20px;
        margin-top: 34px;
        justify-content: center;
    }

    .footer-socials a {
        width: 40px;
        height: 40px;
    }

    .page-up-link {
        right: 30px;
        bottom: 25px;
        width: 48px;
        height: 48px;
    }

    .footer-bottom {
        min-height: 86px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 600px;
    }

    .hero-inner {
        min-height: 600px;
    }

    .site-header-row {
        min-height: 56px;
    }

    .brand img {
        width: 116px;
    }

    .hero-copy-wrap {
        justify-content: flex-start;
        margin-top: 48px;
        padding-top: 16px;
        padding-bottom: 48px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-copy {
        max-width: 320px;
    }

    .hero-title {
        font-size: 32px;
        max-width: 11.5ch;
        margin-left: auto;
        margin-right: auto;
        white-space: normal;
        text-wrap: balance;
        line-height: 1.14;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 26px;
    }

    .founder-section {
        padding-left: 12px;
        padding-right: 12px;
    }

    .founder-grid {
        gap: 24px;
    }

    .founder-left,
    .founder-right {
        width: 75%;
        max-width: 100%;
    }

    .founder-heading {
        width: 100%;
        text-align: left;
    }

    .founder-title {
        font-size: 38px;
    }

    .founder-image {
        width: min(100%, 260px);
    }

    .founder-text {
        font-size: 17px;
        line-height: 1.42;
    }

    .mission-card, .vision-card {
        min-height: 350px;
        padding: 60px 60px;
    }

    .section-card-text {
        font-size: 16px;
        line-height: 1.16;
        max-width: 100%;
    }

    .goals-rounded {
        border-radius: 240px;
    }

    .goals-cell {
        min-height: 501px;
        padding: 22px 20px;
    }

    .goals-cell.goals-typing.goals-typing-merged {
        min-height: 265px !important;

    }

    .goals-black-icon {
        top: 80px;
        right: 90px;
        left: auto;
        transform: none;
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 360px) {
    .contact-title {
        align-self: flex-start;
        text-align: left;
        padding-left: 40px;
        font-size: 36px;
    }

    .impact-content {
        text-align: center;
    }

    .impact-text {
        text-align: center;
        color: #153740;
    }

    .mission-vision-image {
        height: 96px;
    }

    .difference-title {
        font-size: 30px;
    }

    .goals-cell {
        min-height: 400px;
        padding: 22px 20px;
    }

    .goals-rounded {
        border-radius: 180px;
    }

    .goals-cell.goals-dark {
        min-height: 340px;
    }

    .goals-cell.goals-typing.goals-typing-merged {
        min-height: 200px !important;
        padding: 22px 36px;

    }

    .goals-cell.goals-typing.goals-typing-merged .goals-text {
        font-size: 17px;
    }

    .goals-text {
        max-width: 77%;
        font-size: 25px;
        line-height: 1.12;
    }

    .contact-triangles {
        width: min(100%, 295px);
    }
}

.projects-page {
    background: #f4f5f6;
    color: #153740;
}

.projects-page .page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.projects-hero {
    background: linear-gradient(180deg, #0a3644 0%, #0e3f4e 100%);
    min-height: 296px;
}

.projects-hero .hero-inner {
    min-height: 296px;
}

.projects-hero-copy {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0 46px;
}

.projects-title {
    font-family: var(--heading-font);
    font-size: clamp(36px, 3.1vw, 48px);
    color: #ffffff;
    line-height: 1.08;
}

.projects-main {
    width: min(100%, 1240px);
    flex: 1;
    margin: 0 auto;
    padding: 62px 28px 84px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-coming-soon {
    width: 100%;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
}

.projects-coming-soon-logo-wrap {
    width: min(100%, 340px);
    aspect-ratio: 2.8 / 1;
    overflow: hidden;
}

.projects-coming-soon-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 53%;
}

.projects-coming-soon-title {
    font-family: var(--heading-font);
    font-size: clamp(34px, 4vw, 64px);
    font-weight: 400;
    line-height: 1.08;
    color: #153740;
}

.project-highlight {
    display: grid;
    gap: 52px;
}

.corepin-section {
    grid-template-columns: minmax(220px, 320px) 1fr;
    align-items: center;
}

.corepin-card {
    width: min(100%, 250px);
}

.corepin-visual {
    position: relative;
    min-height: 250px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: clamp(18px, 1.6vw, 24px);
    letter-spacing: 0.04em;
    background-image: url('assets/images/road-paths.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.corepin-visual::before,
.corepin-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.corepin-visual::before {
    background-image:
            linear-gradient(116deg, transparent 28%, rgba(255, 255, 255, 0.35) 29%, rgba(255, 255, 255, 0.35) 31%, transparent 32%),
            linear-gradient(116deg, transparent 48%, rgba(255, 255, 255, 0.22) 49%, rgba(255, 255, 255, 0.22) 50.5%, transparent 51%);
}

.corepin-visual::after {
    background: linear-gradient(180deg, rgba(3, 10, 32, 0.26) 0%, rgba(3, 10, 32, 0.44) 100%);
}

.corepin-visual-mark {
    position: relative;
    z-index: 1;
}

.corepin-card-label {
    min-height: 56px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    background: #153640;
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: 24px;
    line-height: 1;
}

.project-copy {
    color: #1a2e38;
}

.project-logo-image {
    width: min(100%, 260px);
    height: auto;
}

.project-logo-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--heading-font);
    font-size: clamp(32px, 2.6vw, 44px);
    line-height: 1;
    color: #1f3f4a;
}

.project-logo-line span {
    color: #d2da58;
}

.project-logo-mark {
    font-size: 28px;
}

.project-subtitle {
    margin-top: 22px;
    margin-bottom: 16px;
    font-family: var(--heading-font);
    font-size: clamp(28px, 2.2vw, 34px);
    line-height: 1.14;
    color: #213f4b;
}

.project-text {
    max-width: 730px;
    font-family: var(--body-font);
    font-size: clamp(23px, 1.7vw, 28px);
    line-height: 1.24;
    color: #2a4048;
}

.project-text + .project-text {
    margin-top: 28px;
}

.systemeu-section {
    margin-top: 74px;
    grid-template-columns: 1fr minmax(220px, 280px);
    align-items: end;
}

.systemeu-title {
    margin-bottom: 20px;
    font-family: var(--heading-font);
    font-size: clamp(42px, 3vw, 54px);
    line-height: 1;
    color: #21414e;
}

.systemeu-logos {
    display: grid;
    gap: 20px;
    justify-items: end;
}

.systemeu-logo-main,
.systemeu-logo-eu {
    width: 180px;
    height: auto;
    display: block;
}

.systemeu-logo-main {
    max-width: 180px;
}

.systemeu-logo-eu {
    max-width: 180px;
}

.projects-footer {
    width: min(100%, 1640px);
    margin: 0 auto;
    flex: 0 0 auto;
}

@media (max-width: 1024px) {
    .projects-main {
        padding-top: 48px;
    }

    .project-highlight {
        gap: 32px;
    }

    .corepin-section {
        grid-template-columns: minmax(220px, 260px) 1fr;
    }

    .systemeu-section {
        grid-template-columns: 1fr minmax(190px, 240px);
    }

    .project-subtitle {
        margin-top: 14px;
    }
}

@media (max-width: 768px) {
    .projects-hero {
        min-height: 236px;
    }

    .projects-hero .hero-inner {
        min-height: 236px;
    }

    .projects-hero-copy {
        padding-bottom: 28px;
    }

    .projects-title {
        font-size: 36px;
    }

    .projects-main {
        padding: 34px 18px 58px;
    }

    .projects-coming-soon {
        min-height: 300px;
        gap: 24px;
    }

    .projects-coming-soon-logo-wrap {
        width: min(100%, 260px);
    }

    .corepin-section,
    .systemeu-section {
        grid-template-columns: 1fr;
    }

    .corepin-card,
    .systemeu-logos {
        justify-self: center;
    }

    .project-copy {
        text-align: center;
    }

    .project-logo-line {
        justify-content: center;
    }

    .project-logo-image {
        margin-left: auto;
        margin-right: auto;
    }

    .project-text {
        max-width: 100%;
    }

    .systemeu-section {
        margin-top: 54px;
    }

    .systemeu-title {
        margin-bottom: 14px;
    }

    .systemeu-logos {
        justify-items: center;
    }

    .goals-cell.goals-typing.goals-typing-merged {
        min-height: 420px;

    }
}

.about-page {
    background: #f4f5f6;
    color: #153740;
}

.about-hero {
    background: linear-gradient(180deg, #0a3644 0%, #0e3f4e 100%);
    min-height: 296px;
}

.about-hero .hero-inner {
    min-height: 296px;
}

.about-hero-copy {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0 46px;
}

.about-title {
    font-family: var(--heading-font);
    font-size: clamp(36px, 3.1vw, 48px);
    color: #ffffff;
    line-height: 1.08;
}

.about-main {
    width: min(100%, 1240px);
    margin: 0 auto;
    padding: 62px 28px 84px;
}

.about-intro {
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
}

.about-intro p,
.about-philosophy p {
    font-family: var(--body-font);
    font-size: clamp(23px, 1.7vw, 28px);
    line-height: 1.24;
    color: #2a4048;
}

.about-intro p + p,
.about-philosophy p + p {
    margin-top: 18px;
}

.about-image-section {
    max-width: 940px;
    margin: 56px auto 60px;
}

.about-image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.about-philosophy {
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
}

.about-philosophy h2 {
    margin-bottom: 24px;
    font-family: var(--heading-font);
    font-size: clamp(40px, 3vw, 54px);
    line-height: 1.04;
    color: #21414e;
}

@media (max-width: 1024px) {
    .about-main {
        padding-top: 48px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 236px;
    }

    .about-hero .hero-inner {
        min-height: 236px;
    }

    .about-hero-copy {
        padding-bottom: 28px;
    }

    .about-title {
        font-size: 36px;
    }

    .about-main {
        padding: 34px 18px 58px;
    }

    .about-intro p,
    .about-philosophy p {
        font-size: clamp(20px, 5vw, 24px);
    }

    .about-image-section {
        margin: 38px auto 42px;
    }

    .about-philosophy h2 {
        margin-bottom: 16px;
        font-size: clamp(32px, 7vw, 40px);
    }
}

.privacy-page {
    background: #f4f5f6;
    color: #153740;
}

.privacy-hero {
    background: linear-gradient(180deg, #0a3644 0%, #0e3f4e 100%);
    min-height: 296px;
}

.privacy-hero .hero-inner {
    min-height: 296px;
}

.privacy-hero-copy {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0 46px;
}

.privacy-title {
    font-family: var(--heading-font);
    font-size: clamp(36px, 3.1vw, 48px);
    color: #ffffff;
    line-height: 1.08;
}

.privacy-main {
    width: min(100%, 1240px);
    margin: 0 auto;
    padding: 48px 28px 84px;
}

.privacy-content {
    max-width: 980px;
    margin: 0 auto;
    color: #273d46;
}

.privacy-last-updated {
    width: 100%;
    box-sizing: border-box;
    text-align: right;
    margin-top: 0;
    margin-bottom: 16px;
    font-family: var(--body-font);
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.2;
    color: #2c424c;
}

.privacy-content h2 {
    margin-top: 18px;
    font-family: var(--heading-font);
    font-size: clamp(16px, 1.3vw, 20px);
    line-height: 1.2;
    color: #1d3540;
}

.privacy-content h3 {
    margin-top: 12px;
    font-family: var(--heading-font);
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.2;
    color: #1f3943;
}

.privacy-content p,
.privacy-content li {
    font-family: var(--body-font);
    font-size: clamp(15px, 1.05vw, 17px);
    line-height: 1.22;
    color: #2c424c;
}

.privacy-content p {
    margin-top: 6px;
}

.privacy-content ul {
    margin-top: 6px;
    margin-bottom: 10px;
    padding-left: 18px;
}

.privacy-content li + li {
    margin-top: 4px;
}

@media (max-width: 768px) {
    .privacy-hero {
        min-height: 236px;
    }

    .privacy-hero .hero-inner {
        min-height: 236px;
    }

    .privacy-hero-copy {
        padding-bottom: 28px;
    }

    .privacy-title {
        font-size: 36px;
    }

    .privacy-main {
        padding: 34px 18px 58px;
    }

    .privacy-content p,
    .privacy-content li {
        font-size: 16px;
        line-height: 1.28;
    }

    .privacy-last-updated {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

.not-found-page {
    background: #f4f5f6;
    color: #153740;
}

.not-found-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.not-found-hero {
    background: linear-gradient(180deg, #0a3644 0%, #0e3f4e 100%);
    min-height: 220px;
}

.not-found-hero .hero-inner {
    min-height: 220px;
}

.not-found-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 18px 64px;
}

.not-found-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #cf4e2f;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: 48px;
    line-height: 1;
}

.not-found-code {
    margin-top: 28px;
    font-family: var(--heading-font);
    font-size: clamp(84px, 7vw, 116px);
    line-height: 0.92;
    color: #153e4a;
}

.not-found-title {
    margin-top: 18px;
    font-family: var(--heading-font);
    font-size: clamp(28px, 2.1vw, 36px);
    line-height: 1.08;
    color: #1b3944;
}

.not-found-text {
    margin-top: 18px;
    max-width: 540px;
    font-family: var(--body-font);
    font-size: clamp(23px, 1.5vw, 27px);
    line-height: 1.18;
    color: #33474e;
}

.not-found-footer {
    width: 100%;
}

.not-found-footer .footer-bottom {
    min-height: 76px;
    background: #0e3543;
}

button.pwa-install-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    border: 1px solid #e8f68a;
    border-radius: 999px;
    background: #e8f68a;
    color: #111111;
    font-family: var(--body-font);
    font-size: 15px;
    line-height: 1;
    padding: 12px 18px;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.34);
}

button.pwa-install-cta:hover {
    background: #f2ff9f;
}

@media (max-width: 768px) {
    .not-found-hero,
    .not-found-hero .hero-inner {
        min-height: 176px;
    }

    .not-found-main {
        justify-content: flex-start;
        padding-top: 56px;
        padding-bottom: 46px;
    }

    .not-found-icon {
        width: 62px;
        height: 62px;
        font-size: 38px;
    }

    .not-found-code {
        margin-top: 20px;
        font-size: clamp(72px, 22vw, 92px);
    }

    .not-found-title {
        margin-top: 12px;
        font-size: 30px;
    }

    .not-found-text {
        margin-top: 12px;
        font-size: 21px;
    }

    button.pwa-install-cta {
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        padding: 10px 14px;
        font-size: 14px;
    }
}
