body.fiwork-kind-page {
    --kind-bg: #fff;
    --kind-surface: #f3f5f7;
    --kind-surface-raised: #fff;
    --kind-border: #e2e7ec;
    --kind-text: #20242a;
    --kind-text-soft: #5f6873;
    --kind-blue: #0177ff;
    --kind-blue-soft: #eaf4ff;
    --kind-green: #20a565;
    --kind-green-soft: #eaf8f1;
    color: var(--kind-text);
    background: var(--kind-bg);
    overflow-x: clip;
}

.fiwork-kind-page .kind-page,
.fiwork-kind-page .kind-page * {
    box-sizing: border-box;
}

.fiwork-kind-page .kind-page {
    width: min(1240px, 100%);
    margin: 48px auto 72px;
    font-family: var(--font-family), Inter, sans-serif;
}

.fiwork-kind-page .kind-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(420px, 7fr);
    min-height: 510px;
    border: 1px solid #d9e8f7;
    border-radius: 32px;
    background:
        radial-gradient(circle at 87% 8%, rgba(52, 171, 238, .24), transparent 34%),
        linear-gradient(135deg, #f8fbff 0%, #eef7ff 56%, #e8f5ff 100%);
    overflow: hidden;
}

.fiwork-kind-page .kind-hero__copy {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 54px 0 54px 52px;
}

.fiwork-kind-page .kind-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    color: #1169ae;
    background: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fiwork-kind-page .kind-hero h1 {
    max-width: 570px;
    margin: 20px 0 0;
    color: var(--kind-text);
    font-size: clamp(44px, 4.7vw, 64px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -.045em;
}

.fiwork-kind-page .kind-hero__copy > p {
    max-width: 570px;
    margin: 22px 0 0;
    color: var(--kind-text-soft);
    font-size: 18px;
    line-height: 1.6;
}

.fiwork-kind-page .kind-hero__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 30px;
    color: var(--kind-blue);
    font-size: 16px;
    font-weight: 650;
    text-decoration: none;
}

.fiwork-kind-page .kind-hero__link svg,
.fiwork-kind-page .kind-primary-link svg,
.fiwork-kind-page .kind-footer-card__button svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
}

.fiwork-kind-page .kind-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 46px 42px 100px;
}

.fiwork-kind-page .kind-hero__glow {
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .8);
    filter: blur(2px);
}

.fiwork-kind-page .kind-impact-card {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 286px;
    aspect-ratio: 1;
    border: 1px solid rgba(1, 119, 255, .13);
    border-radius: 50%;
    color: #fff;
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .24), transparent 27%),
        linear-gradient(145deg, #35aced 0%, #0177ff 72%);
}

.fiwork-kind-page .kind-impact-card::before,
.fiwork-kind-page .kind-impact-card::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(1, 119, 255, .14);
    border-radius: 50%;
}

.fiwork-kind-page .kind-impact-card::before {
    inset: -20px;
}

.fiwork-kind-page .kind-impact-card::after {
    inset: -40px;
    border-color: rgba(1, 119, 255, .08);
}

.fiwork-kind-page .kind-impact-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, .17);
}

.fiwork-kind-page .kind-impact-card__icon svg {
    width: 25px;
    height: 25px;
}

.fiwork-kind-page .kind-impact-card__value {
    margin-top: 12px;
    font-size: 58px;
    font-weight: 760;
    line-height: 1;
    letter-spacing: -.05em;
}

.fiwork-kind-page .kind-impact-card__caption {
    max-width: 180px;
    margin-top: 10px;
    color: rgba(255, 255, 255, .84);
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
}

.fiwork-kind-page .kind-hero__route {
    position: absolute;
    z-index: 3;
    right: 38px;
    bottom: 28px;
    left: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.fiwork-kind-page .kind-hero__route span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border: 1px solid rgba(1, 119, 255, .12);
    border-radius: 999px;
    color: #294b67;
    background: rgba(255, 255, 255, .8);
    font-size: 13px;
    font-weight: 650;
    white-space: nowrap;
}

.fiwork-kind-page .kind-hero__route span svg {
    width: 18px;
    height: 18px;
    color: var(--kind-blue);
}

.fiwork-kind-page .kind-hero__route > i {
    width: 22px;
    height: 1px;
    background: rgba(1, 119, 255, .3);
}

.fiwork-kind-page .kind-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.fiwork-kind-page .kind-summary article {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    min-height: 142px;
    padding: 26px 28px;
    border: 1px solid var(--kind-border);
    border-radius: 22px;
    background: var(--kind-surface);
}

.fiwork-kind-page .kind-summary strong {
    color: var(--kind-text);
    font-size: 31px;
    line-height: 1;
    letter-spacing: -.025em;
}

.fiwork-kind-page .kind-summary span {
    max-width: 280px;
    margin-top: 10px;
    color: var(--kind-text-soft);
    font-size: 15px;
    line-height: 1.45;
}

.fiwork-kind-page .kind-section {
    margin-top: 28px;
    padding: 44px;
    border: 1px solid var(--kind-border);
    border-radius: 28px;
    background: var(--kind-surface);
}

.fiwork-kind-page .kind-section__heading {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.fiwork-kind-page .kind-section__number {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--kind-border);
    border-radius: 15px;
    color: var(--kind-blue);
    background: var(--kind-surface-raised);
    font-size: 14px;
    font-weight: 750;
}

.fiwork-kind-page .kind-section__heading .kind-eyebrow {
    padding: 0;
    color: var(--kind-blue);
    background: transparent;
}

.fiwork-kind-page .kind-section h2 {
    max-width: 850px;
    margin: 9px 0 0;
    color: var(--kind-text);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.fiwork-kind-page .kind-foundation__grid,
.fiwork-kind-page .kind-eco__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr);
    gap: 14px;
    margin-top: 34px;
}

.fiwork-kind-page .kind-foundation__story,
.fiwork-kind-page .kind-process,
.fiwork-kind-page .kind-eco__copy,
.fiwork-kind-page .kind-formula {
    border: 1px solid var(--kind-border);
    border-radius: 22px;
    background: var(--kind-surface-raised);
}

.fiwork-kind-page .kind-foundation__story {
    padding: 32px;
}

.fiwork-kind-page .kind-foundation__brand {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    padding: 9px 13px;
    border-radius: 11px;
    color: #fff;
    background: var(--kind-blue);
}

.fiwork-kind-page .kind-foundation__brand span {
    font-size: 13px;
    font-weight: 600;
    opacity: .78;
}

.fiwork-kind-page .kind-foundation__brand strong {
    font-size: 20px;
    line-height: 1;
}

.fiwork-kind-page .kind-foundation__story p,
.fiwork-kind-page .kind-eco__copy > p {
    margin: 24px 0 0;
    color: var(--kind-text-soft);
    font-size: 17px;
    line-height: 1.65;
}

.fiwork-kind-page .kind-foundation__story p + p {
    margin-top: 14px;
}

.fiwork-kind-page .kind-primary-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
    color: var(--kind-blue);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.fiwork-kind-page .kind-process {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 10px 26px;
    list-style: none;
}

.fiwork-kind-page .kind-process li {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
    padding: 22px 0;
}

.fiwork-kind-page .kind-process li + li {
    border-top: 1px solid var(--kind-border);
}

.fiwork-kind-page .kind-process__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    color: var(--kind-blue);
    background: var(--kind-blue-soft);
}

.fiwork-kind-page .kind-process__icon svg {
    width: 23px;
    height: 23px;
}

.fiwork-kind-page .kind-process strong {
    display: block;
    color: var(--kind-text);
    font-size: 17px;
    line-height: 1.25;
}

.fiwork-kind-page .kind-process p {
    margin: 7px 0 0;
    color: var(--kind-text-soft);
    font-size: 14px;
    line-height: 1.48;
}

.fiwork-kind-page .kind-eco {
    background:
        radial-gradient(circle at 94% 0, rgba(41, 180, 107, .12), transparent 35%),
        var(--kind-surface);
}

.fiwork-kind-page .kind-eco .kind-section__number,
.fiwork-kind-page .kind-eco .kind-section__heading .kind-eyebrow {
    color: var(--kind-green);
}

.fiwork-kind-page .kind-eco__copy {
    padding: 32px;
}

.fiwork-kind-page .kind-eco__copy > p {
    margin-top: 0;
}

.fiwork-kind-page .kind-eco__features {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.fiwork-kind-page .kind-eco__features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--kind-text);
    font-size: 15px;
    font-weight: 600;
}

.fiwork-kind-page .kind-eco__features svg {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    color: var(--kind-green);
}

.fiwork-kind-page .kind-formula {
    padding: 28px;
}

.fiwork-kind-page .kind-formula__label {
    color: var(--kind-text-soft);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.fiwork-kind-page .kind-formula__row {
    display: grid;
    grid-template-columns: repeat(5, auto);
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 22px;
}

.fiwork-kind-page .kind-formula__row strong {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-width: 82px;
    min-height: 82px;
    padding: 10px;
    border-radius: 17px;
    color: var(--kind-green);
    background: var(--kind-green-soft);
}

.fiwork-kind-page .kind-formula__row b {
    font-size: 24px;
    line-height: 1;
}

.fiwork-kind-page .kind-formula__row small {
    margin-top: 7px;
    color: #547065;
    font-size: 11px;
    font-weight: 650;
    text-align: center;
}

.fiwork-kind-page .kind-formula__row i {
    color: #9aaba4;
    font-size: 18px;
    font-style: normal;
}

.fiwork-kind-page .kind-formula__result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--kind-border);
}

.fiwork-kind-page .kind-formula__result span {
    color: var(--kind-text-soft);
    font-size: 14px;
}

.fiwork-kind-page .kind-formula__result strong {
    color: var(--kind-green);
    font-size: 27px;
    white-space: nowrap;
}

.fiwork-kind-page .kind-methodology {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-top: 14px;
    padding: 20px 22px;
    border: 1px solid var(--kind-border);
    border-radius: 18px;
    background: var(--kind-surface-raised);
}

.fiwork-kind-page .kind-methodology__icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    color: var(--kind-green);
    background: var(--kind-green-soft);
}

.fiwork-kind-page .kind-methodology__icon svg {
    width: 20px;
    height: 20px;
}

.fiwork-kind-page .kind-methodology p {
    margin: 1px 0 0;
    color: var(--kind-text-soft);
    font-size: 14px;
    line-height: 1.55;
}

.fiwork-kind-page .kind-footer-card {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-top: 28px;
    padding: 44px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(78, 190, 255, .28), transparent 30%),
        linear-gradient(135deg, #086bcf 0%, #0177ff 100%);
}

.fiwork-kind-page .kind-footer-card .kind-eyebrow {
    color: rgba(255, 255, 255, .76);
    background: rgba(255, 255, 255, .12);
}

.fiwork-kind-page .kind-footer-card h2 {
    max-width: 740px;
    margin: 15px 0 0;
    color: #fff;
    font-size: clamp(34px, 3.5vw, 48px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.fiwork-kind-page .kind-footer-card p {
    margin: 15px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.5;
}

.fiwork-kind-page .kind-footer-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 14px;
    color: #0871d7;
    background: #fff;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    white-space: nowrap;
}

.fiwork-kind-page :is(.kind-hero__link, .kind-primary-link, .kind-footer-card__button):focus-visible {
    outline: 3px solid rgba(1, 119, 255, .25);
    outline-offset: 4px;
}

html[data-theme="dark"] body.fiwork-kind-page {
    --kind-bg: #101214;
    --kind-surface: #181b1f;
    --kind-surface-raised: #1d2126;
    --kind-border: #2b3036;
    --kind-text: #f2f4f7;
    --kind-text-soft: #b3bdc8;
    --kind-blue: #4aa8f7;
    --kind-blue-soft: rgba(74, 168, 247, .13);
    --kind-green: #53c88d;
    --kind-green-soft: rgba(83, 200, 141, .12);
    background: var(--kind-bg);
}

html[data-theme="dark"] .fiwork-kind-page .kind-hero {
    border-color: #293b4d;
    background:
        radial-gradient(circle at 87% 8%, rgba(74, 168, 247, .18), transparent 34%),
        linear-gradient(135deg, #151a20 0%, #17222c 100%);
}

html[data-theme="dark"] .fiwork-kind-page .kind-eyebrow {
    color: #8bc8fa;
    background: rgba(74, 168, 247, .11);
}

html[data-theme="dark"] .fiwork-kind-page .kind-hero__glow {
    background: rgba(40, 54, 67, .62);
}

html[data-theme="dark"] .fiwork-kind-page .kind-impact-card {
    border-color: rgba(111, 190, 255, .25);
    background:
        radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .2), transparent 27%),
        linear-gradient(145deg, #278ec9 0%, #096bce 72%);
}

html[data-theme="dark"] .fiwork-kind-page .kind-impact-card::before,
html[data-theme="dark"] .fiwork-kind-page .kind-impact-card::after {
    border-color: rgba(74, 168, 247, .17);
}

html[data-theme="dark"] .fiwork-kind-page .kind-hero__route span {
    border-color: #304253;
    color: #d4e1ec;
    background: rgba(25, 31, 37, .9);
}

html[data-theme="dark"] .fiwork-kind-page .kind-hero__route > i {
    background: rgba(74, 168, 247, .3);
}

html[data-theme="dark"] .fiwork-kind-page .kind-formula__row small {
    color: #a5bdb2;
}

html[data-theme="dark"] .fiwork-kind-page .kind-footer-card {
    background:
        radial-gradient(circle at 80% 20%, rgba(78, 190, 255, .18), transparent 30%),
        linear-gradient(135deg, #0a4c8f 0%, #086bcf 100%);
}

@media (hover: hover) {
    .fiwork-kind-page .kind-hero__link:hover,
    .fiwork-kind-page .kind-primary-link:hover {
        color: #005fcf;
    }

    .fiwork-kind-page .kind-footer-card__button:hover {
        color: #045fb4;
        background: #edf7ff;
    }
}

@media (max-width: 900px) {
    .fiwork-kind-page .kind-page {
        margin-top: 28px;
    }

    .fiwork-kind-page .kind-hero {
        grid-template-columns: 1fr;
    }

    .fiwork-kind-page .kind-hero__copy {
        padding-right: 52px;
    }

    .fiwork-kind-page .kind-hero__visual {
        min-height: 430px;
    }

    .fiwork-kind-page .kind-foundation__grid,
    .fiwork-kind-page .kind-eco__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body.fiwork-kind-page {
        width: 100%;
        overflow-x: hidden;
    }

    .fiwork-kind-page .kind-page {
        width: auto;
        margin: 18px 12px 48px;
    }

    .fiwork-kind-page .kind-hero {
        min-height: 0;
        border-radius: 24px;
    }

    .fiwork-kind-page .kind-hero__copy {
        padding: 28px 22px 20px;
    }

    .fiwork-kind-page .kind-hero h1 {
        margin-top: 17px;
        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.05;
    }

    .fiwork-kind-page .kind-hero__copy > p {
        margin-top: 17px;
        font-size: 16px;
        line-height: 1.55;
    }

    .fiwork-kind-page .kind-hero__link {
        margin-top: 22px;
        font-size: 15px;
    }

    .fiwork-kind-page .kind-hero__visual {
        min-height: 390px;
        padding: 28px 18px 100px;
    }

    .fiwork-kind-page .kind-hero__glow {
        width: 310px;
        height: 310px;
    }

    .fiwork-kind-page .kind-impact-card {
        width: 220px;
    }

    .fiwork-kind-page .kind-impact-card::before {
        inset: -14px;
    }

    .fiwork-kind-page .kind-impact-card::after {
        inset: -28px;
    }

    .fiwork-kind-page .kind-impact-card__value {
        font-size: 46px;
    }

    .fiwork-kind-page .kind-hero__route {
        right: 14px;
        bottom: 22px;
        left: 14px;
        gap: 5px;
    }

    .fiwork-kind-page .kind-hero__route span {
        gap: 5px;
        padding: 8px 9px;
        font-size: 11px;
    }

    .fiwork-kind-page .kind-hero__route span svg {
        width: 15px;
        height: 15px;
    }

    .fiwork-kind-page .kind-hero__route > i {
        width: 8px;
    }

    .fiwork-kind-page .kind-summary {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 10px;
    }

    .fiwork-kind-page .kind-summary article {
        min-height: 0;
        padding: 20px;
        border-radius: 18px;
    }

    .fiwork-kind-page .kind-summary strong {
        font-size: 27px;
    }

    .fiwork-kind-page .kind-summary span {
        margin-top: 7px;
        font-size: 14px;
    }

    .fiwork-kind-page .kind-section {
        margin-top: 10px;
        padding: 22px;
        border-radius: 20px;
    }

    .fiwork-kind-page .kind-section__heading {
        gap: 12px;
    }

    .fiwork-kind-page .kind-section__number {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 12px;
    }

    .fiwork-kind-page .kind-section h2 {
        margin-top: 7px;
        font-size: 30px;
        line-height: 1.1;
    }

    .fiwork-kind-page .kind-foundation__grid,
    .fiwork-kind-page .kind-eco__grid {
        gap: 8px;
        margin-top: 22px;
    }

    .fiwork-kind-page .kind-foundation__story,
    .fiwork-kind-page .kind-eco__copy,
    .fiwork-kind-page .kind-formula {
        padding: 20px;
        border-radius: 17px;
    }

    .fiwork-kind-page .kind-foundation__story p,
    .fiwork-kind-page .kind-eco__copy > p {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.6;
    }

    .fiwork-kind-page .kind-process {
        padding: 7px 18px;
        border-radius: 17px;
    }

    .fiwork-kind-page .kind-process li {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        padding: 18px 0;
    }

    .fiwork-kind-page .kind-process__icon {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    .fiwork-kind-page .kind-process strong {
        font-size: 16px;
    }

    .fiwork-kind-page .kind-primary-link {
        font-size: 15px;
    }

    .fiwork-kind-page .kind-formula__row {
        gap: 4px;
    }

    .fiwork-kind-page .kind-formula__row strong {
        min-width: 0;
        min-height: 74px;
        padding: 8px 5px;
    }

    .fiwork-kind-page .kind-formula__row b {
        font-size: 20px;
    }

    .fiwork-kind-page .kind-formula__row small {
        font-size: 9px;
    }

    .fiwork-kind-page .kind-methodology {
        margin-top: 8px;
        padding: 16px;
        border-radius: 16px;
    }

    .fiwork-kind-page .kind-methodology p {
        font-size: 13px;
    }

    .fiwork-kind-page .kind-footer-card {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 10px;
        padding: 26px 22px;
        border-radius: 20px;
    }

    .fiwork-kind-page .kind-footer-card h2 {
        font-size: 31px;
    }

    .fiwork-kind-page .kind-footer-card__button {
        width: 100%;
    }
}

@media (max-width: 374px) {
    .fiwork-kind-page .kind-hero__route span {
        padding-inline: 7px;
        font-size: 10px;
    }

    .fiwork-kind-page .kind-hero__route span svg {
        display: none;
    }

    .fiwork-kind-page .kind-section {
        padding: 18px;
    }

    .fiwork-kind-page .kind-section h2 {
        font-size: 27px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fiwork-kind-page .kind-page * {
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
    }
}
