*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #F7F3EE;
    --ink: #1C1C2E;
    --orange: #FF8A00;
    --orange2: #FF6B00;
    --card: #FFFFFF;
    --muted: #9A9A9A;
    --tag-bg: #FFF0DC;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Noto Sans KR', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px 80px;
    position: relative;
    overflow: hidden;
}

/* animated background blobs */
.hero::before, .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: blob 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero::before {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, #FFB347, #FF8A00);
    top: -120px;
    right: -100px;
}

.hero::after {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #FFD580, #FF8A00);
    bottom: -80px;
    left: -60px;
    animation-delay: -4s;
}

@keyframes blob {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.15) translate(30px, 20px);
    }
}

/* ── LOGO MARK ── */
.logo-wrap {
    position: relative;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
}

.hero-sub {
    font-size: clamp(15px, 2.5vw, 19px);
    color: var(--muted);
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.3px;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-sub em {
    color: var(--orange);
    font-style: normal;
    font-weight: 700;
}

.hero-desc {
    max-width: 520px;
    margin: 28px auto 0;
    font-size: clamp(14px, 2vw, 16px);
    color: #555;
    line-height: 1.85;
    animation: fadeUp 0.8s 0.3s ease both;
}

/* CTA pill */
.cta-row {
    margin-top: 40px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeUp 0.8s 0.4s ease both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 999px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: transform 0.18s, box-shadow 0.18s;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange2));
    color: white;
    box-shadow: 0 8px 28px rgba(255,138,0,0.4);
}

.btn-primary:hover {
    box-shadow: 0 12px 36px rgba(255,138,0,0.55);
}

.btn-line {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid rgba(28,28,46,0.18);
}

.btn-line:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.45;
    animation: hintFade 1s 1s ease both;
}

@keyframes hintFade {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(24px);
    }

    to {
        opacity: 0.45;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-hint span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Nunito', sans-serif;
}

.scroll-arrow {
    width: 22px;
    height: 22px;
    position: relative;
    animation: bounce 1.6s ease-in-out infinite;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 16px;
    height: 16px;
    border-right: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    transform: translateX(-50%) rotate(45deg);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ── HOW IT WORKS ── */
.section {
    padding: 100px 24px;
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-block;
    background: var(--tag-bg);
    color: var(--orange);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.section-title {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-title span {
    color: var(--orange);
}

.section-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 56px;
}

/* steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.step-card {
    background: var(--card);
    border-radius: 24px;
    padding: 36px 28px;
    position: relative;
    box-shadow: 0 2px 20px rgba(0,0,0,0.055);
    transition: transform 0.22s, box-shadow 0.22s;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255,138,0,0.13);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange2));
}

.step-num {
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.step-icon {
    font-size: 38px;
    margin-bottom: 18px;
    display: block;
}

.step-title {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 10px;
}

.step-text {
    font-size: 14px;
    color: #777;
    line-height: 1.75;
}

/* ── INFLUENCER SHOWCASE ── */
.showcase-section {
    background: var(--ink);
    padding: 100px 24px;
    overflow: hidden;
}

.showcase-inner {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.showcase-section .section-label {
    background: rgba(255,138,0,0.18);
}

.showcase-section .section-title {
    color: white;
}

.showcase-section .section-desc {
    color: rgba(255,255,255,0.55);
}

/* scrolling marquee of influencer cards */
.marquee-wrap {
    overflow: hidden;
    margin: 0 -24px;
    padding: 10px 0 20px;
}

.marquee-track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

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

.infl-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 24px 20px;
    width: 200px;
    flex-shrink: 0;
    transition: background 0.2s;
    cursor: pointer;
}

.infl-card:hover {
    background: rgba(255,138,0,0.15);
    border-color: rgba(255,138,0,0.4);
}

.infl-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #FFD580);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 14px;
    box-shadow: 0 0 0 3px rgba(255,138,0,0.3);
}

.infl-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: white;
    margin-bottom: 4px;
}

.infl-category {
    font-size: 12px;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 12px;
}

.infl-url {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    font-family: monospace;
    background: rgba(255,255,255,0.05);
    padding: 4px 8px;
    border-radius: 6px;
}

.infl-items {
    display: flex;
    gap: 6px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.infl-tag {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.07);
    padding: 3px 9px;
    border-radius: 999px;
}

/* ── PRODUCT CARDS DEMO ── */
.products-section {
    padding: 100px 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.055);
    cursor: pointer;
    transition: transform 0.22s, box-shadow 0.22s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(255,138,0,0.15);
}

.product-thumb {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 58px;
    position: relative;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--orange);
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 999px;
}

.product-info {
    padding: 16px 18px 20px;
}

.product-curator {
    font-size: 11px;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 5px;
}

.product-name {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    line-height: 1.35;
}

.product-theme-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-top: 2px;
}

/* ── VALUE PROP ── */
.value-section {
    background: linear-gradient(135deg, #FFF8EE 0%, #FFF0D8 100%);
    padding: 100px 24px;
}

.value-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 52px;
}

.value-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.value-icon {
    width: 52px;
    height: 52px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(255,138,0,0.15);
    margin-bottom: 4px;
}

.value-title {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--ink);
}

.value-text {
    font-size: 14px;
    color: #777;
    line-height: 1.8;
}

/* ── FOOTER CTA ── */
.footer-cta {
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '오! 이거';
    position: absolute;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(80px, 18vw, 200px);
    font-weight: 900;
    color: rgba(255,138,0,0.055);
    white-space: nowrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    letter-spacing: -4px;
}

.footer-cta .section-title {
    font-size: clamp(30px, 5vw, 52px);
}

.footer-cta .section-desc {
    margin: 0 auto 48px;
    max-width: 460px;
    font-size: 17px;
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 32px 24px;
    text-align: center;
}

.footer-logo {
    font-family: 'Nunito', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--ink);
    margin-bottom: 8px;
}

.footer-logo span {
    color: var(--orange);
}

.footer-links {
    display: flex;
    gap: 22px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 14px 0 16px;
}

.footer-links a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.18s;
}

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

.footer-copy {
    font-size: 13px;
    color: var(--muted);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* stagger children */
.reveal-group > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-group.visible > *:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0s;
}

.reveal-group.visible > *:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: 0.1s;
}

.reveal-group.visible > *:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: 0.2s;
}

.reveal-group.visible > *:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: 0.3s;
}

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


/* ===== 서브페이지 (about / privacy / contact) ===== */
body.subpage { background: var(--bg); color: var(--ink); font-family: 'Noto Sans KR', sans-serif; min-height: 100vh; display: flex; flex-direction: column; }
.subpage .topbar { padding: 22px 24px; border-bottom: 1px solid rgba(0,0,0,0.07); background: rgba(247,243,238,0.85); backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 10; }
.subpage .topbar-inner { max-width: 760px; margin: 0 auto; }
.subpage .brand { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 24px; color: var(--ink); text-decoration: none; letter-spacing: -0.5px; }
.subpage .brand span { color: var(--orange); }
body.subpage main { flex: 1; max-width: 760px; width: 100%; margin: 0 auto; padding: 64px 24px 80px; }
.subpage .page-label { display: inline-block; background: var(--tag-bg); color: var(--orange); font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; margin-bottom: 20px; }
.subpage h1.page-title { font-family: 'Nunito', sans-serif; font-size: clamp(30px, 6vw, 44px); font-weight: 900; line-height: 1.2; margin-bottom: 32px; color: var(--ink); }
.subpage h1.page-title span { color: var(--orange); }
.subpage .content { font-size: 16px; line-height: 1.9; color: #444; }
.subpage .content h2 { font-family: 'Nunito', sans-serif; font-size: 20px; font-weight: 900; color: var(--ink); margin: 40px 0 12px; }
.subpage .content p { margin-bottom: 16px; }
.subpage .content a { color: var(--orange); font-weight: 700; text-decoration: none; }
.subpage .content a:hover { text-decoration: underline; }
.subpage .content ul { margin: 0 0 16px 20px; }
.subpage .content li { margin-bottom: 8px; }
.subpage .contact-box { background: var(--card); border-radius: 20px; padding: 28px 30px; box-shadow: 0 2px 16px rgba(0,0,0,0.055); margin-top: 8px; }
.subpage .contact-box .label { font-size: 13px; color: var(--muted); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.subpage .contact-box .email { font-family: 'Nunito', sans-serif; font-size: clamp(20px, 4vw, 28px); font-weight: 900; color: var(--ink); }
.subpage .contact-box .email a { color: var(--ink); text-decoration: none; }
.subpage .contact-box .email a:hover { color: var(--orange); }
.subpage .back-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 48px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 14px; color: var(--orange); text-decoration: none; }
.subpage .back-link:hover { gap: 10px; }
body.subpage footer { border-top: 1px solid rgba(0,0,0,0.08); padding: 28px 24px; text-align: center; }
body.subpage .footer-links { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
body.subpage .footer-links a { font-size: 13px; color: #666; text-decoration: none; transition: color 0.18s; }
body.subpage .footer-links a:hover { color: var(--orange); }
body.subpage .footer-copy { font-size: 13px; color: var(--muted); }
