/* ============================================
   JUPITER AIRDROP — STYLE.CSS
   Design system inspired by jup.ag
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0B1018;
    --bg-secondary: #131B2E;
    --bg-card: rgba(27, 35, 50, 0.7);
    --bg-card-hover: rgba(35, 45, 65, 0.8);

    --accent-lime: #C7F284;
    --accent-teal: #00BEA4;
    --accent-gradient: linear-gradient(135deg, #00BEA4, #C7F284);
    --accent-gradient-hover: linear-gradient(135deg, #00d4b8, #d4f7a0);

    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;

    --border-color: rgba(255, 255, 255, 0.06);
    --border-active: rgba(199, 242, 132, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-glow: 0 0 40px rgba(199, 242, 132, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --header-h: 72px;
    --container-w: 1200px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
input { font-family: inherit; }

/* --- Container --- */
.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Section Titles --- */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Text gradient --- */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}

.btn--primary {
    background: var(--accent-gradient);
    color: #0B1018;
    box-shadow: 0 0 20px rgba(199, 242, 132, 0.2);
}
.btn--primary:hover {
    background: var(--accent-gradient-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-1px);
}

.btn--outline {
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    background: transparent;
}
.btn--outline:hover {
    border-color: var(--border-active);
    background: rgba(199, 242, 132, 0.05);
}

.btn--connect {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.875rem;
    padding: 8px 18px;
    border-radius: var(--radius-full);
}
.btn--connect:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn--sm {
    padding: 8px 16px;
    font-size: 0.8125rem;
}

.btn--full { width: 100%; }

.btn--claim {
    font-size: 1.0625rem;
    padding: 16px 32px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(11, 16, 24, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header--scrolled {
    background: rgba(11, 16, 24, 0.95);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
}

.header__logo-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}
.header__link:hover,
.header__link.active {
    color: var(--text-primary);
}
.header__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 1px;
    transition: var(--transition);
}
.header__link:hover::after {
    width: 100%;
}

/* Burger */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}
.header__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}
.header__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.active span:nth-child(2) { opacity: 0; }
.header__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-h) + 20px) 24px 60px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}
.hero__glow--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 190, 164, 0.3), transparent 70%);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}
.hero__glow--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(199, 242, 132, 0.2), transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero__stars {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: rgba(199, 242, 132, 0.1);
    border: 1px solid rgba(199, 242, 132, 0.2);
    color: var(--accent-lime);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease;
}

.hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.1s both;
}

.hero__subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero__subtitle strong { color: var(--accent-lime); font-weight: 600; }

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Keyframes */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(199, 242, 132, 0.2); }
    50% { box-shadow: 0 0 40px rgba(199, 242, 132, 0.4); }
}

/* ============================================
   STATS
   ============================================ */
.stats {
    padding: 0 24px;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.stat-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}
.stat-card:hover {
    background: var(--bg-card-hover);
}

.stat-card__value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-lime);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.stat-card__label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-card--timer .stat-card__value {
    font-variant-numeric: tabular-nums;
    font-family: 'Inter', monospace;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
    padding: 100px 24px;
}

.how__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}
.step-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.step-card:hover {
    border-color: var(--border-active);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}
.step-card.visible:hover {
    transform: translateY(-4px);
}

.step-card__number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.step-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    background: rgba(199, 242, 132, 0.08);
    color: var(--accent-lime);
    margin-bottom: 24px;
}

.step-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card__text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ============================================
   CLAIM SECTION
   ============================================ */
.claim {
    padding: 80px 24px 100px;
}

.claim__card {
    max-width: 520px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.claim__card-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(0, 190, 164, 0.15), transparent 70%);
    pointer-events: none;
}

.claim__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.claim__input-wrap {
    display: flex;
    gap: 8px;
}

.claim__input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 0.875rem;
    outline: none;
    transition: var(--transition);
}
.claim__input:focus {
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(0, 190, 164, 0.1);
}
.claim__input::placeholder {
    color: var(--text-muted);
}

.claim__divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--text-muted);
    font-size: 0.8125rem;
}
.claim__divider::before,
.claim__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

/* Claim Result */
.claim__result {
    margin-top: 32px;
    animation: fadeInUp 0.5s ease;
}

.claim__result-inner {
    background: rgba(199, 242, 132, 0.04);
    border: 1px solid rgba(199, 242, 132, 0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.claim__eligible-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: rgba(199, 242, 132, 0.1);
    color: var(--accent-lime);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.claim__amount {
    text-align: center;
    margin-bottom: 24px;
}

.claim__amount-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.claim__amount-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.claim__token-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.claim__amount-usd {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 80px 24px 100px;
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.faq__item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}
.faq__item.active {
    border-color: var(--border-active);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: left;
    transition: var(--transition);
}
.faq__question:hover {
    color: var(--accent-lime);
}

.faq__chevron {
    flex-shrink: 0;
    transition: transform var(--transition);
}
.faq__item.active .faq__chevron {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__answer p {
    padding: 0 24px 18px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ============================================
   DISTRIBUTION CHART + LIVE FEED
   ============================================ */
.distribution {
    padding: 80px 24px 100px;
}

.distribution__card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 280px;
}

.chart-container canvas {
    width: 100% !important;
    height: 100% !important;
}

.live-feed {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feed-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    transition: var(--transition);
}

.feed-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.feed-item__left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.feed-item__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
}

.feed-item__info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.feed-item__amount {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-lime);
}

.feed-item__address {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 320px;
}

.feed-item__time {
    font-size: 0.8125rem;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-left: 16px;
}

@media (max-width: 768px) {
    .distribution__card { padding: 20px 16px; }
    .chart-container { height: 200px; }
    .feed-item__address { max-width: 160px; }
}

@media (max-width: 480px) {
    .feed-item__address { max-width: 120px; }
    .feed-item { padding: 12px 14px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 24px 32px;
    background: rgba(11, 16, 24, 0.6);
}

.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 48px;
}

.footer__brand {
    max-width: 280px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.footer__logo-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.footer__desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer__links {
    display: flex;
    gap: 64px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__col-title {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.footer__link {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer__link:hover {
    color: var(--text-primary);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8125rem;
}

.footer__socials {
    display: flex;
    gap: 16px;
}

.footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    transition: var(--transition);
}
.footer__social:hover {
    background: rgba(199, 242, 132, 0.1);
    color: var(--accent-lime);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal__content {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 400px;
    padding: 0;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s ease;
    overflow: hidden;
}
.modal.active .modal__content {
    transform: scale(1) translateY(0);
}

.modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.modal__title {
    font-size: 1.125rem;
    font-weight: 700;
}

.modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}
.modal__close:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
}

.modal__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wallet-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    width: 100%;
    text-align: left;
}
.wallet-option:hover {
    background: rgba(255, 255, 255, 0.06);
}

.wallet-option__icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
}

.wallet-option__name {
    font-weight: 600;
    font-size: 0.9375rem;
    flex: 1;
}

.wallet-option__badge {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: rgba(199, 242, 132, 0.1);
    color: var(--accent-lime);
}

/* ============================================
   HERO STARS (generated via JS)
   ============================================ */
.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: twinkle var(--dur) ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

/* ============================================
   CLAIM BUTTON STATES
   ============================================ */
.btn--claim.processing {
    pointer-events: none;
    opacity: 0.8;
}

.btn--claim.claimed {
    background: rgba(0, 190, 164, 0.2);
    color: var(--accent-teal);
    pointer-events: none;
    box-shadow: none;
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(11, 16, 24, 0.3);
    border-top-color: #0B1018;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .how__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .how__grid .step-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    .footer__links {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: var(--bg-secondary);
        border-left: 1px solid var(--border-color);
        padding: calc(var(--header-h) + 24px) 32px 32px;
        gap: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    .header__nav.active {
        transform: translateX(0);
    }

    .header__burger { display: flex; }

    .header > .container > .btn--connect {
        display: none;
    }

    .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero__subtitle { font-size: 1rem; }
    .section-title { font-size: 2rem; }
    .section-subtitle { font-size: 1rem; margin-bottom: 36px; }

    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how__grid {
        grid-template-columns: 1fr;
    }
    .how__grid .step-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .claim__card { padding: 28px 20px; }

    .footer__top {
        flex-direction: column;
        gap: 40px;
    }
    .footer__links {
        flex-wrap: wrap;
        gap: 32px;
    }
    .footer__bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .stats__grid {
        grid-template-columns: 1fr;
    }
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    .hero__actions .btn { width: 100%; }

    .claim__input-wrap {
        flex-direction: column;
    }

    .stat-card__value { font-size: 1.5rem; }
}

/* ============================================
   SCROLL ANIMATIONS (AOS-like)
   ============================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
}
[data-aos].visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
