@font-face {
    font-family: "Pretendard";
    src: url("/hwp/fonts/Pretendard-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    src: url("/hwp/fonts/Pretendard-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    src: url("/hwp/fonts/Pretendard-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Pretendard";
    src: url("/hwp/fonts/Pretendard-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #0f1620;
    --muted: #56657a;
    --line: #d6e0ec;
    --field: #f5f8fc;
    --accent: #2b6cb0;
    --accent-strong: #1f5188;
    --accent-soft: rgba(43, 108, 176, 0.08);
    --paper: #ffffff;
    --shadow: 0 28px 80px rgba(15, 22, 32, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--field);
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--ink);
    font-family:
        "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
    letter-spacing: 0;
    background:
        linear-gradient(90deg, rgba(43, 108, 176, 0.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(43, 108, 176, 0.06) 1px, transparent 1px),
        var(--field);
    background-size: 44px 44px;
}

a {
    color: inherit;
}

.page-shell {
    min-height: 100vh;
    padding: 28px;
}

.intro {
    min-height: calc(100vh - 56px - 64px);
    display: flex;
    flex-direction: column;
    gap: 48px;
    justify-content: center;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.brand-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    padding: 8px 14px 8px 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--muted);
    font-weight: 700;
    font-size: 0.92rem;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 6px;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 1fr);
    align-items: center;
    gap: clamp(28px, 5vw, 64px);
}

.copy {
    max-width: 620px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

h1 {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(2.8rem, 6.4vw, 5.6rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
    font-weight: 800;
}

.summary {
    max-width: 560px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.6vw, 1.18rem);
    line-height: 1.7;
}

.text-link {
    color: var(--accent-strong);
    font-weight: 700;
    text-decoration-color: rgba(43, 108, 176, 0.35);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.text-link:hover {
    text-decoration-color: currentColor;
}

.launch-panel {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.launch-panel h2 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
}

.launch-note {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 0.92rem;
}

.launch-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.launch-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 16px 18px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    background: var(--paper);
    color: var(--ink);
    text-decoration: none;
    transition:
        border-color 0.15s ease,
        transform 0.12s ease,
        box-shadow 0.15s ease;
}

.launch-link span {
    font-weight: 700;
}

.launch-link small {
    color: var(--muted);
    font-size: 0.84rem;
}

.launch-link:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(43, 108, 176, 0.12);
}

.launch-link.primary {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.launch-link.primary small {
    color: rgba(255, 255, 255, 0.78);
}

.launch-link.primary:hover {
    background: var(--accent-strong);
    border-color: var(--accent-strong);
}

.feature-list {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.feature-list h2 {
    margin: 0 0 14px;
    font-size: 1rem;
    font-weight: 700;
}

.feature-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px 22px;
}

.feature-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-list li strong {
    color: var(--ink);
    font-weight: 700;
    font-size: 0.98rem;
}

.feature-list li span {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.credit-note {
    max-width: 580px;
    margin: 28px 0 12px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.links {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.links .text-link {
    margin: 0 2px;
}

.screenshot-card {
    align-self: center;
    width: 100%;
    max-width: 540px;
}

.screenshot-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.screenshot-frame {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
    box-shadow: var(--shadow);
    overflow: hidden;
    transform: perspective(1100px) rotateY(-3deg) rotateX(1deg);
    transition: transform 0.25s ease;
}

.screenshot-link:hover .screenshot-frame {
    transform: perspective(1100px) rotateY(-1.5deg) rotateX(0.5deg)
        translateY(-3px);
}

.screenshot-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--line);
    background: var(--field);
    font-size: 0.78rem;
    color: var(--muted);
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
}

.dot-r {
    background: #ff5f57;
}

.dot-y {
    background: #febc2e;
}

.dot-g {
    background: #28c840;
}

.screenshot-url {
    margin-left: 12px;
    font-family:
        "D2Coding", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.76rem;
}

.screenshot-body {
    padding: 0;
    background: #fafcff;
}

.screenshot-menubar {
    display: flex;
    gap: 18px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    font-size: 0.84rem;
    font-weight: 600;
    color: #364354;
}

.screenshot-page {
    aspect-ratio: 1.41 / 1;
    margin: 18px;
    padding: 24px 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(15, 22, 32, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.line {
    height: 10px;
    border-radius: 3px;
    background: linear-gradient(90deg, #e3ebf5, #d3deec);
}

.line-l {
    width: 100%;
}

.line-m {
    width: 78%;
}

.line-s {
    width: 42%;
}

.screenshot-cta {
    display: inline-block;
    margin-top: 16px;
    color: var(--accent-strong);
    font-weight: 700;
    font-size: 0.96rem;
}

.site-footer {
    width: min(1180px, 100%);
    margin: 32px auto 0;
    padding: 24px 0;
    color: var(--muted);
    font-size: 0.88rem;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.dot-sep {
    opacity: 0.5;
}

@media (max-width: 880px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .screenshot-card {
        order: -1;
        max-width: 100%;
    }

    .screenshot-frame {
        transform: none;
    }
}

@media (max-width: 520px) {
    .page-shell {
        padding: 18px;
    }

    .launch-actions {
        grid-template-columns: 1fr;
    }
}
