/* BASIC css start */
:root {
    --fh-navy: #102a43;
    --fh-navy-deep: #061726;
    --fh-blue: #2563eb;
    --fh-blue-bright: #4f8cff;
    --fh-cyan: #7ce8ff;
    --fh-orange: #ff7a1a;
    --fh-ink: #102033;
    --fh-muted: #66788a;
    --fh-line: #dfe7ee;
    --fh-soft: #f3f7fb;
    --fh-white: #ffffff;
    --fh-ease-out: cubic-bezier(.16, 1, .3, 1);
    --fh-ease-spring: cubic-bezier(.2, .9, .25, 1.15);
}

html { min-width: 0 !important; overflow-x: hidden; }
body { background: #fff; color: var(--fh-ink); }
#flowingHome, #flowingHome * { box-sizing: border-box; }
#flowingHome {
    position: relative;
    overflow: hidden;
    color: var(--fh-ink);
    background: #fff;
    font-family: "Noto Sans KR", "Malgun Gothic", sans-serif;
}
.fh-shell { width: min(1280px, calc(100% - 64px)); margin: 0 auto; }
#flowingHome a:focus-visible { outline: 3px solid var(--fh-blue-bright); outline-offset: 4px; }

/* Lightweight scroll indicator: transform-only and driven by one rAF loop. */
.fh-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    width: 100%;
    height: 3px;
    pointer-events: none;
    background: linear-gradient(90deg, var(--fh-cyan), var(--fh-blue-bright), var(--fh-orange));
    box-shadow: 0 0 16px rgba(79, 140, 255, .55);
    transform: scaleX(0);
    transform-origin: 0 50%;
    will-change: transform;
}

/* Hero — cinematic depth without canvas, WebGL, or third-party runtime. */
.fh-hero {
    --fh-spot-x: 72%;
    --fh-spot-y: 42%;
    --fh-hero-x: 0px;
    --fh-hero-y: 0px;
    --fh-hero-scroll-y: 0px;
    --fh-orbit-x: 0px;
    --fh-orbit-y: 0px;
    position: relative;
    display: flex;
    min-height: 740px;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background: var(--fh-navy-deep);
}
.fh-hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: .22;
    content: "";
    -webkit-mask-image: linear-gradient(90deg, #000, transparent 72%);
    mask-image: linear-gradient(90deg, #000, transparent 72%);
}
.fh-hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: 160px;
    pointer-events: none;
    background: linear-gradient(transparent, rgba(4, 18, 30, .4));
    content: "";
}
.fh-hero-image {
    position: absolute;
    inset: -3%;
    z-index: -3;
    width: 106%;
    height: 106%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.96) contrast(1.03);
    transform: translate3d(var(--fh-hero-x), calc(var(--fh-hero-y) + var(--fh-hero-scroll-y)), 0) scale(1.065);
    will-change: transform;
}
.fh-hero-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at var(--fh-spot-x) var(--fh-spot-y), rgba(85, 170, 255, .24), transparent 28%),
        linear-gradient(90deg, rgba(4, 17, 30, .94) 0%, rgba(6, 27, 47, .82) 43%, rgba(7, 28, 48, .1) 76%),
        linear-gradient(0deg, rgba(4, 17, 30, .42), transparent 44%);
}
.fh-hero-content {
    position: relative;
    z-index: 3;
    padding: 118px 0 148px;
    color: #fff;
}
.fh-eyebrow, .fh-kicker {
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .18em;
    color: var(--fh-blue);
}
.fh-hero .fh-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid rgba(124, 232, 255, .3);
    border-radius: 999px;
    color: #bcefff;
    background: rgba(5, 29, 50, .38);
    box-shadow: inset 0 0 20px rgba(124, 232, 255, .05);
    backdrop-filter: blur(12px);
}
.fh-hero .fh-eyebrow::before {
    width: 6px;
    height: 6px;
    margin-right: 9px;
    border-radius: 50%;
    background: var(--fh-cyan);
    box-shadow: 0 0 12px var(--fh-cyan);
    content: "";
}
.fh-hero h1 {
    max-width: 830px;
    margin: 23px 0 24px;
    color: #fff;
    font-size: clamp(56px, 5.35vw, 82px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.064em;
    text-wrap: balance;
    text-shadow: 0 18px 48px rgba(2, 12, 22, .3);
}
.fh-title-line { display: block; overflow: hidden; padding: .02em .08em .09em 0; margin-bottom: -.09em; }
.fh-title-line > span { display: block; }
.fh-title-line:first-child > span { --fh-line-delay: .12s; }
.fh-title-line:nth-child(2) > span { --fh-line-delay: .22s; }
.fh-hero-copy {
    color: rgba(235, 246, 255, .78);
    font-size: 17px;
    line-height: 1.85;
    letter-spacing: -.02em;
}
.fh-hero-actions { display: flex; gap: 12px; margin-top: 38px; }
.fh-button {
    --fh-magnetic-x: 0px;
    --fh-magnetic-y: 0px;
    position: relative;
    display: inline-flex;
    min-height: 54px;
    padding: 0 26px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.01em;
    transform: translate3d(var(--fh-magnetic-x), var(--fh-magnetic-y), 0);
    transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .3s var(--fh-ease-out);
}
.fh-button::after {
    position: absolute;
    top: -120%;
    left: -35%;
    width: 26%;
    height: 340%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
    content: "";
    opacity: 0;
    transform: rotate(22deg);
    transition: left .7s var(--fh-ease-out), opacity .2s ease;
}
.fh-button:hover::after { left: 112%; opacity: 1; }
.fh-button-primary {
    color: #fff;
    background: linear-gradient(135deg, #2e77ff, #1659db);
    box-shadow: 0 14px 34px rgba(31, 111, 235, .35), inset 0 1px rgba(255,255,255,.25);
}
.fh-button-primary:hover { color: #fff; box-shadow: 0 18px 42px rgba(31,111,235,.5), inset 0 1px rgba(255,255,255,.25); }
.fh-button-ghost {
    border: 1px solid rgba(255,255,255,.45);
    color: #fff;
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(12px);
}
.fh-button-ghost:hover { border-color: rgba(255,255,255,.88); color: #fff; background: rgba(255,255,255,.14); }

.fh-hero-orbit {
    position: absolute;
    right: 8.5%;
    top: 13%;
    z-index: 2;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(188, 239, 255, .14);
    border-radius: 50%;
    pointer-events: none;
    transform: translate3d(var(--fh-orbit-x), var(--fh-orbit-y), 0);
}
.fh-hero-orbit::before, .fh-hero-orbit::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}
.fh-hero-orbit::before { inset: 44px; border: 1px dashed rgba(188, 239, 255, .2); }
.fh-hero-orbit::after {
    top: 18px;
    left: 102px;
    width: 9px;
    height: 9px;
    background: var(--fh-cyan);
    box-shadow: 0 0 22px var(--fh-cyan);
}
.fh-hero-status {
    position: absolute;
    right: max(32px, calc(50vw - 640px));
    bottom: 72px;
    z-index: 4;
    display: flex;
    gap: 10px;
    pointer-events: none;
}
.fh-hero-status span {
    display: flex;
    min-height: 56px;
    padding: 0 17px;
    align-items: center;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 15px;
    color: rgba(255,255,255,.68);
    background: rgba(6, 27, 47, .42);
    box-shadow: 0 12px 36px rgba(2, 13, 24, .16);
    font-family: Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    backdrop-filter: blur(12px);
}
.fh-hero-status strong { margin-right: 8px; color: #fff; font-size: 16px; letter-spacing: -.02em; }
.fh-scroll-cue {
    position: absolute;
    left: max(32px, calc(50vw - 640px));
    bottom: 38px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.56);
    font-family: Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    pointer-events: none;
}
.fh-scroll-cue::before { width: 34px; height: 1px; background: rgba(255,255,255,.5); content: ""; transform-origin: 0 50%; }

/* Service panel floats above the scene to create a strong depth break. */
.fh-service-strip {
    position: relative;
    z-index: 7;
    width: min(1328px, calc(100% - 64px));
    margin: -34px auto 0;
    overflow: hidden;
    border: 1px solid rgba(209, 222, 233, .8);
    border-radius: 22px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 26px 70px rgba(16,42,67,.14);
    backdrop-filter: blur(18px);
}
.fh-service-strip .fh-shell { width: 100%; }
.fh-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fh-service-grid > div { position: relative; padding: 26px 26px 25px; }
.fh-service-grid > div + div::before { position: absolute; left: 0; top: 24px; bottom: 24px; width: 1px; background: var(--fh-line); content: ""; }
.fh-service-grid > div::after {
    position: absolute;
    right: 22px;
    top: 26px;
    color: #b5c4d0;
    font-size: 17px;
    content: "↗";
    transition: color .25s ease, transform .35s var(--fh-ease-out);
}
.fh-service-grid > div:hover::after { color: var(--fh-blue); transform: translate3d(3px,-3px,0); }
.fh-service-grid strong, .fh-service-grid span { display: block; }
.fh-service-grid strong { margin-bottom: 7px; color: var(--fh-ink); font-size: 14px; font-weight: 800; }
.fh-service-grid span { color: var(--fh-muted); font-size: 12px; }
.fh-service-grid span a { color: inherit; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.fh-motion-rail {
    position: relative;
    z-index: 5;
    overflow: hidden;
    margin-top: 26px;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: #e9f7ff;
    background: var(--fh-navy-deep);
}
.fh-motion-rail-track { display: flex; width: max-content; animation: fh-rail 34s linear infinite; will-change: transform; }
.fh-motion-rail:hover .fh-motion-rail-track { animation-play-state: paused; }
.fh-motion-rail-group { display: flex; flex: 0 0 auto; align-items: center; }
.fh-motion-rail-group span {
    display: inline-flex;
    min-height: 62px;
    align-items: center;
    padding: 0 28px;
    font-family: Arial, "Noto Sans KR", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    white-space: nowrap;
}
.fh-motion-rail-group span::before {
    width: 5px;
    height: 5px;
    margin-right: 28px;
    border-radius: 50%;
    background: var(--fh-cyan);
    box-shadow: 0 0 11px rgba(124,232,255,.8);
    content: "";
}
@keyframes fh-rail { to { transform: translate3d(-50%, 0, 0); } }

/* Shared editorial sections and progressive scroll reveal. */
.fh-section { position: relative; padding: 108px 0; }
.fh-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 44px; }
.fh-section-head > div { flex: 1 1 auto; }
.fh-section-head h2 { margin-top: 12px; color: var(--fh-ink); font-size: 42px; line-height: 1.22; font-weight: 800; letter-spacing: -.05em; }
.fh-section-head > p { width: min(470px, 45%); color: var(--fh-muted); font-size: 14px; line-height: 1.78; text-align: right; }
html.fh-motion-ready .fh-reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(.985);
    transition: opacity .75s ease, transform .95s var(--fh-ease-out);
    transition-delay: var(--fh-reveal-delay, 0ms);
}
html.fh-motion-ready .fh-reveal.fh-in-view { opacity: 1; transform: translate3d(0,0,0) scale(1); }

/* Category cards: deep editorial canvas with pointer-aware light and tilt. */
.fh-category-section {
    color: #fff;
    background:
        radial-gradient(circle at 86% 16%, rgba(37,99,235,.2), transparent 28%),
        radial-gradient(circle at 12% 88%, rgba(124,232,255,.08), transparent 24%),
        var(--fh-navy-deep);
}
.fh-category-section::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,.13) .7px, transparent .7px);
    background-size: 22px 22px;
    opacity: .13;
    content: "";
}
.fh-category-section .fh-kicker { color: var(--fh-cyan); }
.fh-category-section .fh-section-head h2 { color: #fff; }
.fh-category-section .fh-section-head > p { color: rgba(225,238,248,.62); }
.fh-category-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 285px); gap: 18px; perspective: 1200px; }
.fh-category-card {
    --fh-card-x: 50%;
    --fh-card-y: 50%;
    --fh-tilt-x: 0deg;
    --fh-tilt-y: 0deg;
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    color: #fff;
    background: #15314a;
    box-shadow: 0 18px 60px rgba(0,0,0,.2);
    transform: rotateX(var(--fh-tilt-x)) rotateY(var(--fh-tilt-y)) translateZ(0);
    transform-style: preserve-3d;
    transition: transform .55s var(--fh-ease-out), border-color .3s ease, box-shadow .4s ease;
}
.fh-category-card::before {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(circle at var(--fh-card-x) var(--fh-card-y), rgba(255,255,255,.28), transparent 33%);
    content: "";
    opacity: 0;
    transition: opacity .35s ease;
}
.fh-category-card::after {
    position: absolute;
    right: 24px;
    top: 24px;
    z-index: 4;
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 50%;
    color: #fff;
    background: rgba(5,20,34,.24);
    font-size: 18px;
    content: "↗";
    opacity: 0;
    transform: translate3d(-8px,8px,0) rotate(-12deg);
    transition: opacity .3s ease, transform .55s var(--fh-ease-spring), background .3s ease;
    backdrop-filter: blur(8px);
}
.fh-category-card-wide { grid-row: 1 / span 2; }
.fh-category-card:last-child { grid-column: 2 / span 2; }
.fh-category-card img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.035); transition: transform 1s var(--fh-ease-out), filter .5s ease; }
.fh-category-card:hover { border-color: rgba(124,232,255,.38); box-shadow: 0 28px 80px rgba(0,0,0,.32); }
.fh-category-card:hover::before, .fh-category-card:hover::after { opacity: 1; }
.fh-category-card:hover::after { background: rgba(37,99,235,.78); transform: translate3d(0,0,0) rotate(0); }
.fh-category-card:hover img { filter: saturate(1.08); transform: scale(1.085); }
.fh-card-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(5,20,34,.01) 16%, rgba(5,20,34,.88) 100%); }
.fh-category-copy { position: absolute; left: 30px; right: 30px; bottom: 28px; z-index: 3; color: #fff; transform: translateZ(30px); transition: transform .55s var(--fh-ease-out); }
.fh-category-card:hover .fh-category-copy { transform: translate3d(0,-6px,30px); }
.fh-category-copy em, .fh-category-copy strong, .fh-category-copy small { display: block; color: #fff; }
.fh-category-copy em { margin-bottom: 9px; color: #a9eefe; font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.fh-category-copy strong { font-size: 27px; line-height: 1.25; font-weight: 800; letter-spacing: -.04em; }
.fh-category-copy small { margin-top: 7px; color: rgba(255,255,255,.7); font-size: 12px; }

/* FLOWING's own brand bridges editorial storytelling into real shop products. */
.fh-brinia-section { overflow: hidden; color: #0b2130; background: #e8efeb; }
.fh-brinia-stage { display: grid; grid-template-columns: minmax(0,.92fr) minmax(420px,.78fr); align-items: stretch; gap: clamp(44px,6vw,94px); }
.fh-brinia-copy { align-self: center; max-width: 600px; }
.fh-brinia-owner { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; color: #264b4b; font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.fh-brinia-owner span { display: inline-flex; width: 34px; height: 34px; align-items: center; justify-content: center; border-radius: 50%; color: #e8efeb; background: #0a2930; font-size: 14px; letter-spacing: 0; }
.fh-brinia-copy .fh-kicker { color: #3c746f; }
.fh-brinia-copy h2 { margin: 14px 0 22px; color: #071b24; font-size: clamp(42px,4.3vw,64px); line-height: 1.08; font-weight: 800; letter-spacing: -.065em; }
.fh-brinia-copy h2 em { color: #337f76; font-style: normal; }
.fh-brinia-copy > p:not(.fh-kicker):not(.fh-brinia-owner) { max-width: 570px; color: #56706f; font-size: 14px; line-height: 1.85; word-break: keep-all; }
.fh-brinia-facts { display: flex; margin-top: 34px; }
.fh-brinia-facts div { min-width: 112px; padding-right: 26px; }
.fh-brinia-facts div + div { padding-left: 26px; border-left: 1px solid rgba(25,73,72,.16); }
.fh-brinia-facts dt { margin-bottom: 7px; color: #6b8582; font-family: Arial, sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.fh-brinia-facts dd { color: #0a2930; font-family: Arial, sans-serif; font-size: 17px; font-weight: 800; }
.fh-brinia-actions { display: flex; align-items: center; gap: 24px; margin-top: 38px; }
.fh-brinia-actions .fh-button { background: #0a2930; box-shadow: 0 16px 34px rgba(8,39,45,.17); }
.fh-brinia-actions .fh-button:hover { color: #fff; background: #14514f; }
.fh-brinia-text-link { color: #0a2930; font-size: 13px; font-weight: 800; }
.fh-brinia-text-link:hover { color: #337f76; }
.fh-brinia-text-link span { margin-left: 7px; color: #337f76; }
.fh-brinia-film { position: relative; display: block; height: 500px; overflow: hidden; border-radius: 28px; color: #fff; background: #071b24; box-shadow: 0 28px 70px rgba(7,27,36,.2); }
.fh-brinia-film:hover { color: #fff; }
.fh-brinia-film iframe { display: block; width: 100%; height: 100%; border: 0; background: #071b24; }
.fh-brinia-film-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,16,22,.08), rgba(3,16,22,.08) 44%, rgba(3,16,22,.86)); }
.fh-brinia-film-index { position: absolute; left: 28px; top: 26px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; font-family: Arial, sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .12em; backdrop-filter: blur(8px); }
.fh-brinia-film > strong { position: absolute; left: 30px; bottom: 34px; font-family: Arial, sans-serif; font-size: clamp(30px,3vw,42px); line-height: .94; font-weight: 800; letter-spacing: -.05em; }
.fh-brinia-film-play { position: absolute; right: 26px; bottom: 28px; display: inline-flex; min-height: 46px; align-items: center; gap: 10px; padding: 0 16px; border-radius: 999px; color: #071b24; background: #fff; font-family: Arial, sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.fh-brinia-film-play b { font-size: 15px; }
.fh-brinia-products { display: grid; grid-template-columns: 1fr 1fr .82fr; gap: 12px; margin-top: 14px; }
.fh-brinia-products > a { position: relative; display: grid; grid-template-columns: 92px 1fr auto; min-width: 0; min-height: 116px; align-items: center; gap: 18px; padding: 12px 18px 12px 12px; overflow: hidden; border: 1px solid rgba(25,73,72,.12); border-radius: 18px; color: #0a2930; background: rgba(255,255,255,.68); transition: transform .45s var(--fh-ease-out), background .3s ease, box-shadow .4s ease; }
.fh-brinia-products > a:hover { color: #0a2930; background: #fff; box-shadow: 0 18px 40px rgba(8,39,45,.11); transform: translate3d(0,-5px,0); }
.fh-brinia-products img { width: 92px; height: 92px; object-fit: cover; border-radius: 12px; background: #fff; }
.fh-brinia-products span { min-width: 0; }
.fh-brinia-products em, .fh-brinia-products strong, .fh-brinia-products small { display: block; }
.fh-brinia-products em { margin-bottom: 6px; color: #337f76; font-family: Arial, sans-serif; font-size: 8px; line-height: 1; font-weight: 800; letter-spacing: .14em; }
.fh-brinia-products strong { overflow: hidden; font-size: 14px; line-height: 1.35; font-weight: 800; letter-spacing: -.025em; text-overflow: ellipsis; white-space: nowrap; }
.fh-brinia-products span > small { margin-top: 7px; color: #708582; font-size: 10px; line-height: 1.35; }
.fh-brinia-products > a > b { color: #337f76; font-size: 18px; }
.fh-brinia-products .fh-brinia-portal { grid-template-columns: 1fr auto; color: #fff; border-color: #0a2930; background: #0a2930; }
.fh-brinia-products .fh-brinia-portal:hover { color: #fff; background: #14514f; }
.fh-brinia-portal em, .fh-brinia-portal span > small, .fh-brinia-portal > b { color: #8fcac2; }
.fh-brinia-portal > b { font-family: Arial, sans-serif; font-size: 28px; line-height: .7; text-align: right; }
.fh-brinia-portal > b small { margin-top: 7px; font-size: 8px; letter-spacing: .14em; }

/* Product discovery: hover reveals intent while the DOM and shop links stay native. */
.fh-weekly-section {
    background:
        radial-gradient(circle at 50% 0, rgba(37,99,235,.07), transparent 26%),
        #fff;
}
.fh-weekly-section::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(1280px, calc(100% - 64px));
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fh-line), transparent);
    content: "";
    transform: translateX(-50%);
}
.fh-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 50px 22px; }
.fh-product-card {
    --fh-card-x: 50%;
    --fh-card-y: 50%;
    --fh-product-lift: 0px;
    position: relative;
    min-width: 0;
    transform: translate3d(0,var(--fh-product-lift),0);
    transition: transform .5s var(--fh-ease-out);
}
.fh-product-card:hover { --fh-product-lift: -8px; }
.fh-product-thumb {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid #edf1f5;
    border-radius: 20px;
    background: #f4f6f8;
    box-shadow: 0 12px 32px rgba(16,42,67,.05);
    transition: border-color .3s ease, box-shadow .45s ease;
}
.fh-product-thumb::before {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 3;
    padding: 10px 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(6,23,38,.86);
    font-size: 11px;
    font-weight: 800;
    content: "상품 보기  ↗";
    opacity: 0;
    transform: translate3d(0,14px,0);
    transition: opacity .3s ease, transform .45s var(--fh-ease-out);
    backdrop-filter: blur(8px);
}
.fh-product-thumb::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(circle at var(--fh-card-x) var(--fh-card-y), rgba(255,255,255,.5), transparent 34%);
    content: "";
    opacity: 0;
    transition: opacity .25s ease;
    mix-blend-mode: soft-light;
}
.fh-product-card:hover .fh-product-thumb { border-color: #d5e3ef; box-shadow: 0 22px 52px rgba(16,42,67,.13); }
.fh-product-card:hover .fh-product-thumb::before, .fh-product-card:hover .fh-product-thumb::after { opacity: 1; }
.fh-product-card:hover .fh-product-thumb::before { transform: translate3d(0,0,0); }
.fh-product-thumb img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.005); transition: transform .8s var(--fh-ease-out), filter .4s ease; }
.fh-product-card:hover .fh-product-thumb img { filter: saturate(1.04); transform: scale(1.07); }
.fh-product-badge { position: absolute; z-index: 4; left: 13px; top: 13px; padding: 8px 11px 7px; border-radius: 999px; color: #fff; background: rgba(6,23,38,.9); box-shadow: 0 6px 18px rgba(6,23,38,.12); font-size: 9px; line-height: 1; font-weight: 800; letter-spacing: .13em; backdrop-filter: blur(8px); }
.fh-product-badge-new { background: var(--fh-orange); }
.fh-product-info { padding: 18px 3px 0; }
.fh-product-brand { margin-bottom: 7px; color: var(--fh-blue); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.fh-product-info h3 { min-height: 48px; margin: 0; font-size: 14px; line-height: 1.62; font-weight: 500; letter-spacing: -.02em; }
.fh-product-info h3 a { display: -webkit-box; overflow: hidden; color: var(--fh-ink); font-size: inherit; line-height: inherit; font-weight: inherit; -webkit-line-clamp: 2; -webkit-box-orient: vertical; transition: color .2s ease; }
.fh-product-card:hover .fh-product-info h3 a { color: var(--fh-blue); }
.fh-product-price { margin-top: 12px; }
.fh-product-price strong { color: #071522; font-family: Arial, sans-serif; font-size: 19px; line-height: 1.2; font-weight: 800; }
.fh-product-price strong span { margin-left: 2px; font-family: "Noto Sans KR", sans-serif; font-size: 12px; font-weight: 600; }
.fh-product-soldout { display: inline-block; margin-top: 12px; padding: 6px 9px; border-radius: 999px; color: #8794a1; background: #edf1f4; font-size: 11px; font-weight: 700; }

/* B2B conversion block uses an ambient, compositor-only light field. */
.fh-b2b-banner {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 86px 0;
    color: #fff;
    background:
        radial-gradient(circle at 76% 35%, rgba(79,140,255,.24), transparent 28%),
        linear-gradient(125deg, #071827, #102f4b 56%, #0b2440);
}
.fh-b2b-banner::before {
    position: absolute;
    top: -220px;
    right: 2%;
    z-index: -1;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(124,232,255,.18);
    border-radius: 50%;
    box-shadow: inset 0 0 0 54px rgba(255,255,255,.018), inset 0 0 0 110px rgba(255,255,255,.012);
    content: "";
}
.fh-b2b-banner::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 0 54%, rgba(124,232,255,.07) 54.2%, transparent 54.6%);
    content: "";
}
.fh-b2b-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.fh-b2b-banner .fh-kicker { color: var(--fh-cyan); }
.fh-b2b-banner h2 { margin: 12px 0; color: #fff; font-size: 38px; line-height: 1.32; font-weight: 800; letter-spacing: -.045em; }
.fh-b2b-banner p { color: rgba(230,243,252,.66); font-size: 14px; }
.fh-button-light { flex: 0 0 auto; color: var(--fh-navy); background: #fff; box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.fh-button-light:hover { color: var(--fh-navy); background: #eff9ff; }

.fh-new-section { background: #fff; }
.fh-text-link { flex: 0 0 auto; color: var(--fh-ink); font-size: 14px; font-weight: 700; }
.fh-text-link span { margin-left: 7px; color: var(--fh-blue); font-size: 18px; }

/* A compact conversion flow: useful order details without a tall dead zone. */
.fh-section.fh-guide-section {
    padding: 48px 0;
    background:
        radial-gradient(circle at 8% 92%, rgba(37,99,235,.09), transparent 25%),
        linear-gradient(135deg, #f5f9fd, #edf4fa);
}
.fh-guide-layout { position: relative; display: grid; grid-template-columns: minmax(0,.82fr) minmax(520px,1.18fr); align-items: center; gap: clamp(50px,6vw,92px); }
.fh-guide-intro h2 { margin: 10px 0 13px; color: var(--fh-ink); font-size: clamp(34px,2.8vw,43px); line-height: 1.16; font-weight: 800; letter-spacing: -.055em; }
.fh-guide-intro > p:not(.fh-kicker) { max-width: 470px; color: var(--fh-muted); font-size: 13px; line-height: 1.68; word-break: keep-all; }
.fh-guide-contact { display: grid; grid-template-columns: auto 1fr; align-items: center; max-width: 470px; margin-top: 19px; padding: 13px 17px; border: 1px solid rgba(37,99,235,.12); border-radius: 14px; color: var(--fh-ink); background: rgba(255,255,255,.8); box-shadow: 0 12px 30px rgba(16,42,67,.06); }
.fh-guide-contact > span { grid-row: 1 / span 2; align-self: stretch; display: flex; align-items: center; margin-right: 18px; padding-right: 18px; border-right: 1px solid #dce7f0; color: var(--fh-blue); font-size: 11px; font-weight: 800; letter-spacing: .04em; }
.fh-guide-contact strong { font-family: Arial, sans-serif; font-size: 17px; line-height: 1.2; font-weight: 800; letter-spacing: -.02em; }
.fh-guide-contact small { margin-top: 4px; color: var(--fh-muted); font-size: 11px; }
.fh-guide-contact b { margin-left: 5px; color: var(--fh-blue); font-size: 14px; }
.fh-guide-grid { position: relative; display: grid; gap: 8px; }
.fh-guide-grid::before { position: absolute; top: 44px; bottom: 44px; left: 25px; width: 1px; border-left: 1px dashed #b8cede; content: ""; }
.fh-guide-grid::after { position: absolute; top: 44px; left: 22px; z-index: 3; width: 7px; height: 7px; border: 2px solid #fff; border-radius: 50%; background: var(--fh-blue); box-shadow: 0 0 0 5px rgba(37,99,235,.12), 0 0 18px rgba(37,99,235,.65); content: ""; animation: fh-order-flow 3.6s var(--fh-ease-out) infinite; }
@keyframes fh-order-flow { 0% { opacity: 0; transform: translate3d(0,0,0); } 12% { opacity: 1; } 82% { opacity: 1; } 100% { opacity: 0; transform: translate3d(0,180px,0); } }
.fh-guide-grid li {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    align-items: center;
    min-height: 92px;
    padding: 14px 26px 14px 16px;
    border: 1px solid rgba(210,223,234,.9);
    border-radius: 18px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 10px 30px rgba(16,42,67,.04);
    transition: transform .5s var(--fh-ease-out), border-color .3s ease, box-shadow .4s ease;
}
.fh-guide-grid li:hover { border-color: rgba(37,99,235,.25); box-shadow: 0 16px 40px rgba(16,42,67,.09); transform: translate3d(8px,0,0); }
.fh-guide-grid span { position: relative; z-index: 2; display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border: 1px solid #d4e6f5; border-radius: 50%; color: var(--fh-blue); background: #eef7ff; box-shadow: 0 0 0 5px #f5f9fd; font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; animation: fh-order-step 3.6s ease-in-out infinite; }
.fh-guide-grid li:nth-child(2) span { animation-delay: 1.2s; }
.fh-guide-grid li:nth-child(3) span { animation-delay: 2.4s; }
@keyframes fh-order-step { 0%,22%,100% { color: var(--fh-blue); background: #eef7ff; box-shadow: 0 0 0 5px #f5f9fd; } 9%,15% { color: #fff; background: var(--fh-blue); box-shadow: 0 0 0 5px rgba(37,99,235,.13), 0 0 20px rgba(37,99,235,.25); } }
.fh-guide-grid li > div { position: relative; z-index: 1; min-width: 0; }
.fh-guide-grid em { display: block; margin-bottom: 4px; color: var(--fh-blue); font-family: Arial, sans-serif; font-size: 9px; line-height: 1.2; font-weight: 800; letter-spacing: .14em; }
.fh-guide-grid strong { display: block; margin-bottom: 4px; color: var(--fh-ink); font-size: 17px; line-height: 1.25; font-weight: 800; letter-spacing: -.035em; }
.fh-guide-grid p { max-width: 540px; color: var(--fh-muted); font-size: 11px; line-height: 1.52; word-break: keep-all; }

/* Intro states are opt-in: without JS every piece of shopping content stays visible. */
html.fh-motion-ready .fh-hero .fh-eyebrow,
html.fh-motion-ready .fh-hero-copy,
html.fh-motion-ready .fh-hero-actions { opacity: 0; transform: translate3d(0,18px,0); }
html.fh-motion-ready .fh-title-line > span { transform: translate3d(0,112%,0); }
html.fh-motion-start .fh-hero .fh-eyebrow,
html.fh-motion-start .fh-hero-copy,
html.fh-motion-start .fh-hero-actions { opacity: 1; transform: translate3d(0,0,0); transition: opacity .7s ease, transform .9s var(--fh-ease-out); }
html.fh-motion-start .fh-hero .fh-eyebrow { transition-delay: .05s; }
html.fh-motion-start .fh-title-line > span { transform: translate3d(0,0,0); transition: transform 1.05s var(--fh-ease-out); transition-delay: var(--fh-line-delay, .12s); }
html.fh-motion-start .fh-hero-copy { transition-delay: .34s; }
html.fh-motion-start .fh-hero-actions { transition-delay: .46s; }
html.fh-motion-start .fh-hero-orbit { animation: fh-orbit-float 7s ease-in-out infinite alternate; }
html.fh-motion-start .fh-hero-orbit::before { animation: fh-orbit-spin 26s linear infinite; }
html.fh-motion-start .fh-scroll-cue::before { animation: fh-scroll-cue 1.8s ease-in-out infinite; }
@keyframes fh-orbit-float { to { translate: 0 12px; } }
@keyframes fh-orbit-spin { to { transform: rotate(360deg); } }
@keyframes fh-scroll-cue { 50% { transform: scaleX(.35); opacity: .4; } }

@media (min-width: 1101px) {
    .fh-section { padding: 94px 0 104px; }
    .fh-section-head { margin-bottom: 38px; }
    .fh-section-head > p { width: auto; max-width: none; flex: 0 0 auto; white-space: nowrap; }
}

@media (hover: none), (pointer: coarse) {
    .fh-category-card, .fh-product-card, .fh-brinia-products > a, .fh-button { transform: none !important; }
    .fh-category-card::before, .fh-product-thumb::after { display: none; }
}

@media (max-width: 1100px) {
    .fh-shell { width: min(100% - 40px, 960px); }
    .fh-hero { min-height: 650px; }
    .fh-hero h1 { max-width: 690px; font-size: clamp(52px, 7vw, 68px); }
    .fh-hero-orbit { right: -100px; opacity: .7; }
    .fh-hero-status { display: none; }
    .fh-service-strip { width: calc(100% - 40px); }
    .fh-service-grid { grid-template-columns: repeat(2, 1fr); }
    .fh-service-grid > div:nth-child(3)::before { display: none; }
    .fh-category-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 330px 250px; }
    .fh-category-card-wide { grid-column: 1 / span 2; grid-row: auto; }
    .fh-category-card:last-child { grid-column: auto; }
    .fh-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .fh-brinia-stage { grid-template-columns: minmax(0,1fr) minmax(360px,.75fr); gap: 42px; }
    .fh-brinia-products { grid-template-columns: 1fr 1fr; }
    .fh-brinia-portal { grid-column: 1 / span 2; }
}

@media (max-width: 760px) {
    .fh-shell { width: calc(100% - 30px); }
    .fh-scroll-progress { height: 2px; }
    .fh-hero { min-height: 650px; align-items: flex-end; }
    .fh-hero::before { background-size: 42px 42px; }
    .fh-hero-image { inset: -2%; width: 104%; height: 104%; object-position: 62% center; transform: scale(1.035); }
    .fh-hero-shade {
        background:
            radial-gradient(circle at 72% 28%, rgba(85,170,255,.18), transparent 30%),
            linear-gradient(0deg, rgba(4,17,30,.96) 0%, rgba(5,24,41,.62) 68%, rgba(5,20,34,.2) 100%);
    }
    .fh-hero-content { padding: 150px 0 78px; }
    .fh-hero h1 { max-width: 100%; margin-top: 18px; font-size: clamp(39px, 11.8vw, 48px); line-height: 1.12; }
    .fh-hero-copy { font-size: 14px; line-height: 1.7; }
    .fh-hero-actions { flex-direction: column; align-items: stretch; margin-top: 30px; }
    .fh-button { min-height: 52px; }
    .fh-hero-orbit { top: 10%; right: -190px; width: 360px; height: 360px; opacity: .42; }
    .fh-scroll-cue { display: none; }
    .fh-service-strip { width: calc(100% - 24px); margin-top: -24px; border-radius: 18px; }
    .fh-service-grid { grid-template-columns: 1fr; padding: 4px 18px; }
    .fh-service-grid > div { padding: 18px 2px; }
    .fh-service-grid > div + div::before { top: 0; bottom: auto; width: 100%; height: 1px; }
    .fh-service-grid > div:nth-child(3)::before { display: block; }
    .fh-service-grid > div::after { right: 2px; top: 20px; }
    .fh-motion-rail { margin-top: 18px; }
    .fh-motion-rail-group span { min-height: 54px; padding: 0 18px; font-size: 10px; }
    .fh-motion-rail-group span::before { margin-right: 18px; }
    .fh-section { padding: 78px 0; }
    .fh-section-head { display: block; margin-bottom: 30px; }
    .fh-section-head h2 { font-size: 32px; }
    .fh-section-head > p { width: 100%; margin-top: 16px; text-align: left; }
    .fh-category-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 260px); }
    .fh-category-card-wide, .fh-category-card:last-child { grid-column: auto; grid-row: auto; }
    .fh-category-card { border-radius: 20px; }
    .fh-category-card::after { right: 18px; top: 18px; opacity: 1; transform: none; }
    .fh-category-copy { left: 23px; right: 23px; bottom: 23px; }
    .fh-category-copy strong { font-size: 24px; }
    .fh-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 12px; }
    .fh-brinia-stage { display: block; }
    .fh-brinia-owner { margin-bottom: 22px; }
    .fh-brinia-copy h2 { font-size: 40px; }
    .fh-brinia-facts { overflow-x: auto; }
    .fh-brinia-facts div { min-width: 100px; padding-right: 18px; }
    .fh-brinia-facts div + div { padding-left: 18px; }
    .fh-brinia-actions { display: block; }
    .fh-brinia-actions .fh-button { width: 100%; }
    .fh-brinia-text-link { display: inline-block; margin-top: 20px; }
    .fh-brinia-film { height: 480px; margin-top: 42px; border-radius: 22px; }
    .fh-brinia-products { grid-template-columns: 1fr; margin-top: 12px; }
    .fh-brinia-products .fh-brinia-portal { grid-column: auto; }
    .fh-brinia-products > a { grid-template-columns: 76px 1fr auto; min-height: 100px; }
    .fh-brinia-products img { width: 76px; height: 76px; }
    .fh-product-card:hover { --fh-product-lift: 0px; }
    .fh-product-thumb { border-radius: 15px; }
    .fh-product-thumb::before { display: none; }
    .fh-product-info { padding-top: 14px; }
    .fh-product-info h3 { min-height: 43px; font-size: 12px; }
    .fh-product-price strong { font-size: 17px; }
    .fh-b2b-banner { padding: 72px 0; }
    .fh-b2b-inner { display: block; }
    .fh-b2b-banner h2 { font-size: 30px; }
    .fh-b2b-banner p { line-height: 1.7; }
    .fh-b2b-banner .fh-button { width: 100%; margin-top: 28px; }
    .fh-text-link { display: inline-block; margin-top: 18px; }
    .fh-section.fh-guide-section { padding: 54px 0; }
    .fh-guide-layout { display: block; }
    .fh-guide-contact { max-width: none; }
    .fh-guide-grid { margin-top: 38px; }
    .fh-guide-grid li { min-height: 96px; padding-right: 20px; }
    .fh-guide-grid li:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto !important; }
    .fh-scroll-progress { display: none; }
    .fh-motion-rail-track,
    .fh-guide-grid::after,
    .fh-guide-grid span,
    html.fh-motion-start .fh-hero-orbit,
    html.fh-motion-start .fh-hero-orbit::before,
    html.fh-motion-start .fh-scroll-cue::before { animation: none !important; }
    .fh-hero-image, .fh-hero-orbit, .fh-category-card, .fh-product-card, .fh-brinia-products > a, .fh-button { transform: none !important; }
    .fh-category-card img, .fh-product-thumb img { transform: none !important; }
    html.fh-motion-ready .fh-reveal,
    html.fh-motion-ready .fh-hero .fh-eyebrow,
    html.fh-motion-ready .fh-hero-copy,
    html.fh-motion-ready .fh-hero-actions,
    html.fh-motion-ready .fh-title-line > span { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* BASIC css end */

