@charset "UTF-8";

@font-face {
    font-family: "Pretendard";
    src: url("../fonts/Pretendard-Regular.subset.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    src: url("../fonts/Pretendard-Medium.subset.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    src: url("../fonts/Pretendard-SemiBold.subset.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Pretendard";
    src: url("../fonts/Pretendard-Bold.subset.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --color_primary: #2596f3;
    --color_primary_strong: #4646eb;
    --color_product: #00bd79;
    --color_navy: #110452;
    --color_text: #111827;
    --color_text_sub: #6b7280;
    --color_line: #d1d5db;
    --color_bg: #f3f6fa;
    --color_bg_brand: #eaf5ff;
    --radius_lg: 24px;
    --section_width: 1280px;
}

html, body, div, span, h1, h2, h3, p, a, em, strong, ol, ul, li, header, nav,
main, section, footer, button, img {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }
body {
    min-width: 320px;
    color: var(--color_text);
    font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", sans-serif;
    line-height: 1.5;
    word-break: keep-all;
    background: #fff;
}
body.menu_open { overflow: hidden; }
ol, ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; background: transparent; cursor: pointer; }
img { display: block; max-width: 100%; }
.blind {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0, 0, 0, 0);
}
.skip_nav {
    position: fixed;
    top: -50px;
    left: 16px;
    z-index: 200;
    padding: 10px 18px;
    color: #fff;
    border-radius: 8px;
    background: var(--color_primary_strong);
}
.skip_nav:focus { top: 12px; }
.section_inner {
    width: min(var(--section_width), calc(100% - 160px));
    height: 100%;
    margin: 0 auto;
}

.site_header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 80px;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, .96);
    transition: box-shadow .25s, border-color .25s;
}
.site_header.scrolled {
    border-color: rgba(17, 24, 39, .06);
    box-shadow: 0 6px 20px rgba(17, 24, 39, .06);
}
.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(var(--section_width), calc(100% - 160px));
    height: 100%;
    margin: 0 auto;
}
.brand_logo { width: 224px; height: 32px; }
.brand_logo img { width: 100%; height: 100%; object-fit: contain; }
.global_nav { display: flex; gap: 36px; align-items: center; }
.global_nav > a:not(.btn) {
    position: relative;
    font-size: 15px;
    font-weight: 500;
}
.global_nav > a:not(.btn)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--color_primary);
    transform: scaleX(0);
    transition: transform .2s;
}
.global_nav > a:hover::after, .global_nav > a.active::after { transform: scaleX(1); }
.menu_btn { display: none; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 43px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid transparent;
    border-radius: 999px;
    transition: color .2s, background .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(37, 150, 243, .2);
}
.btn_primary { color: #fff; background: var(--color_primary); }
.btn_primary:hover { background: #0d87e8; }
.btn_secondary { color: var(--color_primary); border-color: var(--color_primary); background: #fff; }
.btn_white { color: var(--color_primary); background: #fff; }
.btn_small { min-height: 43px; font-size: 15px; }

.hero_section { height: 760px; background: var(--color_bg_brand); }
.hero_inner { display: flex; align-items: center; justify-content: space-between; }
.hero_copy { width: 620px; }
.hero_badge {
    display: inline-block;
    padding: 6px 14px;
    color: var(--color_primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
    border-radius: 999px;
    background: #fff;
}
.hero_copy h1 {
    margin-top: 24px;
    font-size: 64px;
    line-height: 1.1875;
    letter-spacing: -1.8px;
}
.hero_desc {
    margin-top: 24px;
    color: var(--color_text_sub);
    font-size: 20px;
    line-height: 1.6;
}
.hero_actions { display: flex; gap: 12px; margin-top: 24px; }
.dashboard {
    width: 520px;
    height: 480px;
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 48px -12px rgba(17, 24, 39, .12);
}
.dashboard_header { display: flex; align-items: center; justify-content: space-between; }
.dashboard_header h2 { font-size: 22px; line-height: 1.3; }
.dashboard_header p { margin-top: 4px; color: var(--color_text_sub); font-size: 13px; }
.dashboard_header img { width: 72px; height: 72px; }
.dashboard_stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.dashboard_stats li { padding: 14px 16px; border-radius: 14px; background: var(--color_bg_brand); }
.dashboard_stats li:nth-child(2) { background: #e1faf1; }
.dashboard_stats li:nth-child(3) { background: var(--color_bg); }
.dashboard_stats span { display: block; color: var(--color_text_sub); font-size: 12px; }
.dashboard_stats strong { display: block; margin-top: 3px; font-size: 26px; }
.performance { margin-top: 20px; padding: 18px; border-radius: 16px; background: var(--color_bg); }
.performance h3 { margin-bottom: 12px; font-size: 15px; }
.progress_item + .progress_item { margin-top: 10px; }
.progress_item span { display: block; margin-bottom: 6px; color: var(--color_text_sub); font-size: 12px; }
.progress_item i { display: block; overflow: hidden; width: 100%; height: 8px; border-radius: 999px; background: #dde4eb; }
.progress_item b {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--color_primary);
    transition: width 1s .25s ease;
}
.dashboard.is_visible .progress_item b { width: var(--progress); }
.progress_item.product b { background: var(--color_product); }

.content_section { background: #fff; }
.pain_section { height: 620px; padding: 88px 0; }
.section_intro .eyebrow, .eyebrow {
    color: var(--color_primary);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
}
.section_intro h2 {
    margin-top: 12px;
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: -.8px;
}
.section_intro > p:last-child {
    margin-top: 12px;
    color: var(--color_text_sub);
    font-size: 18px;
}
.card_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain_grid { margin-top: 48px; }
.info_card {
    min-height: 220px;
    padding: 28px;
    border-radius: 20px;
    background: var(--color_bg);
}
.info_card em, .trust_card em {
    color: var(--color_primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
}
.info_card h3 { margin-top: 14px; font-size: 22px; }
.info_card p, .trust_card p {
    margin-top: 8px;
    color: var(--color_text_sub);
    font-size: 15px;
    line-height: 1.6;
}

.solution_section { height: 720px; color: #fff; background: var(--color_navy); }
.solution_inner { display: flex; align-items: center; justify-content: space-between; }
.solution_copy { width: 520px; }
.solution_copy h2 { margin-top: 16px; font-size: 40px; line-height: 1.45; }
.solution_copy > p:last-child { margin-top: 20px; color: rgba(255, 255, 255, .66); font-size: 16px; line-height: 1.85; }
.solution_flow { width: 580px; }
.solution_flow li {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .04);
    border-radius: 16px;
    background: rgba(255, 255, 255, .1);
}
.solution_flow li + li { margin-top: 16px; }
.solution_flow em {
    display: flex;
    flex: 0 0 48px;
    align-items: center;
    justify-content: center;
    height: 48px;
    color: #fff;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    border-radius: 50%;
    background: var(--color_primary);
}
.solution_flow h3 { font-size: 20px; }
.solution_flow p { margin-top: 2px; color: rgba(255, 255, 255, .62); font-size: 14px; }

.features_section { height: 900px; padding: 88px 0; background: var(--color_bg); }
.feature_grid { margin-top: 42px; row-gap: 20px; }
.feature_card {
    height: 228px;
    padding: 32px;
    border: 1px solid var(--color_line);
    border-radius: var(--radius_lg);
    background: #fff;
    box-shadow: 0 12px 16px rgba(17, 24, 39, .08);
    transition: transform .25s, box-shadow .25s;
}
.feature_card:hover { transform: translateY(-6px); box-shadow: 0 18px 26px rgba(17, 24, 39, .12); }
.feature_card em {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--color_primary);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    border-radius: 16px;
    background: var(--color_bg_brand);
}
.feature_card h3 { margin-top: 14px; font-size: 22px; }
.feature_card p { margin-top: 8px; color: var(--color_text_sub); font-size: 16px; line-height: 1.625; }

.process_section { height: 620px; padding: 88px 0; }
.process_grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.process_grid .info_card { min-height: 169px; padding: 28px 24px; border-radius: 18px; }
.process_grid .info_card h3 { font-size: 20px; }
.process_grid .info_card p { font-size: 14px; line-height: 1.57; }

.trust_section { height: 520px; padding: 76px 0; background: var(--color_bg_brand); }
.trust_grid { margin-top: 42px; }
.trust_card { min-height: 156px; padding: 24px; border-radius: 18px; background: #fff; }
.trust_card em { font-size: 12px; letter-spacing: .8px; }
.trust_card h3 { margin-top: 8px; font-size: 22px; }
.trust_card p { margin-top: 4px; font-size: 14px; line-height: 1.57; }

.cta_section { height: 440px; color: #fff; background: var(--color_primary_strong); }
.cta_inner { display: flex; align-items: center; justify-content: space-between; padding: 0 40px; }
.cta_inner h2 { font-size: 44px; line-height: 1.32; letter-spacing: -1px; }
.cta_inner p { margin-top: 18px; color: rgba(255, 255, 255, .72); font-size: 18px; }
.cta_action { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.cta_action img { width: 84px; height: 84px; }

.site_footer { height: 300px; color: #fff; background: #111827; }
.footer_inner { padding: 56px 0 40px; }
.footer_top { display: flex; align-items: flex-start; justify-content: space-between; }
.footer_brand > a { display: block; width: 248px; padding: 8px 12px; border-radius: 10px; background: #fff; }
.footer_brand img { width: 224px; height: 32px; object-fit: contain; }
.footer_brand p { margin-top: 16px; color: rgba(255, 255, 255, .58); font-size: 14px; }
.footer_nav { display: flex; gap: 64px; }
.footer_nav div { display: flex; flex-direction: column; gap: 8px; min-width: 61px; font-size: 13px; }
.footer_nav strong { margin-bottom: 1px; }
.footer_nav a { color: rgba(255, 255, 255, .6); }
.footer_nav a:hover { color: #fff; }
.footer_bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 16px;
    color: rgba(255, 255, 255, .44);
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal.is_visible { opacity: 1; transform: translateY(0); }
.card_grid .reveal:nth-child(2), .process_grid .reveal:nth-child(2) { transition-delay: .08s; }
.card_grid .reveal:nth-child(3), .process_grid .reveal:nth-child(3) { transition-delay: .16s; }
.process_grid .reveal:nth-child(4) { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
    .section_inner, .header_inner { width: calc(100% - 64px); }
    .global_nav { gap: 22px; }
    .hero_copy { width: 50%; }
    .hero_copy h1 { font-size: 48px; }
    .hero_desc br { display: none; }
    .dashboard { width: 46%; }
    .solution_copy { width: 42%; }
    .solution_flow { width: 52%; }
    .cta_inner { width: calc(100% - 64px); }
}

@media (max-width: 820px) {
    .section_inner, .header_inner { width: calc(100% - 40px); }
    .site_header { height: 68px; }
    .brand_logo { width: 168px; height: 24px; }
    .menu_btn {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 34px;
        padding: 7px 5px;
    }
    .menu_btn span:not(.blind) { width: 24px; height: 2px; background: var(--color_text); transition: transform .2s, opacity .2s; }
    .menu_open .menu_btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu_open .menu_btn span:nth-child(2) { opacity: 0; }
    .menu_open .menu_btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .global_nav {
        position: fixed;
        inset: 68px 0 auto;
        display: flex;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 20px;
        border-top: 1px solid #eef1f4;
        background: #fff;
        box-shadow: 0 16px 28px rgba(17, 24, 39, .08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: .2s;
    }
    .menu_open .global_nav { opacity: 1; visibility: visible; transform: none; }
    .global_nav > a:not(.btn) { padding: 14px 8px; font-size: 16px; }
    .global_nav .btn { margin-top: 10px; }
    .hero_section, .pain_section, .solution_section, .features_section,
    .process_section, .trust_section, .cta_section, .site_footer { height: auto; }
    .hero_inner, .solution_inner, .cta_inner { flex-direction: column; align-items: stretch; }
    .hero_section { padding: 72px 0; }
    .hero_copy, .dashboard, .solution_copy, .solution_flow { width: 100%; }
    .hero_copy h1 { font-size: clamp(42px, 8vw, 56px); }
    .dashboard { margin-top: 52px; }
    .pain_section, .features_section, .process_section, .trust_section { padding: 72px 0; }
    .solution_section { padding: 80px 0; }
    .solution_flow { margin-top: 48px; }
    .card_grid { grid-template-columns: 1fr 1fr; }
    .pain_grid li:last-child, .trust_grid li:last-child { grid-column: 1 / -1; }
    .feature_grid { grid-template-columns: 1fr 1fr; }
    .process_grid { grid-template-columns: 1fr 1fr; }
    .cta_section { padding: 76px 0; }
    .cta_inner { gap: 48px; padding: 0; }
    .cta_action { align-items: flex-start; }
    .site_footer { padding: 50px 0 32px; }
    .footer_inner { padding: 0; }
}

@media (max-width: 560px) {
    body { word-break: keep-all; }
    .section_inner, .header_inner { width: calc(100% - 32px); }
    .hero_section { padding: 56px 0; }
    .hero_badge { font-size: 9px; letter-spacing: .5px; }
    .hero_copy h1 { margin-top: 18px; font-size: 40px; line-height: 1.23; letter-spacing: -1.2px; }
    .hero_desc { font-size: 17px; }
    .hero_desc br { display: none; }
    .hero_actions { flex-direction: column; align-items: stretch; }
    .dashboard { height: auto; margin-top: 40px; padding: 20px; border-radius: 20px; }
    .dashboard_header img { width: 58px; height: 58px; }
    .dashboard_stats { gap: 8px; }
    .dashboard_stats li { padding: 12px 10px; }
    .dashboard_stats strong { font-size: 22px; }
    .section_intro h2, .solution_copy h2 { font-size: 31px; line-height: 1.35; }
    .section_intro > p:last-child { font-size: 16px; }
    .pain_section, .features_section, .process_section, .trust_section { padding: 60px 0; }
    .card_grid, .feature_grid, .process_grid { grid-template-columns: 1fr; }
    .pain_grid li:last-child, .trust_grid li:last-child { grid-column: auto; }
    .info_card, .feature_card { min-height: 0; height: auto; }
    .solution_flow li { height: auto; min-height: 110px; padding: 18px; }
    .solution_flow p { line-height: 1.55; }
    .cta_inner h2 { font-size: 34px; }
    .cta_inner p { font-size: 16px; }
    .footer_top { flex-direction: column; gap: 40px; }
    .footer_nav { width: 100%; gap: 24px; justify-content: space-between; }
    .footer_bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}
