*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        :root {
            --bg: #080C12;
            --bg-card: #161E28;
            --bg-elevated: #1E2A36;
            --border: #1E2A36;
            --text: #F0F2F5;
            --text-secondary: #A0B0C0;
            --text-muted: #8494A7;
            --cyan: #22D3EE;
            --cyan-dim: rgba(34,211,238,0.12);
            --amber: #F59E0B;
            --amber-dim: rgba(245,158,11,0.12);
            --emerald: #34D399;
            --emerald-dim: rgba(52,211,153,0.12);
            --blue: #3B82F6;
            --blue-dim: rgba(59,130,246,0.12);
            --green: #22c55e;
        }
        html { scroll-behavior: smooth; }
        body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
        h1, h2, h3 { font-family: 'Urbanist', sans-serif; }
        .section-label { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
        .section-heading { font-size: 2.4rem; font-weight: 900; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 16px; }
        .section-sub { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; max-width: 600px; }
        .section-sub.center { margin: 0 auto; }

        .hp-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 10px 0; transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s; }
        .hp-nav.scrolled { background: rgba(8,12,18,0.88); backdrop-filter: blur(24px) saturate(180%); -webkit-backdrop-filter: blur(24px) saturate(180%); border-bottom: 1px solid rgba(30,42,54,0.6); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
        .hp-nav .container { display: flex; align-items: center; justify-content: space-between; }
        .hp-nav-brand { text-decoration: none; display: flex; align-items: center; gap: 10px; }
        .hp-nav-brand-text { font-family: 'Urbanist', sans-serif; font-weight: 800; font-size: 1.1rem; letter-spacing: -0.02em; color: var(--text); }
        .hp-nav-brand-text .swap { color: var(--cyan); }
        .hp-nav-brand-text .ai { font-size: 0.44em; font-weight: 700; color: #67E8F9; position: relative; top: 0.05em; margin-left: 0.12em; }
        .hp-nav-links { display: flex; align-items: center; gap: 28px; }
        .hp-nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; font-family: 'Plus Jakarta Sans', sans-serif; }
        .hp-nav-links a:hover { color: var(--text); }
        .hp-nav-cta { background: var(--cyan); color: #000 !important; padding: 9px 22px; border-radius: 8px; font-weight: 700 !important; font-size: 0.85rem; text-decoration: none; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif; }
        .hp-nav-cta:hover { background: #06B6D4; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(34,211,238,0.3); }
        .hp-mobile-toggle { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 4px; }
        .hp-mobile-panel { display: none; }
        @media (max-width: 768px) {
            .hp-nav-links { display: none; }
            .hp-mobile-toggle { display: block; }
            .hp-mobile-panel.open { display: flex; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: rgba(8,12,18,0.98); backdrop-filter: blur(20px); padding: 80px 28px 28px; gap: 20px; z-index: 199; border-left: 1px solid var(--border); }
            .hp-mobile-panel a { color: var(--text-secondary); text-decoration: none; font-size: 1rem; font-weight: 500; padding: 8px 0; font-family: 'Plus Jakarta Sans', sans-serif; }
            .hp-mobile-panel a:hover { color: var(--text); }
            .hp-mobile-overlay { display: none; }
            .hp-mobile-overlay.open { display: block; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 198; }
            .hp-mobile-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--text); cursor: pointer; }
        }

        .hp-hero { padding: 160px 0 80px; position: relative; overflow: hidden; text-align: center; }
        .hp-hero::before { content: ''; position: absolute; top: -300px; left: 50%; transform: translateX(-50%); width: 1000px; height: 1000px; background: radial-gradient(circle, rgba(34,211,238,0.1) 0%, rgba(52,211,153,0.05) 40%, transparent 70%); pointer-events: none; }
        .hp-hero::after { content: ''; position: absolute; top: -200px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%); pointer-events: none; }
        .hp-hero-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }
        .hp-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--cyan-dim); border: 1px solid rgba(34,211,238,0.25); border-radius: 20px; padding: 6px 16px; font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 600; color: var(--cyan); margin-bottom: 28px; letter-spacing: 0.8px; }
        .hp-hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s ease infinite; }
        @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
        .hp-hero h1 { font-size: 4.2rem; font-weight: 900; line-height: 1.08; letter-spacing: -0.04em; margin-bottom: 24px; }
        .hp-hero h1 .grad { background: linear-gradient(135deg, var(--cyan) 0%, var(--emerald) 50%, var(--amber) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .hp-hero p { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.2rem; color: var(--text-secondary); max-width: 620px; margin: 0 auto 40px; line-height: 1.7; }
        .hp-hero-ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
        .hp-btn-primary { background: var(--cyan); color: #000 !important; padding: 15px 34px; border-radius: 10px; font-weight: 700 !important; font-size: 0.95rem; text-decoration: none; transition: all 0.25s; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; font-family: 'Plus Jakarta Sans', sans-serif; }
        .hp-btn-primary:hover { background: #06B6D4; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(34,211,238,0.3); }
        .hp-btn-secondary { background: transparent; color: var(--text); padding: 15px 34px; border-radius: 10px; font-weight: 600; font-size: 0.95rem; text-decoration: none; border: 1px solid var(--border); transition: all 0.25s; display: inline-flex; align-items: center; gap: 8px; font-family: 'Plus Jakarta Sans', sans-serif; }
        .hp-btn-secondary:hover { background: var(--bg-card); border-color: var(--text-muted); }
        @media (max-width: 768px) {
            .hp-hero { padding: 120px 0 60px; }
            .hp-hero h1 { font-size: 2.4rem; }
            .hp-hero p { font-size: 1.05rem; }
        }

        .hp-stats { padding: 0 0 80px; }
        .hp-stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 36px 40px; }
        .hp-stat { text-align: center; }
        .hp-stat-value { font-family: 'Urbanist', sans-serif; font-size: 2.6rem; font-weight: 900; letter-spacing: -0.03em; }
        .hp-stat-value.cyan { color: var(--cyan); }
        .hp-stat-value.amber { color: var(--amber); }
        .hp-stat-value.emerald { color: var(--emerald); }
        .hp-stat-value.blue { color: var(--blue); }
        .hp-stat-label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }
        @media (max-width: 768px) {
            .hp-stats-bar { grid-template-columns: repeat(2, 1fr); padding: 28px 24px; }
            .hp-stat-value { font-size: 2rem; }
        }

        .hp-products { padding: 80px 0; }
        .hp-products-header { text-align: center; margin-bottom: 56px; }
        .hp-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        @media (max-width: 900px) { .hp-products-grid { grid-template-columns: 1fr; } }
        .hp-product-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 36px 28px; transition: all 0.35s; position: relative; overflow: hidden; }
        .hp-product-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
        .hp-product-card.auction::before { background: linear-gradient(90deg, var(--amber), #FBBF24); }
        .hp-product-card.vendor::before { background: linear-gradient(90deg, var(--blue), #60A5FA); }
        .hp-product-card.market::before { background: linear-gradient(90deg, var(--emerald), #4AE8AD); }
        .hp-product-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.1); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
        .hp-product-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
        .hp-product-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
        .hp-product-card .desc { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
        .hp-product-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
        .hp-product-features li { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--text-secondary); font-family: 'Plus Jakarta Sans', sans-serif; }
        .hp-product-features li .tick { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .hp-product-link { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.88rem; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
        .hp-product-link:hover { gap: 10px; }
        .hp-product-link.amber { color: var(--amber); }
        .hp-product-link.blue { color: var(--blue); }
        .hp-product-link.emerald { color: var(--emerald); }

        .hp-ecosystem { padding: 80px 0; }
        .hp-ecosystem-header { text-align: center; margin-bottom: 56px; }
        .hp-flow { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
        .hp-flow-step { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px 28px; text-align: center; width: 280px; position: relative; transition: all 0.3s; }
        .hp-flow-step:hover { border-color: rgba(255,255,255,0.1); transform: translateY(-4px); }
        .hp-flow-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
        .hp-flow-step h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
        .hp-flow-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
        .hp-flow-arrow { width: 60px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        .hp-flow-arrow svg { overflow: visible; }
        .hp-flow-line { stroke-dasharray: 6 4; animation: flowDash 1.5s linear infinite; }
        @keyframes flowDash { to { stroke-dashoffset: -20; } }
        @media (max-width: 900px) {
            .hp-flow { flex-direction: column; gap: 0; }
            .hp-flow-arrow { transform: rotate(90deg); width: auto; height: 40px; }
            .hp-flow-step { width: 100%; max-width: 340px; }
        }

        .hp-highlight { padding: 100px 0; }
        .hp-highlight-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
        .hp-highlight-row.reverse { direction: rtl; }
        .hp-highlight-row.reverse > * { direction: ltr; }
        @media (max-width: 768px) {
            .hp-highlight-row, .hp-highlight-row.reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
        }
        .hp-highlight-content .section-label.amber { color: var(--amber); }
        .hp-highlight-content .section-label.blue { color: var(--blue); }
        .hp-highlight-content .section-label.emerald { color: var(--emerald); }
        .hp-highlight-content h2 { font-size: 2rem; font-weight: 900; margin-bottom: 16px; letter-spacing: -0.02em; }
        .hp-highlight-content p { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
        .hp-highlight-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .hp-highlight-list li { display: flex; align-items: flex-start; gap: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.88rem; color: var(--text-secondary); }
        .hp-highlight-list li svg { flex-shrink: 0; margin-top: 2px; }

        .hp-mockup { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; overflow: hidden; }
        .hp-mockup-bar { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
        .hp-mockup-dot { width: 8px; height: 8px; border-radius: 50%; }

        .hp-zone-map { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
        .hp-zone { background: var(--bg-elevated); border-radius: 6px; padding: 8px 10px; font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; transition: all 0.2s; }
        .hp-zone:hover { background: rgba(245,158,11,0.08); color: var(--text); }
        .hp-zone-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

        .hp-dash-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
        .hp-dash-card { background: var(--bg-elevated); border-radius: 8px; padding: 12px; }
        .hp-dash-card .label { font-family: 'JetBrains Mono', monospace; font-size: 0.62rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
        .hp-dash-card .val { font-family: 'Urbanist', sans-serif; font-size: 1.4rem; font-weight: 800; }
        .hp-dash-bar { height: 4px; border-radius: 2px; background: var(--border); margin-top: 6px; overflow: hidden; }
        .hp-dash-bar-fill { height: 100%; border-radius: 2px; }

        .hp-mp-features { padding: 80px 0; }
        .hp-mp-header { text-align: center; margin-bottom: 48px; }
        .hp-mp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        @media (max-width: 768px) { .hp-mp-grid { grid-template-columns: 1fr; } }
        .hp-mp-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px 24px; text-align: center; transition: all 0.3s; }
        .hp-mp-card:hover { border-color: var(--emerald); transform: translateY(-4px); }
        .hp-mp-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--emerald-dim); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
        .hp-mp-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
        .hp-mp-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

        .hp-proof { padding: 80px 0; }
        .hp-proof-header { text-align: center; margin-bottom: 48px; }
        .hp-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
        @media (max-width: 768px) { .hp-badges { grid-template-columns: repeat(2, 1fr); } }
        .hp-badge { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 28px 20px; text-align: center; transition: all 0.3s; }
        .hp-badge:hover { border-color: rgba(255,255,255,0.1); }
        .hp-badge-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
        .hp-badge h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
        .hp-badge p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

        .hp-pricing { padding: 80px 0; }
        .hp-pricing-header { text-align: center; margin-bottom: 48px; }
        .hp-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        @media (max-width: 768px) { .hp-pricing-grid { grid-template-columns: 1fr; } }
        .hp-price-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 36px 28px; position: relative; transition: all 0.3s; }
        .hp-price-card:hover { transform: translateY(-4px); }
        .hp-price-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 20px 20px 0 0; }
        .hp-price-card.auction-price::before { background: var(--amber); }
        .hp-price-card.vendor-price::before { background: var(--blue); }
        .hp-price-card.market-price::before { background: var(--emerald); }
        .hp-price-card h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
        .hp-price-card .tagline { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 20px; }
        .hp-price-card .from { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
        .hp-price-card .price { font-family: 'Urbanist', sans-serif; font-size: 2.4rem; font-weight: 900; margin: 4px 0 4px; }
        .hp-price-card .price span { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
        .hp-price-card .price-note { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 24px; }
        .hp-price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
        .hp-price-features li { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--text-secondary); font-family: 'Plus Jakarta Sans', sans-serif; }
        .hp-price-features li svg { flex-shrink: 0; }
        .hp-price-btn { display: block; text-align: center; padding: 12px; border-radius: 10px; font-weight: 700; font-size: 0.88rem; text-decoration: none; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif; }
        .hp-price-btn.amber-btn { background: var(--amber-dim); color: var(--amber); border: 1px solid rgba(245,158,11,0.25); }
        .hp-price-btn.amber-btn:hover { background: rgba(245,158,11,0.2); }
        .hp-price-btn.blue-btn { background: var(--blue-dim); color: var(--blue); border: 1px solid rgba(59,130,246,0.25); }
        .hp-price-btn.blue-btn:hover { background: rgba(59,130,246,0.2); }
        .hp-price-btn.emerald-btn { background: var(--emerald-dim); color: var(--emerald); border: 1px solid rgba(52,211,153,0.25); }
        .hp-price-btn.emerald-btn:hover { background: rgba(52,211,153,0.2); }

        .hp-final-cta { padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
        .hp-final-cta::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 900px; height: 500px; background: radial-gradient(ellipse, rgba(34,211,238,0.08) 0%, rgba(52,211,153,0.04) 40%, transparent 70%); pointer-events: none; }
        .hp-final-cta h2 { font-size: 2.8rem; font-weight: 900; margin-bottom: 16px; position: relative; letter-spacing: -0.03em; }
        .hp-final-cta p { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text-secondary); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; position: relative; line-height: 1.7; }
        @media (max-width: 768px) { .hp-final-cta h2 { font-size: 1.8rem; } }

        .hp-footer { padding: 60px 0 30px; border-top: 1px solid var(--border); }
        .hp-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
        @media (max-width: 768px) { .hp-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
        .hp-footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 12px; line-height: 1.6; font-family: 'Plus Jakarta Sans', sans-serif; }
        .hp-footer-col h5 { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 16px; }
        .hp-footer-col a { display: block; color: var(--text-secondary); text-decoration: none; font-size: 0.88rem; margin-bottom: 10px; transition: color 0.2s; font-family: 'Plus Jakarta Sans', sans-serif; }
        .hp-footer-col a:hover { color: var(--text); }
        .hp-footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; padding-top: 24px; border-top: 1px solid var(--border); }
        .hp-footer-bottom p { font-size: 0.75rem; color: var(--text-muted); font-family: 'Plus Jakarta Sans', sans-serif; }
        .hp-footer-legal { display: flex; gap: 20px; }
        .hp-footer-legal a { font-size: 0.75rem; color: var(--text-muted); text-decoration: none; font-family: 'Plus Jakarta Sans', sans-serif; }
        .hp-footer-legal a:hover { color: var(--text-secondary); }

        .anim-hidden { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .anim-hidden.fade-in { opacity: 1; transform: translateY(0); }
        .anim-slide-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .anim-slide-left.fade-in { opacity: 1; transform: translateX(0); }
        .anim-slide-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
        .anim-slide-right.fade-in { opacity: 1; transform: translateX(0); }
        .anim-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.6s ease, transform 0.6s ease; }
        .anim-scale.fade-in { opacity: 1; transform: scale(1); }
        .stagger-1 { transition-delay: 0s; }
        .stagger-2 { transition-delay: 0.12s; }
        .stagger-3 { transition-delay: 0.24s; }
        .stagger-4 { transition-delay: 0.36s; }

        .hp-hero-inner > * { opacity: 0; transform: translateY(20px); animation: heroIn 0.8s ease forwards; }
        .hp-hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
        .hp-hero-inner > *:nth-child(2) { animation-delay: 0.25s; }
        .hp-hero-inner > *:nth-child(3) { animation-delay: 0.4s; }
        .hp-hero-inner > *:nth-child(4) { animation-delay: 0.55s; }
        @keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
