:root {
    --bg: #FAFAFA;
    --bg-2: #FFFFFF;
    --ink: #0A0A0F;
    --ink-2: #1A1A22;
    --ink-dim: #6B6B75;
    --ink-faint: #B5B5BD;
    --line: #EBEBEF;
    --line-2: #F0F0F4;
    --blue: #3B82F6;
    --blue-soft: #DBEAFE;
    --green: #10B981;
    --green-soft: #D1FAE5;
    --red: #EF4444;
    --red-soft: #FEE2E2;
    --yellow: #FBBF24;
    --yellow-soft: #FEF3C7;
    --purple: #8B5CF6;
    --purple-soft: #EDE9FE;
    --download-bar-space: 128px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
    scroll-behavior: auto;
}
body {
    background: var(--bg);
    color: var(--ink);
    word-break: keep-all;
    overflow-wrap: break-word;
    font-family: 'Pretendard', 'Quicksand', sans-serif;
    font-weight: 500;
    line-height: 1.5;
    overflow-x: hidden;
    padding-bottom: calc(var(--download-bar-space) + env(safe-area-inset-bottom));
    -webkit-font-smoothing: antialiased;
}

/* ==== NAV ==== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    background: rgba(250,250,250,0.85);
    border-bottom: 1px solid var(--line);
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-logo {
    width: 32px; height: 32px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--ink);
    flex-shrink: 0;
}
.nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.nav-textlogo {
    height: 26px;
    width: auto;
    display: block;
}


/* ==== SECTION BASE ==== */
section {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 40px;
    position: relative;
    overflow: hidden;
}

/* ==== HERO ==== */
.hero { text-align: center; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    background: var(--blue-soft);
    border: 1px solid rgba(59,130,246,0.25);
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.2px;
}
.hero-badge-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 0 rgba(59,130,246,0.5);
    animation: badgePulse 1.8s ease-out infinite;
}
@keyframes badgePulse {
    0% { box-shadow: 0 0 0 0 rgba(59,130,246,0.45); }
    100% { box-shadow: 0 0 0 8px rgba(59,130,246,0); }
}
.hero-preview {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 36px;
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: #fff;
    text-align: left;
    box-shadow: 0 18px 40px -14px rgba(59,130,246,0.45);
}
.hero-preview-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
}
.hero-preview-label-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,255,255,0.9);
}
.hero-preview-label-ai {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px; height: 16px;
    background: rgba(255,255,255,0.22);
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
}
.hero-preview-main {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}
.hero-preview-sub {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-top: 4px;
    line-height: 1.5;
}

.hero-logo {
    width: 96px; height: 96px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 12px 32px -8px rgba(0,0,0,0.2);
    background: var(--ink);
}
.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hero h1 {
    font-size: clamp(34px, 7vw, 52px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: var(--ink);
}
.hero h1 .blue { color: var(--blue); }
.hero-sub {
    font-size: 15px;
    color: var(--ink-dim);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 500;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 24px;
    background: var(--ink);
    color: white;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.2s;
}
.hero-cta:hover { transform: translateY(-2px); }
.scroll-hint {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--ink-faint);
    animation: bounce 2s ease-in-out infinite;
    font-weight: 600;
}
@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
    50% { transform: translate(-50%, 8px); opacity: 1; }
}

/* ==== FEATURE SECTION ==== */
.feature-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 480px;
    width: 100%;
}
.feature-text {
    text-align: left;
    padding: 0 8px;
}
.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 100px;
    background: var(--ink);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.feature-badge.soon {
    background: var(--purple);
}
.feature-num {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--ink-faint);
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.feature-h2 {
    font-size: clamp(28px, 5vw, 38px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: var(--ink);
}
.feature-h2 .accent { color: var(--blue); }
.feature-h2 .green-accent { color: var(--green); }
.feature-h2 .red-accent { color: var(--red); }
.feature-h2 .purple-accent { color: var(--purple); }
.feature-desc {
    font-size: 15px;
    color: var(--ink-dim);
    line-height: 1.65;
    margin-bottom: 24px;
}

/* ==== PHONE MOCKUP ==== */
.phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    /*margin: 24px auto 20px;*/
    /*padding: 60px 20px 40px;*/
    width: 100%;
    max-width: 360px;
}

.phone {
    width: 260px;
    height: 520px;
    background: white;
    border-radius: 36px;
    border: 2px solid var(--ink);
    box-shadow:
            0 30px 60px -20px rgba(0,0,0,0.25),
            0 12px 24px -8px rgba(0,0,0,0.12);
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.phone::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--ink);
    border-radius: 4px;
}
.phone-screen {
    width: 100%;
    height: 100%;
    padding: 32px 18px 18px;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.phone-screen.dark {
    background: var(--ink);
    color: white;
}

/* ==== FLOATING ELEMENTS ==== */
.floater {
    position: absolute;
    z-index: 3;
    animation: floatUp 3s ease-in-out infinite;
}
.floater.delay-1 { animation-delay: 0.5s; }
.floater.delay-2 { animation-delay: 1s; }
.floater.delay-3 { animation-delay: 1.5s; }
@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.emoji-floater {
    font-size: 28px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}
.chip {
    background: white;
    padding: 10px 14px;
    border-radius: 100px;
    box-shadow: 0 8px 20px -4px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--line);
}
.chip-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
}
.chip-dot.green { background: var(--green); }
.chip-dot.red { background: var(--red); }
.chip-dot.blue { background: var(--blue); }
.chip-text { color: var(--ink); }
.chip-pct { font-weight: 700; }
.chip-pct.up { color: var(--green); }
.chip-pct.down { color: var(--red); }

/* ==== SCREEN ELEMENTS (ABSTRACTED UI) ==== */
.scr-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.scr-label {
    font-size: 9px;
    color: var(--ink-faint);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.scr-label.light { color: rgba(255,255,255,0.5); }
.scr-icon {
    width: 14px; height: 14px;
    background: var(--line);
    border-radius: 4px;
}
.scr-icon.light { background: rgba(255,255,255,0.15); }
.scr-big-num {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-top: 2px;
}
.scr-big-num.light { color: white; }
.scr-pct {
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
}
.scr-card {
    background: var(--bg);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.scr-card.dark {
    background: rgba(255,255,255,0.05);
}
.scr-mini-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}
.scr-mini-num.light { color: white; }
.scr-mini-label {
    font-size: 9px;
    color: var(--ink-faint);
    font-weight: 600;
}
.scr-mini-label.light { color: rgba(255,255,255,0.5); }
.scr-stock-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8px;
    border-radius: 10px;
    background: var(--bg);
}
.scr-stock-row.dark { background: rgba(255,255,255,0.05); }
.scr-stock-name {
    font-size: 12px;
    font-weight: 700;
}
.scr-stock-name.light { color: white; }
.scr-stock-meta {
    font-size: 9px;
    color: var(--ink-faint);
    margin-top: 2px;
}
.scr-stock-meta.light { color: rgba(255,255,255,0.4); }
.scr-stock-right {
    text-align: right;
}
.scr-stock-val {
    font-size: 11px;
    font-weight: 700;
}
.scr-stock-val.light { color: white; }
.scr-stock-pct {
    font-size: 10px;
    font-weight: 700;
    color: var(--green);
}
.scr-stock-pct.down { color: var(--red); }

/* ==== Bottom bar for phone ==== */
.scr-bottom {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.scr-bottom.dark { border-top-color: rgba(255,255,255,0.08); }
.scr-tab-dot {
    width: 18px; height: 18px;
    border-radius: 6px;
    background: var(--line);
}
.scr-tab-dot.active { background: var(--ink); }
.scr-tab-dot.dark { background: rgba(255,255,255,0.1); }
.scr-tab-dot.dark.active { background: white; }

/* ==== Notification cards (section 2) ==== */
.notif-card {
    background: white;
    padding: 9px 10px;
    border-radius: 12px;
    box-shadow: 0 8px 24px -6px rgba(0,0,0,0.15);
    display: flex;
    align-items: flex-start;
    gap: 7px;
    border: 1px solid var(--line);
    width: 100%;
}
.notif-title {
    font-size: 11px !important;
}
.notif-desc {
    font-size: 9.5px !important;
}
.notif-icon {
    width: 28px; height: 28px;
    background: var(--blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}
.notif-icon.red { background: var(--red); }
.notif-icon.green { background: var(--green); }
.notif-body { flex: 1; }
.notif-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}
.notif-desc {
    font-size: 10px;
    color: var(--ink-dim);
}
.notif-time {
    font-size: 9px;
    color: var(--ink-faint);
    font-weight: 600;
}

/* ==== AI Card (section 5) ==== */
.ai-card {
    background: linear-gradient(135deg, var(--purple), #6366F1);
    padding: 14px;
    border-radius: 16px;
    color: white;
    box-shadow: 0 12px 30px -8px rgba(139,92,246,0.4);
}
.ai-card-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}
.ai-card-text {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
}

/* ==== Currency exchange (section 3) ==== */
.fx-line {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--blue-soft);
    padding: 8px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    width: fit-content;
}
.fx-arrow {
    color: var(--blue);
    font-size: 11px;
}

/* ==== Coin row (section 4) ==== */
.coin-icon {
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}
.coin-icon.btc { background: #F7931A; }
.coin-icon.eth { background: #627EEA; }
.coin-icon.stock { background: var(--ink); }
.coin-icon.bond { background: var(--green); }

/* ==== FINAL CTA SECTION ==== */
.final-section {
    text-align: center;
    padding: 80px 24px 40px;
}
.final-section h2 {
    font-size: clamp(30px, 6vw, 44px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -1.2px;
    margin-bottom: 16px;
}
.final-section h2 .blue { color: var(--blue); }
.final-section p {
    font-size: 15px;
    color: var(--ink-dim);
    margin-bottom: 36px;
}
.final-emojis {
    font-size: 36px;
    margin-bottom: 24px;
    letter-spacing: 8px;
}
footer {
    min-height: 24vh;
    padding: 52px 24px calc(var(--download-bar-space) + env(safe-area-inset-bottom));
    text-align: center;
    color: var(--ink-faint);
    font-size: 12px;
    line-height: 1.8;
    border-top: 1px solid var(--line);
}
footer .links {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
footer a {
    color: var(--ink-dim);
    text-decoration: none;
}
footer a:hover { color: var(--ink); }

/* ==== LEGAL PAGES ==== */
body.static-page section {
    min-height: auto;
    display: block;
    overflow: visible;
}
.legal-section {
    padding: 150px 24px 72px;
    background: var(--bg);
}
.legal-wrap {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 44px 32px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--bg-2);
    box-shadow: 0 18px 50px -32px rgba(10,10,15,0.25);
}
.legal-kicker {
    margin-bottom: 10px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}
.legal-section h1 {
    margin-bottom: 12px;
    color: var(--ink);
    font-size: clamp(30px, 6vw, 44px);
    font-weight: 800;
    line-height: 1.2;
}
.legal-updated,
.legal-intro {
    margin-bottom: 32px;
    color: var(--ink-faint);
    font-size: 13px;
}
.legal-intro {
    color: var(--ink-dim);
    font-size: 15px;
    line-height: 1.75;
}
.legal-content {
    color: var(--ink-dim);
    font-size: 15px;
    line-height: 1.8;
}
.legal-article {
    padding: 24px 0;
    border-top: 1px solid var(--line-2);
}
.legal-article:first-child {
    border-top: 0;
    padding-top: 0;
}
.legal-content h2 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
}
.legal-content p {
    margin-bottom: 12px;
}
.legal-content ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 18px;
}
.legal-content li {
    padding-left: 2px;
}
.legal-back {
    display: inline-flex;
    margin-top: 28px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

@media (max-width: 640px) {
    .legal-section {
        padding: 130px 18px 56px;
    }
    .legal-wrap {
        padding: 34px 22px;
        border-radius: 18px;
    }
}


/* Tiny decorative icons */
.deco-icon {
    position: absolute;
    z-index: 3;
    animation: floatUp 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}
.deco-icon.delay-1 { animation-delay: 0.6s; }
.deco-icon.delay-2 { animation-delay: 1.2s; }
.deco-icon.delay-3 { animation-delay: 1.8s; }
.deco-circle {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 6px 16px -4px rgba(0,0,0,0.12);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
}
.deco-circle.blue { background: var(--blue-soft); border-color: var(--blue); }
.deco-circle.green { background: var(--green-soft); border-color: var(--green); }
.deco-circle.purple { background: var(--purple-soft); border-color: var(--purple); }
.deco-circle.dark { background: var(--ink); border-color: var(--ink); }
.deco-dot-cluster {
    display: flex;
    gap: 4px;
}
.deco-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--blue);
}
.deco-dot.g { background: var(--green); }
.deco-dot.r { background: var(--red); }
.deco-dot.p { background: var(--purple); }
.deco-spark {
    color: var(--ink-faint);
    font-size: 14px;
    font-weight: 700;
}


/* ==== LIVE TICKER (Hero 상단) ==== */
.live-ticker {
    position: fixed;
    top: 56px;
    left: 0; right: 0;
    z-index: 49;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    overflow: hidden;
}
.ticker-track {
    display: flex;
    gap: 32px;
    white-space: nowrap;
    animation: ticker-scroll 30s linear infinite;
    width: max-content;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
}
.ticker-item .t-name {
    color: var(--ink-dim);
    font-weight: 500;
}
.ticker-item .t-val {
    color: var(--ink);
    font-weight: 700;
}
.ticker-item .t-pct {
    font-weight: 700;
}
.ticker-item .t-pct.up { color: var(--green); }
.ticker-item .t-pct.down { color: var(--red); }
.ticker-item .t-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.5); }
}
/* Hero 상단 여백 추가 (티커 자리 확보) */
.hero { padding-top: 140px !important; }

/* ==== 카운터 애니메이션 ==== */
.counter {
    font-variant-numeric: tabular-nums;
    transition: color 0.3s;
}
.counter.counting {
    color: var(--green);
}

/* ==== Feature 2 알림 카드 슬라이드인 ==== */
.notif-card {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.feature-section.active .notif-card {
    opacity: 1;
    transform: translateX(0);
}
.feature-section.active .notif-card:nth-of-type(1) { transition-delay: 0.12s; }
.feature-section.active .notif-card:nth-of-type(2) { transition-delay: 0.24s; }
.feature-section.active .notif-card:nth-of-type(3) { transition-delay: 0.36s; }

/* ==== Feature 3 환율 회전 ==== */
.fx-line {
    overflow: hidden;
    position: relative;
}
.fx-flip {
    display: inline-block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-section.active .fx-flip {
    animation: fxFlash 2s ease-in-out infinite;
}
@keyframes fxFlash {
    0%, 100% { transform: translateY(0); opacity: 1; }
    45% { transform: translateY(-12px); opacity: 0; }
    55% { transform: translateY(12px); opacity: 0; }
}

/* ==== Feature 5 AI 타이핑 효과 ==== */
.ai-typing {
    border-right: 2px solid white;
    animation: blink 0.8s step-end infinite;
}
@keyframes blink {
    50% { border-color: transparent; }
}

/* ==== Feature 4 자산 카드 하나씩 ==== */
.feature-section .scr-stock-row {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.feature-section.active .scr-stock-row {
    opacity: 1;
    transform: translateY(0);
}
.feature-section.active .scr-stock-row:nth-of-type(1) { transition-delay: 0.08s; }
.feature-section.active .scr-stock-row:nth-of-type(2) { transition-delay: 0.16s; }
.feature-section.active .scr-stock-row:nth-of-type(3) { transition-delay: 0.24s; }
.feature-section.active .scr-stock-row:nth-of-type(4) { transition-delay: 0.32s; }

/* ==== FIXED DOWNLOAD BAR ==== */
.download-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--line);
    padding: 12px 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    box-shadow: 0 -8px 30px -12px rgba(0,0,0,0.12);
}
.dl-headline {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.3px;
}
.dl-headline .free-tag {
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 100px;
}
.dl-headline .pulse-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(16,185,129,0.5);
    animation: dlpulse 1.8s ease-out infinite;
}
@keyframes dlpulse {
    0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.45); }
    100% { box-shadow: 0 0 0 9px rgba(16,185,129,0); }
}
.dl-btn-row { display: flex; gap: 10px; width: 100%; justify-content: center; }
.dl-btn {
    flex: 1;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1A1A22, #0A0A0F);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 18px -6px rgba(10,10,15,0.4);
}
.dl-btn::after {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 60%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-20deg);
    animation: dlshine 3.5s ease-in-out infinite;
}
@keyframes dlshine {
    0%, 100% { left: -120%; }
    50% { left: 130%; }
}
.dl-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -6px rgba(10,10,15,0.5); }
.dl-btn:active { transform: scale(0.97); }
.dl-btn.secondary {
    background: white;
    color: var(--ink);
    border-color: var(--line);
    box-shadow: 0 6px 18px -8px rgba(0,0,0,0.18);
}
.dl-btn.secondary::after { display: none; }
.dl-btn svg { width: 18px; height: 18px; flex-shrink: 0; position: relative; z-index: 1; }
.dl-btn .dl-btn-text { position: relative; z-index: 1; }
.dl-btn .label-sub {
    font-size: 9px;
    opacity: 0.7;
    font-weight: 500;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}
.dl-btn .label-main {
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
}
.dl-btn-text { text-align: left; }
