/* 플렉스솔루션 홈페이지 공용 스타일 */
:root {
    --flx-ink: #282d35;
    --flx-ink-2: #3a4048;
    --flx-body: #565c66;
    --flx-muted: #817c72;
    --flx-hair: #ded9ce;
    --flx-hair-2: #c8c1b5;
    --flx-paper: #efece4;
    --flx-paper-2: #e8e4da;
    --flx-card: #fbfaf7;
    --flx-slate: #222c39;
    --flx-slate-2: #2d3745;
    --flx-blue: #4462ae;
    --flx-blue-light: #8aa4e6;
    --flx-red: #d95766;
    --flx-amber: #e4a33a;
    --flx-white: #f8f7f3;
    --flx-display: "Noto Serif KR", Georgia, serif;
    --flx-sans: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --flx-type-hero-brand: clamp(26px, 4.25vw, 60px);
    --flx-type-hero-wide: clamp(50px, 6.2vw, 84px);
    --flx-type-heading-feature: clamp(34px, 3.5vw, 48px);
    --flx-type-hero-split: var(--flx-type-heading-feature);
    --flx-leading-hero-brand: 1.12;
    --flx-leading-hero-wide: 1.18;
    --flx-leading-hero-split: 1.25;
    --flx-shell: 1140px;
    --flx-gutter: clamp(20px, 5vw, 56px);
    --flx-header: 76px;
    --flx-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--flx-paper);
}

body.flx-body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--flx-paper);
    color: var(--flx-body);
    font-family: var(--flx-sans);
    line-height: 1.6;
    letter-spacing: -0.015em;
    word-break: keep-all;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.flx-menu-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

::selection {
    background: var(--flx-blue);
    color: #fff;
}

:focus-visible {
    outline: 3px solid var(--flx-blue);
    outline-offset: 4px;
}

.flx-shell {
    width: min(calc(100% - (var(--flx-gutter) * 2)), var(--flx-shell));
    margin-inline: auto;
}

.flx-skip {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 100;
    padding: 10px 14px;
    background: var(--flx-ink);
    color: #fff;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.flx-skip:focus {
    transform: translateY(0);
}

/* 화면에는 감추고 검색엔진·스크린리더에만 읽히는 텍스트 */
.flx-a11y-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

.flx-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 40;
    height: var(--flx-header);
    border-bottom: 1px solid transparent;
    transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.flx-header--solid,
body.flx-menu-open .flx-header {
    border-bottom-color: rgb(40 45 53 / 12%);
    background: rgb(239 236 228 / 92%);
    box-shadow: 0 10px 30px rgb(40 45 53 / 5%);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.flx-header__inner {
    position: relative;
    z-index: 2;
    display: flex;
    height: var(--flx-header);
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.flx-brand,
.flx-footer__brand {
    color: var(--flx-ink);
    font-size: 20px;
    font-weight: 760;
    letter-spacing: -0.035em;
}

.flx-nav {
    display: flex;
    align-items: center;
    gap: clamp(17px, 2vw, 28px);
    color: var(--flx-ink-2);
    font-size: 13.5px;
    font-weight: 570;
    white-space: nowrap;
}

.flx-nav > a:not(.flx-nav__cta) {
    position: relative;
    transition: color 200ms ease;
}

.flx-nav > a:not(.flx-nav__cta)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--flx-blue);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 260ms var(--flx-ease);
}

.flx-nav > a:not(.flx-nav__cta):hover {
    color: var(--flx-blue);
}

.flx-nav > a:not(.flx-nav__cta):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.flx-nav__cta {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 0 16px;
    border: 1px solid var(--flx-blue);
    border-radius: 9px;
    color: var(--flx-blue);
    font-weight: 670;
    transition: background 220ms ease, color 220ms ease, transform 180ms ease;
}

.flx-nav__cta:hover {
    background: var(--flx-blue);
    color: #fff;
}

.flx-nav__cta:active {
    transform: translateY(1px);
}

.flx-menu,
.flx-mobile-nav {
    display: none;
}

.flx-hero {
    position: relative;
    min-height: min(100dvh, 780px);
    overflow: hidden;
    background: linear-gradient(
        180deg,
        #f5f1eb 0%,
        #f0ebe7 43%,
        #d2d0d0 61%,
        #7c828c 76%,
        #3d4753 89%,
        #222c39 100%
    );
    isolation: isolate;
}

.flx-hero__header-trigger {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 90px;
    pointer-events: none;
}

.flx-hero__media {
    position: absolute;
    inset: 0;
    z-index: -1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.flx-hero__media img {
    width: min(calc(100% - (var(--flx-gutter) * 2)), 1140px);
    height: auto;
    object-fit: contain;
    object-position: center top;
    mask-image: linear-gradient(180deg, #000 44%, rgb(0 0 0 / 68%) 69%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 44%, rgb(0 0 0 / 68%) 69%, transparent 100%);
}

.flx-hero__title-wrap {
    position: absolute;
    right: var(--flx-gutter);
    bottom: clamp(76px, 9vh, 104px);
    left: var(--flx-gutter);
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.flx-hero h1 {
    margin: 0;
    color: #eef1f5;
    font-family: var(--flx-display);
    font-size: var(--flx-type-hero-brand);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: var(--flx-leading-hero-brand);
    text-align: center;
    text-shadow: 0 3px 34px rgb(29 36 45 / 32%);
}

.flx-hero__mobile-break {
    display: none;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .flx-hero h1 {
        background: linear-gradient(
            96deg,
            #d9ebff 0%,
            #b9ceff 28%,
            #cbb9f0 54%,
            #efb4d2 76%,
            #ffd2dc 100%
        );
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
        filter: drop-shadow(0 4px 18px rgb(10 18 29 / 36%));
        text-shadow: none;
    }
}

.flx-about {
    position: relative;
    overflow: hidden;
    margin-top: -1px;
    background:
        radial-gradient(80% 90% at 76% 18%, rgb(87 103 124 / 20%), transparent 72%),
        linear-gradient(180deg, #222c39, #202a36);
    color: #c7ccd4;
}

.flx-about::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px),
        linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px);
    background-size: 52px 52px;
    content: "";
    mask-image: radial-gradient(80% 80% at 50% 5%, #000, transparent 78%);
    opacity: 0.5;
    pointer-events: none;
}

.flx-about__inner {
    position: relative;
    padding-block: clamp(74px, 8vw, 112px) clamp(88px, 10vw, 138px);
}

.flx-about h2 {
    margin: 0 auto;
    color: #fff;
    font-family: var(--flx-display);
    font-size: clamp(31px, 3.9vw, 52px);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.27;
    text-align: center;
}

.flx-about h2 strong {
    color: var(--flx-blue-light);
    font-weight: 600;
}

.flx-about__flow {
    --flx-about-column-padding: clamp(28px, 3.5vw, 48px);

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 1040px);
    margin: clamp(54px, 6vw, 78px) auto 0;
}

.flx-about__flow article {
    position: relative;
    padding: 34px var(--flx-about-column-padding) 0;
}

.flx-about__flow article::before {
    position: absolute;
    top: 0;
    left: var(--flx-about-column-padding);
    width: 48px;
    height: 2px;
    background: var(--flx-blue-light);
    content: "";
}

.flx-about__flow article + article {
    border-left: 1px solid rgb(255 255 255 / 13%);
}

.flx-about__flow article + article::before {
    background: #efbe6a;
}

.flx-about h3 {
    margin: 0 0 12px;
    color: #fff;
    font-family: var(--flx-display);
    font-size: clamp(21px, 2vw, 26px);
    font-weight: 600;
    letter-spacing: -0.025em;
}

.flx-about p {
    max-width: 460px;
    margin: 0;
    color: #c1c6ce;
    font-size: clamp(17px, 1.2vw, 18px);
    line-height: 1.8;
}

.flx-story,
.flx-future,
.flx-services {
    background: linear-gradient(180deg, var(--flx-paper), var(--flx-paper-2));
}

.flx-story {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--flx-paper), var(--flx-paper-2));
}

.flx-story::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: clamp(56px, 6vw, 84px);
    background: var(--flx-hair-2);
    content: "";
    pointer-events: none;
}

.flx-story__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(64px, 8vw, 118px);
    align-items: center;
    min-height: clamp(720px, 68vw, 860px);
    padding-block: clamp(104px, 11vw, 148px) clamp(94px, 10vw, 132px);
}

.flx-story h2,
.flx-portfolio h2,
.flx-proof h2,
.flx-method h2,
.flx-future h2,
.flx-services h2 {
    margin: 0;
    color: var(--flx-ink);
    font-family: var(--flx-display);
    font-size: clamp(34px, 4.1vw, 56px);
    font-weight: 650;
    letter-spacing: -0.05em;
    line-height: 1.25;
    text-wrap: balance;
}

.flx-story h2 {
    max-width: 620px;
    font-size: var(--flx-type-heading-feature);
    line-height: 1.28;
}

.flx-story__ledger {
    position: relative;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    min-height: clamp(430px, 46vw, 520px);
    color: var(--flx-ink-2);
}

.flx-story__ledger::before {
    position: absolute;
    top: 12.5%;
    right: 0;
    bottom: 12.5%;
    width: 1px;
    background: var(--flx-hair-2);
    content: "";
}

.flx-story__ledger::after {
    position: absolute;
    top: 50%;
    right: -42px;
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, var(--flx-hair-2), transparent);
    content: "";
}

.flx-story__source {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid var(--flx-hair);
    background-image:
        linear-gradient(90deg, transparent 0 11%, rgb(68 98 174 / 5%) 11% 11.25%, transparent 11.25% 100%),
        linear-gradient(180deg, transparent 0 42%, rgb(40 45 53 / 4%) 42% 43%, transparent 43% 100%);
}

.flx-story__source:last-child {
    border-bottom: 1px solid var(--flx-hair);
}

.flx-story__source::before {
    position: absolute;
    right: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--flx-blue);
    box-shadow: 0 0 0 5px var(--flx-paper);
    content: "";
    z-index: 1;
}

.flx-story__source:nth-child(2)::before {
    background: var(--flx-red);
}

.flx-story__source:nth-child(3)::before {
    background: var(--flx-amber);
}

.flx-story__source:nth-child(4)::before {
    background: #a7adb5;
}

.flx-story__source-label {
    display: flex;
    min-width: 174px;
    align-items: center;
    gap: 12px;
    margin-right: clamp(18px, 2.4vw, 34px);
    padding-bottom: 9px;
    border-bottom: 1px solid var(--flx-hair-2);
}

.flx-story__source-label svg {
    width: 23px;
    height: 23px;
    flex: 0 0 auto;
    opacity: 0.72;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.45;
}

.flx-story__source-label span {
    font-family: var(--flx-display);
    font-size: clamp(16px, 1.45vw, 20px);
    font-weight: 500;
    letter-spacing: -0.025em;
}

.flx-story__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flx-story__summary {
    max-width: 570px;
    margin: clamp(34px, 4vw, 48px) 0 0;
    color: var(--flx-body);
    font-size: clamp(17px, 1.4vw, 18px);
    line-height: 1.82;
}

.flx-portfolio {
    padding-block: clamp(80px, 8vw, 116px) clamp(92px, 10vw, 138px);
    border-block: 1px solid var(--flx-hair);
    background: var(--flx-card);
}

.flx-portfolio__inner {
    width: min(calc(100% - (var(--flx-gutter) * 2)), 1040px);
}

.flx-portfolio__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(56px, 8vw, 118px);
    align-items: end;
}

.flx-portfolio__eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: var(--flx-blue);
    font-size: 12px;
    font-weight: 720;
    letter-spacing: 0.06em;
}

.flx-portfolio__eyebrow::before {
    width: 48px;
    height: 2px;
    background: var(--flx-blue);
    content: "";
}

.flx-portfolio h2 {
    max-width: 620px;
    font-family: var(--flx-display);
    font-size: clamp(32px, 3.4vw, 46px);
    font-weight: 650;
    letter-spacing: -0.05em;
    line-height: 1.28;
    white-space: nowrap;
}

.flx-portfolio__overview--link {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.flx-portfolio__overview--link a {
    margin-top: 0;
}

.flx-portfolio__overview p {
    max-width: 520px;
    margin: 0;
    color: var(--flx-body);
    font-size: clamp(17px, 1.4vw, 18px);
    line-height: 1.82;
}

.flx-portfolio__overview a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 34px;
    color: var(--flx-ink);
    font-size: 14px;
    font-weight: 720;
    transition: color 180ms ease, transform 180ms ease;
}

.flx-portfolio__overview a:hover {
    color: var(--flx-blue);
    transform: translateX(3px);
}

.flx-portfolio__index {
    margin-top: clamp(52px, 6vw, 76px);
    border-top: 1px solid var(--flx-ink);
}

.flx-portfolio__row {
    --flx-portfolio-mark: #a7adb5;

    display: grid;
    grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1.66fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    min-height: 126px;
    padding-block: 24px;
    border-bottom: 1px solid var(--flx-hair);
}

.flx-portfolio__row--blue {
    --flx-portfolio-mark: var(--flx-blue);
}

.flx-portfolio__row--red {
    --flx-portfolio-mark: var(--flx-red);
}

.flx-portfolio__row--amber {
    --flx-portfolio-mark: var(--flx-amber);
}

.flx-portfolio__row h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
    color: var(--flx-ink);
    font-family: var(--flx-sans);
    font-size: clamp(18px, 1.55vw, 21px);
    font-weight: 650;
    letter-spacing: -0.035em;
}

.flx-portfolio__row h3::before {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--flx-portfolio-mark);
    content: "";
}

.flx-portfolio__row ul {
    display: flex;
    flex-wrap: wrap;
    gap: 13px 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.flx-portfolio__row li {
    display: flex;
    align-items: center;
    color: var(--flx-ink-2);
    font-family: var(--flx-sans);
    font-size: clamp(17px, 1.55vw, 21px);
    font-weight: 560;
    letter-spacing: -0.035em;
    line-height: 1.35;
    white-space: nowrap;
}

.flx-portfolio__row li:not(:last-child)::after {
    width: 1px;
    height: 17px;
    margin-inline: clamp(15px, 2vw, 28px);
    background: var(--flx-hair-2);
    content: "";
}

.flx-proof {
    padding-block: clamp(94px, 11vw, 154px);
    border-block: 1px solid var(--flx-hair);
    background: var(--flx-card);
}

.flx-proof__grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(58px, 9vw, 132px);
    align-items: stretch;
}

.flx-proof__visual {
    min-height: 760px;
    margin: 0;
    overflow: hidden;
    background: #242b31;
}

.flx-proof__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms var(--flx-ease);
}

.flx-proof__visual:hover img,
.flx-future__visual:hover img,
.flx-dotory__visual:hover img {
    transform: scale(1.02);
}

.flx-proof__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 24px;
}

.flx-lead {
    max-width: 680px;
    margin: 28px 0 0;
    color: var(--flx-body);
    font-size: clamp(16px, 1.35vw, 18px);
    line-height: 1.82;
}

.flx-proof__list {
    margin-top: clamp(48px, 6vw, 74px);
    border-top: 1px solid var(--flx-ink);
}

.flx-proof__list article {
    display: grid;
    grid-template-columns: minmax(150px, 0.78fr) minmax(0, 1.22fr);
    gap: 28px;
    padding: 24px 0;
    border-bottom: 1px solid var(--flx-hair);
}

.flx-proof__list h3,
.flx-proof__list p {
    margin: 0;
}

.flx-proof__list h3 {
    color: var(--flx-ink);
    font-family: var(--flx-display);
    font-size: 18px;
    font-weight: 650;
}

.flx-proof__list p {
    color: var(--flx-body);
    font-size: 14px;
    line-height: 1.72;
}

.flx-proof__links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
    margin-top: 30px;
}

.flx-proof__links a,
.flx-service a {
    color: var(--flx-ink);
    font-size: 14px;
    font-weight: 700;
    transition: color 180ms ease, transform 180ms ease;
}

.flx-proof__links a:hover,
.flx-service a:hover {
    color: var(--flx-blue);
    transform: translateX(3px);
}

.flx-method {
    background: var(--flx-paper);
}

.flx-method__inner {
    padding-block: clamp(92px, 11vw, 154px);
}

.flx-method h2 {
    max-width: 900px;
}

.flx-method__rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: clamp(64px, 8vw, 102px) 0 0;
    padding: 0;
    border-top: 1px solid var(--flx-hair-2);
    list-style: none;
}

.flx-method__rail li {
    min-height: 270px;
    padding: 24px clamp(20px, 2.7vw, 36px) 26px 0;
}

.flx-method__rail li + li {
    padding-left: clamp(20px, 2.7vw, 36px);
    border-left: 1px solid var(--flx-hair);
}

.flx-method__rail span {
    display: block;
    color: var(--flx-blue);
    font-family: var(--flx-display);
    font-size: 14px;
}

.flx-method__rail h3 {
    margin: clamp(44px, 5vw, 66px) 0 0;
    color: var(--flx-ink);
    font-family: var(--flx-display);
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 650;
}

.flx-method__rail p {
    margin: 18px 0 0;
    color: var(--flx-body);
    font-size: 14px;
    line-height: 1.72;
}

.flx-ai-bridge {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(80% 120% at 80% 50%, rgb(68 98 174 / 18%), transparent 70%),
        var(--flx-slate);
}

.flx-ai-bridge::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
        linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    mask-image: linear-gradient(90deg, transparent, #000 58%, transparent);
    pointer-events: none;
}

.flx-ai-bridge__inner {
    position: relative;
    display: flex;
    min-height: clamp(500px, 43vw, 620px);
    align-items: center;
    padding-block: clamp(96px, 10vw, 140px);
}

.flx-ai-bridge__statement {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.15fr);
    gap: clamp(48px, 7vw, 96px);
    align-items: center;
}

.flx-ai-bridge__basis {
    padding-left: 28px;
    border-left: 2px solid rgb(138 164 230 / 72%);
}

.flx-ai-bridge__basis p {
    margin: 0;
    color: #c2c8d1;
    font-family: var(--flx-display);
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.65;
}

.flx-ai-bridge h2 {
    margin: 0;
    color: #f5f3ec;
    font-family: var(--flx-display);
    font-size: clamp(34px, 4.2vw, 56px);
    font-weight: 650;
    letter-spacing: -0.055em;
    line-height: 1.3;
}

.flx-ai-bridge h2 strong {
    color: #a9bceb;
    font-weight: 750;
}

.flx-ai-system {
    position: relative;
    overflow: hidden;
    background: #eeebe1;
    color: var(--flx-body);
}

.flx-ai-system::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgb(40 45 53 / 3.5%) 1px, transparent 1px),
        linear-gradient(90deg, rgb(40 45 53 / 3.5%) 1px, transparent 1px);
    background-size: 64px 64px;
    content: "";
    mask-image: linear-gradient(90deg, transparent, #000 50%, transparent);
    opacity: 0.55;
    pointer-events: none;
}

.flx-ai-system__inner {
    position: relative;
    padding-block: clamp(92px, 10vw, 132px);
}

.flx-ai-system__header {
    display: block;
}

.flx-ai-system h2 {
    margin: 0;
    color: var(--flx-ink);
    font-family: var(--flx-display);
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 650;
    letter-spacing: -0.045em;
    line-height: 1.4;
}

.flx-ai-system h2 strong {
    color: var(--flx-blue);
    font-weight: 750;
}

.flx-ai-system__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: clamp(54px, 6vw, 72px);
}

.flx-ai-system__steps article {
    display: flex;
    min-height: 390px;
    flex-direction: column;
    padding: clamp(28px, 3vw, 40px);
    border: 1px solid var(--flx-hair-2);
    border-radius: 12px;
    background: rgb(251 250 247 / 72%);
}

.flx-ai-system__steps article > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.flx-ai-system__steps article > div span {
    color: var(--flx-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.flx-ai-system__steps article:nth-child(2) > div span {
    color: #efb557;
}

.flx-ai-system__steps article:nth-child(3) > div span {
    color: #e67c85;
}

.flx-ai-system__steps article > div strong {
    color: rgb(40 45 53 / 10%);
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.flx-ai-system__steps h3 {
    margin: 22px 0 0;
    color: var(--flx-ink);
    font-family: var(--flx-display);
    font-size: 27px;
    font-weight: 700;
}

.flx-ai-system__steps p {
    margin: 16px 0 0;
    color: var(--flx-body);
    font-size: 15px;
    line-height: 1.8;
}

.flx-ai-system__steps ul {
    display: grid;
    gap: 10px;
    margin: auto 0 0;
    padding: 24px 0 0;
    border-top: 1px solid var(--flx-hair);
    list-style: none;
}

.flx-ai-system__steps li {
    position: relative;
    padding-left: 16px;
    color: var(--flx-body);
    font-size: 14px;
    line-height: 1.55;
}

.flx-ai-system__steps li::before {
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--flx-blue);
    content: "";
}

.flx-ai-system__steps article:nth-child(2) li::before {
    background: #efb557;
}

.flx-ai-system__steps article:nth-child(3) li::before {
    background: #e67c85;
}

.flx-dotory-proof {
    border-top: 1px solid var(--flx-hair);
    background: #fff;
    color: var(--flx-body);
}

.flx-dotory-proof__inner {
    padding-block: clamp(120px, 13vw, 178px);
}

.flx-ai-product {
    display: block;
}

.flx-ai-product__content {
    padding: 0;
}

.flx-ai-product__label {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.flx-ai-product__label span {
    color: var(--flx-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.flx-ai-product h2 {
    max-width: 980px;
    margin: 22px 0 0;
    color: var(--flx-ink);
    font-family: var(--flx-display);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.4;
}

.flx-ai-product h2 strong {
    color: var(--flx-blue);
}

.flx-ai-product__summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
    gap: clamp(42px, 7vw, 92px);
    align-items: start;
    margin-top: clamp(40px, 5vw, 58px);
    padding-top: 36px;
    border-top: 1px solid var(--flx-hair);
}

.flx-ai-product__summary > p {
    max-width: 680px;
    margin: 0;
    color: var(--flx-body);
    font-size: 16px;
    line-height: 1.85;
}

.flx-ai-product__summary > div {
    padding-left: clamp(28px, 4vw, 48px);
    border-left: 1px solid var(--flx-hair);
}

.flx-ai-product__proof {
    margin: 0;
    color: var(--flx-ink);
    font-family: var(--flx-display);
    font-size: clamp(18px, 1.7vw, 22px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.75;
}

.flx-ai-product__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 24px;
    color: var(--flx-blue);
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgb(68 98 174 / 32%);
    text-underline-offset: 5px;
}

.flx-ai-product__link:hover {
    text-decoration-color: currentcolor;
}

.flx-integration {
    border-block: 1px solid #3b4553;
    background: #2b3441;
}

.flx-integration__inner {
    padding-block: clamp(88px, 8.2vw, 104px);
    text-align: center;
}

.flx-integration__header {
    max-width: 920px;
    margin-inline: auto;
}

.flx-integration h2 {
    margin: 0;
    color: #f5f3ec;
    font-family: var(--flx-display);
    font-size: clamp(32px, 3.2vw, 46px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 1.3;
}

.flx-integration h2 strong {
    color: inherit;
    font-weight: 650;
}

.flx-integration__header > p {
    max-width: 800px;
    margin: 28px auto 0;
    color: #cdd1d8;
    font-size: clamp(16px, 1.35vw, 18px);
    line-height: 1.85;
}

.flx-integration__copy-break {
    display: block;
}

.flx-footer {
    background: #232a35;
    color: #c7ccd4;
}

.flx-footer__inner {
    display: grid;
    grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
    grid-template-areas:
        "identity details"
        "legal details";
    gap: 22px clamp(40px, 5vw, 72px);
    align-items: start;
    padding-block: clamp(38px, 4vw, 52px) 28px;
}

.flx-footer__top {
    grid-area: identity;
    min-width: 0;
    max-width: none;
    justify-self: start;
    text-align: left;
}

.flx-footer__brand {
    display: inline-block;
    color: #fff;
}

.flx-footer__top p {
    margin: 16px 0 0;
    color: #eef0f3;
    font-family: var(--flx-display);
    font-size: clamp(15px, 1.25vw, 17px);
    line-height: 1.6;
    white-space: nowrap;
}

.flx-footer__secondary {
    grid-area: details;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: clamp(26px, 4vw, 48px);
}

.flx-footer__service {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #eef0f3;
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgb(255 255 255 / 26%);
    text-underline-offset: 4px;
}

.flx-footer__service:hover {
    color: #fff;
    text-decoration-color: rgb(255 255 255 / 70%);
}

.flx-footer__legal {
    grid-area: legal;
    color: #9299a4;
    font-size: 12px;
    line-height: 1.7;
}

.flx-footer__legal p {
    margin: 2px 0 0;
}

.flx-footer__legal a {
    color: #c7ccd4;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.flx-footer__legal .flx-footer__copyright {
    margin-top: 14px;
    color: #686f79;
    font-size: 11px;
    letter-spacing: 0.08em;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 760ms var(--flx-ease), transform 760ms var(--flx-ease);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

#dotory,
#services,
#contact {
    scroll-margin-top: var(--flx-header);
}

@supports not ((backdrop-filter: blur(18px)) or (-webkit-backdrop-filter: blur(18px))) {
    .flx-header--solid,
    body.flx-menu-open .flx-header {
        background: var(--flx-paper);
    }
}

@media (max-width: 1080px) {
    .flx-nav {
        gap: 15px;
        font-size: 12.5px;
    }

    .flx-ai-bridge__statement {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .flx-footer__inner {
        grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
        grid-template-areas:
            "identity details"
            "legal details";
        gap: 24px clamp(36px, 6vw, 56px);
    }

    .flx-footer__secondary {
        gap: 24px clamp(36px, 6vw, 64px);
    }

    .flx-proof__grid {
        grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
        gap: 56px;
    }

    .flx-proof__visual {
        min-height: 680px;
    }
}

@media (max-width: 860px) {
    :root {
        --flx-header: 64px;
    }

    .flx-nav {
        display: none;
    }

    .flx-menu {
        display: grid;
        width: 42px;
        height: 42px;
        place-content: center;
        gap: 4px;
        border: 1px solid var(--flx-hair-2);
        border-radius: 9px;
        background: rgb(251 250 247 / 84%);
        cursor: pointer;
    }

    .flx-menu span {
        display: block;
        width: 18px;
        height: 1.5px;
        background: var(--flx-ink);
        transition: transform 220ms ease, opacity 180ms ease;
    }

    .flx-menu[aria-expanded="true"] span:first-child {
        transform: translateY(5.5px) rotate(45deg);
    }

    .flx-menu[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .flx-menu[aria-expanded="true"] span:last-child {
        transform: translateY(-5.5px) rotate(-45deg);
    }

    .flx-mobile-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: block;
        height: calc(100dvh - var(--flx-header));
        overflow-y: auto;
        background: var(--flx-paper);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 200ms ease, transform 280ms var(--flx-ease);
    }

    .flx-mobile-nav__inner {
        display: flex;
        min-height: calc(100dvh - var(--flx-header));
        flex-direction: column;
        justify-content: center;
        padding-block: 34px;
    }

    .flx-mobile-nav a {
        padding: 13px 0;
        border-bottom: 1px solid var(--flx-hair);
        color: var(--flx-ink);
        font-family: var(--flx-display);
        font-size: clamp(27px, 6vw, 40px);
        font-weight: 600;
        letter-spacing: -0.04em;
    }

    body.flx-menu-open .flx-mobile-nav {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .flx-story::before {
        height: 56px;
    }

    .flx-story__inner {
        grid-template-columns: 1fr;
        gap: 64px;
        min-height: 0;
        padding-block: 104px 96px;
    }

    .flx-story__ledger {
        order: 2;
        min-height: 260px;
    }

    .flx-story__ledger::after {
        display: none;
    }

    .flx-story__content {
        order: 1;
    }

    .flx-ai-bridge__statement {
        grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
        gap: 42px;
    }

    .flx-ai-bridge__basis {
        padding-left: 22px;
    }

    .flx-ai-bridge__basis p {
        font-size: 19px;
    }

    .flx-proof__grid {
        grid-template-columns: 1fr;
    }

    .flx-proof__visual {
        aspect-ratio: 16 / 10;
        min-height: 0;
    }

    .flx-proof__content {
        padding-bottom: 0;
    }

    .flx-method__rail,
    .flx-dotory__criteria {
        grid-template-columns: 1fr 1fr;
    }

    .flx-method__rail li:nth-child(3),
    .flx-method__rail li:nth-child(4),
    .flx-dotory__criteria article:nth-child(3),
    .flx-dotory__criteria article:nth-child(4) {
        border-top: 1px solid var(--flx-hair);
    }

    .flx-method__rail li:nth-child(3),
    .flx-dotory__criteria article:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

}

@media (max-width: 700px) {
    :root {
        --flx-gutter: 20px;
        --flx-type-hero-brand: clamp(28px, 7.6vw, 32px);
        --flx-type-hero-wide: clamp(40px, 11.8vw, 52px);
        --flx-type-heading-feature: clamp(29px, 7.6vw, 32px);
        --flx-leading-hero-brand: 1.2;
        --flx-leading-hero-wide: 1.23;
    }

    .flx-brand {
        font-size: 17px;
    }

    .flx-hero {
        min-height: min(100dvh, 780px);
    }

    .flx-hero__media {
        top: var(--flx-header);
    }

    .flx-hero__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 15%;
        mask-image: linear-gradient(180deg, #000 48%, rgb(0 0 0 / 65%) 72%, transparent 100%);
        -webkit-mask-image: linear-gradient(180deg, #000 48%, rgb(0 0 0 / 65%) 72%, transparent 100%);
    }

    .flx-hero__title-wrap {
        bottom: max(56px, calc(env(safe-area-inset-bottom) + 44px));
    }

    .flx-hero h1 {
        max-width: min(440px, calc(100vw - 40px));
    }

    body.flx-body:not(.flx-flex-body):not(.flx-works-body) #mainContent h1 br,
    body.flx-body:not(.flx-flex-body):not(.flx-works-body) #mainContent h2 br {
        display: none;
    }

    body.flx-body:not(.flx-flex-body):not(.flx-works-body) #mainContent h1,
    body.flx-body:not(.flx-flex-body):not(.flx-works-body) #mainContent h2 {
        word-break: keep-all;
        text-wrap: balance;
    }

    .flx-about__inner {
        padding-block: 64px 72px;
    }

    .flx-about h2 {
        max-width: 440px;
        margin-inline: 0;
        font-size: clamp(27px, 7vw, 29px);
        letter-spacing: -0.06em;
        line-height: 1.34;
        text-align: left;
        text-wrap: balance;
    }

    .flx-story h2,
    .flx-portfolio h2,
    .flx-proof h2,
    .flx-method h2 {
        font-size: var(--flx-type-heading-feature);
        line-height: 1.34;
    }

    .flx-about__flow {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .flx-about__flow article {
        padding: 24px 0 0;
    }

    .flx-about__flow article::before {
        left: 0;
    }

    .flx-about__flow article + article {
        margin-top: 32px;
        padding: 36px 0 0;
        border-top: 1px solid rgb(255 255 255 / 13%);
        border-left: 0;
    }

    .flx-about__flow article + article::before {
        top: -1px;
        left: 0;
    }

    .flx-about p {
        max-width: none;
        font-size: 16px;
        line-height: 1.7;
        text-wrap: pretty;
    }

    .flx-story__inner {
        gap: 0;
        padding-block: 80px 72px;
    }

    .flx-story__ledger {
        display: none;
    }

    .flx-story__source-label {
        min-width: 146px;
        gap: 10px;
        margin-right: 18px;
    }

    .flx-story__source-label svg {
        width: 20px;
        height: 20px;
    }

    .flx-story__source-label span {
        font-size: 15px;
    }

    .flx-story__content {
        min-height: 0;
        padding: 0;
    }

    .flx-story__summary {
        margin-top: 30px;
        font-size: 16px;
        line-height: 1.75;
    }

    .flx-portfolio {
        padding-block: 72px 76px;
    }

    .flx-portfolio__header {
        grid-template-columns: 1fr;
        gap: 0;
        align-items: center;
    }

    .flx-portfolio h2 {
        font-size: var(--flx-type-heading-feature);
        white-space: normal;
    }

    .flx-portfolio__overview--link {
        display: none;
    }

    .flx-portfolio__eyebrow {
        margin-bottom: 20px;
    }

    .flx-portfolio__overview p {
        font-size: 16px;
        line-height: 1.75;
    }

    .flx-portfolio__overview:not(.flx-portfolio__overview--link) a {
        margin-top: 28px;
    }

    .flx-portfolio__index {
        margin-top: 40px;
    }

    .flx-portfolio__row {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: 0;
        padding-block: 24px 28px;
    }

    .flx-portfolio__row li {
        font-size: 16px;
    }

    .flx-ai-bridge__inner {
        padding-block: 72px 78px;
    }

    .flx-ai-bridge__statement {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .flx-ai-bridge__basis {
        padding-left: 18px;
    }

    .flx-ai-bridge__basis p {
        font-size: 17px;
        line-height: 1.65;
    }

    .flx-ai-bridge h2 {
        font-size: clamp(30px, 8vw, 34px);
        letter-spacing: -0.055em;
        line-height: 1.34;
    }

    .flx-ai-system__inner {
        padding-block: 76px;
    }

    .flx-integration__inner {
        padding-block: 78px;
    }

    .flx-dotory-proof__inner {
        padding-block: 92px;
    }

    .flx-ai-system__copy-break {
        display: none;
    }

    .flx-ai-system h2 {
        font-size: clamp(25px, 6.8vw, 27px);
        line-height: 1.42;
    }

    .flx-ai-system h2 strong {
        white-space: nowrap;
    }

    .flx-integration h2 {
        font-size: clamp(28px, 7.5vw, 31px);
        line-height: 1.4;
    }

    .flx-ai-system__steps {
        grid-template-columns: 1fr;
        margin-top: 44px;
    }

    .flx-ai-system__steps article {
        min-height: 230px;
        padding: 28px;
    }

    .flx-ai-system__steps h3 {
        font-size: 24px;
        line-height: 1.5;
    }

    .flx-ai-product__content {
        padding: 0;
    }

    .flx-ai-product h2 {
        font-size: clamp(29px, 7.7vw, 32px);
        line-height: 1.4;
    }

    .flx-ai-product__summary {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-top: 34px;
        padding-top: 28px;
    }

    .flx-ai-product__summary > div {
        padding: 28px 0 0;
        border-top: 1px solid var(--flx-hair);
        border-left: 0;
    }

    .flx-integration__header > p {
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.8;
    }

    .flx-integration__copy-break {
        display: none;
    }

    .flx-proof {
        padding-block: 80px;
    }

    .flx-proof__grid {
        gap: 46px;
    }

    .flx-proof__visual {
        width: 100%;
        aspect-ratio: 4 / 4.6;
    }

    .flx-proof__list {
        margin-top: 44px;
    }

    .flx-proof__list article {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .flx-method__inner {
        padding-block: 84px;
    }

    .flx-method__rail {
        grid-template-columns: 1fr;
    }

    .flx-method__rail {
        margin-top: 48px;
    }

    .flx-method__rail li,
    .flx-method__rail li + li,
    .flx-method__rail li:nth-child(3),
    .flx-method__rail li:nth-child(4) {
        min-height: 0;
        padding: 24px 0 32px;
        border-top: 0;
        border-bottom: 1px solid var(--flx-hair);
        border-left: 0;
    }

    .flx-method__rail h3 {
        margin-top: 26px;
    }

    .flx-footer__secondary {
        justify-content: flex-start;
        gap: 18px;
    }

    .flx-footer__inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "identity"
            "legal"
            "details";
        gap: 20px;
        padding-block: 30px 22px;
    }

    .flx-footer__top {
        max-width: none;
        justify-self: start;
        text-align: left;
    }

    .flx-footer__top p {
        margin-top: 12px;
        font-size: 14px;
        white-space: normal;
    }

    .flx-footer__secondary {
        padding: 0;
        border-left: 0;
    }

    .flx-footer__legal {
        padding: 16px 0 0;
        border-left: 0;
        font-size: 12px;
        line-height: 1.65;
    }

    .flx-footer__legal .flx-footer__copyright {
        margin-top: 10px;
        font-size: 11px;
        letter-spacing: 0.04em;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}


/* 회사소개 페이지 전용 스타일 */
.flx-flex-body {
    background: var(--flx-paper);
}

.flx-flex-body .flx-nav__current {
    color: var(--flx-blue);
}

.flx-flex-body .flx-nav__current::after {
    transform: scaleX(1);
}

.flex-main {
    overflow: hidden;
}

.flex-hero {
    padding-top: var(--flx-header);
    background: var(--flx-card);
}

.flex-hero__grid {
    display: grid;
    min-height: min(calc(100dvh - var(--flx-header)), 780px);
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
}

.flex-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(58px, 8vw, 104px) clamp(42px, 6vw, 90px) clamp(58px, 8vw, 104px) 0;
}

.flex-eyebrow {
    color: var(--flx-blue);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.24em;
}

.flex-hero__accent {
    display: grid;
    width: 184px;
    height: 6px;
    grid-template-columns: repeat(4, 1fr);
}

.flex-hero__accent span:nth-child(1) {
    background: #4462ae;
}

.flex-hero__accent span:nth-child(2) {
    background: #e4636f;
}

.flex-hero__accent span:nth-child(3) {
    background: #fcb753;
}

.flex-hero__accent span:nth-child(4) {
    background: #252525;
}

.flex-hero h1,
.flex-meaning h2,
.flex-principles h2,
.flex-history h2,
.flex-location h2 {
    margin: 0;
    color: var(--flx-ink);
    font-family: var(--flx-display);
    font-weight: 650;
    letter-spacing: -0.055em;
    line-height: 1.22;
    text-wrap: balance;
}

.flex-hero h1 {
    margin-top: 24px;
    font-size: var(--flx-type-hero-split);
    font-weight: 600;
    line-height: var(--flx-leading-hero-split);
    white-space: nowrap;
}

.flex-hero__content > p {
    max-width: 440px;
    margin: 34px 0 0;
    color: var(--flx-body);
    font-size: clamp(16px, 1.35vw, 19px);
    line-height: 1.82;
}

.flex-hero__visual {
    position: relative;
    display: grid;
    min-height: 560px;
    margin: 0;
    overflow: hidden;
    place-items: center;
    background: var(--flx-paper);
}

.flex-hero__mark {
    display: flex;
    width: min(76%, 540px);
    min-height: 320px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 56px;
    border: 1px solid var(--flx-hair-2);
    background: var(--flx-card);
    box-shadow: 0 30px 70px rgb(40 45 53 / 8%);
}

.flex-hero__mark img {
    width: min(100%, 300px);
    height: auto;
}

.flex-hero__mark figcaption {
    margin-top: 34px;
    color: var(--flx-muted);
    font-family: var(--flx-display);
    font-size: 13px;
    letter-spacing: 0.025em;
}

.flex-meaning {
    border-top: 1px solid var(--flx-hair);
    background: var(--flx-paper);
}

.flex-meaning__inner,
.flex-principles__inner,
.flex-location__inner {
    padding-block: clamp(96px, 11vw, 158px);
}

.flex-principles__inner {
    padding-block: clamp(82px, 8vw, 116px);
}

.flex-meaning__copy {
    max-width: 850px;
}

.flex-meaning h2,
.flex-principles h2,
.flex-history h2,
.flex-location h2 {
    font-size: var(--flx-type-heading-feature);
    line-height: 1.28;
}

.flex-section-label {
    display: block;
    margin-bottom: 24px;
    color: var(--flx-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.flex-section-lead {
    max-width: 700px;
    margin: 28px 0 0;
    color: var(--flx-ink-2);
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.8;
}

.flex-principles .flex-section-lead {
    margin-top: 20px;
}

.flex-meaning__copy > p:last-child {
    max-width: 740px;
    margin: 24px 0 0;
    color: var(--flx-body);
    font-size: 15px;
    line-height: 1.85;
}

.flex-palette {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: clamp(62px, 8vw, 100px);
    border-top: 1px solid var(--flx-ink);
}

.flex-palette > div {
    padding-top: 22px;
}

.flex-palette > div + div {
    padding-left: clamp(18px, 2.5vw, 34px);
    border-left: 1px solid var(--flx-hair);
}

.flex-palette__swatch {
    display: block;
    width: 100%;
    height: clamp(110px, 13vw, 170px);
}

.flex-palette__swatch--blue {
    background: #4462ae;
}

.flex-palette__swatch--red {
    background: #e4636f;
}

.flex-palette__swatch--yellow {
    background: #fcb753;
}

.flex-palette__swatch--black {
    background: #252525;
}

.flex-palette p {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 16px 0 0;
    color: var(--flx-ink);
    font-size: 12px;
    line-height: 1.5;
}

.flex-palette p strong {
    font-weight: 700;
}

.flex-palette p span {
    color: var(--flx-muted);
}

.flex-principles {
    border-block: 1px solid var(--flx-hair);
    background: var(--flx-card);
}

.flex-principles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(48px, 5.5vw, 72px);
    border-top: 1px solid var(--flx-ink);
}

.flex-principles__grid article {
    display: grid;
    grid-template-rows: minmax(72px, auto) auto;
    align-content: start;
    min-height: 238px;
    gap: 28px;
    padding: 28px clamp(24px, 2.6vw, 38px) 30px 0;
}

.flex-principles__grid article + article {
    padding-left: clamp(24px, 2.6vw, 38px);
    border-left: 1px solid var(--flx-hair);
}

.flex-principles__grid h3,
.flex-principles__grid p {
    margin: 0;
}

.flex-principles__grid h3 {
    color: var(--flx-ink);
    font-family: var(--flx-display);
    font-size: clamp(20px, 1.6vw, 23px);
    font-weight: 650;
    letter-spacing: -0.04em;
    line-height: 1.5;
    word-break: keep-all;
}

.flex-principles__grid p {
    max-width: 32ch;
    color: var(--flx-body);
    font-size: 14px;
    line-height: 1.75;
    word-break: keep-all;
}

@media (min-width: 701px) {
    .flex-principles__title-line {
        display: block;
    }
}

.flex-history {
    background: var(--flx-paper);
}

.flex-history__grid {
    display: grid;
    grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
    gap: 0 clamp(54px, 8vw, 110px);
    padding-block: clamp(96px, 11vw, 158px);
}

.flex-history__year {
    display: flex;
    min-height: 330px;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 32px 30px;
    background: var(--flx-blue);
    color: #fff;
}

.flex-history__year strong {
    font-family: var(--flx-display);
    font-size: clamp(54px, 7vw, 92px);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 1;
}

.flex-history__year span {
    color: rgb(255 255 255 / 78%);
    font-size: 13px;
    font-weight: 650;
}

.flex-history__content {
    align-self: center;
}

.flex-history__content .flex-section-label {
    color: var(--flx-blue);
}

.flex-history__content > p {
    max-width: 650px;
    margin: 28px 0 0;
    color: var(--flx-body);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.82;
}

.flex-text-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 36px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--flx-blue);
    color: var(--flx-blue);
    font-size: 14px;
    font-weight: 700;
    transition: gap 220ms var(--flx-ease), color 180ms ease;
}

.flex-text-link:hover {
    gap: 24px;
    color: #365395;
}

.flex-text-link:active {
    transform: translateY(1px);
}

.flex-history__path {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: clamp(58px, 7vw, 88px);
    border-top: 1px solid var(--flx-ink);
}

.flex-history__path span,
.flex-history__path strong {
    min-height: 96px;
    padding: 24px 20px 20px 0;
    color: var(--flx-ink-2);
    font-size: 14px;
    font-weight: 600;
}

.flex-history__path > * + * {
    padding-left: 20px;
    border-left: 1px solid var(--flx-hair);
}

.flex-history__path strong {
    color: var(--flx-blue);
}

.flex-location {
    border-top: 1px solid var(--flx-hair);
    background: var(--flx-card);
}

.flex-location__heading > p {
    max-width: 650px;
    margin: 28px 0 0;
    color: var(--flx-body);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.82;
}

.flex-location__layout {
    margin-top: clamp(58px, 7vw, 90px);
}

.flex-location__details {
    display: grid;
    grid-template-columns: 0.85fr 1.1fr 1.65fr;
    margin-top: clamp(30px, 3.5vw, 46px);
    border-top: 1px solid var(--flx-ink);
}

.flex-location__details > * {
    display: block;
    padding: 24px 0 28px;
    border-bottom: 1px solid var(--flx-hair);
}

.flex-location__details > * + * {
    padding-left: clamp(24px, 3vw, 46px);
    border-left: 1px solid var(--flx-hair);
}

.flex-location__details a {
    transition: color 180ms ease, padding-left 220ms var(--flx-ease);
}

.flex-location__details a:hover {
    color: var(--flx-blue);
}

.flex-location__details span {
    display: block;
    margin-bottom: 16px;
    color: var(--flx-muted);
    font-size: 12px;
    font-weight: 700;
}

.flex-location__details strong {
    color: var(--flx-ink);
    font-family: var(--flx-display);
    font-size: clamp(17px, 1.6vw, 22px);
    font-weight: 600;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.flex-location__map-block {
    margin-top: 0;
}

.flex-location__map-wrap {
    position: relative;
    height: clamp(500px, 42vw, 560px);
    overflow: hidden;
    border: 1px solid var(--flx-hair-2);
    background: var(--flx-paper-2);
}

.flex-location__map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.flex-location__map-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    padding: 30px;
    text-align: center;
}

.flex-location__map-fallback[hidden] {
    display: none;
}

.flex-location__map-fallback p {
    margin: 0;
    color: var(--flx-body);
}

.flex-location__map-fallback a {
    margin-top: 16px;
    color: var(--flx-blue);
    font-weight: 700;
}

.flex-location__map-links {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 20px;
}

.flex-location__map-links > span {
    color: var(--flx-muted);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.12em;
}

.flex-location__map-links > div {
    display: flex;
    align-items: center;
    gap: 28px;
}

.flex-location__map-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--flx-ink);
    font-size: 14px;
    font-weight: 700;
    transition: color 180ms ease;
}

.flex-location__map-links a:hover {
    color: var(--flx-blue);
}

.flex-location__map-links a span {
    color: var(--flx-blue);
}

@media (max-width: 1080px) {
    .flex-hero__grid {
        grid-template-columns: minmax(310px, 0.88fr) minmax(0, 1.12fr);
    }

    .flex-hero__mark {
        width: min(82%, 500px);
        padding: 42px;
    }

}

@media (max-width: 860px) {
    .flex-hero__grid,
    .flex-history__grid {
        grid-template-columns: 1fr;
    }

    .flex-hero__content {
        min-height: 510px;
        padding-right: 0;
    }

    .flex-hero__visual {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .flex-history__grid {
        gap: 54px;
    }

    .flex-history__year {
        min-height: 260px;
    }

    .flex-history__path {
        grid-column: auto;
        margin-top: 0;
    }

}

@media (max-width: 700px) {
    .flex-hero__content {
        min-height: 400px;
        padding-block: 46px;
    }

    .flex-hero__content > p {
        margin-top: 28px;
        font-size: 16px;
    }

    .flex-hero__visual {
        aspect-ratio: 4 / 3.25;
    }

    .flex-hero__mark {
        width: calc(100% - 40px);
        min-height: 230px;
        padding: 28px 24px;
    }

    .flex-hero__mark img {
        width: min(76%, 260px);
    }

    .flex-hero__mark figcaption {
        margin-top: 28px;
        font-size: 12px;
    }

    .flex-meaning__inner,
    .flex-principles__inner,
    .flex-history__grid,
    .flex-location__inner {
        padding-block: 82px;
    }

    .flex-meaning h2,
    .flex-principles h2,
    .flex-history h2,
    .flex-location h2 {
        font-size: var(--flx-type-heading-feature);
    }

    .flex-palette {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 0;
        margin-top: 50px;
    }

    .flex-palette > div:nth-child(3) {
        padding-left: 0;
        border-left: 0;
    }

    .flex-palette p {
        flex-direction: column;
        gap: 2px;
    }

    .flex-palette__swatch {
        height: 110px;
    }

    .flex-principles__grid {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .flex-principles__grid article,
    .flex-principles__grid article + article,
    .flex-principles__grid article:last-child {
        display: block;
        grid-column: auto;
        min-height: 0;
        padding: 26px 0 34px;
        border-top: 0;
        border-bottom: 1px solid var(--flx-hair);
        border-left: 0;
    }

    .flex-principles__grid p {
        margin-top: 22px;
    }

    .flex-history__year {
        min-height: 230px;
        padding: 26px 24px;
    }

    .flex-history__path {
        grid-template-columns: 1fr;
    }

    .flex-history__path span,
    .flex-history__path strong,
    .flex-history__path > * + * {
        min-height: 0;
        padding: 20px 0;
        border-left: 0;
        border-bottom: 1px solid var(--flx-hair);
    }

    .flex-location__details {
        grid-template-columns: 1fr;
    }

    .flex-location__details > *,
    .flex-location__details > * + * {
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 12px;
        padding: 24px 0 28px;
        border-left: 0;
    }

    .flex-location__details span {
        margin-bottom: 0;
    }

    .flex-location__map-wrap {
        width: calc(100% + (var(--flx-gutter) * 2));
        height: 420px;
        margin-left: calc(var(--flx-gutter) * -1);
        border-right: 0;
        border-left: 0;
    }

    .flex-location__map-links {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding-top: 18px;
    }

    .flex-location__map-links > div {
        width: 100%;
        justify-content: space-between;
    }

}

@media (prefers-reduced-motion: reduce) {
    .flex-text-link,
    .flex-location__details a,
    .flex-location__map-links a {
        transition: none;
    }
}


/* 구축 사례 페이지 전용 스타일 */
.flx-works-body {
    --flx-display: "Nanum Myeongjo", Georgia, serif;
    --works-paper: #efede3;
    --works-paper-soft: #faf8f1;
    --works-paper-section: #eeebe1;
    --works-card: #f8f6ef;
    --works-ink: #23221e;
    --works-copy: #403d36;
    --works-muted: #6b6759;
    --works-line: #d7d1c1;
    --works-blue: #3a56a0;
    --works-amber: #c08a1e;
    --works-red: #d14e48;
}

.works-main {
    --flx-shell: 1180px;

    overflow: clip;
    background: var(--works-paper-section);
}

.works-main h1,
.works-main h2,
.works-main h3,
.works-main p {
    text-wrap: pretty;
}

.works-main h1,
.works-main h2,
.works-main h3 {
    margin: 0;
    color: var(--works-ink);
    font-family: var(--flx-display);
    font-weight: 800;
}

.works-main h1,
.works-main h2 {
    letter-spacing: -0.02em;
}

.works-main h2 {
    font-size: clamp(40px, 4.1vw, 54px);
    line-height: 1.22;
}

.works-section-label {
    display: block;
    color: var(--works-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.works-hero {
    position: relative;
    border-bottom: 1px solid #e4dfd0;
    background: var(--works-paper);
}

.works-hero__header-trigger {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.works-hero__inner {
    padding-top: calc(var(--flx-header) + clamp(76px, 8vw, 120px));
    padding-bottom: clamp(82px, 8vw, 104px);
}

.works-hero__copy {
    max-width: 1040px;
}

.works-hero h1 {
    font-size: clamp(48px, 5.35vw, 68px);
    line-height: 1.14;
    letter-spacing: -0.015em;
}

.works-hero__copy > p {
    max-width: 760px;
    margin: 34px 0 0;
    color: var(--works-copy);
    font-size: clamp(17px, 1.5vw, 19px);
    font-weight: 500;
    line-height: 1.75;
}

.works-hero__index {
    margin-top: clamp(68px, 7vw, 88px);
}

.works-hero__index-list {
    margin-top: 0;
    border-top: 1px solid var(--works-ink);
}

.works-hero__index-row {
    --works-mark: var(--works-blue);

    display: grid;
    grid-template-columns: 96px 220px minmax(0, 1fr) 44px;
    gap: clamp(24px, 3.4vw, 40px);
    align-items: center;
    padding-block: 28px;
    border-bottom: 1px solid #d9d3c3;
    transition: background 240ms ease;
}

.works-hero__index-row--amber {
    --works-mark: var(--works-amber);
}

.works-hero__index-row--red {
    --works-mark: var(--works-red);
}

.works-hero__index-row:hover {
    background: rgb(58 86 160 / 6%);
}

.works-hero__index-row:hover i {
    color: var(--works-ink);
}

.works-hero__index-row time {
    color: var(--works-muted);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.works-hero__index-row strong {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--works-ink);
    font-family: var(--flx-display);
    font-size: clamp(19px, 1.75vw, 22px);
    font-weight: 800;
}

.works-hero__index-row strong::before {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--works-mark);
    content: "";
}

.works-hero__index-row > span {
    color: #3d3a33;
    font-size: clamp(15px, 1.35vw, 17px);
    font-weight: 600;
    line-height: 1.65;
}

.works-hero__index-row i {
    color: #a09a89;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    text-align: right;
}

.works-field {
    scroll-margin-top: var(--flx-header);
    border-bottom: 1px solid #e0dbcb;
    background: var(--works-paper-section);
}

.works-field__inner {
    padding-block: clamp(88px, 8.2vw, 104px);
}

.works-field__header {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.works-field__meta {
    padding-top: 2px;
}

.works-field__meta > span {
    display: block;
    color: var(--works-blue);
    font-family: var(--flx-display);
    font-size: clamp(76px, 8vw, 104px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 0.82;
    opacity: 0.15;
}

.works-field--global .works-field__meta > span {
    color: var(--works-amber);
    opacity: 0.16;
}

.works-field--mobility .works-field__meta > span {
    color: var(--works-red);
}

.works-field__meta strong {
    display: block;
    margin-top: 18px;
    color: var(--works-ink);
    font-size: 16px;
    font-weight: 800;
}

.works-field__meta time {
    display: block;
    margin-top: 3px;
    color: var(--works-muted);
    font-size: 13px;
    font-weight: 600;
}

.works-field__header h2 {
    max-width: 860px;
}

.works-field__header p {
    max-width: 720px;
    margin: 28px 0 0;
    color: var(--works-copy);
    font-size: clamp(16px, 1.45vw, 18px);
    font-weight: 500;
    line-height: 1.8;
}

.works-projects {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin-top: clamp(52px, 5vw, 60px);
    padding: 1px;
    background: var(--works-line);
}

.works-field--mobility .works-projects {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 0;
    background: transparent;
}

.works-field--platform .works-projects {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 0;
    background: transparent;
}

.works-project {
    min-width: 0;
    padding: 44px;
    background: var(--works-card);
}

.works-field--mobility .works-project,
.works-field--platform .works-project {
    border: 1px solid var(--works-line);
    padding: 40px;
}

.works-project--wide,
.works-project--lead {
    grid-column: 1 / -1;
}

.works-project--wide {
    padding: 44px;
}

.works-project--featured {
    background: #fbf2d8;
}

.works-project--lead {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
    align-items: center;
    padding: 48px;
}

.works-project--lead .works-project__type {
    grid-column: 1;
}

.works-project--lead h3 {
    grid-column: 1;
}

.works-project--lead p {
    grid-column: 2;
    grid-row: 1 / 3;
    margin-top: 0;
}

.works-project--metric.works-project--lead p {
    grid-row: 1 / 4;
}

.works-project__type {
    display: block;
    color: var(--works-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.works-field--global .works-project__type {
    color: #a9781a;
}

.works-field--mobility .works-project__type {
    color: var(--works-red);
}

.works-project h3 {
    margin-top: 16px;
    font-size: clamp(23px, 2vw, 26px);
    line-height: 1.28;
}

.works-project--wide h3,
.works-project--featured h3,
.works-project--lead h3 {
    font-size: clamp(26px, 2.3vw, 30px);
}

.works-field--mobility .works-project--lead h3 {
    font-size: clamp(28px, 2.8vw, 36px);
}

.works-project p {
    max-width: 820px;
    margin: 16px 0 0;
    color: #454239;
    font-size: 15px;
    line-height: 1.75;
}

.works-project--wide p {
    max-width: 100%;
    margin-top: 18px;
}

.works-project small {
    display: block;
    margin-top: 22px;
    color: var(--works-muted);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.7;
}

.works-project--featured small {
    color: #8a6b1f;
}

.works-project__metric {
    display: block;
    margin-top: 16px;
    color: var(--works-blue);
    font-family: var(--flx-display);
    font-size: clamp(30px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}

.works-project--metric h3 {
    margin-top: 6px;
    font-size: clamp(21px, 1.8vw, 22px);
}

.works-project--metric.works-project--lead .works-project__metric {
    grid-column: 1;
    margin-top: 18px;
    font-size: clamp(48px, 5vw, 64px);
}

.works-project--metric.works-project--lead h3 {
    margin-top: 0;
    font-size: clamp(25px, 2.2vw, 28px);
}

.works-figures {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: clamp(48px, 4.7vw, 56px) 0 0;
    border-block: 1px solid var(--works-ink);
}

.works-figures > div {
    padding: 34px 32px 34px 0;
}

.works-figures > div + div {
    padding-left: 32px;
    border-left: 1px solid var(--works-line);
}

.works-figures dt {
    color: var(--works-red);
    font-family: var(--flx-display);
    font-size: clamp(36px, 3.7vw, 46px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.works-figures dd {
    margin: 12px 0 0;
    color: #57544c;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.65;
}

.works-figures + .works-projects {
    margin-top: clamp(48px, 4.7vw, 56px);
}

.works-current {
    border-bottom: 1px solid #3b4553;
    background: #2b3441;
}

.works-current__inner {
    padding-block: clamp(88px, 8.2vw, 104px);
    text-align: center;
}

.works-current h2 {
    max-width: none;
    margin: 0;
    color: #f5f3ec;
    font-size: clamp(32px, 3.1vw, 44px);
    line-height: 1.28;
}

.works-current p {
    max-width: 760px;
    margin: 28px auto 0;
    color: #cdd1d8;
    font-size: clamp(16px, 1.45vw, 18px);
    font-weight: 500;
    line-height: 1.8;
}

.works-current__copy-break {
    display: none;
}

@media (min-width: 901px) {
    .works-current h2 {
        white-space: nowrap;
    }

    .works-current__copy-break {
        display: block;
    }
}

@media (max-width: 900px) {
    .works-field__header {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 36px;
    }

    .works-hero__index-row {
        grid-template-columns: 80px 180px minmax(0, 1fr) 36px;
        gap: 28px;
    }

    .works-field--mobility .works-projects,
    .works-field--platform .works-projects {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .works-field--mobility .works-project:not(.works-project--lead):last-child,
    .works-field--platform .works-project:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .works-main h2 {
        font-size: clamp(33px, 9.5vw, 43px);
        line-height: 1.3;
    }

    .works-current h2 {
        font-size: clamp(28px, 6.8vw, 32px);
        line-height: 1.4;
    }

    .works-hero__inner {
        padding-top: calc(var(--flx-header) + 64px);
        padding-bottom: 72px;
    }

    .works-hero h1 {
        font-size: clamp(38px, 10.5vw, 46px);
        line-height: 1.2;
    }

    .works-hero__copy > p {
        margin-top: 28px;
        font-size: 16px;
    }

    .works-hero__copy-break {
        display: none;
    }

    .works-field__copy-break {
        display: none;
    }

    .works-hero__index {
        margin-top: 58px;
    }

    .works-field__inner,
    .works-current__inner {
        padding-block: 78px;
    }

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

    .works-hero__index-row {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 9px 16px;
        padding-block: 25px;
    }

    .works-hero__index-row time {
        grid-column: 1;
        grid-row: 1;
    }

    .works-hero__index-row strong {
        grid-column: 2;
        grid-row: 1;
    }

    .works-hero__index-row > span {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 15px;
    }

    .works-hero__index-row i {
        grid-column: 3;
        grid-row: 1;
    }

    .works-field__meta > span {
        font-size: 72px;
    }

    .works-field__header p {
        margin-top: 24px;
        font-size: 16px;
    }

    .works-projects,
    .works-field--mobility .works-projects,
    .works-field--platform .works-projects {
        grid-template-columns: 1fr;
        gap: 1px;
        margin-top: 50px;
        padding: 1px;
        background: var(--works-line);
    }

    .works-project,
    .works-project--wide,
    .works-project--lead,
    .works-field--mobility .works-project,
    .works-field--platform .works-project {
        grid-column: auto;
        padding: 30px 24px 34px;
        border: 0;
    }

    .works-project--lead {
        display: block;
    }

    .works-project--lead p,
    .works-project--metric.works-project--lead p {
        margin-top: 18px;
    }

    .works-project h3,
    .works-project--wide h3,
    .works-project--featured h3,
    .works-field--mobility .works-project--lead h3 {
        font-size: 25px;
    }

    .works-project--metric.works-project--lead .works-project__metric {
        font-size: 46px;
    }

    .works-figures {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .works-figures > div,
    .works-figures > div + div {
        padding: 26px 0 30px;
        border-left: 0;
    }

    .works-figures > div + div {
        border-top: 1px solid var(--works-line);
    }

    .works-figures + .works-projects {
        margin-top: 50px;
    }

}

@media (prefers-reduced-motion: reduce) {
    .works-hero__index-row {
        transition: none;
    }
}
