/* CoMente — Framer Dreelio-like marketing (reimplemented; light-first) */

:root {
    /* 하늘색 톤: 이전(#e3f0ff 계열)보다 채도·명도를 올려 덜 연하게 */
    --fx-sky-top: #9ebfe8;
    --fx-sky-mid: #c4daf5;
    --fx-page-bg: #d6e3f4;
    --fx-white: #ffffff;
    --fx-gray-50: #e8eff9;
    --fx-gray-100: #f1f5f9;
    --fx-gray-200: #e2e8f0;
    --fx-gray-400: #94a3b8;
    --fx-gray-500: #64748b;
    --fx-gray-900: #0f172a;
    --fx-blue: #3b82f6;
    --fx-blue-soft: rgba(59, 130, 246, 0.15);
    --fx-ring: rgba(15, 23, 42, 0.08);
    --fx-pill: #0f172a;
    --fx-max: 1120px;
    --fx-gutter: clamp(20px, 5vw, 40px);
    --fx-radius: 24px;
    --fx-radius-pill: 9999px;
    --fx-font: "Inter", "Pretendard", system-ui, sans-serif;
    --fx-header-offset: 96px;
}

[data-theme="dark"] {
    --fx-sky-top: #0f1419;
    --fx-sky-mid: #121a22;
    --fx-page-bg: #111820;
    --fx-white: #0c0f14;
    --fx-gray-50: #111820;
    --fx-gray-100: #1a2332;
    --fx-gray-200: #2d3b4d;
    --fx-gray-400: #94a3b8;
    --fx-gray-500: #cbd5e1;
    --fx-gray-900: #f8fafc;
    --fx-blue: #60a5fa;
    --fx-blue-soft: rgba(96, 165, 250, 0.12);
    --fx-ring: rgba(255, 255, 255, 0.08);
    --fx-pill: #f8fafc;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--fx-header-offset);
}

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

    .fx-marquee__track {
        animation: none !important;
    }

    .fx-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

}

.fx-body {
    margin: 0;
    font-family: var(--fx-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--fx-gray-900);
    background: var(--fx-page-bg);
    -webkit-font-smoothing: antialiased;
}

.fx-page {
    overflow-x: clip;
}

/* —— Home only: 직전(다소 진함)과 연한 팔레트 사이 —— */
.fx-page--home {
    background: linear-gradient(
        180deg,
        #d0e4f8 0%,
        #dcecf9 12%,
        #e4ddcf 25%,
        #ebe4da 37%,
        #f0ebe4 49%,
        #ebe6df 59%,
        #e8e1d8 67%,
        #dce5f2 77%,
        #d6e8f8 87%,
        #c8def4 100%
    );
}

[data-theme="dark"] .fx-page--home {
    background: linear-gradient(
        180deg,
        #141d2a 0%,
        #172331 12%,
        #211d16 30%,
        #28231d 46%,
        #242018 58%,
        #1a2230 74%,
        #141d2a 100%
    );
}

.fx-page--home .fx-hero-fr__bg {
    background: transparent !important;
}

.fx-page--home .fx-band-marquee,
.fx-page--home .fx-show-fr,
.fx-page--home .fx-feature-block,
.fx-page--home .fx-work-fr,
.fx-page--home .fx-products-fr,
.fx-page--home .fx-community-fr,
.fx-page--home .fx-cta-fr,
.fx-page--home .fx-faq {
    background: transparent;
}

.fx-page--home .fx-community-fr,
.fx-page--home .fx-work-fr,
.fx-page--home .fx-cta-fr,
.fx-page--home .fx-faq {
    border-top-color: rgba(15, 23, 42, 0.07);
}

[data-theme="dark"] .fx-page--home .fx-community-fr,
[data-theme="dark"] .fx-page--home .fx-work-fr,
[data-theme="dark"] .fx-page--home .fx-cta-fr,
[data-theme="dark"] .fx-page--home .fx-faq {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.fx-shell {
    width: 100%;
    max-width: var(--fx-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--fx-gutter);
    padding-right: var(--fx-gutter);
}

.fx-main {
    padding-top: 0;
}

/* —— Floating glass pill header —— */
.fx-float-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px var(--fx-gutter) 0;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.fx-float-header__pill {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 8px 16px;
    min-height: 52px;
    padding: 8px 10px 8px 16px;
    max-width: min(920px, 100%);
    width: 100%;
    border-radius: var(--fx-radius-pill);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow:
        0 4px 24px rgba(15, 23, 42, 0.06),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

[data-theme="dark"] .fx-float-header__pill {
    background: rgba(17, 24, 39, 0.65);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.fx-float-header.fx-is-scrolled .fx-float-header__pill {
    box-shadow:
        0 8px 32px rgba(15, 23, 42, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.fx-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.fx-logo__mark {
    height: 32px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

.fx-logo__text {
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.03em;
}

.fx-float-header__nav {
    display: none;
    flex: 1;
    justify-content: center;
    gap: 4px;
}

@media (min-width: 900px) {
    .fx-float-header__nav {
        display: flex;
    }
}

.fx-float-header__nav a {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fx-gray-500);
    text-decoration: none;
    border-radius: 10px;
    transition: color 0.15s ease, background 0.15s ease;
}

.fx-float-header__nav a:hover {
    color: var(--fx-gray-900);
    background: rgba(15, 23, 42, 0.04);
}

[data-theme="dark"] .fx-float-header__nav a:hover {
    background: rgba(255, 255, 255, 0.06);
}

.fx-float-header__end {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.fx-pill-cta {
    display: none;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    background: var(--fx-pill);
    border-radius: var(--fx-radius-pill);
    transition: transform 0.15s ease, opacity 0.15s ease;
    white-space: nowrap;
}

@media (min-width: 900px) {
    .fx-pill-cta {
        display: inline-flex;
    }
}

[data-theme="dark"] .fx-pill-cta {
    color: #0f172a !important;
}

.fx-pill-cta:hover {
    opacity: 0.92;
}

.fx-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid var(--fx-gray-200);
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 테마 스위치 — summet_web base.html 과 동일 (알약 트랙 + 단색 원형 노브) */
html {
    --tt-track-bg: #ffffff;
    --tt-track-border: rgba(15, 23, 42, 0.88);
    --tt-knob-bg: #0f172a;
}

html[data-theme="dark"] {
    --tt-track-bg: #18181c;
    --tt-track-border: rgba(255, 255, 255, 0.45);
    --tt-knob-bg: #f1f5f9;
}

.theme-toggle.theme-toggle--switch {
    background: transparent;
    border: none;
    padding: 6px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    box-sizing: border-box;
    transition: background 0.2s ease;
}

.theme-toggle.theme-toggle--switch:hover {
    background: rgba(15, 23, 42, 0.04);
}

html[data-theme="dark"] .theme-toggle.theme-toggle--switch:hover {
    background: rgba(255, 255, 255, 0.06);
}

.theme-toggle__track {
    display: block;
    width: 44px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid var(--tt-track-border);
    background: var(--tt-track-bg);
    position: relative;
    box-sizing: border-box;
}

.theme-toggle__knob {
    position: absolute;
    top: 50%;
    left: 3px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    border-radius: 50%;
    background: var(--tt-knob-bg);
    transition: transform 0.22s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.14);
}

html[data-theme="dark"] .theme-toggle__knob {
    transform: translateX(18px);
}

.fx-icon-btn--ghost {
    border-color: transparent;
}

.fx-icon-btn:hover {
    background: rgba(15, 23, 42, 0.04);
}

/* Lang dropdown — keep readable */
.lang-dd__trigger {
    border-radius: 12px !important;
    border-color: var(--fx-gray-200) !important;
    background: rgba(255, 255, 255, 0.5) !important;
}

/* Mobile menu */
.fx-menu {
    position: relative;
}

@media (min-width: 900px) {
    .fx-menu {
        display: none;
    }
}

.fx-menu__btn {
    list-style: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--fx-gray-200);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.fx-menu__btn::-webkit-details-marker {
    display: none;
}

.fx-menu__icon {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--fx-gray-900);
    border-radius: 1px;
    box-shadow: 0 6px 0 var(--fx-gray-900), 0 -6px 0 var(--fx-gray-900);
}

.fx-menu__panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid var(--fx-gray-200);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
}

.fx-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fx-menu__nav a {
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--fx-gray-900);
    text-decoration: none;
    border-radius: 10px;
}

.fx-menu__nav a:hover {
    background: var(--fx-gray-100);
}

/* —— Buttons —— */
.fx-btn-solid,
.fx-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--fx-radius-pill);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    cursor: pointer;
    border: none;
}

.fx-btn-solid {
    background: var(--fx-pill);
    color: #fff !important;
}

[data-theme="dark"] .fx-btn-solid {
    color: #0f172a !important;
}

.fx-btn-solid:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.fx-btn-solid--full {
    width: 100%;
}

.fx-btn-solid--lg {
    padding: 14px 28px;
    font-size: 15px;
}

.fx-btn-ghost {
    background: transparent;
    color: var(--fx-gray-900) !important;
    border: 1px solid var(--fx-gray-200);
}

.fx-btn-ghost:hover {
    background: rgba(15, 23, 42, 0.03);
}

.fx-btn-ghost--full {
    width: 100%;
}

/* —— Hero —— */
.fx-hero-fr {
    position: relative;
    padding: calc(var(--fx-header-offset) + 12px) 0 48px;
}

.fx-hero-fr__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        var(--fx-sky-top) 0%,
        var(--fx-sky-mid) 38%,
        #dbe8f8 68%,
        var(--fx-white) 100%
    );
    z-index: 0;
}

[data-theme="dark"] .fx-hero-fr__bg {
    background: linear-gradient(180deg, #0a0e14 0%, var(--fx-sky-mid) 50%, var(--fx-white) 100%);
}

.fx-hero-fr__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.fx-hero-fr__text {
    text-align: center;
    max-width: 44rem;
    margin: 0 auto;
}

.fx-hero-fr__h1 {
    margin: 0;
    font-size: clamp(1.75rem, 4.8vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.18;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .fx-hero-fr__h1 {
        white-space: normal;
    }
}

.fx-hero-fr__sub {
    margin: 18px 0 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--fx-gray-500);
}

.fx-hero-fr__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
}

/* —— Vision screen (Summet dashboard) + 3D tilt via JS —— */
.fx-vision-screen {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}

.fx-vision-screen__persp {
    perspective: 1400px;
    perspective-origin: 50% 25%;
}

.fx-vision-screen__tilt {
    transform: rotateX(0deg) scale(1) translateZ(0);
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
    transform-origin: 50% 50%;
}

.fx-vision-screen__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--fx-gray-200);
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 24px 48px rgba(15, 23, 42, 0.12);
}

[data-theme="dark"] .fx-vision-screen__img {
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

@media (prefers-reduced-motion: reduce) {
    .fx-vision-screen__tilt {
        transform: none !important;
        will-change: auto;
    }
}

/* —— Marquee —— */
.fx-band-marquee {
    padding: 8px 0 40px;
    background: var(--fx-white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 스크롤·마스크는 뷰포트 가로의 2/3 안에서만 (양옆 1/6 여백) */
.fx-marquee {
    width: 66.6667%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.fx-marquee--gray .fx-marquee__logo {
    filter: grayscale(1);
    opacity: 0.55;
}

.fx-marquee__track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: fx-marquee-move 28s linear infinite;
}

@keyframes fx-marquee-move {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

.fx-marquee__logo {
    flex-shrink: 0;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--fx-gray-900);
}

/* —— Showcase —— */
.fx-show-fr {
    padding: 24px 0 56px;
    background: var(--fx-white);
}

.fx-show-fr__k {
    text-align: center;
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--fx-gray-500);
}

.fx-show-fr__h {
    margin: 0 auto 12px;
    text-align: center;
    font-size: clamp(1.85rem, 4.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.2;
    max-width: 22rem;
}

.fx-show-fr__intro {
    margin: 0 auto 26px;
    max-width: 38rem;
    text-align: center;
    font-size: 1.02rem;
    line-height: 1.68;
    color: var(--fx-gray-500);
}

.fx-show-fr__controls {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.fx-dev-toggle {
    display: inline-flex;
    padding: 4px;
    border-radius: var(--fx-radius-pill);
    background: var(--fx-gray-100);
    border: 1px solid var(--fx-gray-200);
}

.fx-dev-toggle__btn {
    padding: 10px 20px;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--fx-gray-500);
    border: none;
    border-radius: var(--fx-radius-pill);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.fx-dev-toggle__btn.is-active {
    background: var(--fx-white);
    color: var(--fx-gray-900);
    box-shadow: 0 2px 8px var(--fx-ring);
}

.fx-dev-panels {
    position: relative;
    min-height: 320px;
}

.fx-dev-panel {
    display: none;
    animation: fx-panel-pop 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fx-dev-panel.is-active {
    display: block;
}

@keyframes fx-panel-pop {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fx-life-card {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--fx-gray-200);
    background: var(--fx-gray-100);
}

.fx-life-card__scene {
    position: relative;
    min-height: 380px;
    background: linear-gradient(165deg, #e8dcc8 0%, #c4a574 35%, #8b6f47 100%);
}

.fx-life-card__desk {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 38%;
    background: linear-gradient(90deg, #5c4033 0%, #7a5540 100%);
}

.fx-life-card__phone {
    position: absolute;
    left: 50%;
    bottom: 12%;
    transform: translateX(-50%);
    width: 200px;
    aspect-ratio: 9 / 18.5;
    border-radius: 28px;
    padding: 10px;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
    animation: fx-phone-float 6s ease-in-out infinite;
}

.fx-life-card__phone-ui {
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 16px;
}

.fx-life-card__summet {
    font-weight: 900;
    font-size: 13px;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
    color: var(--fx-gray-900);
}

.fx-life-card__p1,
.fx-life-card__p2 {
    height: 8px;
    border-radius: 6px;
    background: var(--fx-gray-200);
    margin-bottom: 10px;
}

.fx-life-card__p2 {
    width: 72%;
}

.fx-life-card__card {
    margin-top: 16px;
    height: 72px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--fx-blue) 0%, #2563eb 100%);
    opacity: 0.9;
}

@keyframes fx-phone-float {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-12px);
    }
}

.fx-life-card--web .fx-web-preview {
    min-height: 360px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--fx-white);
}

.fx-web-preview__chrome {
    height: 40px;
    background: var(--fx-gray-100);
    border-bottom: 1px solid var(--fx-gray-200);
}

.fx-web-preview__grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 320px;
}

@media (max-width: 700px) {
    .fx-web-preview__grid {
        grid-template-columns: 1fr;
    }

    .fx-web-preview__side {
        display: none;
    }
}

.fx-web-preview__side {
    background: var(--fx-gray-50);
    border-right: 1px solid var(--fx-gray-200);
}

.fx-web-preview__body {
    padding: 20px;
}

.fx-web-preview__chart {
    height: 200px;
    border-radius: 14px;
    background: linear-gradient(180deg, var(--fx-blue-soft), transparent);
    border: 1px solid var(--fx-gray-200);
}

/* —— Feature blocks + chip grid —— */
.fx-feature-block {
    padding: 32px 0 48px;
    background: var(--fx-gray-50);
}

.fx-fblock {
    padding: 40px 28px;
    border-radius: var(--fx-radius);
    border: 1px solid var(--fx-gray-200);
    background: var(--fx-white);
    margin-bottom: 20px;
}

.fx-fblock--tint {
    background: var(--fx-gray-50);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.05);
}

.fx-fblock__no {
    display: inline-block;
    font-size: 14px;
    font-weight: 800;
    color: var(--fx-gray-400);
    margin-bottom: 12px;
}

.fx-fblock__title {
    margin: 0 0 16px;
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.25;
}

.fx-fblock__title-br {
    white-space: pre-line;
    max-width: 22ch;
}

.fx-fblock__lead {
    margin: 0 0 12px;
    font-size: 1.02rem;
    line-height: 1.65;
}

.fx-fblock__p {
    margin: 0 0 12px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--fx-gray-500);
}

.fx-fblock__cta {
    margin: 22px 0 28px;
}

.fx-chip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (min-width: 640px) {
    .fx-chip-grid {
        gap: 14px;
    }
}

.fx-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--fx-radius-pill);
    border: 1px solid var(--fx-gray-200);
    background: var(--fx-white);
    font-size: 13px;
    font-weight: 700;
    color: var(--fx-gray-900);
}

.fx-fblock--tint .fx-chip {
    background: var(--fx-white);
}

.fx-chip__ico {
    flex-shrink: 0;
    color: var(--fx-gray-500);
}

/* Home · 라이트: 피처·칩·원칙·제품 — 배경 그라데이션과 맞춤(투명+테두리; blur 제거) */
[data-theme="light"] .fx-page--home .fx-fblock:not(.fx-fblock--tint) {
    background: transparent;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow:
        0 10px 44px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

[data-theme="light"] .fx-page--home .fx-fblock--tint {
    background: transparent;
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow:
        0 10px 44px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 252, 247, 0.65);
}

[data-theme="light"] .fx-page--home .fx-fblock:not(.fx-fblock--tint) .fx-chip {
    background: transparent;
    border-color: rgba(15, 23, 42, 0.12);
}

[data-theme="light"] .fx-page--home .fx-fblock--tint .fx-chip {
    background: transparent;
    border-color: rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .fx-page--home .fx-work-card {
    background: transparent;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow:
        0 8px 36px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .fx-page--home .fx-work-card:hover {
    box-shadow:
        0 12px 40px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

[data-theme="light"] .fx-page--home .fx-pcard {
    background: transparent;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow:
        0 10px 40px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

[data-theme="light"] .fx-page--home .fx-pcard:hover {
    box-shadow:
        0 16px 44px rgba(15, 23, 42, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

[data-theme="light"] .fx-page--home .fx-pcard--dim {
    background: transparent;
    border-color: rgba(15, 23, 42, 0.09);
    box-shadow:
        0 10px 40px rgba(15, 23, 42, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

[data-theme="light"] .fx-page--home .fx-soc {
    background: transparent;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow:
        0 8px 36px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

[data-theme="light"] .fx-page--home .fx-faq__item {
    background: transparent;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow:
        0 6px 28px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Home · 다크: 카드/칩에 blur 쓰면 뒤가 ‘페이지’가 아니라 ‘카드 면’만 흐려져 회색 덩어리처럼 보임 → 투명+테두리만 */
[data-theme="dark"] .fx-page--home .fx-fblock:not(.fx-fblock--tint) {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow:
        0 10px 44px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .fx-page--home .fx-fblock--tint {
    background: transparent;
    border-color: rgba(214, 199, 176, 0.16);
    box-shadow:
        0 10px 44px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 248, 240, 0.06);
}

[data-theme="dark"] .fx-page--home .fx-fblock__no {
    color: rgba(148, 163, 184, 0.78);
}

[data-theme="dark"] .fx-page--home .fx-fblock--tint .fx-fblock__no {
    color: rgba(214, 199, 176, 0.65);
}

[data-theme="dark"] .fx-page--home .fx-fblock:not(.fx-fblock--tint) .fx-chip {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.22);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

[data-theme="dark"] .fx-page--home .fx-fblock--tint .fx-chip {
    background: transparent;
    border-color: rgba(214, 199, 176, 0.2);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

[data-theme="dark"] .fx-page--home .fx-fblock:not(.fx-fblock--tint) .fx-chip__ico {
    color: rgba(186, 198, 214, 0.92);
}

[data-theme="dark"] .fx-page--home .fx-fblock--tint .fx-chip__ico {
    color: rgba(214, 199, 176, 0.88);
}

/* Home · 다크: How we work(3) + 제품(2) 카드 — 배경 그라데이션과 맞춤(투명+테두리) */
[data-theme="dark"] .fx-page--home .fx-work-card {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow:
        0 8px 36px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .fx-page--home .fx-work-card:hover {
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .fx-page--home .fx-pcard {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .fx-page--home .fx-pcard:hover {
    box-shadow:
        0 16px 44px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .fx-page--home .fx-pcard--dim {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.16);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .fx-page--home .fx-soc {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow:
        0 8px 36px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .fx-page--home .fx-faq__item {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow:
        0 6px 28px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

[data-theme="dark"] .fx-page--home .fx-faq__item summary::after {
    border-right-color: rgba(148, 163, 184, 0.65);
    border-bottom-color: rgba(148, 163, 184, 0.65);
}

/* —— Work —— */
.fx-work-fr {
    padding: 56px 0 64px;
    border-top: 1px solid var(--fx-gray-200);
    background: var(--fx-white);
}

.fx-work-fr__h2 {
    margin: 0 0 10px;
    text-align: center;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.fx-work-fr__lead {
    margin: 0 auto 36px;
    text-align: center;
    color: var(--fx-gray-500);
    max-width: 36rem;
}

.fx-work-fr__grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .fx-work-fr__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fx-work-card {
    padding: 22px 20px;
    border-radius: 18px;
    border: 1px solid var(--fx-gray-200);
    background: var(--fx-gray-50);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.fx-work-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.fx-work-card__h {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.fx-work-card__p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--fx-gray-500);
}

/* —— Products —— */
.fx-products-fr {
    padding: 48px 0 40px;
    background: var(--fx-gray-50);
}

.fx-products-fr__h {
    margin: 0 0 28px;
    text-align: center;
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.fx-products-fr__grid {
    display: grid;
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .fx-products-fr__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.fx-pcard {
    padding: 24px 22px 28px;
    border-radius: var(--fx-radius);
    border: 1px solid var(--fx-gray-200);
    background: var(--fx-white);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fx-pcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.fx-pcard--dim {
    background: var(--fx-gray-100);
}

.fx-pcard__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.fx-pcard__logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.fx-pcard__badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: var(--fx-radius-pill);
    background: var(--fx-blue-soft);
    color: var(--fx-blue);
}

.fx-pcard__name {
    margin: 0 0 14px;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.fx-pcard__list {
    margin: 0 0 20px;
    padding-left: 1.1em;
    font-size: 14px;
    color: var(--fx-gray-500);
    line-height: 1.55;
}

.fx-pcard__dim {
    margin: 0 0 20px;
    font-size: 14px;
    color: var(--fx-gray-500);
    line-height: 1.6;
}

.fx-trust-line {
    margin: 40px auto 0;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--fx-gray-400);
    max-width: 36rem;
}

/* —— Community —— */
.fx-community-fr {
    padding: 48px 0 56px;
    border-top: 1px solid var(--fx-gray-200);
    background: var(--fx-white);
}

.fx-community-fr__k {
    margin: 0 0 8px;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--fx-gray-400);
}

.fx-community-fr__h {
    margin: 0 auto 32px;
    text-align: center;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.3;
    max-width: 28rem;
}

.fx-community-fr__grid {
    display: grid;
    gap: 14px;
    max-width: 880px;
    margin: 0 auto;
}

@media (min-width: 700px) {
    .fx-community-fr__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.fx-soc {
    padding: 22px 20px;
    border-radius: 18px;
    border: 1px solid var(--fx-gray-200);
    background: var(--fx-gray-50);
}

.fx-soc__h {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 800;
}

.fx-soc__h--brand,
.fx-social-card__h.fx-soc__h--brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fx-soc__brand-ico {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.fx-soc__brand-ico svg {
    display: block;
    width: calc(28px * 2 / 3);
    height: calc(28px * 2 / 3);
}

.fx-soc__brand-txt {
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
}

.fx-soc__p {
    margin: 0 0 14px;
    font-size: 14px;
    color: var(--fx-gray-500);
    line-height: 1.55;
}

.fx-soc__a {
    font-size: 14px;
    font-weight: 700;
    color: var(--fx-gray-900);
    text-decoration: none;
}

.fx-soc__a:hover {
    text-decoration: underline;
}

/* —— CTA —— */
.fx-cta-fr {
    padding: 48px 0 56px;
    text-align: center;
    border-top: 1px solid var(--fx-gray-200);
    background: linear-gradient(180deg, var(--fx-white) 0%, var(--fx-gray-50) 100%);
}

.fx-cta-fr__h {
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.fx-cta-fr__p {
    margin: 0 auto 22px;
    max-width: 32rem;
    color: var(--fx-gray-500);
}

/* —— FAQ —— */
.fx-faq {
    padding: 48px 0 56px;
    background: var(--fx-white);
    border-top: 1px solid var(--fx-gray-200);
}

.fx-faq__title {
    margin: 0 0 10px;
    text-align: center;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.fx-faq__lead {
    margin: 0 auto 28px;
    text-align: center;
    color: var(--fx-gray-500);
    max-width: 36rem;
}

.fx-faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fx-faq__item {
    border: 1px solid var(--fx-gray-200);
    border-radius: 14px;
    background: var(--fx-gray-50);
    overflow: hidden;
}

.fx-faq__item summary {
    list-style: none;
    padding: 16px 18px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.fx-faq__item summary::-webkit-details-marker {
    display: none;
}

.fx-faq__item summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--fx-gray-400);
    border-bottom: 2px solid var(--fx-gray-400);
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.fx-faq__item[open] summary::after {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.fx-faq__a {
    margin: 0;
    padding: 0 18px 18px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--fx-gray-500);
}

.fx-faq__a a {
    color: var(--fx-blue);
    font-weight: 600;
}

/* —— Footer (전체 검정, 다크모드에서도 동일) —— */
.fx-foot-site {
    background: #0a0a0a !important;
    color: rgba(255, 255, 255, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .fx-foot-site {
    background: #0a0a0a !important;
    color: rgba(255, 255, 255, 0.92);
}

.fx-foot-fr {
    padding: 40px 0 40px;
    border-top: none;
    background: transparent;
}

.fx-foot-fr__inner {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.fx-foot-fr__top {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 36px 40px;
}

.fx-foot-fr__brand {
    flex: 0 1 22rem;
    max-width: min(100%, 28rem);
    min-width: 0;
}

.fx-foot-fr__mega {
    flex: 1 1 420px;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 14px;
}

@media (max-width: 1024px) {
    .fx-foot-fr__mega {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .fx-foot-fr__mega {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 400px) {
    .fx-foot-fr__mega {
        grid-template-columns: 1fr;
    }
}

.fx-foot-fr__mega-col {
    min-width: 0;
}

.fx-foot-fr__bottom-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fx-foot-fr__bottom-left {
    justify-self: start;
    min-width: 0;
}

.fx-foot-fr__bottom-center {
    justify-self: center;
    text-align: center;
}

.fx-foot-fr__social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    justify-self: end;
}

@media (max-width: 640px) {
    .fx-foot-fr__bottom-bar {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .fx-foot-fr__bottom-left {
        justify-self: center;
    }

    .fx-foot-fr__social {
        justify-self: center;
        justify-content: center;
    }
}

.fx-foot-fr__soc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.15s ease;
}

.fx-foot-fr__soc:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.fx-foot-fr__soc-ico svg {
    width: 20px;
    height: 20px;
    display: block;
}

.fx-foot-fr__soc--yt {
    background: rgba(255, 255, 255, 0.08);
}

.fx-foot-fr__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.fx-foot-fr__legal a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-weight: 600;
}

.fx-foot-fr__legal a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.fx-foot-fr__legal-sep {
    color: rgba(255, 255, 255, 0.28);
    user-select: none;
}

.fx-foot-fr__name {
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: -0.03em;
    margin-bottom: 0;
    color: #fff;
}

.fx-foot-fr__corp {
    margin-top: 14px;
    max-width: 22rem;
}

.fx-foot-fr__tag {
    margin: 0;
    font-size: 14px;
    color: var(--fx-gray-500);
    line-height: 1.55;
    max-width: 280px;
}

.fx-foot-fr__label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 10px;
}

.fx-foot-fr__mega .fx-foot-fr__label {
    text-transform: none;
    letter-spacing: -0.02em;
    font-size: 13px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
}

a.fx-foot-fr__label--mega-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 12px;
    cursor: pointer;
    transition: color 0.15s ease, opacity 0.15s ease;
}

a.fx-foot-fr__label--mega-link:hover {
    color: #93c5fd;
}

.fx-foot-fr__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fx-foot-fr__nav a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.fx-foot-fr__nav a:hover {
    color: #fff;
}

.fx-foot-fr__copy {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.38);
}

.fx-foot-black__text {
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.88);
}

.fx-foot-black__text a {
    color: #93c5fd !important;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fx-foot-black__text a:hover {
    color: #bfdbfe !important;
}

/* —— Scroll reveal —— */
.fx-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fx-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

a:focus-visible,
button:focus-visible,
.fx-menu__btn:focus-visible,
.lang-dd__trigger:focus-visible {
    outline: 2px solid var(--fx-blue);
    outline-offset: 2px;
}

/* —— Language dropdown (full) —— */
.lang-dd {
    position: relative;
    min-width: 96px;
    font-family: inherit;
}

.lang-dd__trigger {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 7px 10px;
    border-radius: 12px;
    border: 1px solid var(--fx-gray-200);
    background: rgba(255, 255, 255, 0.55);
    color: var(--fx-gray-900);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.lang-dd__trigger::-webkit-details-marker {
    display: none;
}

.lang-dd__value {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    min-width: 0;
    gap: 6px;
}

.lang-dd__label {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lang-dd__code {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--fx-gray-400);
}

.lang-dd__chev {
    color: var(--fx-gray-400);
    transition: transform 0.2s ease;
}

.lang-dd[open] .lang-dd__chev {
    transform: rotate(180deg);
}

.lang-dd__panel {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 220px;
    z-index: 1200;
}

.lang-dd__panel-inner {
    padding: 8px;
    border-radius: 14px;
    border: 1px solid var(--fx-gray-200);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12);
}

.lang-dd__head {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fx-gray-400);
    margin: 0 0 6px;
    padding: 4px 8px;
}

.lang-dd__form {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lang-dd__option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 10px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--fx-gray-900);
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.lang-dd__flag {
    font-size: 1.1rem;
    line-height: 1;
}

.lang-dd__opt-main {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.lang-dd__opt-title {
    font-size: 13px;
    font-weight: 600;
}

.lang-dd__opt-meta {
    font-size: 11px;
    color: var(--fx-gray-500);
}

.lang-dd__option:hover {
    background: var(--fx-gray-100);
}

.lang-dd__option.is-active {
    background: var(--fx-gray-100);
    outline: 1px solid var(--fx-gray-200);
}

.lang-dd__tick {
    margin-left: auto;
    color: var(--fx-blue);
}

/* —— Careers page (distinct from marketing home) —— */
.fx-careers-page {
    background: var(--fx-page-bg);
}

.fx-careers-hero {
    position: relative;
    padding: calc(var(--fx-header-offset) + 4px) 0 0;
    overflow: clip;
}

.fx-careers-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        #7c9fd4 0%,
        var(--fx-sky-mid) 38%,
        #e8f0fb 72%,
        var(--fx-white) 100%
    );
    z-index: 0;
}

[data-theme="dark"] .fx-careers-hero__bg {
    background: linear-gradient(145deg, #0a1628 0%, #121c2e 40%, var(--fx-sky-mid) 88%, var(--fx-white) 100%);
}

.fx-careers-hero__mesh {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.35;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.45) 0, transparent 42%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.12) 0, transparent 38%),
        repeating-linear-gradient(
            -12deg,
            transparent,
            transparent 11px,
            rgba(15, 23, 42, 0.04) 11px,
            rgba(15, 23, 42, 0.04) 12px
        );
    pointer-events: none;
}

[data-theme="dark"] .fx-careers-hero__mesh {
    opacity: 0.2;
    background-image:
        radial-gradient(circle at 25% 35%, rgba(96, 165, 250, 0.08) 0, transparent 45%),
        repeating-linear-gradient(
            -12deg,
            transparent,
            transparent 11px,
            rgba(255, 255, 255, 0.03) 11px,
            rgba(255, 255, 255, 0.03) 12px
        );
}

.fx-careers-hero__intro-slab {
    position: relative;
    z-index: 2;
    margin-top: clamp(12px, 3vw, 28px);
    background: var(--fx-white);
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -16px 48px -20px rgba(15, 23, 42, 0.12);
}

[data-theme="dark"] .fx-careers-hero__intro-slab {
    box-shadow: 0 -16px 48px -20px rgba(0, 0, 0, 0.45);
}

.fx-careers-hero__intro {
    max-width: 52rem;
    padding: clamp(36px, 6vw, 64px) 0 clamp(44px, 7vw, 72px);
    text-align: left;
}

.fx-careers-hero__eyebrow {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fx-gray-400);
}

.fx-careers-hero__tagline {
    margin: 14px 0 0;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.02em;
    color: var(--fx-gray-900);
}

.fx-careers-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 8px;
    border-radius: var(--fx-radius-pill);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fx-gray-900);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

[data-theme="dark"] .fx-careers-badge {
    background: rgba(15, 23, 42, 0.35);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--fx-gray-900);
}

.fx-careers-badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.35);
}

.fx-careers-hero__h1 {
    margin: 18px 0 0;
    font-size: clamp(1.85rem, 4.8vw, 2.85rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.2;
    color: var(--fx-gray-900);
}

.fx-careers-hero__lead {
    margin: 20px 0 0;
    max-width: 38rem;
    font-size: 1.02rem;
    line-height: 1.72;
    color: var(--fx-gray-500);
}

.fx-careers-hero__recruit-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-size: 15px;
    font-weight: 800;
    color: var(--fx-blue) !important;
    text-decoration: none;
    border-bottom: 2px solid rgba(37, 99, 235, 0.35);
    padding-bottom: 2px;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.fx-careers-hero__recruit-link:hover {
    color: #1d4ed8 !important;
    border-bottom-color: rgba(29, 78, 216, 0.55);
}

.fx-careers-hero__recruit-ico {
    display: inline-block;
    transition: transform 0.15s ease;
}

.fx-careers-hero__recruit-link:hover .fx-careers-hero__recruit-ico {
    transform: translateX(3px);
}

.fx-careers-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    border-radius: var(--fx-radius-pill);
    background: linear-gradient(165deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(15, 23, 42, 0.5);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fx-careers-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.22);
}

.fx-careers-btn-primary--lg {
    padding: 14px 28px;
    font-size: 15px;
}

.fx-careers-btn-primary--hero {
    min-width: min(100%, 280px);
    padding: 14px 28px;
    font-size: 15px;
    background: linear-gradient(165deg, #2563eb 0%, #1d4ed8 45%, #1e3a8a 100%);
    border-color: rgba(29, 78, 216, 0.5);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.2) inset,
        0 12px 32px rgba(37, 99, 235, 0.35);
}

.fx-careers-btn-primary--hero:hover {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.25) inset,
        0 16px 40px rgba(37, 99, 235, 0.42);
}

.fx-careers-section {
    padding: 48px 0 52px;
    border-top: 1px solid var(--fx-gray-200);
}

.fx-careers-section--values {
    background: var(--fx-white);
}

.fx-careers-section--process {
    background: linear-gradient(180deg, #f6f9ff 0%, var(--fx-white) 55%);
}

[data-theme="dark"] .fx-careers-section--process {
    background: linear-gradient(180deg, var(--fx-gray-50) 0%, var(--fx-white) 55%);
}

.fx-careers-section--openings {
    background: var(--fx-white);
}

.fx-careers-section__head {
    margin-bottom: 26px;
    max-width: 36rem;
    padding-left: 14px;
    border-left: 3px solid var(--fx-blue);
}

.fx-careers-section__head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border-left: none;
    padding-left: 0;
}

.fx-careers-section__head--center .fx-careers-section__eyebrow {
    display: inline-block;
}

.fx-careers-section__eyebrow {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fx-blue);
}

.fx-careers-section__h {
    margin: 0 0 10px;
    font-size: clamp(1.4rem, 2.8vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.2;
    color: var(--fx-gray-900);
}

.fx-careers-section__head--center .fx-careers-section__h {
    margin-left: auto;
    margin-right: auto;
}

.fx-careers-section__lead {
    margin: 0;
    color: var(--fx-gray-500);
    font-size: 15px;
    line-height: 1.65;
}

.fx-careers-values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 900px) {
    .fx-careers-values {
        grid-template-columns: 1fr;
    }
}

.fx-careers-card {
    position: relative;
    padding: 22px 18px 20px;
    border-radius: 16px;
    border: 1px solid var(--fx-gray-200);
    background: linear-gradient(165deg, var(--fx-gray-50) 0%, var(--fx-white) 100%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.fx-careers-card__idx {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--fx-gray-400);
}

.fx-careers-card__h {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--fx-gray-900);
}

.fx-careers-card__p {
    margin: 0;
    font-size: 14px;
    line-height: 1.62;
    color: var(--fx-gray-500);
}

.fx-careers-timeline {
    list-style: none;
    margin: 0 auto;
    padding: 0 0 0 8px;
    max-width: 640px;
    position: relative;
}

.fx-careers-timeline::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--fx-blue) 0%, var(--fx-gray-200) 100%);
    border-radius: 2px;
}

.fx-careers-timeline__item {
    position: relative;
    padding: 0 0 22px 40px;
}

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

.fx-careers-timeline__dot {
    position: absolute;
    left: 8px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--fx-white);
    border: 3px solid var(--fx-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.fx-careers-timeline__h {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--fx-gray-900);
}

.fx-careers-timeline__p {
    margin: 0;
    font-size: 14px;
    line-height: 1.62;
    color: var(--fx-gray-500);
}

.fx-careers-board {
    border-radius: 14px;
    border: 1px solid var(--fx-gray-200);
    overflow: hidden;
    background: var(--fx-gray-50);
}

.fx-careers-board__head {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr;
    gap: 12px;
    padding: 10px 16px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fx-gray-400);
    background: var(--fx-white);
    border-bottom: 1px solid var(--fx-gray-200);
}

@media (max-width: 560px) {
    .fx-careers-board__head {
        grid-template-columns: 1fr 1fr;
    }

    .fx-careers-board__head span:last-child {
        display: none;
    }
}

.fx-careers-board__empty {
    padding: 28px 20px;
    text-align: center;
}

.fx-careers-board__empty-p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--fx-gray-500);
}

.fx-careers-apply {
    position: relative;
    padding: 52px 0 56px;
    overflow: hidden;
}

.fx-careers-apply__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(128deg, #0c1424 0%, #1a3a5c 48%, #0b1220 100%);
    z-index: 0;
}

[data-theme="dark"] .fx-careers-apply__bg {
    background: linear-gradient(128deg, #020617 0%, #0f172a 55%, #020617 100%);
}

.fx-careers-apply__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 34rem;
    margin: 0 auto;
}

.fx-careers-apply__h {
    margin: 0 0 12px;
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    color: #f8fafc;
}

.fx-careers-apply__p {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.82);
}

.fx-careers-apply .fx-careers-btn-primary {
    background: #f8fafc;
    color: #0f172a !important;
    border-color: rgba(248, 250, 252, 0.4);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.fx-careers-apply .fx-careers-btn-primary:hover {
    background: #fff;
}

.fx-float-header__nav a.is-active {
    color: var(--fx-blue);
    font-weight: 800;
}

/* —— Careers apply (Notion-like document page, self-hosted) —— */
.fx-doc-page {
    min-height: 70vh;
    background: #fbfbfa;
}

[data-theme="dark"] .fx-doc-page {
    background: var(--fx-white);
}

.fx-doc-page__topbar {
    position: sticky;
    top: calc(var(--fx-header-offset, 72px) - 8px);
    z-index: 3;
    padding: 10px 0;
    background: color-mix(in srgb, #fbfbfa 92%, transparent);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .fx-doc-page__topbar {
    background: color-mix(in srgb, var(--fx-white) 92%, transparent);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.fx-doc-page__topbar-inner {
    max-width: 48rem;
}

.fx-doc-page__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--fx-gray-500);
    text-decoration: none;
    transition: color 0.15s ease;
}

.fx-doc-page__back:hover {
    color: var(--fx-blue);
}

.fx-doc-page__article {
    max-width: 48rem;
    margin: 0 auto;
    padding: clamp(28px, 5vw, 48px) 0 clamp(56px, 10vw, 96px);
}

.fx-doc-page__head {
    margin-bottom: clamp(28px, 4vw, 40px);
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

[data-theme="dark"] .fx-doc-page__head {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.fx-doc-page__icon {
    margin: 0 0 12px;
    font-size: 2.25rem;
    line-height: 1;
}

.fx-doc-page__h1 {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.2;
    color: var(--fx-gray-900);
}

.fx-doc-page__lead {
    margin: 16px 0 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--fx-gray-500);
}

.fx-doc-page__section {
    margin-top: clamp(22px, 3vw, 32px);
}

.fx-doc-page__h2 {
    margin: 0 0 12px;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--fx-gray-900);
}

.fx-doc-page__p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--fx-gray-500);
}

.fx-doc-page__callout {
    margin-top: clamp(32px, 5vw, 44px);
    padding: 22px 22px 24px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--fx-blue) 6%, var(--fx-white));
    border: 1px solid color-mix(in srgb, var(--fx-blue) 18%, transparent);
}

[data-theme="dark"] .fx-doc-page__callout {
    background: rgba(37, 99, 235, 0.12);
    border-color: rgba(96, 165, 250, 0.25);
}

.fx-doc-page__callout-p {
    margin: 0 0 16px;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--fx-gray-900);
}

.fx-doc-page__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    border-radius: var(--fx-radius-pill);
    background: linear-gradient(165deg, #2563eb 0%, #1d4ed8 50%, #1e3a8a 100%);
    border: 1px solid rgba(29, 78, 216, 0.45);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fx-doc-page__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
}

/* —— Company page (회사소개 — editorial layout) —— */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.fx-company-page {
    background: #f0f3f9;
}

[data-theme="dark"] .fx-company-page {
    background: var(--fx-page-bg);
}

/* Hero */
.fx-company-hero {
    position: relative;
    padding: calc(var(--fx-header-offset) + 12px) 0 clamp(48px, 10vw, 100px);
    overflow: clip;
}

.fx-company-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 90% 70% at 15% 20%, rgba(59, 130, 246, 0.14) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 85% 60%, rgba(196, 181, 160, 0.35) 0%, transparent 50%),
        linear-gradient(165deg, #e8eef8 0%, #eef1f7 45%, #f5f2ec 100%);
}

[data-theme="dark"] .fx-company-hero__bg {
    background:
        radial-gradient(ellipse 80% 60% at 20% 15%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 60% 50% at 90% 70%, rgba(180, 160, 120, 0.08) 0%, transparent 45%),
        linear-gradient(165deg, #121a26 0%, #161e2c 50%, #1a1814 100%);
}

.fx-company-hero__noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

[data-theme="dark"] .fx-company-hero__noise {
    opacity: 0.06;
}

.fx-company-hero__layout {
    position: relative;
    z-index: 2;
    display: grid;
    gap: clamp(32px, 6vw, 56px);
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .fx-company-hero__layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
        gap: clamp(40px, 5vw, 72px);
    }
}

.fx-company-hero__copy {
    min-width: 0;
}

.fx-company-hero__eyebrow {
    margin: 0 0 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fx-gray-500);
}

.fx-company-hero__h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.15rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.08;
    color: var(--fx-gray-900);
}

.fx-company-hero__rule {
    width: 48px;
    height: 4px;
    margin-top: 22px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--fx-blue) 0%, #93c5fd 100%);
}

.fx-company-hero__body {
    margin-top: clamp(22px, 4vw, 32px);
}

.fx-company-hero__p {
    margin: 0 0 1.1rem;
    font-size: 1.06rem;
    line-height: 1.78;
    color: var(--fx-gray-500);
    max-width: 38rem;
}

.fx-company-hero__p:last-child {
    margin-bottom: 0;
}

.fx-company-hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.fx-company-hero__orb {
    position: absolute;
    width: min(100%, 340px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95) 0%, rgba(219, 234, 254, 0.6) 40%, rgba(147, 197, 253, 0.25) 70%, transparent 75%);
    filter: blur(0.5px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 32px 64px -24px rgba(15, 23, 42, 0.2);
}

[data-theme="dark"] .fx-company-hero__orb {
    background: radial-gradient(circle at 35% 35%, rgba(30, 58, 95, 0.5) 0%, rgba(15, 23, 42, 0.3) 50%, transparent 72%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06) inset,
        0 28px 56px -20px rgba(0, 0, 0, 0.5);
}

.fx-company-hero__card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 280px);
    aspect-ratio: 1;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 24px 48px -20px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(12px);
}

[data-theme="dark"] .fx-company-hero__card {
    background: rgba(20, 28, 40, 0.65);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.05) inset,
        0 24px 48px -16px rgba(0, 0, 0, 0.45);
}

.fx-company-hero__logo {
    width: min(42%, 120px);
    height: auto;
    opacity: 0.95;
    filter: drop-shadow(0 8px 24px rgba(15, 23, 42, 0.12));
}

/* Mission / Vision cards */
.fx-company-pillars {
    padding: clamp(40px, 8vw, 88px) 0;
    background: var(--fx-white);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

[data-theme="dark"] .fx-company-pillars {
    border-top-color: rgba(255, 255, 255, 0.07);
}

.fx-company-pillars__grid {
    display: grid;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .fx-company-pillars__grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

.fx-company-pillar {
    position: relative;
    padding: clamp(26px, 4vw, 36px) clamp(22px, 3vw, 32px);
    border-radius: 20px;
    border: 1px solid var(--fx-gray-200);
    background: linear-gradient(165deg, #fafbfd 0%, var(--fx-white) 100%);
    box-shadow: 0 14px 40px -28px rgba(15, 23, 42, 0.2);
}

[data-theme="dark"] .fx-company-pillar {
    border-color: rgba(255, 255, 255, 0.08);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.03) 0%, var(--fx-white) 100%);
    box-shadow: 0 16px 40px -24px rgba(0, 0, 0, 0.35);
}

.fx-company-pillar--accent {
    border-color: color-mix(in srgb, var(--fx-blue) 22%, var(--fx-gray-200));
    background: linear-gradient(155deg, rgba(59, 130, 246, 0.06) 0%, var(--fx-white) 55%);
}

[data-theme="dark"] .fx-company-pillar--accent {
    border-color: rgba(96, 165, 250, 0.22);
    background: linear-gradient(155deg, rgba(59, 130, 246, 0.1) 0%, var(--fx-white) 60%);
}

.fx-company-pillar__idx {
    display: block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--fx-gray-400);
}

.fx-company-pillar__label {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fx-blue);
}

.fx-company-pillar__h {
    margin: 0;
    font-size: clamp(1.25rem, 2.5vw, 1.55rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.35;
    color: var(--fx-gray-900);
}

.fx-company-pillar__p {
    margin: 14px 0 0;
    font-size: 0.98rem;
    line-height: 1.68;
    color: var(--fx-gray-500);
}

/* Statement */
.fx-company-statement {
    padding: clamp(44px, 8vw, 96px) 0;
    background: #e8ecf4;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

[data-theme="dark"] .fx-company-statement {
    background: linear-gradient(180deg, #141c28 0%, #111820 100%);
    border-top-color: rgba(255, 255, 255, 0.06);
}

.fx-company-statement__shell {
    max-width: 720px;
    margin: 0 auto;
}

.fx-company-statement__quote {
    margin: 0;
    padding: 0 0 0 clamp(18px, 3vw, 28px);
    border-left: 4px solid var(--fx-blue);
}

.fx-company-statement__h2 {
    margin: 0 0 14px;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 800;
    font-style: normal;
    letter-spacing: -0.03em;
    line-height: 1.35;
    color: var(--fx-gray-900);
}

.fx-company-statement__p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.72;
    color: var(--fx-gray-500);
}

/* Timeline */
.fx-company-timeline {
    padding: clamp(48px, 9vw, 96px) 0;
    background: var(--fx-white);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

[data-theme="dark"] .fx-company-timeline {
    border-top-color: rgba(255, 255, 255, 0.07);
}

.fx-company-timeline__head {
    margin-bottom: clamp(28px, 5vw, 40px);
}

.fx-company-timeline__h {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--fx-gray-900);
}

.fx-company-timeline__track {
    margin: 0;
    padding: 4px 0 4px 28px;
    list-style: none;
    max-width: 640px;
    border-left: 2px solid color-mix(in srgb, var(--fx-blue) 38%, var(--fx-gray-200));
}

[data-theme="dark"] .fx-company-timeline__track {
    border-left-color: rgba(96, 165, 250, 0.35);
}

.fx-company-timeline__step {
    position: relative;
    margin-bottom: 18px;
}

.fx-company-timeline__step:last-child {
    margin-bottom: 0;
}

.fx-company-timeline__dot {
    position: absolute;
    left: -37px;
    top: 10px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--fx-white);
    border: 3px solid var(--fx-blue);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

[data-theme="dark"] .fx-company-timeline__dot {
    background: var(--fx-white);
    border-color: var(--fx-blue);
}

.fx-company-timeline__card {
    padding: 16px 18px 18px;
    border-radius: 14px;
    background: var(--fx-gray-50);
    border: 1px solid var(--fx-gray-200);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="dark"] .fx-company-timeline__card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.fx-company-timeline__step:hover .fx-company-timeline__card {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -16px rgba(15, 23, 42, 0.15);
}

[data-theme="dark"] .fx-company-timeline__step:hover .fx-company-timeline__card {
    box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.4);
}

.fx-company-timeline__text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    font-weight: 600;
    color: var(--fx-gray-900);
}

/* Partners + 비즈니스 문의 (통합 섹션) */
.fx-company-contact {
    position: relative;
    padding: clamp(48px, 10vw, 100px) 0;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    overflow: clip;
}

[data-theme="dark"] .fx-company-contact {
    border-top-color: rgba(255, 255, 255, 0.07);
}

.fx-company-contact__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(59, 130, 246, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 100% 100%, rgba(196, 181, 160, 0.12) 0%, transparent 45%),
        linear-gradient(180deg, #eef2f9 0%, #f6f7fb 40%, #fafbfc 100%);
}

[data-theme="dark"] .fx-company-contact__bg {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        linear-gradient(180deg, #121a24 0%, var(--fx-page-bg) 100%);
}

.fx-company-contact__shell {
    position: relative;
    z-index: 1;
    max-width: 1040px;
    margin: 0 auto;
}

.fx-company-contact__grid {
    display: grid;
    gap: 22px;
    align-items: stretch;
}

@media (min-width: 860px) {
    .fx-company-contact__grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

.fx-company-contact__card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(26px, 4vw, 36px) clamp(22px, 3vw, 32px);
    border-radius: 22px;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fx-company-contact__card--partners {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.95);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 20px 50px -28px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(10px);
}

[data-theme="dark"] .fx-company-contact__card--partners {
    background: rgba(22, 30, 42, 0.75);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.05) inset,
        0 24px 48px -24px rgba(0, 0, 0, 0.4);
}

.fx-company-contact__card--biz {
    background: linear-gradient(155deg, #0f172a 0%, #1e293b 48%, #172554 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 24px 56px -20px rgba(15, 23, 42, 0.55);
}

.fx-company-contact__card:hover {
    transform: translateY(-3px);
}

.fx-company-contact__card--partners:hover {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 28px 56px -26px rgba(15, 23, 42, 0.22);
}

.fx-company-contact__card--biz:hover {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.1) inset,
        0 32px 64px -20px rgba(0, 0, 0, 0.5);
}

.fx-company-contact__title {
    margin: 0 0 12px;
    font-size: clamp(1.25rem, 2.4vw, 1.5rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.25;
    color: var(--fx-gray-900);
}

.fx-company-contact__card--biz .fx-company-contact__title {
    color: #f8fafc;
}

.fx-company-contact__desc {
    margin: 0 0 20px;
    font-size: 0.98rem;
    line-height: 1.68;
    color: var(--fx-gray-500);
    flex: 1;
}

.fx-company-contact__card--biz .fx-company-contact__desc {
    margin-bottom: 22px;
    color: rgba(226, 232, 240, 0.88);
}

.fx-company-contact__mail {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding: 14px 18px;
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a !important;
    text-decoration: none;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    word-break: break-all;
}

.fx-company-contact__mail:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.fx-company-contact__mail-label {
    flex: 1;
    min-width: 0;
}

.fx-company-contact__mail-arrow {
    flex-shrink: 0;
    font-size: 1.1rem;
    opacity: 0.75;
    transition: transform 0.15s ease;
}

.fx-company-contact__mail:hover .fx-company-contact__mail-arrow {
    transform: translateX(4px);
}
