@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css');

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

:root {
    --p: #6d5ef5;
    --p2: #a78bfa;
    --p-deep: #4f3fd4;
    --cyan: #06b6d4;
    --green: #10b981;
    --amber: #f59e0b;
    --red: #ef4444;
    --pink: #ec4899;
    --ink: #0a0a16;
    --ink2: #2d2d44;
    --ink3: #555570;
    --muted: #8a8aab;
    --line: rgba(15,15,30,0.06);
    --line2: rgba(15,15,30,0.1);
    --surface: #ffffff;
    --surface-2: #fafaff;
    --surface-3: #f4f4fb;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fff;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.5;
}

/* ── Global noise overlay ── */
.noise {
    position: fixed; inset: 0; z-index: 200; pointer-events: none; opacity: .35;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    mix-blend-mode: multiply;
}

/* ── NAV ── */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: 64px; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--line);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
    width: 32px; height: 32px; border-radius: 9px;
    background: linear-gradient(135deg, #6d5ef5 0%, #a78bfa 60%, #06b6d4 100%);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px;
    box-shadow: 0 4px 12px rgba(109,94,245,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
}
.logo-text { font-size: 16px; font-weight: 800; color: var(--ink); letter-spacing: -0.5px; }
.nav-right { display: flex; align-items: center; gap: 4px; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link { font-size: 13px; color: var(--ink3); text-decoration: none; padding: 8px 14px; border-radius: 8px; font-weight: 500; transition: color .2s, background .2s; }
.nav-link:hover { color: var(--ink); background: var(--surface-3); }
.nav-sep { width: 1px; height: 16px; background: var(--line2); margin: 0 6px; }
.nav-cta {
    position: relative;
    background: linear-gradient(135deg, #6d5ef5, #8b7af5);
    color: #fff; border: none; border-radius: 9px;
    padding: 9px 20px; font-size: 13px; font-weight: 700;
    cursor: pointer; font-family: inherit;
    box-shadow: 0 4px 14px rgba(109,94,245,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
    transition: transform .15s, box-shadow .15s;
    overflow: hidden;
}
.nav-cta::after {
    content:''; position:absolute; top:0; left:-100%; width:60%; height:100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer { 0%{left:-100%} 50%,100%{left:160%} }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(109,94,245,0.45); }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 2rem 80px;
    position: relative; overflow: hidden;
    background: #fff;
}

.mesh-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.mesh-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; }
.mb-1 { width: 700px; height: 600px; top: -250px; left: -80px; background: radial-gradient(ellipse, rgba(109,94,245,0.25) 0%, transparent 65%); animation: bf 14s ease-in-out infinite; }
.mb-2 { width: 600px; height: 500px; top: -100px; right: -100px; background: radial-gradient(ellipse, rgba(6,182,212,0.18) 0%, transparent 65%); animation: bf 16s ease-in-out infinite reverse; }
.mb-3 { width: 500px; height: 400px; bottom: -150px; left: 25%; background: radial-gradient(ellipse, rgba(236,72,153,0.12) 0%, transparent 65%); animation: bf 12s ease-in-out infinite; }
@keyframes bf { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(40px,-30px) scale(1.08); } 66% { transform: translate(-30px,40px) scale(.95); } }

.hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(15,15,30,0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, black 0%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 40%, black 0%, transparent 100%);
}

.hero-inner {
    max-width: 1180px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px;
    align-items: center; position: relative; z-index: 1;
}

.announce {
    display: inline-flex; align-items: center; gap: 0;
    background: #fff;
    border: 1px solid var(--line2);
    border-radius: 100px;
    padding: 4px 4px 4px 14px;
    margin-bottom: 28px;
    font-size: 12px; font-weight: 600; color: var(--ink2);
    box-shadow: 0 2px 8px rgba(15,15,30,0.04);
    text-decoration: none;
    transition: transform .2s;
}
.announce:hover { transform: translateY(-1px); }
.announce-tag {
    background: linear-gradient(135deg, #6d5ef5, #06b6d4);
    color: #fff;
    font-size: 10px; font-weight: 800;
    padding: 4px 10px; border-radius: 100px;
    margin-left: 10px;
    letter-spacing: 0.5px;
}
.announce-arrow { margin-left: 8px; color: var(--p); font-size: 14px; transition: transform .2s; }
.announce:hover .announce-arrow { transform: translateX(3px); }

.hero-title { font-size: 72px; font-weight: 900; color: var(--ink); letter-spacing: -4px; line-height: 1.02; margin-bottom: 28px; }
.hero-hl {
    background: linear-gradient(110deg, #6d5ef5 0%, #a78bfa 30%, #06b6d4 60%, #10b981 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: gradient-shift 8s ease-in-out infinite;
    position: relative;
}
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-desc { font-size: 17px; color: var(--ink3); line-height: 1.7; margin-bottom: 36px; max-width: 480px; }

.hero-btns { display: flex; gap: 10px; margin-bottom: 28px; }

.btn-main {
    position: relative; overflow: hidden;
    background: linear-gradient(135deg, #6d5ef5 0%, #8b7af5 100%);
    color: #fff; border: none; border-radius: 12px;
    padding: 16px 30px; font-size: 14px; font-weight: 700;
    cursor: pointer; font-family: inherit;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 28px rgba(109,94,245,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
}
.btn-main::before {
    content:''; position:absolute; inset:0;
    background: linear-gradient(135deg, #8b7af5 0%, #06b6d4 100%);
    opacity: 0; transition: opacity .25s;
}
.btn-main::after {
    content:''; position:absolute; top:0; left:-100%; width:50%; height:100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s ease-in-out infinite;
}
.btn-main > * { position: relative; z-index: 1; }
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(109,94,245,0.45); }
.btn-main:hover::before { opacity: 1; }

.btn-ghost {
    background: #fff; color: var(--ink2);
    border: 1px solid var(--line2);
    border-radius: 12px;
    padding: 16px 26px; font-size: 14px; font-weight: 600;
    cursor: pointer; font-family: inherit;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(15,15,30,0.04);
    transition: border-color .2s, box-shadow .2s, transform .15s;
}
.btn-ghost:hover { border-color: var(--p); color: var(--p); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(109,94,245,0.12); }

.hero-note { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 14px; }
.hero-note-item { display: flex; align-items: center; gap: 5px; }
.hero-note i { color: var(--green); font-size: 14px; }

/* ── HERO MOCK ── */
.hero-right { position: relative; }

.mock-wrap {
    position: relative;
    transform: perspective(1400px) rotateY(-6deg) rotateX(3deg);
    transform-style: preserve-3d;
    transition: transform .4s ease;
}
.mock-wrap:hover { transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); }

.mock-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 24px; padding: 24px;
    box-shadow:
        0 32px 80px -20px rgba(109,94,245,0.25),
        0 12px 36px rgba(15,15,30,0.08),
        inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative; overflow: hidden;
}
.mock-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #6d5ef5 0%, #a78bfa 25%, #06b6d4 60%, #10b981 100%);
    background-size: 200% 100%;
    animation: gradient-shift 6s ease-in-out infinite;
}

.mock-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; padding-top: 4px; }
.mock-stock { display: flex; align-items: center; gap: 12px; }
.mock-ticker {
    width: 42px; height: 42px; border-radius: 12px;
    background: linear-gradient(135deg, #6d5ef5, #a78bfa);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800; color: #fff;
    box-shadow: 0 6px 16px rgba(109,94,245,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}
.mock-name { font-size: 15px; font-weight: 700; color: var(--ink); }
.mock-sub { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.mock-price-wrap { text-align: right; }
.mock-price { font-size: 24px; font-weight: 900; color: var(--ink); letter-spacing: -1px; }
.mock-change { font-size: 12px; font-weight: 700; color: var(--green); display: inline-flex; align-items: center; gap: 2px; }
.mock-change i { font-size: 14px; }

.live-dot {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 10px; font-weight: 700; color: var(--green);
    padding: 3px 8px; border-radius: 100px;
    background: rgba(16,185,129,0.1);
    margin-left: 8px;
}
.live-dot::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green);
    animation: livepulse 1.5s ease-in-out infinite;
}
@keyframes livepulse { 0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.5); } 50% { opacity: .6; box-shadow: 0 0 0 4px rgba(16,185,129,0); } }

.mock-chart { margin-bottom: 18px; position: relative; }
.mock-chart svg { width: 100%; height: 90px; }
.chart-path { fill: none; stroke: url(#cg); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: draw 2.5s ease-out forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.chart-fill { fill: url(#cfg); opacity: 0; animation: fadein 1.5s ease 1.5s forwards; }
@keyframes fadein { to { opacity: 0.4; } }
.chart-dot {
    fill: #6d5ef5; stroke: #fff; stroke-width: 3;
    filter: drop-shadow(0 4px 8px rgba(109,94,245,0.4));
    opacity: 0; animation: fadein 0.5s ease 2s forwards;
}

.mock-signals { display: flex; flex-direction: column; gap: 10px; }
.mock-signal {
    display: flex; align-items: center; gap: 11px;
    background: var(--surface-2); border-radius: 12px;
    padding: 11px 13px; border: 1px solid var(--line);
    transition: border-color .25s, transform .25s;
}
.mock-signal:hover { border-color: rgba(109,94,245,0.25); transform: translateX(4px); }
.sig-icon {
    width: 32px; height: 32px; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}
.sig-icon.green { background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05)); color: var(--green); }
.sig-icon.amber { background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.05)); color: var(--amber); }
.sig-icon.purple { background: linear-gradient(135deg, rgba(109,94,245,0.15), rgba(109,94,245,0.05)); color: var(--p); }
.sig-text { flex: 1; }
.sig-title { font-size: 12.5px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.sig-desc { font-size: 11px; color: var(--muted); margin-top: 2px; }
.sig-badge { font-size: 10px; font-weight: 800; padding: 4px 9px; border-radius: 6px; flex-shrink: 0; letter-spacing: 0.3px; }
.sig-badge.green { background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.08)); color: var(--green); }
.sig-badge.amber { background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.08)); color: var(--amber); }
.sig-badge.purple { background: linear-gradient(135deg, rgba(109,94,245,0.15), rgba(109,94,245,0.08)); color: var(--p); }

.float-card {
    position: absolute;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 14px; padding: 12px 16px;
    box-shadow: 0 12px 32px rgba(109,94,245,0.18), inset 0 1px 0 rgba(255,255,255,0.6);
    z-index: 2;
}
.fc-1 { top: -20px; left: -48px; animation: fc1 6s ease-in-out infinite; }
.fc-2 { bottom: 80px; right: -50px; animation: fc2 7s ease-in-out infinite; }
.fc-3 { top: 50%; right: -70px; animation: fc3 8s ease-in-out infinite; }
@keyframes fc1 { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-10px) rotate(-3deg); } }
@keyframes fc2 { 0%,100% { transform: translateY(0) rotate(2deg); } 50% { transform: translateY(10px) rotate(2deg); } }
@keyframes fc3 { 0%,100% { transform: translateY(-50%) rotate(-1deg); } 50% { transform: translateY(calc(-50% - 8px)) rotate(-1deg); } }
.fc-label { font-size: 10px; color: var(--muted); margin-bottom: 4px; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.fc-label i { font-size: 11px; }
.fc-val { font-size: 16px; font-weight: 900; letter-spacing: -0.5px; }
.fc-val.green { color: var(--green); }
.fc-val.red { color: var(--red); }
.fc-val.gradient { background: linear-gradient(135deg, #6d5ef5, #06b6d4); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }

/* ── STATS ── */
.stats {
    padding: 50px 2rem;
    background: linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
    border-top: 1px solid var(--line);
    position: relative;
}
.stats-inner {
    max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 0;
}
.stat-item { padding: 24px 36px; text-align: left; border-right: 1px solid var(--line); display: flex; align-items: center; gap: 18px; }
.stat-item:last-child { border-right: none; }
.stat-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; flex-shrink: 0;
}
.stat-icon.purple { background: linear-gradient(135deg, rgba(109,94,245,0.12), rgba(109,94,245,0.04)); color: var(--p); }
.stat-icon.green { background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.04)); color: var(--green); }
.stat-icon.cyan { background: linear-gradient(135deg, rgba(6,182,212,0.12), rgba(6,182,212,0.04)); color: var(--cyan); }
.stat-num { font-size: 22px; font-weight: 900; letter-spacing: -1px; color: var(--ink); margin-bottom: 2px; }
.stat-label { font-size: 12.5px; color: var(--muted); }

/* ── SECTION COMMON ── */
.sec-inner { max-width: 1180px; margin: 0 auto; }
.sec-header { text-align: center; margin-bottom: 48px; }
.sec-label {
    display: inline-block;
    font-size: 10.5px; font-weight: 800; color: var(--p);
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
    padding: 4px 11px; border-radius: 100px;
    background: linear-gradient(135deg, rgba(109,94,245,0.08), rgba(6,182,212,0.06));
    border: 1px solid rgba(109,94,245,0.15);
}
.sec-title { font-size: 34px; font-weight: 900; color: var(--ink); letter-spacing: -1.5px; line-height: 1.2; margin-bottom: 12px; }
.sec-title-hl {
    background: linear-gradient(110deg, #6d5ef5, #06b6d4);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.sec-desc { font-size: 16px; color: var(--ink3); max-width: 520px; margin: 0 auto; line-height: 1.65; }

/* ── BENTO FEATURES ── */
.features { padding: 90px 2rem; background: #fff; position: relative; overflow: hidden; }
.features::before {
    content:''; position: absolute; top: 200px; left: -200px; width: 500px; height: 500px;
    background: radial-gradient(ellipse, rgba(109,94,245,0.06) 0%, transparent 65%);
    border-radius: 50%; filter: blur(60px); pointer-events: none;
}
.features::after {
    content:''; position: absolute; bottom: 100px; right: -200px; width: 500px; height: 500px;
    background: radial-gradient(ellipse, rgba(6,182,212,0.05) 0%, transparent 65%);
    border-radius: 50%; filter: blur(60px); pointer-events: none;
}

.bento {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    position: relative; z-index: 1;
}
.bento-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px; padding: 32px;
    position: relative; overflow: hidden;
    transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s, border-color .3s;
}
.bento-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(109,94,245,0.3), transparent);
    opacity: 0; transition: opacity .3s;
}
.bento-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -12px rgba(109,94,245,0.15); border-color: rgba(109,94,245,0.2); }
.bento-card:hover::before { opacity: 1; }

.bc-hero { grid-column: span 2; grid-row: span 1; background: linear-gradient(160deg, #fff 0%, #fafaff 100%); }
.bc-news { grid-column: span 1; grid-row: span 2; background: linear-gradient(160deg, #fff 0%, rgba(109,94,245,0.04) 100%); }
.bc-fin { background: linear-gradient(160deg, #fff 0%, rgba(16,185,129,0.04) 100%); }
.bc-earn { background: linear-gradient(160deg, #fff 0%, rgba(245,158,11,0.04) 100%); }

.bc-icon {
    width: 48px; height: 48px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 18px;
    position: relative;
}
.bc-icon.purple { background: linear-gradient(135deg, rgba(109,94,245,0.15), rgba(109,94,245,0.05)); color: var(--p); border: 1px solid rgba(109,94,245,0.15); }
.bc-icon.green { background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.05)); color: var(--green); border: 1px solid rgba(16,185,129,0.15); }
.bc-icon.cyan { background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(6,182,212,0.05)); color: var(--cyan); border: 1px solid rgba(6,182,212,0.15); }
.bc-icon.amber { background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(245,158,11,0.05)); color: var(--amber); border: 1px solid rgba(245,158,11,0.15); }

.bc-title { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.5px; }
.bc-desc { font-size: 14px; color: var(--ink3); line-height: 1.65; margin-bottom: 20px; }

.report-preview {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
    margin-top: 8px;
}
.rp-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.rp-score-wrap { display: flex; align-items: center; gap: 12px; }
.rp-score {
    width: 56px; height: 56px; border-radius: 50%;
    background: conic-gradient(from 0deg, #10b981 0%, #10b981 72%, rgba(0,0,0,0.05) 72%, rgba(0,0,0,0.05) 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.rp-score::before {
    content:''; position:absolute; inset: 5px; background: #fff; border-radius: 50%;
}
.rp-score-num { font-size: 16px; font-weight: 900; color: var(--ink); position: relative; }
.rp-score-meta { font-size: 11px; color: var(--muted); margin-bottom: 2px; font-weight: 600; }
.rp-score-label { font-size: 13px; font-weight: 800; color: var(--green); }
.rp-tag { font-size: 10px; font-weight: 800; color: var(--p); padding: 4px 10px; border-radius: 100px; background: rgba(109,94,245,0.08); border: 1px solid rgba(109,94,245,0.15); }
.rp-summary { font-size: 12px; color: var(--ink2); line-height: 1.55; padding: 10px 12px; background: #fff; border-radius: 10px; border: 1px solid var(--line); margin-bottom: 10px; }
.rp-pros { display: flex; gap: 6px; flex-wrap: wrap; }
.rp-chip { font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 6px; display: inline-flex; align-items: center; gap: 4px; }
.rp-chip.pos { background: rgba(16,185,129,0.1); color: var(--green); }
.rp-chip.neg { background: rgba(239,68,68,0.08); color: var(--red); }

.news-preview { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.news-item {
    padding: 12px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 11px;
    position: relative;
}
.news-tag { display: inline-block; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 5px; margin-bottom: 6px; letter-spacing: 0.3px; }
.news-tag.pos { background: linear-gradient(135deg, rgba(16,185,129,0.15), rgba(16,185,129,0.08)); color: var(--green); }
.news-tag.neg { background: linear-gradient(135deg, rgba(239,68,68,0.12), rgba(239,68,68,0.06)); color: var(--red); }
.news-tag.neu { background: rgba(15,15,30,0.05); color: var(--ink3); }
.news-title { font-size: 12px; color: var(--ink2); line-height: 1.45; font-weight: 500; }
.news-time { font-size: 10px; color: var(--muted); margin-top: 5px; display: flex; align-items: center; gap: 3px; }

.fin-preview {
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    margin-top: 6px;
}
.fin-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--line); font-size: 12px; }
.fin-row:last-child { border-bottom: none; }
.fin-label { color: var(--muted); font-weight: 500; }
.fin-val-wrap { display: flex; align-items: center; gap: 8px; }
.fin-val { font-weight: 800; color: var(--ink); }
.fin-growth { font-size: 10px; font-weight: 700; color: var(--green); padding: 2px 6px; border-radius: 5px; background: rgba(16,185,129,0.1); display: inline-flex; align-items: center; gap: 1px; }

.earn-preview {
    display: flex; align-items: center; gap: 14px;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px;
    margin-top: 6px;
}
.earn-date {
    width: 56px; height: 60px; border-radius: 11px;
    background: linear-gradient(135deg, #6d5ef5, #a78bfa);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: #fff; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(109,94,245,0.3);
}
.earn-month { font-size: 9px; font-weight: 700; opacity: 0.85; letter-spacing: 1px; text-transform: uppercase; }
.earn-day { font-size: 22px; font-weight: 900; letter-spacing: -1px; }
.earn-info { flex: 1; }
.earn-title { font-size: 13px; font-weight: 800; color: var(--ink); }
.earn-meta { font-size: 11px; color: var(--muted); margin-top: 3px; }
.earn-stats { display: flex; gap: 12px; margin-top: 7px; font-size: 11px; }
.earn-stat-label { color: var(--muted); }
.earn-stat-val { font-weight: 800; color: var(--green); }

/* ── PLANS ── */
.plans {
    padding: 90px 2rem;
    background: linear-gradient(180deg, var(--surface-2) 0%, #fff 100%);
    position: relative;
    border-top: 1px solid var(--line);
}

.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 920px; margin: 0 auto; }
.plan-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px; padding: 36px;
    box-shadow: 0 4px 20px rgba(15,15,30,0.04);
    position: relative;
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(15,15,30,0.08); }
.plan-card.premium {
    background: linear-gradient(160deg, #fff 0%, rgba(109,94,245,0.04) 100%);
    border: 1px solid rgba(109,94,245,0.2);
    box-shadow: 0 12px 36px rgba(109,94,245,0.12);
    position: relative; overflow: hidden;
}
.plan-card.premium::before {
    content:''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #6d5ef5, #a78bfa, #06b6d4);
}
.plan-card.premium::after {
    content: '추천'; position: absolute; top: 20px; right: 20px;
    background: linear-gradient(135deg, #6d5ef5, #a78bfa);
    color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 1px;
    padding: 5px 12px; border-radius: 100px;
    box-shadow: 0 4px 12px rgba(109,94,245,0.3);
}

.plan-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 800; padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; letter-spacing: 0.3px; }
.plan-badge.free { background: var(--surface-3); color: var(--ink3); }
.plan-badge.prem { background: linear-gradient(135deg, rgba(109,94,245,0.12), rgba(167,139,250,0.08)); color: var(--p); border: 1px solid rgba(109,94,245,0.2); }

.plan-name { font-size: 26px; font-weight: 900; color: var(--ink); margin-bottom: 6px; letter-spacing: -1px; }
.plan-tagline { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.plan-divider { height: 1px; background: var(--line); margin-bottom: 20px; }

.plan-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.plan-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink2); line-height: 1.55; }
.plan-list li i { font-size: 17px; flex-shrink: 0; margin-top: 1px; }
.plan-list li i.ok { color: var(--green); }
.plan-list li i.lim { color: var(--muted); }
.plan-list li.limit { color: var(--muted); }
.plan-list li b { color: var(--ink); font-weight: 700; }

.plan-divider--cta { margin-top: auto; }

.plan-price { font-size: 22px; font-weight: 900; color: var(--ink); margin: 20px 0 14px; letter-spacing: -0.5px; }
.plan-price span { color: var(--p); }

.plan-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 14px;
    border-radius: 14px; font-size: 15px; font-weight: 700;
    cursor: pointer; border: none; font-family: inherit;
    transition: all 0.22s; text-decoration: none;
}
.plan-btn--free { background: var(--surface-3); color: var(--ink2); }
.plan-btn--free:hover { background: var(--surface-2); color: var(--p); transform: translateY(-1px); }
.plan-btn--premium {
    background: linear-gradient(135deg, var(--p), var(--p2));
    color: #fff;
    box-shadow: 0 8px 24px rgba(109,94,245,0.35);
}
.plan-btn--premium:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(109,94,245,0.45); }

.plan-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 12px; }

/* ── HOW ── */
.how { padding: 90px 2rem; background: #fff; position: relative; overflow: hidden; }
.how::before {
    content:''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse, rgba(109,94,245,0.05) 0%, transparent 60%);
    border-radius: 50%; filter: blur(60px); pointer-events: none;
}

.steps-wrap { position: relative; max-width: 980px; margin: 0 auto; }
.steps-line {
    position: absolute; top: 38px; left: 12%; right: 12%; height: 2px;
    background: linear-gradient(90deg, rgba(109,94,245,0.2), rgba(6,182,212,0.2), rgba(16,185,129,0.2));
    z-index: 0;
}

.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; position: relative; z-index: 1; }
.step { text-align: center; padding: 0 16px; opacity: 0; transform: translateY(28px); transition: opacity .65s, transform .65s; }
.step.visible { opacity: 1; transform: translateY(0); }
.step-icon-wrap { position: relative; display: inline-block; margin-bottom: 24px; }
.step-icon {
    width: 76px; height: 76px; border-radius: 22px;
    background: linear-gradient(135deg, #fff, var(--surface-2));
    border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; color: var(--p);
    box-shadow: 0 12px 32px rgba(109,94,245,0.12), inset 0 1px 0 rgba(255,255,255,1);
    position: relative; z-index: 1;
}
.step-num {
    position: absolute; top: -8px; right: -8px;
    width: 26px; height: 26px; border-radius: 50%;
    background: linear-gradient(135deg, #6d5ef5, #a78bfa);
    color: #fff; font-size: 11px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(109,94,245,0.4);
    z-index: 2;
}
.step-title { font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 10px; letter-spacing: -0.4px; }
.step-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ── CTA ── */
.cta { padding: 0; position: relative; overflow: hidden; }
.cta-card {
    max-width: 980px; margin: 56px auto; padding: 56px 2rem;
    text-align: center;
    background: linear-gradient(135deg, #6d5ef5 0%, #8b7af5 50%, #06b6d4 100%);
    border-radius: 24px;
    position: relative; overflow: hidden;
    box-shadow: 0 24px 60px -20px rgba(109,94,245,0.4);
}
.cta-card::before {
    content:''; position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 24px 24px; pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.cta-card::after {
    content:''; position: absolute; top: -150px; right: -80px;
    width: 380px; height: 380px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.12) 0%, transparent 65%);
    border-radius: 50%; filter: blur(40px); pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 520px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.cta-pill {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10.5px; font-weight: 800; color: #fff;
    padding: 5px 12px; border-radius: 100px;
    background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 18px; letter-spacing: 1px;
    backdrop-filter: blur(8px);
}
.cta-title { font-size: 34px; font-weight: 900; color: #fff; letter-spacing: -1.5px; line-height: 1.2; margin-bottom: 14px; }
.cta-desc { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 28px; }
.btn-cta-white {
    position: relative; overflow: hidden;
    background: #fff; color: var(--p); border: none; border-radius: 11px;
    padding: 13px 28px; font-size: 14px; font-weight: 800;
    cursor: pointer; font-family: inherit;
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,0.24); }
.cta-note { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 14px; }
.cta-note a { color: #fff; text-decoration: none; font-weight: 700; }
.cta-note a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer { padding: 36px 2rem; background: #fff; border-top: 1px solid var(--line); }
.foot-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.foot-logo { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; color: var(--ink3); }
.foot-links { display: flex; gap: 28px; }
.foot-links a { font-size: 12.5px; color: var(--muted); text-decoration: none; transition: color .2s; }
.foot-links a:hover { color: var(--ink); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 64px; }
    .hero-right { max-width: 480px; margin: 0 auto; }
    .hero-title { font-size: 56px; }
    .bento { grid-template-columns: 1fr 1fr; }
    .bc-hero { grid-column: span 2; }
    .bc-news { grid-column: span 1; grid-row: auto; }
    .stat-item { padding: 20px 24px; gap: 14px; }
}
@media (max-width: 640px) {
    .nav-menu { display: none; }
    .hero { padding: 80px 1.25rem 60px; }
    .hero-title { font-size: 40px; letter-spacing: -2px; }
    .hero-desc { font-size: 15px; }
    .sec-title { font-size: 28px; letter-spacing: -1px; }
    .cta-title { font-size: 28px; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .btn-main, .btn-ghost { justify-content: center; }
    .bento { grid-template-columns: 1fr; }
    .bc-hero, .bc-news { grid-column: span 1; }
    .bento-card { padding: 20px; }
    .plan-grid { grid-template-columns: 1fr; }
    .plan-card { padding: 24px; }
    .stats-inner { grid-template-columns: 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--line); }
    .stat-item:last-child { border-bottom: none; }
    .steps { grid-template-columns: 1fr; }
    .steps-line { display: none; }
    .float-card { display: none; }
    .mock-wrap { transform: none; }
    .hero-note { flex-wrap: wrap; gap: 10px; }
    .features, .plans, .how { padding: 60px 1.25rem; }
    .cta-card { margin: 32px 1.25rem; padding: 40px 1.25rem; border-radius: 20px; }
    .foot-inner { flex-direction: column; gap: 16px; text-align: center; }
    .foot-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
