:root {
    --lp-bg: #f5f7fa;
    --lp-bg-elevated: #ffffff;
    --lp-bg-alt: #eef2f7;
    --lp-text: #0f172a;
    --lp-muted: #475569;
    --lp-navy: #0b3a6e;
    --lp-navy-soft: #1e4d8c;
    --lp-accent: #0e7490;
    --lp-accent-soft: #0891b2;
    --lp-border: rgba(15, 23, 42, 0.1);
    --lp-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    --lp-font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

.landing-page {
    margin: 0;
    font-family: var(--lp-font);
    color: var(--lp-text);
    background: var(--lp-bg);
    overflow-x: hidden;
    line-height: 1.65;
    font-size: 16px;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
}

.landing-page a { color: inherit; }

/* Nav */
.landing-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px clamp(16px, 4vw, 48px);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--lp-border);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--lp-navy);
    min-width: 0;
}

.landing-brand .site-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 0 2px rgba(11, 58, 110, 0.12);
    flex-shrink: 0;
}

.landing-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}

.landing-brand-text span {
    white-space: nowrap;
}

.landing-brand-text small {
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--lp-muted);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.hero-brand-logo {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    display: block;
    box-shadow: 0 0 0 3px rgba(11, 58, 110, 0.12), 0 10px 28px rgba(15, 23, 42, 0.1);
    animation: logoPop 1s ease-out both, floatY 6s ease-in-out 1s infinite;
}

.landing-footer .site-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: block;
}

.nav-toggle {
    display: none;
    background: #fff;
    border: 1px solid var(--lp-border);
    color: var(--lp-navy);
    font-size: 1.2rem;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.landing-nav-links a {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.landing-nav-links .nav-link { color: var(--lp-muted); }
.landing-nav-links .nav-link:hover { color: var(--lp-navy); background: #f1f5f9; }

.landing-nav-links .nav-outline {
    border: 1px solid var(--lp-border);
    color: var(--lp-navy);
    background: #fff;
}
.landing-nav-links .nav-outline:hover {
    border-color: var(--lp-navy);
    background: #f8fafc;
}

.landing-nav-links .nav-btn {
    background: var(--lp-navy);
    color: #fff;
}
.landing-nav-links .nav-btn:hover { background: var(--lp-navy-soft); }

/* Hero */
.landing-hero {
    position: relative;
    min-height: min(86vh, 720px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px clamp(16px, 5vw, 64px) 80px;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 15% 10%, rgba(14, 116, 144, 0.14), transparent 55%),
        radial-gradient(ellipse 60% 50% at 90% 20%, rgba(37, 99, 235, 0.1), transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(245, 158, 11, 0.08), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #eef6fb 55%, #f1f5f9 100%);
    border-bottom: 1px solid var(--lp-border);
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
    animation: glowPulse 6s ease-in-out infinite;
}

.hero-glow-a {
    width: 280px;
    height: 280px;
    left: 8%;
    top: 22%;
    background: rgba(14, 116, 144, 0.22);
}

.hero-glow-b {
    width: 240px;
    height: 240px;
    right: 10%;
    bottom: 18%;
    background: rgba(245, 158, 11, 0.18);
    animation-delay: -2.5s;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.45; }
    50% { transform: scale(1.12); opacity: 0.7; }
}

.hero-floaters {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    perspective: 900px;
}

.coin-3d {
    position: absolute;
    width: 110px;
    height: 110px;
    transform-style: preserve-3d;
    filter: drop-shadow(0 16px 22px rgba(15, 23, 42, 0.2));
}

.coin-face {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    background: transparent;
    animation: coinSpin 12s linear infinite;
    overflow: hidden;
}

.coin-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 28px;
}

.coin-usdt { top: 22%; left: 8%; animation: floatY 5.5s ease-in-out infinite; }
.coin-btc { top: 28%; right: 10%; animation: floatY 6.2s ease-in-out infinite 0.4s; }
.coin-eth { bottom: 22%; left: 14%; animation: floatY 5.8s ease-in-out infinite 0.8s; }
.coin-bnb { bottom: 26%; right: 12%; animation: floatY 6.5s ease-in-out infinite 1.1s; }

.coin-usdt .coin-face { animation-duration: 11s; }
.coin-btc .coin-face { animation-duration: 9s; animation-direction: reverse; }
.coin-eth .coin-face { animation-duration: 12s; }
.coin-bnb .coin-face { animation-duration: 10s; animation-direction: reverse; }

@keyframes coinSpin {
    0% { transform: rotateY(0deg) rotateX(8deg); }
    50% { transform: rotateY(180deg) rotateX(-6deg); }
    100% { transform: rotateY(360deg) rotateX(8deg); }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0) translateZ(0); }
    50% { transform: translateY(-16px) translateZ(20px); }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.55;
    animation: floatY 7s ease-in-out infinite;
}

.orb-1 {
    width: 18px;
    height: 18px;
    top: 18%;
    left: 28%;
    background: radial-gradient(circle at 30% 30%, #67e8f9, #0e7490);
}

.orb-2 {
    width: 14px;
    height: 14px;
    top: 42%;
    right: 26%;
    background: radial-gradient(circle at 30% 30%, #fde68a, #d97706);
    animation-delay: 1s;
}

.orb-3 {
    width: 22px;
    height: 22px;
    bottom: 18%;
    left: 46%;
    background: radial-gradient(circle at 30% 30%, #93c5fd, #2563eb);
    animation-delay: 1.6s;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

@keyframes logoPop {
    from { opacity: 0; transform: scale(0.85) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Crypto stage cards */
.crypto-stage {
    padding: 28px clamp(16px, 5vw, 64px) 8px;
    margin-top: -36px;
    position: relative;
    z-index: 3;
}

.crypto-stage-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.crypto-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    padding: 22px 18px 20px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(8px);
    transform-style: preserve-3d;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.crypto-card:hover {
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.crypto-card-art {
    width: 120px;
    height: 120px;
    margin: 0 auto 14px;
    border-radius: 28px;
    overflow: hidden;
    transform: rotateX(8deg) rotateY(-8deg);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.12);
    background: linear-gradient(180deg, #f8fafc, #e2e8f0);
}

.crypto-card-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.crypto-card:hover .crypto-card-art img {
    transform: scale(1.06) rotate(2deg);
}

.crypto-card {
    text-align: center;
}

.cartoon-gallery {
    background:
        radial-gradient(ellipse 50% 40% at 20% 20%, rgba(45, 212, 191, 0.12), transparent 55%),
        radial-gradient(ellipse 45% 35% at 80% 70%, rgba(251, 191, 36, 0.12), transparent 50%),
        var(--lp-bg);
}

.cartoon-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.cartoon-bubble {
    margin: 0;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 22px;
    padding: 14px 12px 16px;
    box-shadow: var(--lp-shadow);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cartoon-bubble img {
    width: 100%;
    max-width: 160px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    margin: 0 auto 10px;
    animation: floatY 5.5s ease-in-out infinite;
}

.cartoon-bubble:nth-child(2) img { animation-delay: 0.3s; }
.cartoon-bubble:nth-child(3) img { animation-delay: 0.6s; }
.cartoon-bubble:nth-child(4) img { animation-delay: 0.9s; }
.cartoon-bubble:nth-child(5) img { animation-delay: 1.2s; }

.cartoon-bubble figcaption {
    font-size: 0.9rem;
    font-weight: 750;
    color: var(--lp-navy);
}

.step-art {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.1);
    background: #f8fafc;
}

.step-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sec-art {
    width: 88px;
    height: 88px;
    border-radius: 22px;
    overflow: hidden;
    margin: 0 auto 14px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
    background: linear-gradient(180deg, #f8fafc, #e2e8f0);
}

.sec-art.sm {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin-bottom: 12px;
}

.sec-art.header-art {
    width: 96px;
    height: 96px;
    margin-bottom: 16px;
    animation: floatY 5.5s ease-in-out infinite;
}

.sec-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.income-block .sec-art,
.soon-card .sec-art,
.income-future-item .sec-art {
    margin-left: auto;
    margin-right: auto;
}

.income-future-item {
    text-align: center;
}

.pkg-art {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto 8px;
    background: #f8fafc;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.1);
}

.pkg-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.platform-list li .sec-art.sm {
    margin: 0 0 12px;
}

.crypto-card h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 750;
    color: var(--lp-navy);
}

.crypto-card p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.hero-brand {
    margin: 0 0 12px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lp-accent);
}

.landing-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 5vw, 3.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--lp-navy);
}

.landing-hero h1 em {
    font-style: normal;
    color: var(--lp-accent);
}

.hero-lead {
    margin: 0 auto 28px;
    max-width: 36em;
    color: var(--lp-muted);
    font-size: clamp(1rem, 2vw, 1.12rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: #fff;
    border: 1px solid #0f766e;
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.28);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-color: #0d9488;
    transform: translateY(-1px);
}

.btn-outline {
    background: #fff;
    color: var(--lp-navy);
    border: 1px solid var(--lp-border);
}
.btn-outline:hover {
    border-color: var(--lp-navy);
    background: #f8fafc;
}

/* Sections */
.landing-section {
    padding: 72px clamp(16px, 5vw, 64px);
}

.landing-section.alt {
    background: var(--lp-bg-alt);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lp-accent);
    margin-bottom: 10px;
}

.section-header h2 {
    margin: 0 0 10px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--lp-navy);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.section-header p {
    margin: 0 auto;
    max-width: 36em;
    color: var(--lp-muted);
    font-size: 1.02rem;
    line-height: 1.65;
}

/* Steps */
.steps-row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.step-item {
    background: var(--lp-bg-elevated);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 22px 18px;
    box-shadow: var(--lp-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    transform-style: preserve-3d;
}

.step-item:hover {
    transform: translateY(-4px) rotateX(2deg);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.step-num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--lp-accent);
    margin-bottom: 10px;
}

.step-item h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--lp-navy);
}

.step-item p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Income */
.income-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 28px;
}

.income-block {
    background: var(--lp-bg-elevated);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: var(--lp-shadow);
    text-align: center;
}

.income-block strong {
    display: block;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--lp-navy);
    margin-bottom: 10px;
    line-height: 1.1;
}

.income-block.accent strong { color: var(--lp-accent); }

.income-block h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-text);
}

.income-block p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.income-future {
    margin: 28px 0 28px;
    padding: 24px 0 0;
    border-top: 1px solid var(--lp-border);
}

.income-future-head {
    text-align: center;
    margin-bottom: 20px;
}

.income-future-head h3 {
    margin: 10px 0 8px;
    font-size: 1.2rem;
    font-weight: 750;
    color: var(--lp-navy);
}

.income-future-head p {
    margin: 0 auto;
    max-width: 34em;
    color: var(--lp-muted);
    font-size: 0.95rem;
}

.income-future-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.income-future-item {
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    padding: 18px 16px;
}

.income-future-item h4 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-navy);
}

.income-future-item p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.income-notes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.income-notes li {
    padding: 14px 16px;
    border-left: 3px solid var(--lp-accent);
    background: #fff;
    border-radius: 0 8px 8px 0;
    color: var(--lp-muted);
    font-size: 0.95rem;
    line-height: 1.55;
    box-shadow: var(--lp-shadow);
}

/* Packages */
.package-strip {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.pkg-tile {
    padding: 18px 14px;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--lp-shadow);
    transition: border-color 0.2s, transform 0.2s;
}

.pkg-tile:hover {
    border-color: rgba(11, 58, 110, 0.35);
    transform: translateY(-2px);
}

.pkg-level {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--lp-accent);
}

.pkg-tile h3 {
    font-size: 1rem;
    margin: 8px 0 6px;
    font-weight: 700;
    color: var(--lp-navy);
}

.pkg-price {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--lp-text);
}

.section-cta {
    margin-top: 32px;
    text-align: center;
}

.section-cta .btn-outline {
    margin-left: 10px;
}

/* Airdrop issuances */
.airdrop-issue-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.airdrop-issue-card {
    padding: 20px 18px;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    box-shadow: var(--lp-shadow);
}

.airdrop-issue-num {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #0e7490;
    margin-bottom: 8px;
}

.airdrop-issue-card h3 {
    margin: 0 0 8px;
    font-size: 1.02rem;
    color: var(--lp-navy);
}

.airdrop-issue-card p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--lp-muted, #64748b);
}

.airdrop-issue-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--lp-shadow);
}

.airdrop-issue-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

.airdrop-issue-table th,
.airdrop-issue-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--lp-border);
    font-size: 0.9rem;
}

.airdrop-issue-table th {
    background: #f8fafc;
    color: var(--lp-navy);
    font-weight: 700;
}

.airdrop-issue-table tr:last-child td {
    border-bottom: none;
}

.airdrop-issue-table td strong {
    color: #0f766e;
}

/* ABPS Plan landing — sunflower stage */
.abps-landing {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(251, 191, 36, 0.16), transparent 32%),
        radial-gradient(circle at 88% 10%, rgba(14, 165, 233, 0.12), transparent 28%),
        linear-gradient(165deg, #07111f 0%, #0b1729 48%, #10233a 100%);
    color: #e2e8f0;
}

.abps-bg-rays {
    position: absolute;
    inset: -20% -10% auto auto;
    width: min(520px, 70vw);
    height: min(520px, 70vw);
    background:
        repeating-conic-gradient(from 0deg, rgba(251, 191, 36, 0.09) 0deg 8deg, transparent 8deg 18deg);
    border-radius: 50%;
    filter: blur(0.5px);
    opacity: 0.55;
    animation: abpsSpin 48s linear infinite;
    pointer-events: none;
}

@keyframes abpsSpin {
    to { transform: rotate(360deg); }
}

.abps-landing .section-inner {
    position: relative;
    z-index: 1;
}

.abps-stage {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 28px;
}

.abps-stage-brand {
    padding: 8px 4px 0;
}

.abps-sun {
    position: relative;
    width: 108px;
    height: 108px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
}

.abps-sun span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(251, 191, 36, 0.35);
    animation: abpsPulse 3.6s ease-in-out infinite;
}

.abps-sun span:nth-child(2) { inset: 10px; animation-delay: 0.4s; }
.abps-sun span:nth-child(3) { inset: 20px; animation-delay: 0.8s; }
.abps-sun span:nth-child(4) {
    inset: 28px;
    background: radial-gradient(circle at 35% 30%, #fde68a, #d97706 70%);
    border: none;
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.35);
    animation: none;
}

.abps-sun strong {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: #0f172a;
}

@keyframes abpsPulse {
    0%, 100% { transform: scale(1); opacity: 0.55; }
    50% { transform: scale(1.06); opacity: 1; }
}

.abps-kicker {
    margin: 0 0 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fbbf24;
}

.abps-stage-brand h2 {
    margin: 0 0 12px;
    font-size: clamp(1.7rem, 3.4vw, 2.45rem);
    line-height: 1.12;
    color: #fff7d6;
    font-weight: 800;
}

.abps-lead {
    margin: 0 0 16px;
    max-width: 38rem;
    color: #cbd5e1;
    font-size: 1rem;
    line-height: 1.65;
}

.abps-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.abps-pill-row span {
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(251, 191, 36, 0.35);
    background: rgba(251, 191, 36, 0.08);
    color: #fde68a;
    font-size: 0.78rem;
    font-weight: 700;
}

.abps-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.abps-landing .btn-outline {
    color: #fde68a;
    border-color: rgba(251, 191, 36, 0.45);
}

.abps-landing .btn-outline:hover {
    background: rgba(251, 191, 36, 0.12);
}

.abps-stage-panel {
    padding: 22px;
    border-radius: 22px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(251, 191, 36, 0.22);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.abps-panel-label {
    margin: 0 0 10px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #94a3b8;
}

.abps-split-bar {
    display: flex;
    height: 14px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.55);
    margin-bottom: 14px;
}

.abps-split-bar i:first-child {
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
}

.abps-split-bar i:last-child {
    background: linear-gradient(90deg, #fbbf24, #d97706);
}

.abps-split-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.abps-split-meta strong {
    display: block;
    font-size: 1.55rem;
    color: #fde68a;
    line-height: 1;
    margin-bottom: 4px;
}

.abps-split-meta > div:first-child strong {
    color: #7dd3fc;
}

.abps-split-meta span {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 4px;
}

.abps-split-meta small {
    display: block;
    font-size: 0.78rem;
    line-height: 1.45;
    color: #94a3b8;
}

.abps-earn-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.abps-earn-item {
    padding: 12px 10px;
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.45);
    border: 1px solid rgba(148, 163, 184, 0.18);
    text-align: center;
}

.abps-earn-item em {
    display: block;
    font-style: normal;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 6px;
}

.abps-earn-item strong {
    display: block;
    font-size: 1.25rem;
    color: #f8fafc;
}

.abps-earn-item span {
    display: block;
    margin-top: 2px;
    font-size: 0.72rem;
    color: #64748b;
}

.abps-earn-item.total {
    background: linear-gradient(160deg, rgba(251, 191, 36, 0.22), rgba(15, 23, 42, 0.35));
    border-color: rgba(251, 191, 36, 0.4);
}

.abps-earn-item.total strong {
    color: #fde68a;
}

.abps-bonus-note {
    margin: 12px 0 0;
    font-size: 0.84rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.abps-journey {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    counter-reset: none;
}

.abps-journey li {
    position: relative;
    padding: 18px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.abps-journey li span {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 800;
    color: #fbbf24;
    letter-spacing: 0.08em;
}

.abps-journey h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: #fff7d6;
}

.abps-journey p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.5;
    color: #94a3b8;
}

.abps-feature-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid rgba(251, 191, 36, 0.18);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(2, 6, 23, 0.35);
}

.abps-feature-rail article {
    padding: 18px 16px;
    border-right: 1px solid rgba(148, 163, 184, 0.14);
}

.abps-feature-rail article:last-child {
    border-right: none;
}

.abps-feature-rail h3 {
    margin: 0 0 6px;
    font-size: 0.95rem;
    color: #fde68a;
}

.abps-feature-rail p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.5;
    color: #94a3b8;
}

/* Public downloads */
.download-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.download-stats > div {
    padding: 16px 18px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
}

.download-stats strong {
    display: block;
    font-size: 1.15rem;
    color: var(--lp-navy);
    margin-bottom: 4px;
}

.download-stats span {
    font-size: 0.82rem;
    color: var(--lp-muted);
}

.download-cat-title {
    margin: 8px 0 12px;
    font-size: 1.05rem;
    color: var(--lp-navy);
}

.creative-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.creative-image-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.creative-image-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.creative-image-preview {
    display: block;
    background: #0f172a;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.creative-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.creative-image-card:hover .creative-image-preview img {
    transform: scale(1.04);
}

.creative-image-meta {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.creative-image-meta h4 {
    margin: 0;
    font-size: 0.92rem;
    color: var(--lp-navy);
    line-height: 1.35;
}

.creative-image-meta small {
    color: #94a3b8;
    font-size: 0.75rem;
}

.creative-dl-btn {
    margin-top: auto;
    text-align: center;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 700;
}

.download-grid {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.download-type {
    flex: 0 0 auto;
    min-width: 56px;
    text-align: center;
    padding: 10px 8px;
    border-radius: 10px;
    background: linear-gradient(160deg, #ecfeff, #f0f9ff);
    color: #0e7490;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.download-body {
    flex: 1;
    min-width: 0;
}

.download-body h4 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: var(--lp-navy);
}

.download-body p {
    margin: 0 0 4px;
    font-size: 0.86rem;
    color: var(--lp-muted);
    line-height: 1.45;
}

.download-body small {
    color: #94a3b8;
    font-size: 0.75rem;
}

.download-btn {
    flex: 0 0 auto;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 10px;
    white-space: nowrap;
}

.download-empty {
    text-align: center;
    padding: 36px 20px;
    border-radius: 14px;
    background: #fff;
    border: 1px dashed var(--lp-border);
}

.download-empty h3 {
    margin: 0 0 8px;
    color: var(--lp-navy);
}

.download-empty p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.92rem;
}

.download-footnote {
    margin: 8px 0 0;
    font-size: 0.84rem;
    color: var(--lp-muted);
    line-height: 1.55;
}

/* Coming soon */
.soon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.soon-card {
    padding: 22px 20px;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    box-shadow: var(--lp-shadow);
    position: relative;
    text-align: center;
}

.soon-card::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 3px;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(90deg, var(--lp-navy), var(--lp-accent));
}

.soon-badge {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9a3412;
    background: #fff7ed;
    border: 1px solid #fdba74;
    padding: 4px 9px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.soon-card h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 750;
    color: var(--lp-navy);
}

.soon-card > p {
    margin: 0 0 14px;
    color: var(--lp-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.soon-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    text-align: left;
}

.soon-card li {
    position: relative;
    padding-left: 14px;
    color: var(--lp-muted);
    font-size: 0.86rem;
    line-height: 1.45;
}

.soon-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lp-accent);
}

.soon-footnote {
    margin: 28px auto 0;
    text-align: center;
    color: var(--lp-muted);
    font-size: 0.9rem;
    max-width: 40em;
    line-height: 1.6;
}

.soon-footnote strong {
    color: var(--lp-navy);
    font-weight: 700;
}

/* Platform */
.platform-grid .section-header { margin-bottom: 28px; }

.platform-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--lp-border);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--lp-shadow);
}

.platform-list li {
    padding: 24px 22px;
    border-bottom: 1px solid var(--lp-border);
}

.platform-list li:nth-child(odd) {
    border-right: 1px solid var(--lp-border);
}

.platform-list h3 {
    font-size: 1.05rem;
    margin: 0 0 6px;
    font-weight: 700;
    color: var(--lp-navy);
}

.platform-list p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA */
.landing-cta {
    padding: 72px clamp(16px, 5vw, 64px);
    text-align: center;
    background:
        linear-gradient(180deg, #ffffff 0%, #e8f0f8 100%);
    border-top: 1px solid var(--lp-border);
}

.landing-cta h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--lp-navy);
}

.landing-cta p {
    color: var(--lp-muted);
    margin: 0 auto 24px;
    font-size: 1.02rem;
    max-width: 32em;
    line-height: 1.65;
}

.landing-cta .hero-actions { justify-content: center; }

/* Footer */
.landing-footer {
    padding: 28px clamp(16px, 5vw, 64px) 36px;
    text-align: center;
    border-top: 1px solid var(--lp-border);
    background: #fff;
    color: var(--lp-muted);
    font-size: 0.85rem;
}

.landing-footer p { margin: 0 0 8px; }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.footer-links a {
    color: var(--lp-muted);
    text-decoration: none;
    font-weight: 600;
}
.footer-links a:hover { color: var(--lp-navy); }

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* Mobile */
@media (max-width: 1100px) {
    .steps-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .airdrop-issue-grid,
    .abps-journey,
    .abps-feature-rail,
    .download-stats,
    .creative-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .abps-stage {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {
    .steps-row,
    .soon-grid,
    .income-future-grid,
    .airdrop-issue-grid,
    .abps-journey,
    .abps-feature-rail,
    .abps-earn-flow,
    .abps-split-meta,
    .download-stats {
        grid-template-columns: 1fr 1fr;
    }

    .crypto-stage-inner {
        grid-template-columns: 1fr;
    }

    .cartoon-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .coin-face,
    .coin-3d,
    .orb,
    .hero-glow,
    .hero-brand-logo,
    .cartoon-bubble img {
        animation: none !important;
    }
}

@media (max-width: 768px) {
    .nav-toggle { display: inline-flex; }

    .landing-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 12px 16px 16px;
        background: #fff;
        border-bottom: 1px solid var(--lp-border);
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    }

    .landing-nav-links.open { display: flex; }

    .landing-nav-links a {
        width: 100%;
        text-align: left;
        padding: 12px 14px;
        border-radius: 8px;
    }

    .landing-nav-links .nav-btn,
    .landing-nav-links .nav-outline {
        text-align: center;
        margin-top: 4px;
    }

    .landing-brand-text small { max-width: 140px; }

    .landing-hero {
        min-height: auto;
        padding: 104px 16px 64px;
    }

    .landing-hero h1 {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    .coin-3d { width: 72px; height: 72px; }
    .coin-usdt { left: 2%; top: 16%; }
    .coin-btc { right: 2%; top: 18%; }
    .coin-eth { left: 4%; bottom: 12%; }
    .coin-bnb { right: 4%; bottom: 14%; }

    .cartoon-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
    }

    .crypto-stage {
        margin-top: -20px;
        padding: 12px 16px 0;
    }

    .crypto-stage-inner {
        grid-template-columns: 1fr;
    }

    .landing-section { padding: 48px 16px; }

    .steps-row,
    .income-split,
    .soon-grid,
    .income-future-grid,
    .airdrop-issue-grid,
    .abps-journey,
    .abps-feature-rail,
    .abps-earn-flow,
    .abps-split-meta,
    .download-stats,
    .platform-list {
        grid-template-columns: 1fr;
    }

    .abps-feature-rail article {
        border-right: none;
        border-bottom: 1px solid rgba(148, 163, 184, 0.14);
    }

    .abps-feature-rail article:last-child {
        border-bottom: none;
    }

    .download-card {
        flex-wrap: wrap;
    }

    .section-cta .btn-outline {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }

    .platform-list li:nth-child(odd) {
        border-right: none;
    }

    .package-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-cta {
        padding: 48px 16px;
    }

    .landing-cta .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 400px) {
    .package-strip { grid-template-columns: 1fr; }
    .landing-brand-text small { display: none; }
    .cartoon-row { grid-template-columns: 1fr; }
    .coin-3d { width: 58px; height: 58px; opacity: 0.9; }
}
