:root {
    --navy: #10233f;
    --blue: #2563eb;
    --sky: #eff6ff;
    --text: #172033;
    --muted: #667085;
    --line: #e5e7eb;
    --bg: #f8fafc;
    --card: #ffffff;
    --green: #12b76a;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
}

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

.container {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 99999;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}



.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.brand {
    font-weight: 800;
    font-size: 22px;
    color: var(--navy);
    letter-spacing: -.4px;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
    font-size: 14px;
    color: #344054;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 10px 28px rgba(37, 99, 235, .22);
}

.btn-secondary {
    background: #fff;
    color: var(--navy);
    border-color: var(--line);
}

.hero {
    padding: 78px 0 54px;
    background: linear-gradient(180deg, #fff 0%, #f4f8ff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 44px;
    align-items: center;
}

.badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: #eaf2ff;
    color: var(--blue);
    font-weight: 700;
    font-size: 14px;
}

h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.08;
    margin: 22px 0 20px;
    letter-spacing: -1.7px;
    color: #0b172a;
}

.lead {
    font-size: 19px;
    color: #475467;
    margin: 0 0 28px;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 660px;
}

.trust div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 14px;
    color: #344054;
}

.hero-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 14px;
    box-shadow: 0 24px 60px rgba(16, 35, 63, .13);
}

.hero-card img {
    width: 100%;
    display: block;
    border-radius: 18px;
    max-height: 520px;
    object-fit: cover;
    object-position: top;
}

section {
    padding: 82px 0;
}

.section-title {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 42px;
}

.section-title h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.18;
    margin: 0 0 14px;
    color: #0b172a;
    letter-spacing: -1px;
}

.section-title p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

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

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 12px 30px rgba(16, 35, 63, .05);
}

.card .icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--sky);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    color: #101828;
}

.card p {
    margin: 0;
    color: #5b6678;
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
}

.report-shot {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(16, 35, 63, .08);
}

.report-shot img {
    width: 100%;
    display: block;
}

.report-text {
    display: grid;
    gap: 14px;
}

.feature {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
}

.feature b {
    color: #101828;
    display: block;
    margin-bottom: 4px;
}

.process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
}

.step span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: #fff;
    font-weight: 800;
    margin-bottom: 10px;
}

.step b {
    display: block;
    color: #101828;
    margin-bottom: 4px;
}

.step small {
    color: var(--muted);
}

.remote {
    background: #0b172a;
    color: #fff;
}

.remote .section-title h2,
.remote .section-title p {
    color: #fff;
}

.remote .section-title p {
    opacity: .78;
}

.remote-panel {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 28px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
}

.remote-list {
    margin: 0;
    padding-left: 20px;
    color: rgba(255, 255, 255, .86);
}

.remote-list li {
    margin: 8px 0;
}

.notice {
    background: rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 18px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
}

.form-box {
    background: #fff;
    border-radius: 24px;
    padding: 26px;
    color: #101828;
}

label {
    display: block;
    font-weight: 700;
    margin: 12px 0 6px;
    font-size: 14px;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    padding: 12px 13px;
    font-size: 15px;
    font-family: inherit;
}

textarea {
    min-height: 92px;
    resize: vertical;
}

.check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 12px;
    font-size: 13px;
    color: #475467;
}

.check input {
    width: auto;
    margin-top: 4px;
    accent-color: #ef4444;
    transform: scale(1.2);
}

.form-note {
    color: #667085;
    font-size: 13px;
    margin: 12px 0 0;
}

.about {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: center;
}

.about-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 34px;
}

.about-card h2 {
    font-size: 38px;
    line-height: 1.18;
    margin: 0 0 16px;
    letter-spacing: -1px;
}

.about-card p {
    color: #5b6678;
    margin: 0 0 14px;
}

.faq {
    display: grid;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
}

details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px 22px;
}

summary {
    font-weight: 800;
    cursor: pointer;
    color: #101828;
}

details p {
    color: #5b6678;
    margin: 12px 0 0;
}

footer {
    padding: 42px 0;
    background: #fff;
    border-top: 1px solid var(--line);
    color: #667085;
    font-size: 14px;
}

.beta-banner {
    background: #fff1f2;
    color: #b42318;
    border-bottom: 1px solid #fda4af;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {

    .hero-grid,
    .report-grid,
    .remote-panel,
    .about {
        grid-template-columns: 1fr;
    }

    .cards,
    .process {
        grid-template-columns: 1fr;
    }

    .trust {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding-top: 48px;
    }
}

.btn-mypage {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #ffffff !important;
    border: none;
    box-shadow:
        0 10px 24px rgba(37, 99, 235, 0.28);
    font-weight: 900;
}

.btn-mypage:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 30px rgba(37, 99, 235, 0.36);
}