:root {
    --c-1: #fdb143;
    --c-2: #f6833e;
    --c-main: #f56d3d;
    --c-4: #f4563c;
    --c-5: #f14238;
    --c-6: #d7342f;

    --glass: rgba(255, 255, 255, 0.90);
    --glass-strong: rgba(255, 255, 255, 0.96);
    --text: #141414;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Roboto', system-ui, -apple-system, sans-serif;
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}


html,
body {
    min-height: 100%;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
}

.site-body {
    min-height: 100vh;
    color: var(--text);
    background: url("../images/website_background.jpg") center center / cover no-repeat fixed;
}

.site-header {
    position: sticky;
    top: calc(env(safe-area-inset-top, 0px) + 1rem);
    z-index: 1030;
    padding-top: 1rem;
    padding-bottom: .75rem;
}

.futuristic-shell {
    border-radius: 18px;
    border: 1px solid transparent;
    background: linear-gradient(var(--glass), rgba(255, 255, 255, 0.86)) padding-box,
    linear-gradient(90deg, rgba(245, 109, 61, 0.65), rgba(253, 177, 67, 0.65), rgba(241, 66, 56, 0.55)) border-box;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10),
    0 2px 0 rgba(245, 109, 61, 0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.site-header__shell {
    padding: .75rem 1rem;
}

.site-header__row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    min-width: 0;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}

.site-tagline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .02em;
    color: rgba(20, 20, 20, 0.72);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 40vw;
}

.site-logo__mark {
    display: none;
    height: 34px;
    aspect-ratio: 695 / 111;
    background-color: var(--c-main);
    -webkit-mask-image: url("../images/logo.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-image: url("../images/logo.png");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.site-logo__mark--lg {
    height: 44px;
}

.site-logo__img {
    height: 34px;
    width: auto;
    display: block;
    /* Fallback tint when mask-image is not supported */
    filter: brightness(0) saturate(100%) invert(50%) sepia(54%) saturate(2876%) hue-rotate(339deg) brightness(101%) contrast(101%);
}

.site-logo__img--lg {
    height: 44px;
}

@supports ((-webkit-mask-image: url("../images/logo.png")) or (mask-image: url("../images/logo.png"))) {
    .site-logo__mark {
        display: inline-block;
    }

    .site-logo__img {
        display: none;
    }
}

.site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.site-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 42px;
    padding: 0 .9rem;
    border-radius: 14px;
    text-decoration: none;
    color: rgba(20, 20, 20, 0.82);
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .85rem;
    transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.site-nav__link:hover,
.site-nav__link:focus {
    color: #ffffff;
    background: linear-gradient(90deg, var(--c-2), var(--c-main));
    box-shadow: 0 10px 24px rgba(245, 109, 61, 0.28);
}

.site-menu-btn {
    margin-left: auto;
    height: 42px;
    width: 52px;
    border-radius: 14px;
    border: 1px solid rgba(245, 109, 61, 0.28);
    background: rgba(255, 255, 255, 0.70);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 120ms ease, box-shadow 160ms ease;
}

.site-menu-btn:hover,
.site-menu-btn:focus {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(245, 109, 61, 0.18);
}

.site-menu-btn i {
    font-size: 1.15rem;
    line-height: 1;
    color: var(--c-main);
}

.site-menu-btn__icon {
    position: relative;
    width: 22px;
    height: 2px;
    background: var(--c-main);
    border-radius: 10px;
}

.site-menu-btn__icon::before,
.site-menu-btn__icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--c-main);
    border-radius: 10px;
}

.site-menu-btn__icon::before {
    top: -7px;
}

.site-menu-btn__icon::after {
    top: 7px;
}

.site-main {
    padding: 1.5rem 0 1.5rem;
    min-height: 60vh;
}

.site-page-spacer {
    min-height: 55vh;
}

.site-footer {
    padding: 0 0 1.25rem;
}

.site-footer__shell {
    padding: 1rem 1.25rem;
}

.site-footer__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-footer__brand {
    font-weight: 700;
    letter-spacing: .04em;
    min-width: 0;
}

.site-footer__links {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.site-footer__tagline {
    font-weight: 600;
    letter-spacing: .01em;
    color: rgba(20, 20, 20, 0.72);
    margin-left: .5rem;
    display: inline-block;
    max-width: 60vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-footer__link {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: linear-gradient(135deg, var(--c-1), var(--c-main), var(--c-6));
    0 2px 0 rgba(255, 255, 255, 0.22) inset;
    position: relative;
    overflow: hidden;
    transition: transform 140ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.site-footer__link i {
    position: relative;
    z-index: 1;
    font-size: 1.35rem;
}

.site-footer__link:hover,
.site-footer__link:focus {
    color: #fff;
    filter: saturate(1.08) brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(245, 109, 61, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

.site-footer__link::before {
    content: "";
    position: absolute;
    inset: -2px;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(120% 80% at 30% 20%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 55%),
        radial-gradient(90% 70% at 70% 80%, rgba(253, 177, 67, 0.42), rgba(253, 177, 67, 0) 60%);
    opacity: 0;
    transition: opacity 180ms ease;
}

.site-footer__link:hover::before,
.site-footer__link:focus::before {
    opacity: 1;
}

.site-footer__link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(253, 177, 67, 0.32),
    0 16px 34px rgba(245, 109, 61, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

@media (prefers-reduced-motion: reduce) {
    .site-footer__link {
        transition: none;
    }

    .site-footer__link:hover,
    .site-footer__link:focus {
        transform: none;
    }

    .site-footer__link::before {
        transition: none;
    }
}

/* Mobile fullscreen menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    background: var(--glass-strong);
}

.mobile-menu__shell {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2.5rem 1.5rem;
}

.mobile-menu__close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    height: 42px;
    width: 42px;
    border-radius: 14px;
    border: 1px solid rgba(245, 109, 61, 0.28);
    background: rgba(255, 255, 255, 0.70);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-main);
    transition: transform 120ms ease, box-shadow 160ms ease;
}

.mobile-menu__close:hover,
.mobile-menu__close:focus {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(245, 109, 61, 0.18);
}

.mobile-menu__close i {
    font-size: 1.35rem;
    line-height: 1;
}

.mobile-menu__logo {
    text-decoration: none;
}

.mobile-menu__tagline {
    font-family: var(--font-heading);
    font-weight: 600;
    color: rgba(20, 20, 20, 0.72);
    text-align: center;
    max-width: 34rem;
    line-height: 1.25;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .65rem;
}

.mobile-menu__link {
    width: min(420px, 92vw);
    text-align: center;
    text-decoration: none;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(245, 109, 61, 0.25);
    color: rgba(20, 20, 20, 0.88);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.mobile-menu__link:hover,
.mobile-menu__link:focus {
    color: #ffffff;
    background: linear-gradient(90deg, var(--c-2), var(--c-main));
    transform: translateY(-1px);
    box-shadow: 0 18px 42px rgba(245, 109, 61, 0.25);
}

.mobile-menu__call {
    width: min(420px, 92vw);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    text-align: center;
    text-decoration: none;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    border: 1px solid rgba(241, 66, 56, 0.20);
    color: #ffffff;
    font-weight: 900;
    letter-spacing: .04em;
    background: linear-gradient(90deg, var(--c-2), var(--c-main), var(--c-1));
    box-shadow: 0 18px 44px rgba(245, 109, 61, 0.28);
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.mobile-menu__call:hover,
.mobile-menu__call:focus {
    transform: translateY(-1px);
    box-shadow: 0 22px 54px rgba(245, 109, 61, 0.34);
    filter: brightness(1.02);
}

.mobile-menu__call i {
    font-size: 1.15rem;
    line-height: 1;
}

html.menu-open,
body.menu-open {
    overflow: hidden;
}

body.menu-open {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}

body.menu-open .mobile-menu {
    display: block;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

@media (max-width: 575.98px) {
    .site-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: .25rem;
    }

    .site-tagline {
        white-space: normal;
        max-width: 100%;
        font-size: .82rem;
        line-height: 1.15;
    }

    .site-footer__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__tagline {
        display: block;
        margin-left: 0;
        margin-top: .15rem;
    }
}

@media (max-width: 991.98px) {
    .site-body {
        background-attachment: scroll;
    }

    .site-header {
        top: calc(env(safe-area-inset-top, 0px) + .75rem);
        padding-top: .75rem;
    }
}

/* Home page */
.home-hero {
    margin-top: .5rem;
}

.home-hero__shell {
    padding: 2.25rem 1.75rem;
}

.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .82rem;
    color: rgba(20, 20, 20, 0.70);
}

.home-title {
    margin-top: .6rem;
    margin-bottom: .75rem;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    line-height: 1.05;
    letter-spacing: -.02em;
}

.home-lead {
    font-size: 1.08rem;
    color: rgba(20, 20, 20, 0.76);
    max-width: 46rem;
    margin-bottom: 0;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.25rem;
}

.site-btn {
    border-radius: 16px;
    padding: .85rem 1.15rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .88rem;
    border: 1px solid transparent;
    transition: transform 120ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.site-btn--primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--c-2), var(--c-main));
    box-shadow: 0 16px 32px rgba(245, 109, 61, 0.24);
}

.site-btn--primary:hover,
.site-btn--primary:focus {
    color: #ffffff;
    background: linear-gradient(90deg, var(--c-main), var(--c-1));
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(245, 109, 61, 0.30);
}

.site-btn--ghost {
    color: rgba(20, 20, 20, 0.86);
    background: rgba(255, 255, 255, 0.70);
    border-color: rgba(245, 109, 61, 0.30);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.site-btn--ghost:hover,
.site-btn--ghost:focus {
    color: #ffffff;
    background: linear-gradient(90deg, var(--c-2), var(--c-main));
    border-color: transparent;
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(245, 109, 61, 0.22);
}

.site-btn:focus-visible {
    outline: 3px solid rgba(253, 177, 67, 0.55);
    outline-offset: 2px;
}

.home-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.25rem;
}

.home-pill {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .55rem .8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(245, 109, 61, 0.22);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
    font-weight: 700;
    color: rgba(20, 20, 20, 0.78);
    letter-spacing: .01em;
}

.home-pill i {
    color: var(--c-main);
}

.home-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
}

.home-metric {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: .75rem;
    row-gap: .25rem;
    height: 100%;
    border-radius: 18px;
    padding: 1rem 1.05rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(245, 109, 61, 0.20);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.home-metric__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(90deg, var(--c-2), var(--c-main));
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(245, 109, 61, 0.18);
    grid-column: 1;
    grid-row: 1;
}

.home-metric__title {
    margin: 0;
    align-self: center;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: .02em;
    grid-column: 2;
    grid-row: 1;
}

.home-metric__text {
    margin: 0;
    color: rgba(20, 20, 20, 0.74);
    font-size: .95rem;
    grid-column: 1 / -1;
    grid-row: 2;
}

.home-section {
    margin-top: 1.5rem;
}

.home-section__shell {
    padding: 1.75rem 1.5rem;
}

.home-section__header {
    max-width: 52rem;
}

.home-section__title {
    margin-bottom: .35rem;
    font-size: 1.75rem;
}

.home-section__subtitle {
    margin-bottom: 1.15rem;
    color: rgba(20, 20, 20, 0.72);
}

.home-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.1rem;
}

.home-card {
    height: 100%;
    border-radius: 20px;
    padding: 1.15rem 1.15rem;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(245, 109, 61, 0.20);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);

    display: grid;
    grid-template-columns: 42px 1fr;
    grid-template-rows: auto auto;
    column-gap: .85rem;
    row-gap: .55rem;
}

.home-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--c-1), var(--c-main));
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(245, 109, 61, 0.18);

    grid-column: 1;
    grid-row: 1;
    align-self: center;
}

.home-card__title {
    margin: 0;
    font-size: 1.12rem;

    grid-column: 2;
    grid-row: 1;
    align-self: center;
}

.home-card__text {
    margin-top: 0;
    margin-bottom: 0;
    color: rgba(20, 20, 20, 0.74);

    grid-column: 1 / -1;
    grid-row: 2;
}

.home-step {
    height: 100%;
    border-radius: 20px;
    padding: 1.15rem 1.15rem;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(245, 109, 61, 0.20);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.home-step__nr {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    color: #ffffff;
    background: linear-gradient(90deg, var(--c-2), var(--c-main));
    box-shadow: 0 12px 26px rgba(245, 109, 61, 0.18);
}

.home-step__title {
    margin-top: .85rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.home-step__text {
    margin-top: .25rem;
    color: rgba(20, 20, 20, 0.74);
    font-size: .95rem;
}

.home-cta {
    margin-top: 1.25rem;
    border-radius: 22px;
    padding: 1.25rem 1.25rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(245, 109, 61, 0.20);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.home-cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.home-cta__title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.18rem;
}

.home-cta__text {
    color: rgba(20, 20, 20, 0.72);
    margin-top: .35rem;
    max-width: 46rem;
}

.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

/* About page */
.about-hero__shell {
    padding: 2.15rem 1.75rem;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
    font-size: .82rem;
    color: rgba(20, 20, 20, 0.70);
}

.about-title {
    margin-top: .65rem;
    margin-bottom: .75rem;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    line-height: 1.08;
    letter-spacing: -.02em;
}

.about-lead {
    font-size: 1.05rem;
    color: rgba(20, 20, 20, 0.76);
    max-width: 50rem;
    margin-bottom: 0;
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.25rem;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin-top: 1.2rem;
    margin-bottom: 0;
}

.about-fact {
    border-radius: 18px;
    padding: .85rem .95rem;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(245, 109, 61, 0.20);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.07);
}

.about-fact dt {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: .02em;
    color: rgba(20, 20, 20, 0.78);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.about-fact dt i {
    color: var(--c-main);
}

.about-fact dd {
    margin: .25rem 0 0;
    color: rgba(20, 20, 20, 0.72);
    font-weight: 700;
}

.about-panel {
    border-radius: 22px;
    padding: 1.25rem 1.25rem;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(245, 109, 61, 0.22);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.about-panel__title {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: .02em;
    font-size: 1.18rem;
}

.about-checklist {
    list-style: none;
    padding: 0;
    margin: .85rem 0 0;
    display: grid;
    gap: .55rem;
}

.about-checklist li {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    color: rgba(20, 20, 20, 0.76);
}

.about-checklist i {
    margin-top: .2rem;
    color: var(--c-main);
}

.about-panel__note {
    margin-top: .95rem;
    padding-top: .95rem;
    border-top: 1px solid rgba(245, 109, 61, 0.18);
    color: rgba(20, 20, 20, 0.72);
    display: flex;
    gap: .6rem;
}

.about-panel__note i {
    margin-top: .15rem;
    color: var(--c-main);
}

.about-section {
    margin-top: 1.5rem;
}

.about-section__shell,
.about-roadmap__shell,
.about-cta__shell {
    padding: 1.75rem 1.5rem;
}

.about-section__header {
    max-width: 56rem;
}

.about-section__title {
    margin-bottom: .35rem;
    font-size: 1.75rem;
}

.about-section__subtitle {
    margin-bottom: 1.15rem;
    color: rgba(20, 20, 20, 0.72);
}

.about-paragraph {
    margin-bottom: .95rem;
    color: rgba(20, 20, 20, 0.76);
}

.about-highlight {
    border-radius: 22px;
    padding: 1.2rem 1.2rem;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(245, 109, 61, 0.20);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.about-highlight__title {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: .02em;
}

.about-highlight__title i {
    color: var(--c-main);
}

.about-bullets {
    margin: .85rem 0 0;
    padding-left: 1.1rem;
    color: rgba(20, 20, 20, 0.74);
}

.about-bullets li {
    margin-bottom: .55rem;
}

.about-mvv {
    height: 100%;
    border-radius: 22px;
    padding: 1.15rem 1.15rem;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(245, 109, 61, 0.20);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.about-mvv__head {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.about-mvv__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 15px;
    background: linear-gradient(90deg, var(--c-2), var(--c-main));
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(245, 109, 61, 0.18);
    flex: 0 0 auto;
}

.about-mvv__title {
    margin: 0;
    font-size: 1.12rem;
}

.about-mvv__text {
    margin-top: .6rem;
    margin-bottom: 0;
    color: rgba(20, 20, 20, 0.74);
}

.about-values {
    margin-top: 1.15rem;
}

.about-values__title {
    font-size: 1.25rem;
    margin-bottom: .85rem;
}

.about-value {
    height: 100%;
    display: flex;
    gap: .85rem;
    border-radius: 22px;
    padding: 1.05rem 1.05rem;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(245, 109, 61, 0.18);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}

.about-value__icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--c-1), var(--c-main));
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(245, 109, 61, 0.18);
    flex: 0 0 auto;
}

.about-value__title {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: .01em;
}

.about-value__text {
    margin-top: .2rem;
    color: rgba(20, 20, 20, 0.74);
    font-size: .95rem;
}

.about-timeline {
    list-style: none;
    padding: 0;
    margin: 1.15rem 0 0;
    position: relative;
}

.about-timeline::before {
    content: "";
    position: absolute;
    left: 12px;
    top: .25rem;
    bottom: .25rem;
    width: 2px;
    background: rgba(245, 109, 61, 0.24);
}

.about-timeline__item {
    position: relative;
    padding-left: 3.1rem;
    padding-bottom: 1.05rem;
}

.about-timeline__item:last-child {
    padding-bottom: 0;
}

.about-timeline__dot {
    position: absolute;
    left: 3px;
    top: .25rem;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--c-2), var(--c-main));
    box-shadow: 0 12px 26px rgba(245, 109, 61, 0.18);
}

.about-timeline__year {
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .82rem;
    color: rgba(20, 20, 20, 0.74);
}

.about-timeline__card {
    margin-top: .35rem;
    border-radius: 18px;
    padding: .95rem 1rem;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(245, 109, 61, 0.18);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
    color: rgba(20, 20, 20, 0.76);
}

.about-roadmap {
    margin-top: 1.5rem;
}

.about-cta {
    margin-top: 1.5rem;
}

.about-cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.about-cta__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.18rem;
}

.about-cta__text {
    color: rgba(20, 20, 20, 0.72);
    margin-top: .35rem;
    max-width: 46rem;
}

.about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

/* Contact page */
.contact-hero {
    padding: 2.25rem 1.75rem;
    margin-top: .5rem;
}

.contact-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .82rem;
    color: rgba(20, 20, 20, 0.70);
}

.contact-hero__title {
    margin-top: .55rem;
    margin-bottom: .75rem;
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -.02em;
}

.contact-hero__lead {
    margin-bottom: 0;
    color: rgba(20, 20, 20, 0.76);
    max-width: 54rem;
}

.contact-row {
    margin-top: 1.25rem;
}

.contact-panel {
    padding: 1.6rem 1.5rem;
}

.contact-panel__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.contact-panel__title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.18rem;
    margin-bottom: 0;
}

.contact-panel__hint {
    margin-top: .25rem;
    color: rgba(20, 20, 20, 0.72);
    font-weight: 600;
    font-size: .92rem;
}

.contact-panel__text {
    margin-top: .55rem;
    margin-bottom: 0;
    color: rgba(20, 20, 20, 0.74);
}

.contact-alert {
    margin-top: 1rem;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: .65rem;
}

.contact-alert i {
    margin-top: .15rem;
}

.contact-form {
    margin-top: 1rem;
}

.contact-control {
    border-radius: 16px;
    border: 1px solid rgba(245, 109, 61, 0.20);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
    padding: .85rem 1rem;
}

.contact-control:focus {
    border-color: rgba(245, 109, 61, 0.55);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 0 0 .2rem rgba(253, 177, 67, 0.25), 0 12px 26px rgba(0, 0, 0, 0.05);
}

.contact-control--textarea {
    min-height: 9.5rem;
}

.contact-form__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 1.15rem;
}

.contact-form__note {
    color: rgba(20, 20, 20, 0.72);
    font-weight: 600;
    font-size: .92rem;
    max-width: 26rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.1rem 0 0;
    display: grid;
    gap: .65rem;
}

.contact-list__link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .8rem .9rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.70);
    border: 1px solid rgba(245, 109, 61, 0.18);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
    color: rgba(20, 20, 20, 0.82);
    text-decoration: none;
    font-weight: 800;
    transition: transform 120ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.contact-list__link:hover,
.contact-list__link:focus {
    transform: translateY(-1px);
    border-color: rgba(245, 109, 61, 0.30);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
    color: rgba(20, 20, 20, 0.90);
}

.contact-list__link--static:hover,
.contact-list__link--static:focus {
    transform: none;
}

.contact-list__icon {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(245, 109, 61, 0.16), rgba(253, 177, 67, 0.22));
    color: var(--c-main);
}

.contact-list__label {
    display: inline-block;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: .01em;
    color: rgba(20, 20, 20, 0.82);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1rem;
}

.contact-actions .site-btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
}

.site-btn--whatsapp {
    color: #ffffff;
    background: linear-gradient(90deg, #1EBEA5, #25D366);
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.22);
}

.site-btn--whatsapp:hover,
.site-btn--whatsapp:focus {
    color: #ffffff;
    background: linear-gradient(90deg, #25D366, #128C7E);
    transform: translateY(-1px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.28);
}

.contact-map {
    margin-top: 1rem;
}

.contact-map__frame {
    margin-top: .85rem;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(245, 109, 61, 0.18);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.06);
}

.contact-map__frame iframe {
    display: block;
    width: 100%;
}

@media (max-width: 575.98px) {
    .home-hero__shell {
        padding: 1.6rem 1.25rem;
    }

    .home-metric-grid {
        grid-template-columns: 1fr;
    }

    .about-hero__shell {
        padding: 1.75rem 1.25rem;
    }

    .contact-hero {
        padding: 1.75rem 1.25rem;
    }

    .contact-panel {
        padding: 1.4rem 1.25rem;
    }

    .about-facts {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .about-timeline__item {
        padding-left: 3.6rem;
    }
}
