﻿:root {
    --bg: #ffffff;
    --bg-soft: #f4f4f1;
    --accent: #5BB761;
    --ink: #111111;
    --muted: #6b6b6b;
    --line: rgba(17, 17, 17, 0.12);
    --inverse: #ffffff;
    --shadow: 0 28px 70px rgba(17, 17, 17, 0.08);
    --max-width: 1440px;
    --section-width: var(--max-width);
    --page-gutter: clamp(18px, 2vw, 28px);
    --header-height: 88px;
}

[data-home-section-hidden][hidden] {
    display: none !important;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.merged-home {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    word-break: keep-all;
    overflow-wrap: break-word;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

main {
    overflow: clip;
}

.container,
.container.p-0,
.merged-handly-source__inner,
.AiExperience_inner__1DHeq,
.PxdAXBanner_inner__5rjw_,
.PxdAX_list-wrap___xMVP,
.hicoding-process__inner,
.web3ux-inner,
.Footer_content__P5UPO {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: var(--section-width);
    margin: 0 auto;
}

.space {
    padding-top: 120px;
    padding-bottom: 32px;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-12,
.col-12,
.col-xl-4,
.col-xl-8 {
    width: 100%;
}

.p-0 {
    padding: 0;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(20px, 3vw, 36px);
    background: rgba(8, 8, 10, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

body.admin-bar .header {
    top: 32px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-logo-image {
    display: block;
    width: auto;
    height: clamp(30px, 2.6vw, 40px);
    max-width: min(190px, 30vw);
    object-fit: contain;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #111;
    font-size: 21px;
    font-weight: 800;
}

.brand-text {
    display: inline-flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1;
}

.brand-text strong {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-text span {
    color: rgba(255, 255, 255, 0.56);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.28em;
}

/* nav는 header 밖의 형제 요소다(header의 backdrop-filter가 만드는 fixed 컨테이닝 블록을
   피하기 위함 — 모바일 전체화면 패널 참고). 데스크톱에서는 header의 flex 자식이 아니게 됐으므로
   직접 header와 같은 자리(우측 상단)에 고정 배치해 기존 위치를 그대로 재현한다. */
.navigation {
    position: fixed;
    top: 0;
    right: clamp(20px, 3vw, 36px);
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 100;
}

.navigation ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navigation a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.navigation a:hover {
    color: #fff;
}

.navigation__action {
    margin: 0;
}

.navigation__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #111;
    font-weight: 800;
    letter-spacing: 0.04em;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.navigation__button:hover {
    color: #111;
    filter: brightness(1.03);
}

.navigation__button:focus,
.navigation__button:focus-visible,
.navigation__button:active,
.navigation__button[aria-current="page"] {
    outline: none;
    box-shadow: none;
}

.navigation__service .navigation__button,
.navigation__portfolio .navigation__button,
.navigation__sample .navigation__button,
.navigation__guide .navigation__button {
    position: relative;
    min-height: auto;
    padding: 0;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.navigation__service .navigation__button:hover,
.navigation__portfolio .navigation__button:hover,
.navigation__sample .navigation__button:hover,
.navigation__guide .navigation__button:hover {
    color: #fff;
    filter: none;
    opacity: 0.88;
}

.navigation__service .navigation__button[aria-current="page"],
.navigation__portfolio .navigation__button[aria-current="page"],
.navigation__sample .navigation__button[aria-current="page"],
.navigation__guide .navigation__button[aria-current="page"] {
    box-shadow: none;
}

.navigation__service .navigation__button[aria-current="page"]::after,
.navigation__portfolio .navigation__button[aria-current="page"]::after,
.navigation__sample .navigation__button[aria-current="page"]::after,
.navigation__guide .navigation__button[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 14px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent);
}

.navigation__estimate {
    margin-left: 8px;
}

.navigation__estimate .navigation__button,
.navigation__ai-diagnosis .navigation__button {
    min-height: 30px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: rgba(91, 183, 97, 0.1);
    border: 1px solid rgba(91, 183, 97, 0.36);
    color: var(--accent);
}

.navigation__estimate .navigation__button:hover,
.navigation__ai-diagnosis .navigation__button:hover {
    background: rgba(91, 183, 97, 0.18);
    border-color: rgba(91, 183, 97, 0.65);
    color: var(--accent);
    filter: none;
}

.navigation__estimate .navigation__button[aria-current="page"],
.navigation__ai-diagnosis .navigation__button[aria-current="page"] {
    background: rgba(91, 183, 97, 0.22);
    border-color: var(--accent);
    font-weight: 800;
}

.navigation__inquiry .navigation__button {
    background: var(--accent);
    color: #fff;
}

.navigation__inquiry .navigation__button:hover {
    background: var(--accent);
    color: #fff;
    filter: brightness(1.07);
}

/* 모바일 전체화면 메뉴 전용 요소. 데스크톱 가로 내비게이션에서는 감춘다. */
.navigation__ai-label,
.navigation__ai-icon,
.navigation__ai-copy,
.navigation__chevron,
.navigation__cta-icon,
.navigation__cta-arrow,
.navigation__label--mobile,
.navigation__tagline {
    display: none;
}

.cHeader__menu {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    padding: 0;
    cursor: pointer;
}

.cHeader__menu_line {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

body.menu-open .cHeader__menu_line01 {
    transform: translateY(6px) rotate(45deg);
}

body.menu-open .cHeader__menu_line02 {
    opacity: 0;
}

body.menu-open .cHeader__menu_line03 {
    transform: translateY(-6px) rotate(-45deg);
}

.merged-hero {
    min-height: 100vh;
    display: flex;
    align-items: end;
    padding: clamp(140px, 18vw, 190px) clamp(20px, 10vw, 180px) 84px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 0 30%), linear-gradient(180deg, #0c0c0f 0%, #080809 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.merged-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 160px;
    background: linear-gradient(180deg, rgba(12, 12, 15, 0), rgba(12, 12, 15, 0.95));
    pointer-events: none;
}

.merged-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12), transparent 0 30%),
        linear-gradient(180deg, #0c0c0f 0%, #080809 100%);
}

.merged-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 6, 10, 0.18) 0%, rgba(5, 6, 10, 0.42) 48%, rgba(5, 6, 10, 0.72) 100%),
        radial-gradient(circle at 18% 22%, rgba(0, 232, 104, 0.1), transparent 0 26%);
    pointer-events: none;
}

.merged-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
    opacity: 0.72;
    filter: saturate(0.92) contrast(1.02) brightness(0.82);
}

.title_box {
    position: relative;
    z-index: 2;
    width: 100%;
    min-width: 0;
    max-width: 1320px;
}

.fix_title {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: clamp(64px, 11vw, 172px);
    line-height: 0.88;
    letter-spacing: -0.08em;
    font-weight: 900;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 0;
    background: var(--accent);
    color: #111;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
    vertical-align: middle;
    flex-shrink: 0;
}

.tiping_title {
    display: inline-flex;
    align-items: center;
    gap: 0.32em;
    width: fit-content;
    max-width: 100%;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(20px, 2.2vw, 34px);
    font-weight: 600;
    letter-spacing: 0.12em;
}

.tiping_title .door {
    color: rgba(255, 255, 255, 0.44);
}

.tiping_title p {
    position: relative;
    flex: 0 0 auto;
    min-width: 0;
    margin: 0;
    color: #fff;
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.tiping_title p::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 0.94em;
    margin-left: 0.18em;
    background: var(--accent);
    vertical-align: -0.1em;
    animation: heroTypingCaret 0.9s steps(1) infinite;
}

.hero-copy p {
    margin: 0;
}

@keyframes heroTypingCaret {

    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

.title_box h1 {
    margin: 32px 0 0;
    font-size: clamp(44px, 5.8vw, 96px);
    line-height: 0.92;
    letter-spacing: -0.06em;
    max-width: none;
}

.title_box h1 span {
    display: block;
}

.title_box h1 em {
    font-style: normal;
    color: var(--accent);
}

.hero-copy {
    margin-top: 28px;
    max-width: 660px;
}

.hero-copy p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 20px;
    line-height: 1.78;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    min-height: 58px;
    border-radius: 999px;
    background: var(--accent);
    color: #111;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 16px 40px rgba(0, 232, 104, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero-cta--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 48px rgba(0, 232, 104, 0.36);
    filter: brightness(1.03);
    color: #111;
}

.hero-cta--secondary {
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.hero-cta--secondary:hover {
    border-color: rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    box-shadow: none;
}

.hero-cta__icon {
    transition: transform 0.2s ease;
}

.hero-cta:hover .hero-cta__icon {
    transform: translateX(4px);
}

.hero-service-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    text-underline-offset: 4px;
}

.hero-service-link:hover {
    color: #fff;
    text-decoration: underline;
}

.hero-copy .hero-cta-note {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
    line-height: 1.55;
}

.frame__info {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 2;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
}

.se02 {
    --se02-progress: 0;
    height: 220vh;
    position: relative;
    background: #fff;
}

.se02__pin {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.se02 .bgwrap {
    position: absolute;
    inset: 0;
    background: #050505;
    clip-path: circle(calc(4% + (var(--se02-progress) * 130%)) at 50% 50%);
}

.se02 .cover {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    mix-blend-mode: difference;
    padding: 0 32px 56px;
    color: #fff;
}

.se02__eyebrow {
    position: absolute;
    top: clamp(92px, 12vw, 128px);
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}

.se02 .txtmotion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.8vw, 28px);
    min-width: 100%;
    transform: translate3d(calc(var(--se02-progress) * -6%), 0, 0);
}

.se02 .txtmotion strong {
    display: block;
    white-space: nowrap;
    font-size: clamp(48px, 8vw, 136px);
    letter-spacing: -0.06em;
    font-weight: 800;
    opacity: max(0, calc(1 - (var(--se02-progress) * 1.35)));
}

.se02 .txtmotion p {
    margin: 0;
    width: calc(2em + (var(--se02-progress) * 16em));
    max-width: 18em;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    font-size: clamp(18px, 2.3vw, 34px);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.35;
}

.se02 .txtmotion p br {
    display: none;
}

.merged-company {
    background: var(--bg-soft);
    padding-top: 120px;
    padding-bottom: 140px;
}

.merged-values {
    background: #fff;
    padding-bottom: 120px;
}

.kb-ani-tit {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: clamp(34px, 4.6vw, 72px);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
    color: #111;
}

.contactSlider {
    overflow-x: auto;
    padding: 28px 0 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.contactSlider::-webkit-scrollbar {
    display: none;
}

.merged-principles .swiper-wrapper {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 1fr);
    gap: 18px;
    width: max-content;
}

.merged-principles .swiper-slide {
    display: flex;
    flex-direction: column;
    min-height: 320px;
    padding: 34px 30px;
    scroll-snap-align: start;
    border-radius: 28px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: linear-gradient(180deg, #ffffff, #f7f7f3);
    box-shadow: var(--shadow);
}

.merged-principles .swiper-slide h4 {
    margin: 0;
    color: #111;
    font-size: clamp(26px, 2.5vw, 40px);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1;
}

.merged-principles .swiper-slide p {
    margin: 18px 0 0;
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

.merged-principles .swiper-slide .principle-en {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.01em;
}

.merged-principles .swiper-slide .principle-ko {
    margin-top: auto;
    padding-top: 20px;
    font-size: 14px;
    color: #777;
    letter-spacing: -0.01em;
    line-height: 1.65;
}

.merged-principles-tooltip__eyebrow {
    margin: 0 0 12px;
    color: #5bb761;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

@media (min-width: 901px) {
    .contactSlider {
        overflow: visible;
        padding: 28px 0 0;
    }

    .merged-principles .swiper-wrapper {
        width: 100%;
        grid-auto-flow: initial;
        grid-auto-columns: initial;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .contactSlider {
        padding: 22px var(--page-gutter) 8px;
    }

    .merged-principles .swiper-wrapper {
        grid-auto-columns: minmax(260px, 72vw);
        gap: 14px;
    }

    .merged-principles .swiper-slide {
        min-height: 260px;
        padding: 28px 24px;
        border-radius: 24px;
        border-color: transparent;
        box-shadow: 0 2px 24px rgba(17, 17, 17, 0.07), 0 1px 4px rgba(17, 17, 17, 0.04);
    }

    .merged-principles .swiper-slide h4 {
        font-size: clamp(24px, 6.5vw, 30px);
    }

    .merged-principles .swiper-slide p {
        margin-top: 14px;
        font-size: 15px;
        line-height: 1.55;
    }
}

.Services_section__LyuEh {
    position: relative;
}

.SectionTitle_section-title-wrap__nZ_uC {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.SectionTitle_border__3wGnV {
    border-top: 1px solid rgba(17, 17, 17, 0.12);
    padding-top: 20px;
}

.SectionTitle_has-link__4lYyB {
    padding-bottom: 4px;
}

.hicoding-services__title-group {
    display: grid;
    gap: 10px;
}

.hicoding-services__eyebrow {
    margin: 0;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.Services_section__LyuEh .SectionTitle_section-title__xi4kX {
    font-size: 28px;
    line-height: 42px;
    letter-spacing: -0.04em;
}

.hicoding-services__anchor {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.hicoding-services__anchor:hover {
    color: var(--accent);
    opacity: 0.88;
}

.hicoding-services__anchor-icon {
    width: 0.8em;
    height: 0.8em;
    display: inline-block;
    background: url("./arrow_GR.png") center / contain no-repeat;
    flex: 0 0 auto;
}

.Services_wrap__qDjdt {
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 20px;
}

.ServicesMobileList_services-list-wrap__LEpJ_ {
    position: relative;
    display: grid;
    gap: 10px;
}

.ServicesMobileList_services-list-wrap__LEpJ_::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: var(--active-service, 0px);
    height: var(--active-service-height, 60px);
    border-radius: 8px;
    background-color: var(--accent);
    opacity: 0;
    transition: top 0.2s ease-out, height 0.2s ease-out;
}

.ServicesMobileList_services-list__Tnpdv {
    position: relative;
    z-index: 1;
    width: 100%;
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 14px;
    background: #fff;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ServicesMobileList_services-list__Tnpdv:hover {
    border-color: rgba(91, 183, 97, 0.44);
    background: var(--accent);
    color: #fff;
}

.ServicesMobileList_services-list-active__RAwsz {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.hicoding-services__item-number {
    color: currentColor;
    opacity: 0.56;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.hicoding-services__item-text {
    min-width: 0;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.03em;
}

.hicoding-services__item-arrow {
    position: relative;
    justify-self: end;
    width: 18px;
    height: 18px;
    font-size: 0;
    line-height: 0;
    color: var(--accent);
    opacity: 1;
    transition: opacity 0.2s ease;
}

.hicoding-services__item-arrow::before,
.hicoding-services__item-arrow::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    inset: 0;
}

.hicoding-services__item-arrow::before {
    border: 1.5px solid currentColor;
}

.hicoding-services__item-arrow::after {
    width: 8px;
    height: 8px;
    inset: 50% auto auto 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.ServicesMobileList_services-list__Tnpdv:hover .hicoding-services__item-number,
.ServicesMobileList_services-list__Tnpdv:hover .hicoding-services__item-text,
.ServicesMobileList_services-list__Tnpdv:hover .hicoding-services__item-arrow {
    color: #fff;
}

.ServicesMobileList_services-list__Tnpdv:hover .hicoding-services__item-number {
    opacity: 1;
}

.ServicesMobileList_services-list-active__RAwsz .hicoding-services__item-number,
.ServicesMobileList_services-list-active__RAwsz .hicoding-services__item-text {
    color: #fff;
}

.ServicesMobileList_services-list-active__RAwsz .hicoding-services__item-number {
    opacity: 1;
}

.ServicesMobileList_services-list-active__RAwsz .hicoding-services__item-arrow {
    opacity: 0;
}

.Services_services-contents__l9LdM {
    min-width: 0;
}

.hicoding-services__content {
    display: none;
}

.hicoding-services__content.is-active {
    display: grid;
    gap: 24px;
    padding: 24px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow);
}

.hicoding-services__content-copy {
    display: grid;
    gap: 18px;
    align-content: start;
}

.hicoding-services__description {
    margin: 0;
    max-width: 17em;
    color: #111;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.03em;
}

.hicoding-services__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hicoding-services__meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hicoding-services__body {
    margin: 0;
    width: 100%;
    max-width: none;
    color: #666;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.02em;
}

.hicoding-services__cta {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 50px;
    padding: 0 18px;
    border-radius: 999px;
    border: 0;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hicoding-services__cta:hover {
    color: #111;
}

.hicoding-services__project {
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.hicoding-services__project-copy {
    display: none;
}

.hicoding-services__project-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #7d7d7d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hicoding-services__project-title {
    margin: 0;
    color: #111;
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: -0.03em;
}

.hicoding-services__project-text {
    margin: 6px 0 0;
    color: #666;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -0.02em;
}

.hicoding-services__project-visual {
    overflow: hidden;
    border-radius: 20px;
    background: #ebebeb;
}

.hicoding-services__project-visual img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

.hicoding-services__project:hover .hicoding-services__project-visual img {
    transform: scale(1.04);
}

.hicoding-services--accordion .ServicesMobileList_services-list-wrap__LEpJ_::after {
    display: none;
}

.hicoding-services--accordion .Services_services-contents__l9LdM {
    display: none;
}

.hicoding-services--accordion .ServicesMobileList_services-list-wrap__LEpJ_ {
    gap: 12px;
}

.hicoding-services--accordion .ServicesMobileList_services-list__Tnpdv {
    min-height: 60px;
}

.hicoding-services--accordion .ServicesMobileList_services-list-active__RAwsz {
    border-color: var(--accent);
    background: var(--accent);
}

.hicoding-services--accordion .hicoding-services__item-arrow {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hicoding-services--accordion .ServicesMobileList_services-list-active__RAwsz .hicoding-services__item-arrow {
    transform: none;
}

.hicoding-services--accordion .ServicesMobileList_services-list-wrap__LEpJ_ > .hicoding-services__content.is-active {
    display: grid;
    margin-top: -2px;
    padding: 20px;
    border-radius: 22px;
}

@media (min-width: 768px) {
    .Services_section__LyuEh .SectionTitle_section-title__xi4kX {
        font-size: 36px;
        line-height: 54px;
    }
}

@media (min-width: 1080px) {
    .Services_wrap__qDjdt {
        display: grid;
        grid-template-columns: minmax(280px, clamp(280px, 29vw, 380px)) minmax(0, 1fr);
        align-items: stretch;
        gap: 36px;
        padding-top: 40px;
    }

    .ServicesMobileList_services-list-wrap__LEpJ_ {
        width: 100%;
        gap: 0;
        grid-auto-rows: minmax(72px, 72px);
    }

    .ServicesMobileList_services-list-wrap__LEpJ_::after {
        opacity: 1;
    }

    .ServicesMobileList_services-list__Tnpdv {
        min-height: 72px;
        grid-template-columns: 40px minmax(0, 1fr) 20px;
        gap: 12px;
        padding: 12px 20px 12px 16px;
        border: 0;
        border-radius: 8px;
        background: transparent;
        align-content: center;
    }

    .ServicesMobileList_services-list__Tnpdv:not(.ServicesMobileList_services-list-active__RAwsz) {
        color: rgba(17, 17, 17, 0.58);
    }

    .ServicesMobileList_services-list__Tnpdv:not(.ServicesMobileList_services-list-active__RAwsz):hover {
        background-color: var(--accent);
        color: #fff;
    }

    .ServicesMobileList_services-list-active__RAwsz {
        border-color: var(--accent);
        background: var(--accent);
        color: #fff;
    }

    .ServicesMobileList_services-list__Tnpdv .hicoding-services__item-number {
        color: currentColor;
        opacity: 0.56;
    }

    .hicoding-services__item-text {
        font-size: clamp(18px, 1.45vw, 22px);
        line-height: clamp(28px, 2vw, 32px);
    }

    .Services_services-contents__l9LdM {
        min-width: 0;
        display: flex;
    }

    .hicoding-services__content {
        min-height: 100%;
    }

    .hicoding-services__content.is-active {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 14px;
        align-items: start;
        width: 100%;
        min-height: 100%;
    }

    .hicoding-services__content-copy {
        gap: clamp(10px, 0.9vw, 14px);
        padding: 0;
        width: 100%;
        height: auto;
    }

    .hicoding-services__description {
        max-width: none;
        font-size: 21px;
        line-height: 31px;
    }

    .hicoding-services__body {
        font-size: 15px;
        line-height: 25px;
    }

    .hicoding-services__project {
        width: 100%;
        height: auto;
        align-self: start;
    }

    .hicoding-services__project-visual {
        width: 100%;
        height: auto;
        min-height: 0;
    }
}

/* ── Services tabs ── */
.hicoding-services-tabs {
    padding-top: 28px;
}

.hicoding-stabs-nav {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
    scrollbar-width: none;
}

.hicoding-stabs-nav::-webkit-scrollbar { display: none; }

.hicoding-stab {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 14px 20px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.18s ease, border-color 0.18s ease;
    white-space: nowrap;
    font-family: inherit;
}

.hicoding-stab:hover { color: var(--ink); }
.hicoding-stab.is-active { color: var(--ink); border-bottom-color: var(--accent); }

.hicoding-stab__icon {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    opacity: 0.55;
    transition: opacity 0.18s ease;
}

.hicoding-stab.is-active .hicoding-stab__icon,
.hicoding-stab:hover .hicoding-stab__icon {
    opacity: 1;
    color: var(--accent);
}

.hicoding-stab-panel {
    display: none;
    grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
    padding: 40px 0;
}

.hicoding-stab-panel.is-active { display: grid; }

.hicoding-stab-panel__copy {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hicoding-stab-panel__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.hicoding-stab-panel__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 183, 97, 0.1);
    border-radius: 12px;
    color: var(--accent);
}

.hicoding-stab-panel__icon svg {
    width: 22px;
    height: 22px;
}

.hicoding-stab-panel__title {
    margin: 0 0 5px;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.03em;
}

.hicoding-stab-panel__subtitle {
    margin: 0;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.55;
}

.hicoding-stab-panel__body {
    margin: 0 0 20px;
    font-size: 14.5px;
    line-height: 1.78;
    color: var(--ink);
}

.hicoding-stab-panel__list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.hicoding-stab-panel__list li {
    padding-left: 18px;
    position: relative;
    font-size: 14px;
    color: var(--ink);
    line-height: 1.55;
}

.hicoding-stab-panel__list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
    line-height: 1.8;
}

.hicoding-stab-panel__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    transition: opacity 0.15s ease;
}

.hicoding-stab-panel__cta:hover { opacity: 0.72; }

.hicoding-stab-panel__visual {
    align-self: start;
    min-width: 0;
}

.hicoding-stab-panel__visual img {
    width: 100%;
    border-radius: 16px;
    aspect-ratio: 1108 / 692;
    object-fit: cover;
    object-position: center top;
    background: var(--bg-soft);
    display: block;
}

@media (max-width: 767px) {
    .hicoding-stab-panel.is-active {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px 0;
    }

    .hicoding-stab-panel__visual { order: -1; }

    .hicoding-stab {
        padding: 12px 14px;
        font-size: 13px;
    }
}

@media (min-width: 768px) and (max-width: 1079px) {
    .hicoding-stab-panel.is-active {
        gap: 32px;
    }
}
/* ── /Services tabs ── */

.company-overview {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
}

.company-overview__nav {
    display: grid;
    grid-template-rows: repeat(4, minmax(112px, 1fr));
    border-right: 1px solid var(--line);
    background: #f8f8f5;
}

.company-overview__trigger {
    appearance: none;
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 24px 24px;
    border: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.company-overview__trigger:last-child {
    border-bottom: 0;
}

.company-overview__trigger.is-active {
    background: #111;
    color: #fff;
}

.company-overview__index {
    display: block;
    margin-bottom: 12px;
    color: #8f8f8f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.company-overview__trigger.is-active .company-overview__index {
    color: rgba(255, 255, 255, 0.48);
}

.company-overview__title {
    display: block;
    font-size: clamp(24px, 2.8vw, 38px);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
}

.company-overview__summary {
    display: block;
    margin-top: 10px;
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.company-overview__trigger.is-active .company-overview__summary {
    color: rgba(255, 255, 255, 0.72);
}

.company-overview__panels {
    position: relative;
    min-height: 460px;
    background: #fff;
}

.company-overview__panel {
    display: none;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 30px;
    align-items: stretch;
    padding: clamp(30px, 4vw, 46px);
}

.company-overview__panel.is-active {
    display: grid;
}

.company-overview__copy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.company-overview__eyebrow {
    margin: 0 0 18px;
    color: #888;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.company-overview__copy h4 {
    margin: 0;
    font-size: clamp(30px, 3.8vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.company-overview__copy p {
    margin: 22px 0 0;
    color: #444;
    font-size: 16px;
    line-height: 1.78;
}

.company-overview__list {
    display: grid;
    gap: 10px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.company-overview__list li {
    position: relative;
    padding-left: 18px;
    color: #111;
    font-size: 14px;
    line-height: 1.7;
}

.company-overview__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #111;
}

.company-overview__visual {
    overflow: hidden;
    border-radius: 28px;
    background: #111;
}

.company-overview__visual img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.handly-block {
    width: calc(100% - (var(--page-gutter) * 2));
    margin: 0 auto;
    padding-top: 120px;
}

.handly-lead {
    max-width: 920px;
    margin: 0 0 64px;
    text-align: left;
}

.handly-kicker,
.section-eyebrow {
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.section-eyebrow--inverse {
    color: var(--accent);
}

.handly-lead h2,
.device-intro h2,
.web3ux-copy h2 {
    margin: 0;
    font-size: clamp(42px, 5.3vw, 78px);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.handly-lead p:last-child,
.device-intro p,
.web3ux-desc p {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.85;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 36px;
    background: #111;
    color: #fff;
    box-shadow: var(--shadow);
}

.product-card__bg {
    position: absolute;
    inset: 0;
}

.product-card__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.06), rgba(17, 17, 17, 0.82));
}

.product-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 38px;
}

.product-card__category {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.product-card h3 {
    margin: 0;
    font-size: clamp(48px, 5.6vw, 78px);
    line-height: 0.92;
    letter-spacing: -0.06em;
}

.product-card__description {
    margin-top: 16px;
}

.product-card__description p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.7;
}

.product-card__cta,
.device-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.device-intro {
    max-width: 920px;
    margin: 120px 0 0;
    text-align: left;
}

.device-cta {
    color: #111;
    margin-top: 28px;
}

.device-visual {
    margin-top: 34px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
}

.device-visual img {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
}

.merged-handly-source {
    background: #fff;
    color: #111;
    padding: 0 0 140px;
}

.merged-handly-source__lead {
    max-width: 980px;
    padding-top: 140px;
    margin: 0 0 72px;
}

.merged-handly-source__lead h2,
.merged-handly-source__device h2 {
    margin: 0;
    color: #46434b;
    font-size: clamp(40px, 4.8vw, 60px);
    font-weight: 700;
    line-height: 1.24;
    letter-spacing: -0.05em;
}

.merged-handly-source__lead h2 span,
.merged-handly-source__lead h2 strong {
    display: block;
}

.merged-handly-source__lead h2 strong {
    font-weight: 700;
}

.merged-handly-source__lead h2 em {
    color: var(--accent);
    font-style: normal;
}

.merged-handly-source__lead p:last-child,
.merged-handly-source__device p {
    margin: 24px 0 0;
    color: #6b7072;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.68;
}

.merged-handly-source__device {
    max-width: 980px;
    margin: 120px 0 0;
}

.merged-handly-source__card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.merged-handly-source__card-grid--secondary {
    grid-template-columns: 1fr;
    margin-top: 20px;
}

:root {
    --rooms_prd-text: #ffffff;
    --desk_prd-text: #ffffff;
    --handly-cta-text: #150c2f;
}

.rooms_prd-card,
.desk_prd-card {
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.rooms_prd-card+.desk_prd-card {
    margin-top: 0;
}

.rooms_prd-card-container,
.desk_prd-card-container {
    position: relative;
    width: 100%;
    min-height: 360px;
    aspect-ratio: 1420 / 453;
    border-radius: 24px;
    overflow: hidden;
    background: #f3f5f8;
}

.desk_prd-card--operations .desk_prd-card-container {
    min-height: 540px;
}

.merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .rooms_prd-card-container,
.merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .desk_prd-card-container {
    min-height: clamp(720px, 58vw, 920px);
    aspect-ratio: auto;
    border: 1px solid rgba(17, 17, 17, 0.12);
    box-shadow: 0 28px 72px rgba(17, 17, 17, 0.08);
}

.rooms_prd-card-bg,
.desk_prd-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.rooms_prd-card-bg img,
.desk_prd-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hicoding-solution-image--corporate,
.hicoding-solution-image--landing {
    object-position: center top;
}

.desk_prd-card--operations .desk_prd-card-bg img {
    object-position: center top;
}

.merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .rooms_prd-card-bg::after,
.merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .desk_prd-card-bg::after {
    content: none;
}

.rooms_prd-card-content,
.desk_prd-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 28px;
}

.merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .rooms_prd-card-content,
.merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .desk_prd-card-content {
    align-items: flex-start;
    padding: clamp(72px, 7vw, 108px) clamp(34px, 4.8vw, 56px) clamp(44px, 4vw, 72px);
}

.rooms_prd-card-text,
.desk_prd-card-text {
    flex: 0 0 auto;
    max-width: 500px;
}

.rooms_prd-card-text,
.desk_prd-card-text,
.rooms_prd-title,
.desk_prd-title,
.rooms_prd-description p,
.desk_prd-description p {
    color: #111111;
}

.rooms_prd-card-text,
.desk_prd-card-text {
    padding: clamp(22px, 2.4vw, 30px);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: 0 20px 48px rgba(17, 17, 17, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.rooms_prd-card-text {
    color: #111111;
}

.desk_prd-card-text {
    color: #111111;
}

.rooms_prd-category,
.desk_prd-category {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
}

.rooms_prd-category,
.desk_prd-category {
    background: rgba(255, 255, 255, 0.82);
    color: #111111;
    border: 1px solid rgba(17, 17, 17, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.rooms_prd-title,
.desk_prd-title {
    margin: 0 0 12px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.rooms_prd-title {
    color: inherit;
}

.desk_prd-title {
    color: inherit;
}

.rooms_prd-description,
.desk_prd-description {
    margin-bottom: 32px;
}

.rooms_prd-description p,
.desk_prd-description p {
    margin: 0;
    font-size: 16.5px;
    font-weight: 500;
    line-height: 1.5;
}

.rooms_prd-description p {
    color: inherit;
}

.desk_prd-description p {
    color: inherit;
}

.rooms_prd-cta-btn,
.desk_prd-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    isolation: isolate;
    padding: 16px 32px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    border: none;
    outline: none;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 18px 48px rgba(17, 17, 17, 0.1);
    z-index: 1;
}

.rooms_prd-cta-btn {
    color: var(--handly-cta-text);
}

.desk_prd-cta-btn {
    color: var(--handly-cta-text);
}

.merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .rooms_prd-cta-btn,
.merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .desk_prd-cta-btn {
    border: 1px solid rgba(17, 17, 17, 0.12);
}

.rooms_prd-cta-btn::before,
.desk_prd-cta-btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: -1;
}

.rooms_prd-cta-btn::before {
    background: radial-gradient(120px 120px at var(--rooms_prd-cta-mx, 50%) var(--rooms_prd-cta-my, 50%), rgba(255, 255, 255, 0.85), transparent 60%);
}

.desk_prd-cta-btn::before {
    background: radial-gradient(120px 120px at var(--desk_prd-cta-mx, 50%) var(--desk_prd-cta-my, 50%), rgba(255, 255, 255, 0.85), transparent 60%);
}

.rooms_prd-cta-btn:hover,
.desk_prd-cta-btn:hover {
    transform: translateY(-2px) scale(1.02);
    filter: saturate(1.05);
    box-shadow: 0 24px 60px rgba(17, 17, 17, 0.14);
}

.rooms_prd-cta-btn:hover::before,
.desk_prd-cta-btn:hover::before {
    opacity: 1;
}

.rooms_prd-cta-btn:active,
.desk_prd-cta-btn:active {
    transform: translateY(0) scale(0.98);
}

.rooms_prd-cta-arrow,
.desk_prd-cta-arrow {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.rooms_prd-cta-btn:hover .rooms_prd-cta-arrow,
.desk_prd-cta-btn:hover .desk_prd-cta-arrow {
    transform: translateX(4px);
}

._05_cta-section {
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    padding: 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

._05_cta-container {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

._05_cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    isolation: isolate;
    padding: 21px 37px;
    border-radius: 33px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    border: none;
    outline: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    z-index: 1;
}

._05_cta-btn-details {
    background: linear-gradient(135deg, #13dd74 0%, #00b95a 100%);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(0, 185, 90, 0.24), 0 12px 34px rgba(0, 185, 90, 0.28);
}

._05_cta-btn-details ._05_cta-icon {
    width: 21px;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 8px;
    transition: transform 0.3s ease;
    transform: translateX(0);
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
}

._05_cta-btn-details::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(120px 120px at var(--_05_cta-mx, 50%) var(--_05_cta-my, 50%), rgba(255, 255, 255, 0.42), transparent 60%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

._05_cta-btn-details:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 22px rgba(0, 185, 90, 0.34), 0 18px 44px rgba(0, 185, 90, 0.4);
    filter: saturate(1.08) brightness(1.03);
}

._05_cta-btn-details:hover::before {
    opacity: 1;
}

._05_cta-btn-details:hover ._05_cta-icon {
    transform: translateX(4px);
}

._05_cta-btn:active {
    transform: translateY(0) scale(0.98);
}

@media (max-width: 1024px) {

    .merged-handly-source__lead h2,
    .merged-handly-source__device h2 {
        font-size: clamp(36px, 5.4vw, 52px);
    }

    .rooms_prd-card-container,
    .desk_prd-card-container {
        min-height: 420px;
    }

    .desk_prd-card--operations .desk_prd-card-container {
        min-height: 630px;
    }

    .rooms_prd-card-content,
    .desk_prd-card-content {
        align-items: flex-start;
        padding: 48px 44px;
    }

    .merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .rooms_prd-card-container,
    .merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .desk_prd-card-container {
        min-height: 620px;
    }

    .merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .rooms_prd-card-content,
    .merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .desk_prd-card-content {
        padding: 64px 44px 40px;
    }

    .rooms_prd-card-text,
    .desk_prd-card-text {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .merged-handly-source {
        padding-bottom: 104px;
    }

    .merged-handly-source__lead {
        padding-top: 96px;
        margin-bottom: 56px;
    }

    .merged-handly-source__lead p:last-child,
    .merged-handly-source__device p {
        font-size: 16px;
    }

    .merged-handly-source__card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .rooms_prd-card-container,
    .desk_prd-card-container {
        aspect-ratio: auto;
        min-height: 400px;
    }

    .desk_prd-card--operations .desk_prd-card-container {
        min-height: 560px;
    }

    .merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .rooms_prd-card-container,
    .merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .desk_prd-card-container {
        min-height: 460px;
    }

    .rooms_prd-card-content,
    .desk_prd-card-content {
        padding: 32px 24px;
        align-items: flex-start;
    }

    .merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .rooms_prd-card-content,
    .merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .desk_prd-card-content {
        padding: 44px 24px 28px;
    }

    .rooms_prd-card-text,
    .desk_prd-card-text {
        padding: 20px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.82);
    }

    .rooms_prd-card-text,
    .desk_prd-card-text {
        max-width: 100%;
    }

    .rooms_prd-title,
    .desk_prd-title {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .rooms_prd-description,
    .desk_prd-description {
        margin-bottom: 24px;
    }

    .rooms_prd-description p,
    .desk_prd-description p {
        font-size: 14px;
        line-height: 1.65;
    }

    .rooms_prd-cta-btn,
    .desk_prd-cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .merged-handly-source__device {
        margin-top: 96px;
    }
}

@media (max-width: 640px) {

    .merged-handly-source__lead h2,
    .merged-handly-source__device h2 {
        font-size: clamp(30px, 9vw, 40px);
    }

    .merged-handly-source__lead p:last-child,
    .merged-handly-source__device p {
        font-size: 15px;
    }

    .rooms_prd-category,
    .desk_prd-category {
        font-size: 13px;
        padding: 7px 12px;
        margin-bottom: 14px;
    }

    ._05_cta-section {
        padding-top: 32px;
    }

    ._05_cta-container {
        width: 100%;
    }

    ._05_cta-btn {
        width: 100%;
        max-width: 280px;
        padding: 18px 28px;
        font-size: 16px;
    }

    ._05_cta-btn ._05_cta-icon {
        width: 18px;
        height: 18px;
        font-size: 16px;
    }
}

.AiExperience_wrap__YQARr {
    background: #fff;
    color: #111;
    padding: 140px 0;
}

.AiExperience_wrap__YQARr .AiExperience_inner__1DHeq {
    width: 100%;
    max-width: none;
}

.AiExperience_wrap__YQARr .SectionTitleWithDesc_wrap__73kGg {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: var(--section-width);
    margin: 0 auto;
}

.SectionTitleWithDesc_wrap__73kGg {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 34px;
    align-items: end;
}

.SectionTitleWithDesc_section-title__Rz8oH,
.SectionTitle_section-title__xi4kX {
    margin: 0;
    font-size: clamp(50px, 6.4vw, 108px);
    line-height: 0.92;
    letter-spacing: -0.06em;
}

.AiExperience_wrap__YQARr .SectionTitleWithDesc_description-wrap__jO_E3 p {
    margin: 0;
    color: #6d6d6d;
    font-size: 17px;
    line-height: 1.86;
}

.SectionTitleWithDesc_description2__xvojr {
    margin-top: 18px !important;
}

.AiExperience_video-wrap__wC18r {
    position: relative;
    margin-top: 56px;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.AiExperience_flow__v0HEs {
    position: relative;
    overflow: hidden;
    padding: clamp(26px, 4vw, 44px) 0 clamp(74px, 7vw, 110px);
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #fafaf7 100%);
}

.AiExperience_flow__v0HEs::before,
.AiExperience_flow__v0HEs::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 28px;
    z-index: 1;
    pointer-events: none;
}

.AiExperience_flow__v0HEs::before {
    top: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
}

.AiExperience_flow__v0HEs::after {
    bottom: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
}

.AiExperience_flow-row__Qv3eT {
    overflow: hidden;
    padding: 6px 0;
}

.AiExperience_flow-marquee__N2cFs {
    display: flex;
    width: max-content;
    min-width: max-content;
    will-change: transform;
}

.AiExperience_flow-marquee--left__J4gPk {
    animation: experienceTickerLeft 48s linear infinite;
}

.AiExperience_flow-marquee--right__A7dNe {
    animation: experienceTickerRight 52s linear infinite;
}

.AiExperience_flow-marquee--slow__P6mRt {
    animation-duration: 58s;
}

.AiExperience_flow-segment__W8fLm {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.AiExperience_flow-item__S5qVr {
    display: inline-flex;
    align-items: center;
    gap: 0.22em;
    padding-right: clamp(26px, 3vw, 54px);
    color: #dbdbdb;
    font-size: clamp(34px, 4.8vw, 76px);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 1.08;
    white-space: nowrap;
}

.AiExperience_flow-item__S5qVr.is-active {
    color: #111;
    font-weight: 700;
}

.AiExperience_flow-badge__T9xPo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.2em;
    height: 1.22em;
    padding: 0 0.5em;
    border-radius: 999px;
    background: var(--accent);
    color: #fff !important;
    font-size: 0.3em;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.AiExperience_flow-toggle__M1xQj {
    position: absolute;
    right: clamp(16px, 2.4vw, 30px);
    bottom: clamp(18px, 2.6vw, 30px);
    z-index: 2;
    width: 64px;
    height: 64px;
    border: 0;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
    cursor: pointer;
}

.AiExperience_flow-toggle-icon__R2vNk {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 1;
}

.AiExperience_flow__v0HEs[data-paused="true"] .AiExperience_flow-marquee__N2cFs {
    animation-play-state: paused;
}

@keyframes experienceTickerLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes experienceTickerRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.PxdAXBanner_section__HPUQv {
    padding: 120px 0;
    background: #111;
}

.PxdAXBanner_inner__5rjw_ {
    padding: clamp(32px, 5vw, 60px);
    border-radius: 38px;
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    color: #fff;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.PxdAXBanner_logo__Eqjvk {
    display: block;
    font-size: clamp(20px, 2.2vw, 30px);
    font-weight: 800;
    letter-spacing: 0.02em;
}

.PxdAXBanner_title-wrap__eH9m9 h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 82px);
    line-height: 0.92;
    letter-spacing: -0.06em;
}

.PxdAXBanner_title-wrap__eH9m9 p {
    margin: 18px 0 0;
    max-width: 760px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.82;
}

.PxdAXBanner_btn__0ANtS {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #111;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.PxdAX_section__e_f2m {
    background: #fff;
    padding: 140px 0;
}

.PxdAX_section__e_f2m>.SectionTitle_section-title-wrap__nZ_uC {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: var(--section-width);
    margin: 0 auto 28px;
}

.SectionTitle_section-title-wrap__nZ_uC {
    width: 100%;
    margin-bottom: 28px;
}

.PxdAX_list-wrap___xMVP {
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.PxdAX_list__i9EnT a {
    height: 100%;
    display: block;
    overflow: hidden;
    border-radius: 28px;
    background: #111;
    color: #fff;
    border: 1px solid #1f1f1f;
    box-shadow: var(--shadow);
}

.PxdAX_img-wrap__euiJa {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.PxdAX_img-wrap__euiJa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.PxdAX_list__i9EnT a:hover .PxdAX_img-wrap__euiJa img {
    transform: scale(1.04);
}

.PxdAX_text-wrap__pdWey {
    padding: 24px;
}

.PxdAX_title-wrap__df80i h3 {
    margin: 0;
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1;
    letter-spacing: -0.05em;
}

.PxdAX_desc-wrap__z8ANL {
    margin-top: 16px;
}

.PxdAX_desc-wrap__z8ANL strong {
    display: block;
    color: var(--accent);
    font-size: 18px;
    line-height: 1.42;
    letter-spacing: -0.04em;
}

.PxdAX_desc-wrap__z8ANL p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.68;
}

/* ── Selected work — problem / solution / result ── */
.home-cases {
    padding: 140px 0;
    background: #f2f5f2;
    color: #111;
}

.home-cases__inner,
.home-guides__inner {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: var(--section-width);
    margin: 0 auto;
}

.home-cases__header {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
    align-items: end;
    gap: 64px;
    margin-bottom: 54px;
}

.home-cases__header h2,
.home-guides__header h2 {
    margin: 18px 0 0;
    font-size: clamp(38px, 4.4vw, 64px);
    font-weight: 850;
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.home-cases__intro {
    display: grid;
    gap: 24px;
    justify-items: start;
}

.home-cases__intro p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: -0.02em;
}

.home-cases__intro a,
.home-guides__header > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111;
    font-size: 14px;
    font-weight: 800;
    border-bottom: 1px solid rgba(17, 17, 17, 0.35);
    padding-bottom: 5px;
}

.home-cases__intro a:hover,
.home-guides__header > a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.home-cases__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-cases__grid--count-1 {
    grid-template-columns: minmax(0, 520px);
}

.home-cases__grid--count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 920px;
}

.home-case-card {
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.09);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(17, 17, 17, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-case-card:hover {
    transform: translateY(-6px);
    border-color: rgba(91, 183, 97, 0.42);
    box-shadow: 0 26px 66px rgba(17, 17, 17, 0.11);
}

.home-case-card__visual {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background: #e9e5dc;
}

.home-case-card__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.home-case-card:hover .home-case-card__visual img {
    transform: scale(1.025);
}

.home-case-card__visual > span {
    position: absolute;
    left: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.82);
    color: #fff;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.04em;
    backdrop-filter: blur(10px);
}

.home-case-card__visual > .home-case-card__placeholder {
    inset: 0;
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 0;
    border-radius: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(91, 183, 97, 0.5), transparent 42%),
        linear-gradient(145deg, #18221a, #0b0d0b);
    color: rgba(255, 255, 255, 0.88);
    font-size: 84px;
    font-weight: 900;
    backdrop-filter: none;
}

.home-case-card__body {
    padding: 28px;
}

.home-case-card__number {
    margin: 0;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.home-case-card__body h3 {
    margin: 9px 0 24px;
    font-size: 27px;
    font-weight: 850;
    letter-spacing: -0.045em;
}

.home-case-card__body dl {
    margin: 0;
}

.home-case-card__body dl > div {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.home-case-card__body dt {
    color: #3c9f43;
    font-size: 12px;
    font-weight: 850;
}

.home-case-card__body dd {
    margin: 0;
    color: #5f6460;
    font-size: 13px;
    line-height: 1.62;
    letter-spacing: -0.02em;
}

/* ── Homepage guide hub ── */
.home-guides {
    padding: 140px 0;
    background: #fff;
    color: #111;
}

.home-guides__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 52px;
}

.home-faq-list {
    border-top: 1px solid rgba(17, 17, 17, 0.16);
    border-bottom: 1px solid rgba(17, 17, 17, 0.16);
}

.home-faq-item {
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.home-faq-item:last-child {
    border-bottom: 0;
}

.home-faq-item summary {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr) 46px;
    align-items: center;
    gap: 16px;
    min-height: 104px;
    padding: 24px 0;
    cursor: pointer;
    list-style: none;
}

.home-faq-item summary::-webkit-details-marker {
    display: none;
}

.home-faq-item__index {
    color: var(--accent);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.home-faq-item__question {
    color: #111;
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: -0.04em;
    transition: color 0.2s ease;
}

.home-faq-item summary:hover .home-faq-item__question,
.home-faq-item[open] .home-faq-item__question {
    color: var(--accent);
}

.home-faq-item__toggle {
    position: relative;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(17, 17, 17, 0.18);
    border-radius: 50%;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.25s ease;
}

.home-faq-item__toggle::before,
.home-faq-item__toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.home-faq-item__toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.home-faq-item[open] .home-faq-item__toggle {
    color: #fff;
    border-color: var(--accent);
    background: var(--accent);
    transform: rotate(180deg);
}

.home-faq-item[open] .home-faq-item__toggle::after {
    opacity: 0;
}

.home-faq-item__answer {
    padding: 0 78px 32px 84px;
}

.home-faq-item__answer p {
    max-width: 820px;
    margin: 0;
    color: #606460;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: -0.02em;
}

/* ── Build Process — dark card style ── */
.hicoding-process-section {
    background: #111;
    padding: 140px 0;
    color: #fff;
}

.hicoding-process__inner {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: var(--section-width);
    margin: 0 auto;
}

.hicoding-process__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    padding-bottom: 56px;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hicoding-process__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--accent);
    text-transform: uppercase;
    margin: 0 0 20px;
}

.hicoding-process__heading {
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 0;
    color: #fff;
}

.hicoding-process__header-right {
    display: flex;
    align-items: flex-end;
}

.hicoding-process__header-right p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.58);
    margin: 0;
    letter-spacing: -0.01em;
}

.hicoding-process__cards {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hicoding-process__card {
    position: relative;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 32px 28px 28px;
    overflow: hidden;
    transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.hicoding-process__card:hover {
    border-color: rgba(91, 183, 97, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.hicoding-process__card-watermark {
    position: absolute;
    bottom: -10px;
    right: 12px;
    font-size: clamp(88px, 10vw, 128px);
    font-weight: 900;
    letter-spacing: -0.06em;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    transition: color 0.35s ease;
}

.hicoding-process__card:hover .hicoding-process__card-watermark {
    color: rgba(91, 183, 97, 0.14);
}

.hicoding-process__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: #fff;
    flex-shrink: 0;
    transition: background 0.35s ease;
}

.hicoding-process__card:hover .hicoding-process__card-icon {
    background: #4caf52;
}

.hicoding-process__card-body h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0 0 10px;
    color: #fff;
}

.hicoding-process__card-metric {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--accent);
    margin: 0 0 16px;
    line-height: 1.2;
}

.hicoding-process__card-desc {
    font-size: 14px;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    letter-spacing: -0.01em;
}

.Web3UX_section__xGzAf {
    padding: 140px 0;
    background: var(--bg-soft);
    color: #111;
}

.web3ux-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 46px;
    align-items: start;
}

.hicoding-inquiry__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hicoding-inquiry__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.03);
    color: rgba(17, 17, 17, 0.76);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.hicoding-inquiry {
    padding: 34px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.06);
}

.hicoding-inquiry__intro {
    display: grid;
    gap: 7px;
    margin-bottom: 22px;
}

.hicoding-inquiry__intro > span,
.home-contact-detail__head > strong {
    color: #278332;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hicoding-inquiry__intro > strong {
    color: #111;
    font-size: clamp(22px, 2vw, 29px);
    line-height: 1.25;
    letter-spacing: -0.035em;
}

.web3ux-desc .hicoding-inquiry__intro > p {
    margin: 0;
    color: rgba(17, 17, 17, 0.58);
    font-size: 14px;
    line-height: 1.6;
}

.hicoding-inquiry__optional {
    color: rgba(17, 17, 17, 0.42);
    font-style: normal;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hicoding-inquiry--quick .hicoding-inquiry__field--full {
    margin-top: 12px;
}

.hicoding-inquiry--quick .hicoding-inquiry__field textarea {
    min-height: 104px;
    margin-top: 0;
}

.hicoding-inquiry--quick .hicoding-inquiry__submit {
    min-width: 190px;
}

.home-contact-detail {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.home-contact-detail[hidden] {
    display: none !important;
}

.home-contact-detail__head {
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
}

.home-contact-detail__head > span {
    color: rgba(17, 17, 17, 0.58);
    font-size: 13px;
    line-height: 1.6;
}

.hicoding-inquiry--detail {
    box-shadow: none;
}

.hicoding-inquiry__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hicoding-inquiry__field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hicoding-inquiry__field span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(17, 17, 17, 0.54);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.hicoding-inquiry__required {
    color: var(--accent);
    font-style: normal;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hicoding-inquiry__field input,
.hicoding-inquiry__field select,
.hicoding-inquiry__field textarea {
    width: 100%;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 20px;
    background: #fff;
    color: #111;
    padding: 16px 18px;
    font: inherit;
    font-size: 15px;
    line-height: 1.5;
    outline: none;
    appearance: none;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.hicoding-inquiry__field input::placeholder,
.hicoding-inquiry__field textarea::placeholder {
    color: rgba(17, 17, 17, 0.36);
}

.hicoding-inquiry__field input:focus,
.hicoding-inquiry__field select:focus,
.hicoding-inquiry__field textarea:focus {
    border-color: rgba(0, 232, 104, 0.72);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 232, 104, 0.12);
}

.hicoding-inquiry__field textarea {
    min-height: 140px;
    resize: vertical;
    margin-top: 16px;
}

.hicoding-inquiry__field--full {
    margin-top: 16px;
}

.hicoding-inquiry__footer {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 22px;
}

.hicoding-inquiry__status {
    order: 1;
    flex: 1;
}

.hicoding-inquiry__submit {
    order: 2;
}

.hicoding-inquiry__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 210px;
    min-height: 56px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: var(--accent);
    color: #111;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hicoding-inquiry__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 232, 104, 0.24);
    filter: brightness(1.02);
}

.hicoding-inquiry__submit:active {
    transform: translateY(0);
}

.hicoding-inquiry__submit[disabled] {
    cursor: wait;
    opacity: 0.72;
    box-shadow: none;
    transform: none;
}

.hicoding-inquiry__status {
    margin: 0;
    color: rgba(17, 17, 17, 0.56);
    font-size: 14px;
    line-height: 1.7;
}

.hicoding-inquiry__status[data-state="success"] {
    color: var(--accent);
}

.hicoding-inquiry__status[data-state="error"] {
    color: #ffb4b4;
}

.hicoding-inquiry__privacy-details {
    margin-top: 18px;
    color: rgba(17, 17, 17, 0.58);
    font-size: 12px;
    line-height: 1.65;
}

.hicoding-inquiry__privacy-details summary {
    width: fit-content;
    cursor: pointer;
    color: rgba(17, 17, 17, 0.72);
    font-weight: 800;
}

.hicoding-inquiry__privacy-details ul {
    margin: 9px 0 0;
    padding-left: 19px;
}

.hicoding-inquiry__agree {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 14px;
    color: rgba(17, 17, 17, 0.72);
    font-size: 13px;
    line-height: 1.5;
    cursor: pointer;
}

.hicoding-inquiry__agree input {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    margin: 0;
    accent-color: #278332;
}

.hicoding-inquiry__agree em {
    color: #b23d31;
    font-style: normal;
    font-weight: 800;
}

.Footer_wrap__zt_A2 {
    background: #0d0d0f;
    color: #fff;
    padding: 72px 0 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.Footer_title-wrap__N0DLF {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand-link {
    display: inline-flex;
    align-items: center;
}

.footer-brand-image {
    display: block;
    width: auto;
    height: clamp(68px, 8vw, 96px);
    max-width: min(480px, 72vw);
    object-fit: contain;
}

.Footer_title___8VjF {
    font-size: clamp(34px, 3.6vw, 50px);
    letter-spacing: -0.05em;
}

.Footer_title-wrap--compact {
    padding-bottom: 0;
    border-bottom: 0;
}

.CopyRight_copyright__dUDUY {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 12px;
}

.footer-tagline {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 16px;
    margin: 18px 0 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 700;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-service-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 22px;
    margin-top: 24px;
}

.footer-service-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
}

.footer-service-links a:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -12px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
}

.footer-service-links a:hover {
    color: var(--accent);
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 16px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.footer-legal-links a:hover {
    color: #fff;
}

.footer-legal-links span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

body.email-collection-modal-open {
    overflow: hidden;
}

.footer-legal-links .footer-legal-button {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.62);
    font: inherit;
    font-size: 13px;
    cursor: pointer;
}

.footer-legal-links .footer-legal-button:hover,
.footer-legal-links .footer-legal-button:focus-visible {
    color: #fff;
}

.email-collection-modal[hidden] {
    display: none !important;
}

.email-collection-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.email-collection-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 8, 7, 0.7);
    backdrop-filter: blur(8px);
}

.email-collection-modal__dialog {
    position: relative;
    width: min(100%, 540px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 38px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 28px;
    background: #fff;
    color: #111;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
}

.email-collection-modal__dialog:focus {
    outline: none;
}

.email-collection-modal__dialog:focus-visible {
    outline: 3px solid rgba(91, 183, 97, 0.5);
    outline-offset: 3px;
}

.email-collection-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f1f4f1;
    color: #111;
    font: inherit;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

.email-collection-modal__eyebrow {
    margin: 0 0 10px;
    color: #278332;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.email-collection-modal__dialog h2 {
    margin: 0;
    padding-right: 44px;
    font-size: clamp(25px, 4vw, 34px);
    line-height: 1.25;
    letter-spacing: -0.04em;
}

.email-collection-modal__content {
    margin-top: 22px;
    padding: 20px;
    border-radius: 18px;
    background: #f4f7f4;
    color: rgba(17, 17, 17, 0.7);
    font-size: 15px;
    line-height: 1.75;
}

.email-collection-modal__content p {
    margin: 0;
}

.email-collection-modal__content p + p {
    margin-top: 10px;
}

.email-collection-modal__confirm {
    width: 100%;
    min-height: 52px;
    margin-top: 22px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: #5bb761;
    color: #0d150e;
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 640px) {
    .footer-legal-links .footer-legal-button {
        display: inline-flex;
        align-items: center;
        min-width: 44px;
        min-height: 44px;
    }

    .email-collection-modal {
        align-items: end;
        padding: 14px;
    }

    .email-collection-modal__dialog {
        width: 100%;
        max-height: calc(100dvh - 28px);
        padding: 30px 22px 22px;
        border-radius: 24px;
    }
}

.Footer_info-row__HO62x {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin: 26px 0 0;
}

.Footer_info-column__kh8KM {
    margin: 0;
}

.Footer_column-title__uDwPy {
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.Footer_column-content__v9jN7 {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.75;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (min-width: 901px) {
    .merged-hero {
        padding-bottom: 148px;
    }

    .merged-hero .title_box.reveal {
        transform: translate3d(0, 0, 0);
    }

    .merged-hero .title_box.reveal.is-visible {
        transform: translate3d(0, -10px, 0);
    }

    .title_box h1 span {
        white-space: nowrap;
    }
}

@media (max-width: 1080px) {

    .SectionTitleWithDesc_wrap__73kGg,
    .web3ux-inner,
    .PxdAXBanner_inner__5rjw_ {
        grid-template-columns: 1fr;
    }

    .AiExperience_flow-item__S5qVr {
        font-size: clamp(30px, 6vw, 60px);
    }

    .PxdAXBanner_btn__0ANtS {
        justify-self: flex-start;
    }

    .Footer_info-row__HO62x {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-services__item {
        grid-template-columns: 60px minmax(0, 1fr);
        align-items: start;
    }

    .about-services__item-meta,
    .about-services__item-desc {
        grid-column: 2;
    }

    .hicoding-inquiry {
        padding: 28px;
    }

    .hicoding-inquiry__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {

    .container,
    .container.p-0,
    .merged-handly-source__inner,
    .AiExperience_inner__1DHeq,
    .PxdAXBanner_inner__5rjw_,
    .web3ux-inner,
    .Footer_content__P5UPO,
    .hicoding-process__inner,
    .home-cases__inner,
    .home-guides__inner,
    .home-needs__inner,
    .PxdAX_section__e_f2m>.SectionTitle_section-title-wrap__nZ_uC {
        max-width: none;
    }

    .navigation {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        height: auto;
        z-index: 90;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        padding: 28px 24px calc(24px + env(safe-area-inset-bottom, 0px));
        background: #0a0a0a;
        border: none;
        border-radius: 0;
        overflow-y: auto;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    body.menu-open .navigation {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .navigation ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        justify-content: flex-start;
    }

    .navigation__label--desktop {
        display: none;
    }

    .navigation__label--mobile,
    .navigation__ai-label,
    .navigation__ai-icon,
    .navigation__ai-copy,
    .navigation__chevron,
    .navigation__cta-icon,
    .navigation__cta-arrow {
        display: inline-flex;
    }

    .navigation__tagline {
        display: block;
    }

    .navigation__service .navigation__button,
    .navigation__portfolio .navigation__button,
    .navigation__sample .navigation__button,
    .navigation__guide .navigation__button {
        width: 100%;
        justify-content: space-between;
        padding: 20px 2px;
        font-size: 22px;
        font-weight: 800;
    }

    .navigation__service,
    .navigation__portfolio,
    .navigation__sample {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .navigation__chevron {
        width: 20px;
        height: 20px;
        color: rgba(255, 255, 255, 0.45);
        flex-shrink: 0;
    }

    .navigation__ai-label {
        margin: 28px 2px 12px;
        color: var(--accent);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.14em;
    }

    .navigation__estimate,
    .navigation__ai-diagnosis {
        margin-left: 0;
        margin-bottom: 12px;
    }

    .navigation__estimate .navigation__button,
    .navigation__ai-diagnosis .navigation__button {
        width: 100%;
        min-height: auto;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding: 16px;
        border-radius: 16px;
        background: rgba(91, 183, 97, 0.06);
        border: 1px solid rgba(91, 183, 97, 0.3);
        font-size: 15px;
    }

    .navigation__ai-icon {
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        color: var(--accent);
        flex-shrink: 0;
    }

    .navigation__ai-icon svg {
        width: 100%;
        height: 100%;
    }

    .navigation__ai-copy {
        flex: 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 3px;
    }

    .navigation__ai-copy strong {
        color: #fff;
        font-size: 15px;
        font-weight: 800;
    }

    .navigation__ai-copy span {
        color: rgba(255, 255, 255, 0.56);
        font-size: 12px;
        font-weight: 500;
    }

    .navigation__inquiry {
        margin-top: auto;
        padding-top: 24px;
    }

    .navigation__inquiry .navigation__button {
        width: 100%;
        min-height: 56px;
        border-radius: 999px;
        font-size: 16px;
        gap: 10px;
    }

    .navigation__cta-icon svg {
        width: 20px;
        height: 20px;
    }

    .navigation__cta-arrow {
        font-size: 16px;
    }

    .navigation__tagline {
        margin: 24px 0 0;
        text-align: center;
        color: rgba(255, 255, 255, 0.4);
        font-size: 12px;
    }

    .cHeader__menu {
        display: inline-flex;
    }

    .merged-hero {
        padding-left: var(--page-gutter);
        padding-right: var(--page-gutter);
    }

    .home-cases,
    .home-guides {
        padding: 104px 0;
    }

    .home-cases__header {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 40px;
    }

    .home-cases__intro {
        max-width: 620px;
    }

    .home-cases__grid,
    .home-guides__grid {
        grid-template-columns: 1fr;
    }

    .home-case-card {
        display: grid;
        grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
    }

    .home-case-card__visual {
        height: 100%;
        min-height: 360px;
        aspect-ratio: auto;
    }

    .home-guides__header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 40px;
    }

    .home-faq-item summary {
        grid-template-columns: 54px minmax(0, 1fr) 42px;
        min-height: 94px;
    }

    .home-faq-item__answer {
        padding-left: 70px;
        padding-right: 58px;
    }

    .Services_section__LyuEh .SectionTitle_section-title-wrap__nZ_uC {
        flex-direction: column;
        align-items: flex-start;
    }

    .hicoding-services--accordion .ServicesMobileList_services-list-wrap__LEpJ_ > .hicoding-services__content.is-active {
        gap: 18px;
        padding: 18px;
        border-radius: 20px;
        box-shadow: 0 14px 30px rgba(17, 17, 17, 0.06);
    }

    .hicoding-services__project-copy {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-services__header {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px 24px 24px;
    }

    .about-services__item {
        padding: 24px;
    }

    .company-overview,
    .product-grid,
    .Footer_info-row__HO62x {
        grid-template-columns: 1fr;
    }

    .company-overview__nav {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .company-overview__panel {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .device-visual img {
        aspect-ratio: 4 / 3;
    }

    .PxdAX_list-wrap___xMVP {
        width: 100%;
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(260px, 72vw);
        grid-template-columns: none;
        gap: 14px;
        overflow-x: auto;
        padding: 0 var(--page-gutter) 8px;
        scroll-snap-type: x mandatory;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .PxdAX_list-wrap___xMVP::-webkit-scrollbar {
        display: none;
    }

    .PxdAX_list__i9EnT {
        scroll-snap-align: start;
    }

    .hicoding-process__header {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 40px;
        margin-bottom: 32px;
    }

    .hicoding-process__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 640px) {
    .header {
        padding: 16px 18px;
    }

    .merged-principles .swiper-wrapper {
        grid-auto-columns: minmax(240px, 74vw);
    }

    .merged-principles .swiper-slide {
        min-height: 236px;
        padding: 24px 20px;
    }

    .hicoding-services--accordion .ServicesMobileList_services-list-wrap__LEpJ_ > .hicoding-services__content.is-active {
        padding: 16px;
        border-radius: 18px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 19px;
    }

    .brand-logo-image {
        height: 32px;
        max-width: min(160px, 42vw);
    }

    .footer-brand-image {
        height: 56px;
        max-width: min(320px, 72vw);
    }

    .merged-hero {
        padding: 128px 18px 72px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: min(100%, 340px);
        margin-top: 26px;
    }

    .hero-cta {
        width: 100%;
        min-height: 52px;
        padding: 0 20px;
        font-size: 14px;
    }

    .hero-copy .hero-cta-note {
        width: min(100%, 340px);
        font-size: 12px;
    }

    .fix_title {
        gap: 12px;
    }

    .about-btn {
        min-width: 34px;
        height: 34px;
        font-size: 12px;
        padding: 0 10px;
    }

    .hero-copy p,
    .handly-lead p:last-child,
    .device-intro p,
    .SectionTitleWithDesc_description-wrap__jO_E3 p,
    .PxdAXBanner_title-wrap__eH9m9 p,
    .PxdAX_desc-wrap__z8ANL p,
    .web3ux-desc p {
        font-size: 16px;
    }

    .hicoding-inquiry {
        padding: 22px;
        border-radius: 24px;
    }

    .hicoding-inquiry__tags {
        gap: 8px;
    }

    .hicoding-inquiry__tags span {
        min-height: 34px;
        padding: 0 12px;
        font-size: 11px;
    }

    .hicoding-inquiry__field input,
    .hicoding-inquiry__field select,
    .hicoding-inquiry__field textarea {
        border-radius: 16px;
        padding: 14px 16px;
        font-size: 14px;
    }

    .hicoding-inquiry__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .hicoding-inquiry__submit {
        width: 100%;
        min-width: 0;
    }

    .hicoding-inquiry__status {
        width: 100%;
    }

    .Services_section__LyuEh .SectionTitle_section-title__xi4kX {
        font-size: 28px;
        line-height: 42px;
    }

    .hicoding-services__anchor {
        font-size: 13px;
    }

    .ServicesMobileList_services-list__Tnpdv {
        grid-template-columns: 40px minmax(0, 1fr) 18px;
        padding: 14px 16px;
    }

    .hicoding-services__item-text {
        font-size: 18px;
        line-height: 27px;
    }

    .hicoding-services__description {
        font-size: 20px;
        line-height: 30px;
    }

    .hicoding-services__body {
        font-size: 15px;
        line-height: 25px;
    }

    .hicoding-services__project {
        padding: 0;
        border-radius: 24px;
    }

    .hicoding-services__project-visual {
        border-radius: 16px;
        aspect-ratio: 4 / 3;
    }

    .AiExperience_flow__v0HEs {
        padding: 18px 0 72px;
    }

    .AiExperience_flow-item__S5qVr {
        font-size: clamp(24px, 7.2vw, 38px);
        padding-right: 22px;
    }

    .AiExperience_flow-toggle__M1xQj {
        right: 12px;
        bottom: 12px;
        width: 48px;
        height: 48px;
    }

    .AiExperience_flow-toggle-icon__R2vNk {
        font-size: 14px;
    }

    .about-services__title {
        font-size: clamp(38px, 11vw, 64px);
    }

    .about-services__link {
        font-size: 12px;
    }

    .about-services__item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 22px 20px;
    }

    .about-services__item-number,
    .about-services__item-meta,
    .about-services__item-desc {
        grid-column: auto;
    }

    .about-services__item-title {
        font-size: clamp(28px, 7.8vw, 40px);
    }

    .about-services__item-desc {
        font-size: 14px;
        line-height: 1.65;
    }

    .se02 {
        height: 240vh;
    }

    .se02 .cover {
        padding: 0 18px 42px;
    }

    .se02 .txtmotion {
        flex-direction: column;
        gap: 10px;
    }

    .se02 .txtmotion p {
        width: min(100%, calc(8em + (var(--se02-progress) * 5em)));
        white-space: normal;
    }

    .se02 .txtmotion p br {
        display: block;
    }

    .space,
    .handly-block,
    .AiExperience_wrap__YQARr,
    .PxdAX_section__e_f2m,
    .home-cases,
    .home-guides,
    .hicoding-process-section,
    .Web3UX_section__xGzAf {
        padding-top: 96px;
    }

    .hicoding-process__cards {
        grid-template-columns: 1fr;
    }

    .home-cases__header h2,
    .home-guides__header h2 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .home-case-card {
        display: block;
        border-radius: 20px;
    }

    .home-case-card__visual {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 11;
    }

    .home-case-card__body {
        padding: 24px 20px;
    }

    .home-case-card__body h3 {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .home-faq-item summary {
        grid-template-columns: 38px minmax(0, 1fr) 36px;
        gap: 10px;
        min-height: 82px;
        padding: 20px 0;
    }

    .home-faq-item__index {
        font-size: 11px;
    }

    .home-faq-item__question {
        font-size: 18px;
        line-height: 1.45;
    }

    .home-faq-item__toggle {
        width: 34px;
        height: 34px;
    }

    .home-faq-item__answer {
        padding: 0 0 22px 48px;
    }

    .home-faq-item__answer p {
        font-size: 14px;
        line-height: 1.72;
    }

    .hicoding-process__card-watermark {
        font-size: 80px;
    }

    .product-card {
        min-height: 420px;
    }

    .product-card__content {
        padding: 24px;
    }

    .company-overview__trigger {
        padding: 20px;
    }

    .company-overview__summary {
        font-size: 13px;
    }

    .company-overview__panel {
        padding: 24px;
    }

    .company-overview__copy p {
        font-size: 15px;
    }

    .company-overview__visual img {
        min-height: 260px;
    }

    .Footer_wrap__zt_A2 {
        padding: 56px 0 64px;
    }

    .Footer_title-wrap__N0DLF {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 782px) {
    body.admin-bar .header {
        top: 46px;
    }
}

/* ── AI diagnosis improvements: clear first screen and compact decision paths ── */
.merged-hero {
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    padding-top: clamp(116px, 12vw, 154px);
    padding-bottom: clamp(52px, 6vw, 76px);
}

.title_box {
    width: min(100%, 1180px);
}

.hero-kicker {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(15px, 1.35vw, 20px);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.title_box h1 {
    max-width: 1120px;
    margin-top: 20px;
    font-size: clamp(42px, 5vw, 78px);
    line-height: 1.08;
    letter-spacing: -0.055em;
    word-break: keep-all;
}

.title_box h1 span + span {
    margin-top: 0.08em;
}

.hero-copy {
    max-width: 720px;
    margin-top: 24px;
}

.hero-copy p {
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.66;
    word-break: keep-all;
}

.home-needs {
    display: flex;
    align-items: center;
    min-height: clamp(720px, 84svh, 920px);
    padding: clamp(104px, 10vw, 144px) 0;
    background: #fff;
}

.home-needs__inner {
    width: calc(100% - (var(--page-gutter) * 2));
    max-width: var(--section-width);
    margin: 0 auto;
}

.home-needs__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    align-items: end;
    gap: 48px;
    margin-bottom: 50px;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.home-needs__header h2 {
    margin: 10px 0 0;
    color: #111;
    font-size: clamp(38px, 4.35vw, 64px);
    line-height: 1.1;
    letter-spacing: -0.055em;
    word-break: keep-all;
}

.home-needs__header > p {
    margin: 0;
    color: #666;
    font-size: 16px;
    line-height: 1.7;
    word-break: keep-all;
}

.home-needs__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.home-need-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 24px;
    align-items: start;
    gap: 18px;
    min-height: 228px;
    padding: 32px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 22px;
    background: #fff;
    color: #111;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-need-card:hover {
    color: #111;
    border-color: rgba(91, 183, 97, 0.68);
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}

.home-need-card__icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f1f8f2;
    color: #3f9947;
}

.home-need-card__icon svg {
    width: 24px;
    height: 24px;
}

.home-need-card__copy {
    display: block;
    min-width: 0;
}

.home-need-card__copy strong {
    display: block;
    margin: 2px 0 12px;
    font-size: clamp(20px, 1.65vw, 25px);
    line-height: 1.32;
    letter-spacing: -0.04em;
    word-break: keep-all;
}

.home-need-card__copy > span {
    display: -webkit-box;
    overflow: hidden;
    color: #666;
    font-size: 14px;
    line-height: 1.65;
    word-break: keep-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-need-card__arrow {
    margin-top: 10px;
    color: #4ea756;
    font-size: 20px;
    transition: transform 0.2s ease;
}

.home-need-card:hover .home-need-card__arrow {
    transform: translateX(4px);
}

/* Give the decorative transition one complete viewport without restoring scroll pinning. */
.se02 {
    height: 100vh;
    height: 100svh;
}

.se02__pin {
    position: relative;
    height: 100vh;
    height: 100svh;
}

.merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .rooms_prd-card-container,
.merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .desk_prd-card-container {
    min-height: clamp(540px, 43vw, 660px);
}

.desk_prd-card--operations .desk_prd-card-container {
    min-height: 460px;
}

.rooms_prd-title,
.desk_prd-title {
    max-width: 440px;
    font-size: clamp(26px, 2.4vw, 34px);
    word-break: keep-all;
}

.rooms_prd-description,
.desk_prd-description {
    margin-bottom: 18px;
}

.solution-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.solution-feature-list li {
    padding: 7px 10px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #444;
    font-size: 12px;
    line-height: 1.2;
}

.hicoding-stab-panel__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    margin-top: 2px;
    padding: 0 18px;
    border: 1px solid rgba(17, 17, 17, 0.18);
    border-radius: 999px;
    color: #111;
    font-size: 14px;
    font-weight: 800;
}

.hicoding-stab-panel__link:hover {
    border-color: #4ea756;
    color: #3f9947;
}

.home-guide-estimate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 112px;
    margin-top: 18px;
    padding: 24px 28px;
    border-radius: 20px;
    background: #111;
    color: #fff;
}

.home-guide-estimate:hover {
    color: #fff;
}

.home-guide-estimate > span:first-child {
    display: grid;
    gap: 7px;
}

.home-guide-estimate strong {
    font-size: clamp(19px, 1.8vw, 24px);
    letter-spacing: -0.035em;
}

.home-guide-estimate small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.55;
}

.home-guide-estimate > span:last-child {
    flex: 0 0 auto;
    color: var(--accent);
    font-size: 14px;
    font-weight: 800;
}

.web3ux-copy__desc {
    max-width: 520px;
    margin: 22px 0 0;
    color: rgba(17, 17, 17, 0.68);
    font-size: 16px;
    line-height: 1.7;
    word-break: keep-all;
}

.Web3UX_section__xGzAf .web3ux-copy.reveal,
.Web3UX_section__xGzAf .web3ux-desc.reveal {
    opacity: 1;
    transform: none;
}

.Web3UX_section__xGzAf .section-eyebrow {
    color: #3f9947;
}

.Web3UX_section__xGzAf .web3ux-copy h2 {
    color: #111;
}

.home-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.home-contact-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid rgba(17, 17, 17, 0.28);
    border-radius: 999px;
    color: #111;
    font-size: 14px;
    font-weight: 800;
}

.home-contact-actions a:first-child {
    border-color: var(--accent);
    background: var(--accent);
    color: #111;
}

.hicoding-inquiry__privacy {
    margin: 12px 0 0;
    color: rgba(17, 17, 17, 0.6);
    font-size: 12px;
    line-height: 1.55;
}

.hicoding-inquiry__privacy a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.home-need-card:focus-visible,
.home-guide-estimate:focus-visible,
.hicoding-stab-panel__link:focus-visible,
.home-contact-actions a:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .home-needs__header {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 28px;
    }

    .home-needs__header > p {
        max-width: 620px;
    }

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

    .home-need-card {
        min-height: 142px;
        padding: 24px;
    }

    .se02 {
        height: 100vh;
        height: 100svh;
    }

    .merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .rooms_prd-card-container,
    .merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .desk_prd-card-container,
    .desk_prd-card--operations .desk_prd-card-container {
        min-height: 480px;
    }
}

@media (min-width: 901px) {
    /* Adjacent sections share one vertical gutter instead of stacking two. */
    .home-cases,
    .home-guides {
        padding-top: 0;
    }

    .home-needs {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .merged-hero {
        min-height: 100vh;
        min-height: 100svh;
        padding: 104px 18px 46px;
    }

    .hero-kicker {
        margin-top: 12px;
        font-size: 14px;
    }

    .title_box h1 {
        margin-top: 16px;
        font-size: clamp(34px, 10.2vw, 44px);
        line-height: 1.12;
        letter-spacing: -0.05em;
    }

    .hero-copy {
        margin-top: 18px;
    }

    .hero-copy p {
        font-size: 15px;
        line-height: 1.62;
    }

    .hero-copy__break {
        display: none;
    }

    .hero-actions {
        width: 100%;
        margin-top: 22px;
    }

    .hero-cta {
        min-height: 50px;
        font-size: 14px;
    }

    .frame__info {
        display: none;
    }

    .home-needs {
        min-height: auto;
        padding: 92px 0;
    }

    .home-needs__header h2 {
        font-size: 34px;
        line-height: 1.16;
    }

    .home-needs__header > p {
        font-size: 14px;
        line-height: 1.62;
    }

    .home-need-card {
        grid-template-columns: 42px minmax(0, 1fr) 18px;
        gap: 14px;
        min-height: 132px;
        padding: 22px 20px;
        border-radius: 18px;
    }

    .home-need-card__icon {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .home-need-card__icon svg {
        width: 21px;
        height: 21px;
    }

    .home-need-card__copy strong {
        margin-bottom: 8px;
        font-size: 19px;
    }

    .home-need-card__copy > span {
        font-size: 13px;
        line-height: 1.58;
        -webkit-line-clamp: 2;
    }

    .se02 {
        height: 100vh;
        height: 100svh;
    }

    .brand-link,
    .hicoding-services__anchor,
    .home-cases__intro a,
    .home-guides__header > a,
    .footer-contact a,
    .footer-service-links a,
    .footer-legal-links a {
        display: inline-flex;
        align-items: center;
        min-height: 48px;
        min-width: 48px;
    }

    .hicoding-inquiry__privacy a {
        display: inline-flex;
        align-items: center;
        min-height: 48px;
    }

    .hicoding-stab,
    .merged-principles-heading__title {
        min-height: 48px;
    }

    .home-cases__header h2,
    .home-guides__header h2,
    .hicoding-process__heading,
    .web3ux-copy h2 {
        line-height: 1.14;
    }

    .merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .rooms_prd-card-container,
    .merged-handly-source__card-grid:not(.merged-handly-source__card-grid--secondary) .desk_prd-card-container,
    .desk_prd-card--operations .desk_prd-card-container {
        min-height: 440px;
    }

    .rooms_prd-title,
    .desk_prd-title {
        font-size: 25px;
        line-height: 1.25;
    }

    .solution-feature-list {
        margin-bottom: 18px;
    }

    .solution-feature-list li {
        font-size: 11px;
    }

    .home-guide-estimate {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        min-height: 0;
        padding: 22px 20px;
        border-radius: 18px;
    }

    .home-guide-estimate small {
        font-size: 13px;
    }

    .home-contact-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .home-contact-actions a {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-need-card,
    .home-need-card__arrow {
        transition: none;
    }
}
