: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(auto-fit, minmax(180px, 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-rule {
    margin: 0 0 28px;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    box-shadow: var(--lp-shadow);
    border-left: 4px solid var(--lp-accent);
}

.income-rule h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 750;
    color: var(--lp-navy);
}

.income-rule p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.income-rule-example {
    margin-top: 12px !important;
    padding-top: 12px;
    border-top: 1px solid var(--lp-border);
    font-size: 0.9rem !important;
}

.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(auto-fit, minmax(220px, 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; }

.landing-footer .footer-address {
    max-width: 420px;
    margin: 0 auto 12px;
    line-height: 1.5;
    color: var(--lp-muted);
}

.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; }
}

/* ============ REDESIGNED SECTION STYLES ============ */

/* Vision & Mission */
.vm-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e3a8a 100%);
    color: #e2e8f0;
}
.vm-section .section-inner { max-width: 1100px; }
.vm-section .section-header h2 { color: #fff; }
.vm-section .section-header p { color: #cbd5e1; }
.vm-section .section-tag {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    margin-top: 1rem;
}
.vm-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 1.75rem;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.vm-card:hover {
    transform: translateY(-4px);
    border-color: rgba(251, 191, 36, 0.4);
    background: rgba(255, 255, 255, 0.07);
}
.vm-card.vision { border-top: 3px solid #f59e0b; }
.vm-card.mission { border-top: 3px solid #10b981; }
.vm-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0 0 1rem;
    line-height: 1.2;
}
.vm-card.vision h3 { color: #fbbf24; }
.vm-card.mission h3 { color: #34d399; }
.vm-card p {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 0.75rem;
}
.vm-card p:last-child { margin-bottom: 0; }
.vm-card ol {
    padding-left: 1.25rem;
    margin: 0;
}
.vm-card ol li {
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0.5rem;
}
.vm-card ol li strong { color: #fef3c7; }

.vm-core {
    margin-top: 2rem;
    background: rgba(251, 191, 36, 0.08);
    border-left: 4px solid #f59e0b;
    border-radius: 0 1rem 1rem 0;
    padding: 1.25rem 1.5rem;
    color: #fef3c7;
}
.vm-core strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: #fbbf24;
}
.vm-quote { color: #fde68a; font-style: italic; font-size: 1.05rem; }

.vm-pill-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}
.vm-pill {
    border-radius: 1rem;
    padding: 1.1rem 1.25rem;
    text-align: center;
}
.vm-pill.vision-pill {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #fef3c7;
}
.vm-pill.mission-pill {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: #ecfdf5;
}
.vm-pill strong {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}
.vm-pill small { font-size: 0.85rem; line-height: 1.5; opacity: 0.95; }

@media (max-width: 820px) {
    .vm-grid, .vm-pill-row { grid-template-columns: 1fr; }
}

/* Learn Crypto Section */
.learn-section {
    background: #0b1121;
    color: #e2e8f0;
}
.learn-section .section-inner { max-width: 1100px; }
.learn-section .section-header h2 { color: #fff; }
.learn-section .section-header p { color: #94a3b8; }
.learn-section .section-tag {
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.12);
}

.learn-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
}
.learn-intro-card {
    background: linear-gradient(160deg, rgba(34, 211, 238, 0.06), rgba(15, 23, 42, 0.4));
    border: 1px solid rgba(34, 211, 238, 0.18);
    border-radius: 1.25rem;
    padding: 1.75rem;
}
.learn-intro-card h3 {
    color: #67e8f9;
    font-size: 1.2rem;
    font-weight: 750;
    margin: 0 0 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.learn-intro-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 0.5rem;
}
.learn-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.7rem;
}
.learn-feature-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0.75rem;
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.55;
}
.learn-feature-list li strong { color: #f8fafc; }
.learn-icon-bullet {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: #0f172a;
    margin-top: 1px;
}

.learn-future-why {
    background: rgba(15, 118, 110, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 1.25rem;
    padding: 1.75rem;
}
.learn-future-why h3 {
    color: #5eead4;
    font-size: 1.2rem;
    font-weight: 750;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.learn-future-why ol {
    padding-left: 1.3rem;
    margin: 0;
}
.learn-future-why ol li {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 0.6rem;
}
.learn-future-why ol li strong { color: #ccfbf1; }

.learn-perspective {
    margin-top: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 1rem;
}
.learn-perspective h4 {
    color: #c4b5fd;
    font-size: 1rem;
    font-weight: 750;
    margin: 0 0 0.5rem;
}
.learn-perspective p {
    color: #e9d5ff;
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0 0 0.4rem;
}
.learn-perspective p:last-child {
    color: #ddd6fe;
    font-style: italic;
    opacity: 0.95;
}

@media (max-width: 900px) {
    .learn-intro-grid { grid-template-columns: 1fr; }
}

/* Marketing Types Comparison */
.marketing-section .section-header h2 { margin-bottom: 0.5rem; }
.marketing-subtitle {
    text-align: center;
    color: var(--lp-muted);
    max-width: 40em;
    margin: 0 auto 2rem;
    font-size: 1rem;
    line-height: 1.65;
}
.marketing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.marketing-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem 1.4rem;
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
}
.marketing-card::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--lp-accent), var(--lp-navy));
}
.marketing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
    border-color: rgba(11, 58, 110, 0.25);
}
.marketing-card h3 {
    font-size: 1.08rem;
    font-weight: 750;
    color: var(--lp-navy);
    margin: 0 0 0.7rem;
}
.marketing-card p {
    color: var(--lp-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 0.75rem;
}
.marketing-card ul {
    padding-left: 1.1rem;
    margin: 0;
}
.marketing-card ul li {
    color: var(--lp-muted);
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 0.3rem;
}
.marketing-card.abps-card {
    background: linear-gradient(160deg, #fff 0%, #fefce8 100%);
    border-color: rgba(245, 158, 11, 0.3);
}
.marketing-card.abps-card::before {
    background: linear-gradient(90deg, #f59e0b, #10b981);
}
.marketing-card.abps-card h3 {
    color: #92400e;
}
.flow-code {
    background: #f8fafc;
    border-left: 3px solid var(--lp-accent);
    padding: 0.7rem 0.9rem;
    border-radius: 0 0.5rem 0.5rem 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.78rem;
    color: var(--lp-navy);
    margin: 0.5rem 0 0.75rem;
    line-height: 1.55;
    overflow-x: auto;
}

/* Comparison Table */
.compare-wrap {
    overflow-x: auto;
    border: 1px solid var(--lp-border);
    border-radius: 1rem;
    background: #fff;
    box-shadow: var(--lp-shadow);
    margin-bottom: 1.5rem;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}
.compare-table th,
.compare-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--lp-border);
    font-size: 0.88rem;
    line-height: 1.5;
}
.compare-table th {
    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
    color: var(--lp-navy);
    font-weight: 750;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    position: sticky;
    top: 0;
}
.compare-table th:first-child { font-weight: 750; }
.compare-table td:first-child {
    font-weight: 700;
    color: var(--lp-navy);
    background: #f8fafc;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: #fafbfc; }
.check { color: #10b981; font-weight: 800; }
.dash { color: #cbd5e1; }

.key-diff-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.7rem;
}
.key-diff-list li {
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid var(--lp-border);
    border-left: 4px solid var(--lp-accent);
    border-radius: 0 0.75rem 0.75rem 0;
    box-shadow: var(--lp-shadow);
    color: var(--lp-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}
.key-diff-list li strong { color: var(--lp-navy); }

.disctinction-note {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #78350f;
    font-size: 0.95rem;
    line-height: 1.65;
}
.disctinction-note strong { color: #92400e; }

/* ABPS Example Section */
.example-section {
    background:
        radial-gradient(ellipse 60% 50% at 80% 10%, rgba(251, 191, 36, 0.08), transparent 55%),
        radial-gradient(ellipse 50% 40% at 20% 100%, rgba(14, 165, 233, 0.07), transparent 55%),
        #fff;
}
.example-hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}
.example-brief {
    padding: 1.5rem;
    background: linear-gradient(160deg, #fffbeb, #fef3c7);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 1.25rem;
}
.example-brief h3 {
    color: #92400e;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.example-stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-bottom: 1rem;
}
.example-stat {
    padding: 0.9rem 0.7rem;
    text-align: center;
    background: #fff;
    border-radius: 0.85rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
}
.example-stat strong {
    display: block;
    font-size: 1.25rem;
    color: #b45309;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.2rem;
}
.example-stat span {
    font-size: 0.72rem;
    color: #92400e;
    font-weight: 600;
    opacity: 0.9;
}
.example-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fffbeb;
    border-radius: 1rem;
    font-weight: 750;
}
.example-total strong {
    font-size: 1.5rem;
    color: #fff;
}

.example-sunflower {
    padding: 1.5rem;
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.15);
}
.example-sunflower h3 {
    color: #fbbf24;
    font-size: 1.15rem;
    font-weight: 800;
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.tree-visual {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.82rem;
    line-height: 1.7;
    color: #fde68a;
    background: rgba(2, 6, 23, 0.6);
    padding: 1rem 1.1rem;
    border-radius: 0.85rem;
    border: 1px dashed rgba(251, 191, 36, 0.3);
    overflow-x: auto;
    white-space: pre;
}
.sunflower-caption {
    margin-top: 0.8rem;
    color: #94a3b8;
    font-size: 0.82rem;
    line-height: 1.55;
}

.example-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--lp-border);
    border-radius: 1rem;
    background: #fff;
    box-shadow: var(--lp-shadow);
    margin-bottom: 1.5rem;
}
.example-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}
.example-table th,
.example-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--lp-border);
    font-size: 0.9rem;
}
.example-table th {
    background: linear-gradient(180deg, #f8fafc, #f1f5f9);
    color: var(--lp-navy);
    font-weight: 750;
    font-size: 0.82rem;
}
.example-table tr:last-child td { border-bottom: none; }
.example-table tr.total-row {
    background: linear-gradient(180deg, #fffbeb, #fef3c7);
    font-weight: 800;
}
.example-table tr.total-row td { color: #92400e; border-top: 2px solid #f59e0b; }
.example-table td strong { color: var(--lp-navy); }

@media (max-width: 900px) {
    .example-hero { grid-template-columns: 1fr; }
    .example-stat-row { grid-template-columns: repeat(2, 1fr); }
}

/* Risk Disclaimer Section */
.risk-section {
    background: linear-gradient(180deg, #fff1f2 0%, #fef2f2 100%);
    border-top: 1px solid rgba(239, 68, 68, 0.12);
    border-bottom: 1px solid rgba(239, 68, 68, 0.12);
}
.risk-banner {
    text-align: center;
    padding: 1.75rem 1.5rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    border-radius: 1.25rem;
    margin-bottom: 1.75rem;
    box-shadow: 0 18px 36px rgba(239, 68, 68, 0.18);
}
.risk-banner strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
    letter-spacing: 0.01em;
}
.risk-banner p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.97;
}

.risk-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
.risk-card {
    background: #fff;
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 1rem;
    padding: 1.4rem;
    box-shadow: 0 6px 18px rgba(239, 68, 68, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.risk-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(239, 68, 68, 0.1);
}
.risk-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
    font-weight: 800;
    color: #b91c1c;
    margin: 0 0 0.75rem;
    line-height: 1.25;
}
.risk-card p {
    color: #7f1d1d;
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0 0 0.5rem;
}
.risk-card ul {
    padding-left: 1.2rem;
    margin: 0;
}
.risk-card ul li {
    color: #7f1d1d;
    font-size: 0.86rem;
    line-height: 1.55;
    margin-bottom: 0.3rem;
}

.risk-callout {
    padding: 1.25rem 1.5rem;
    background: #fff7ed;
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-left: 4px solid #f97316;
    border-radius: 0 1rem 1rem 0;
    color: #7c2d12;
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}
.risk-callout strong { color: #9a3412; display: block; margin-bottom: 0.2rem; }

.risk-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.risk-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 0.8rem;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
}
.risk-badge::before {
    content: '✕';
    font-size: 0.7rem;
    font-weight: 800;
}

.risk-footer-note {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(239, 68, 68, 0.2);
}
.risk-footer-note p {
    margin: 0 0 0.35rem;
    color: #7f1d1d;
    font-size: 0.88rem;
    line-height: 1.55;
}
.risk-footer-note p small {
    color: #991b1b;
    opacity: 0.85;
    font-size: 0.8rem;
}

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

/* ============ PREMIUM VISUAL ENHANCEMENTS ============ */

/* ==== Decorative animated background blobs ==== */
.section-blobs {
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.section-blobs > .section-inner { position: relative; z-index: 1; }
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
    animation: blobFloat 14s ease-in-out infinite;
}
.blob.blob-a {
    width: 340px; height: 340px;
    left: -80px; top: -60px;
    background: radial-gradient(circle, rgba(34,211,238,0.55), rgba(34,211,238,0) 70%);
}
.blob.blob-b {
    width: 380px; height: 380px;
    right: -100px; top: 20%;
    background: radial-gradient(circle, rgba(251,191,36,0.5), rgba(251,191,36,0) 70%);
    animation-delay: -5s;
}
.blob.blob-c {
    width: 300px; height: 300px;
    left: 30%; bottom: -100px;
    background: radial-gradient(circle, rgba(139,92,246,0.45), rgba(139,92,246,0) 70%);
    animation-delay: -9s;
}
.blob.blob-r1 {
    width: 300px; height: 300px;
    left: -60px; top: 10%;
    background: radial-gradient(circle, rgba(245,158,11,0.45), rgba(245,158,11,0) 70%);
}
.blob.blob-r2 {
    width: 340px; height: 340px;
    right: -80px; bottom: 10%;
    background: radial-gradient(circle, rgba(16,185,129,0.45), rgba(16,185,129,0) 70%);
    animation-delay: -6s;
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.06); }
    66% { transform: translate(-20px, 25px) scale(0.96); }
}

/* ==== Premium Hero enhancements ==== */
.landing-hero {
    background:
        radial-gradient(ellipse 70% 55% at 15% 10%, rgba(14, 116, 144, 0.18), transparent 55%),
        radial-gradient(ellipse 60% 50% at 90% 20%, rgba(37, 99, 235, 0.13), transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(245, 158, 11, 0.1), transparent 55%),
        radial-gradient(ellipse 40% 30% at 70% 60%, rgba(139, 92, 246, 0.08), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #f0f9ff 35%, #e0f2fe 55%, #f1f5f9 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-brand { position: relative; z-index: 2; }

/* Gradient animated headline */
.gradient-text {
    background: linear-gradient(90deg,
        #0891b2 0%,
        #2563eb 25%,
        #7c3aed 50%,
        #db2777 75%,
        #ea580c 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease-in-out infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-lead-gradient {
    background: linear-gradient(90deg, #1e293b, #334155, #1e293b);
    background-size: 200% 200%;
    animation: gradientShift 12s ease-in-out infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==== Premium Buttons (glow + shimmer) ==== */
.btn-primary {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(135deg, #0d9488 0%, #0e7490 40%, #6366f1 100%);
    border-color: transparent;
    box-shadow:
        0 8px 24px rgba(14, 116, 144, 0.32),
        0 0 0 1px rgba(255,255,255,0.1) inset;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
    z-index: 0;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow:
        0 14px 36px rgba(99, 102, 241, 0.35),
        0 0 0 1px rgba(255,255,255,0.15) inset;
}
.btn-primary > * { position: relative; z-index: 1; }

.btn-outline {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid var(--lp-border);
    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.04),
        0 0 0 1px rgba(255,255,255,0.6) inset;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
    transform: translateY(-2px);
    border-color: var(--lp-accent);
    color: var(--lp-accent);
    box-shadow:
        0 8px 22px rgba(14, 116, 144, 0.15),
        0 0 0 1px rgba(14, 116, 144, 0.1) inset;
}

/* ==== Premium section headers ==== */
.section-header {
    position: relative;
    padding-bottom: 6px;
}
.section-header.centered-accent::after {
    content: '';
    display: block;
    margin: 18px auto 0;
    width: 64px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0e7490, #f59e0b);
    box-shadow: 0 0 20px rgba(14, 116, 144, 0.3);
    animation: accentPulse 4s ease-in-out infinite;
}
@keyframes accentPulse {
    0%, 100% { opacity: 1; transform: scaleX(1); }
    50% { opacity: 0.65; transform: scaleX(0.9); }
}

.section-header h2 {
    position: relative;
    display: inline-block;
}
.dark-section .section-header h2 {
    background: linear-gradient(90deg, #fff, #e0f2fe, #fde68a);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 10s ease-in-out infinite;
}

/* ==== Enhanced Nav ==== */
.landing-nav {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid rgba(11, 58, 110, 0.08);
    box-shadow: 0 2px 20px rgba(15, 23, 42, 0.05);
    transition: box-shadow 0.3s ease;
}
.landing-nav.scrolled {
    box-shadow: 0 6px 32px rgba(15, 23, 42, 0.08);
}
.nav-btn {
    background: linear-gradient(135deg, #0d9488 0%, #0e7490 50%, #6366f1 100%) !important;
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(14, 116, 144, 0.25) !important;
    border: none !important;
    position: relative;
    overflow: hidden;
}
.nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}
.nav-btn:hover::before { transform: translateX(100%); }
.nav-btn:hover { background: linear-gradient(135deg, #14b8a6 0%, #0891b2 50%, #818cf8 100%) !important; }

/* ==== Scroll Reveal ==== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
        transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: opacity, transform;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-right.visible { opacity: 1; transform: none; }
.reveal-pop {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-pop.visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.08s !important; }
.reveal-delay-2 { transition-delay: 0.16s !important; }
.reveal-delay-3 { transition-delay: 0.24s !important; }
.reveal-delay-4 { transition-delay: 0.32s !important; }
.reveal-delay-5 { transition-delay: 0.40s !important; }

/* ==== Animated gradient border cards ==== */
.border-glow {
    position: relative;
    z-index: 0;
}
.border-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg,
        rgba(14,116,144,0.7),
        rgba(99,102,241,0.6),
        rgba(245,158,11,0.6),
        rgba(14,116,144,0.7));
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: gradientShift 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.border-glow:hover::before { opacity: 1; }

/* ==== Card 3D tilt + shine ==== */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 900px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tilt-card {
    position: relative;
    overflow: hidden;
}
.tilt-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--tx, 50%) var(--ty, 0%), rgba(255,255,255,0.45), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}
.tilt-card:hover::after { opacity: 1; }

/* ==== Animated step numbers ==== */
.step-num {
    position: relative;
    display: inline-block;
    padding: 3px 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(14,116,144,0.12), rgba(99,102,241,0.12));
    color: var(--lp-accent);
    font-weight: 800;
    box-shadow: 0 0 0 1px rgba(14,116,144,0.2);
}

/* ==== Beautiful Wave divider between sections ==== */
.wave-divider {
    display: block;
    width: 100%;
    height: 80px;
    position: relative;
    z-index: 1;
    line-height: 0;
    overflow: hidden;
    background: transparent;
}
.wave-divider svg {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

/* ==== Animated CTA gradient banner ==== */
.landing-cta {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 60% at 20% 20%, rgba(14, 116, 144, 0.12), transparent 60%),
        radial-gradient(ellipse 50% 50% at 80% 80%, rgba(251, 191, 36, 0.12), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #ecfeff 40%, #fff7ed 100%);
}
.landing-cta h2 {
    background: linear-gradient(90deg, #0891b2, #2563eb, #7c3aed, #ea580c);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 9s ease-in-out infinite;
}

/* ==== Footer accent ==== */
.landing-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #f8fafc 70%, #f1f5f9);
    border-top: 1px solid rgba(14, 116, 144, 0.12);
}

/* ==== Package tiles premium hover ==== */
.pkg-tile {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pkg-tile::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0e7490, #6366f1, #f59e0b);
    background-size: 200% 200%;
    animation: gradientShift 6s ease-in-out infinite;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.pkg-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 116, 144, 0.35);
    box-shadow: 0 18px 44px rgba(14, 116, 144, 0.15);
}
.pkg-tile:hover::after { transform: scaleX(1); }
.pkg-tile:hover .pkg-level {
    color: #fff;
    background: linear-gradient(135deg, #0e7490, #6366f1);
}
.pkg-tile:hover .pkg-price { color: var(--lp-accent); }

.pkg-level {
    transition: all 0.3s ease;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(14,116,144,0.08);
}

/* ==== Income blocks shine ==== */
.income-block {
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.income-block::after {
    content: '';
    position: absolute;
    inset: auto auto -40% -40%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(14,116,144,0.1), transparent 60%);
    pointer-events: none;
    transition: transform 0.4s ease;
}
.income-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
    border-color: rgba(14, 116, 144, 0.25);
}
.income-block:hover::after { transform: scale(1.4); }

/* ==== Cartoon bubble float enhancement ==== */
.cartoon-bubble {
    position: relative;
    overflow: hidden;
}
.cartoon-bubble::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px;
    height: 4px;
    background: linear-gradient(90deg, #14b8a6, #f59e0b, #ec4899, #14b8a6);
    background-size: 300% 100%;
    animation: gradientShift 6s linear infinite;
    border-radius: 22px 22px 0 0;
}
.cartoon-bubble:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 26px 50px rgba(15, 23, 42, 0.18);
}

/* ==== Enhanced crypto-stage cards ==== */
.crypto-card {
    transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.crypto-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 28px 56px rgba(15, 23, 42, 0.16);
    border-color: rgba(14, 116, 144, 0.25);
}
.crypto-card:hover h3 {
    background: linear-gradient(90deg, #0e7490, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==== Soon cards ==== */
.soon-card {
    transition: all 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.soon-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.12);
}
.soon-card::before {
    height: 4px;
    animation: gradientShift 7s ease-in-out infinite;
    background-size: 300% 300%;
}
.soon-badge {
    position: relative;
    animation: badgePulse 2.2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(249, 115, 22, 0); }
}

/* ==== Premium marketing cards ==== */
.marketing-card {
    transition: all 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.marketing-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 26px 50px rgba(15, 23, 42, 0.14);
}
.marketing-card:hover h3 {
    background: linear-gradient(90deg, var(--lp-accent), #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.marketing-card.abps-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.5);
}
.marketing-card.abps-card:hover h3 {
    background: linear-gradient(90deg, #b45309, #ea580c);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==== Risk banner glow ==== */
.risk-banner {
    position: relative;
    overflow: hidden;
}
.risk-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shimmer 5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes shimmer {
    0%, 70%, 100% { transform: translateX(-100%); }
    85% { transform: translateX(100%); }
}
.risk-card {
    transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.risk-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 68, 68, 0.35);
    box-shadow: 0 20px 44px rgba(239, 68, 68, 0.14);
}

/* ==== Example stat blocks ==== */
.example-stat {
    transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.example-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(245, 158, 11, 0.2);
}

/* ==== Animated stats counter style ==== */
.counter-num {
    font-variant-numeric: tabular-nums;
}

/* ==== Platform list premium ==== */
.platform-list li {
    position: relative;
    transition: all 0.3s ease;
}
.platform-list li:hover {
    background: linear-gradient(135deg, #ffffff, #f0fdfa);
}
.platform-list li:hover h3 {
    color: var(--lp-accent);
}

/* ==== Table premium ==== */
.example-table tbody tr { transition: background 0.2s ease; }
.example-table tbody tr:hover td { background: rgba(14, 116, 144, 0.04); }
.compare-table tbody tr { transition: background 0.2s ease; }
.compare-table tbody tr:hover td { background: rgba(14, 116, 144, 0.04); }

/* ==== Airdrop cards ==== */
.airdrop-issue-card {
    transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.airdrop-issue-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 70px; height: 70px;
    background: radial-gradient(circle at top right, rgba(20,184,166,0.18), transparent 65%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translate(20px, -20px) scale(0.5);
}
.airdrop-issue-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(20, 184, 166, 0.14);
    border-color: rgba(20, 184, 166, 0.3);
}
.airdrop-issue-card:hover::after { opacity: 1; transform: translate(0,0) scale(1); }
.airdrop-issue-card:hover h3 { color: var(--lp-accent); }

/* ==== VM cards shine ==== */
.vm-card {
    position: relative;
    overflow: hidden;
}
.vm-card::after {
    content: '';
    position: absolute;
    inset: auto -30% -30% auto;
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.vm-card:hover::after { opacity: 1; transform: scale(1.4); }

/* ==== Income future items ==== */
.income-future-item {
    transition: all 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.income-future-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
    border-color: rgba(14, 116, 144, 0.25);
}
.income-future-item:hover h4 { color: var(--lp-accent); }

/* ==== Responsive tweaks for premium effects ==== */
@media (max-width: 768px) {
    .section-blobs .blob { transform: scale(0.75) !important; opacity: 0.35 !important; }
    .wave-divider { height: 48px; }
    .gradient-text { animation: none; -webkit-text-fill-color: inherit; background: none; color: var(--lp-navy); }
    .hero-lead-gradient { animation: none; -webkit-text-fill-color: inherit; background: none; color: var(--lp-muted); }
}
@media (prefers-reduced-motion: reduce) {
    .gradient-text,
    .dark-section .section-header h2,
    .landing-cta h2 {
        animation: none;
    }
    .blob, .soon-badge, .section-header.centered-accent::after,
    .nav-btn::before, .btn-primary::before,
    .border-glow::before, .risk-banner::after {
        animation: none !important;
    }
    .reveal, .reveal-left, .reveal-right, .reveal-pop {
        opacity: 1 !important;
        transform: none !important;
    }
}
