* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent: #54D18F;
    --accent-rgb: 84, 209, 143;
}

html,
body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: 110px;
}

@keyframes anchor-bounce {
    0% { transform: translateY(0); }
    35% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.is-anchor-jump {
    animation: anchor-bounce 520ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #131314;
    background-image: url("imgs/bg.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-header {
    animation: fade-up 1400ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
    animation-delay: 160ms;
}

.hero {
    animation: fade-up 1400ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
    animation-delay: 440ms;
}

.guide {
    animation: fade-up 1400ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
    animation-delay: 720ms;
}

.airdrop-progress {
    animation: fade-up 1400ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
    animation-delay: 1000ms;
}

.faq {
    max-width: 1250px;
    margin: 0 auto;
    padding: 10px 0 0;
    animation: fade-up 1400ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
    animation-delay: 1240ms;
}

.site-footer {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 18px 28px;
    animation: fade-up 1400ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
    animation-delay: 1480ms;
}

.footer-inner {
    border-radius: 18px;
    padding: 12px 14px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(var(--accent-rgb), 0.22);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.14), rgba(var(--accent-rgb), 0.06));
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.brand--footer {
    min-width: 0;
}

.footer-copy {
    justify-self: center;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.74);
    letter-spacing: 0.01em;
}

.footer-actions {
    justify-self: end;
    display: flex;
    justify-content: flex-end;
}

.faq-inner {
    padding: 22px;
    display: grid;
    gap: 10px;
}

.faq-head {
    padding: 4px 2px 6px;
}

.faq-title {
    margin: 0;
    font-size: clamp(20px, 2.2vw, 28px);
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: rgba(255, 255, 255, 0.96);
}

.faq-subtitle {
    margin: 10px 0 0;
    max-width: 68ch;
    color: rgba(255, 255, 255, 0.70);
    line-height: 1.55;
    font-size: 14px;
}

.faq-item {
    border-radius: 18px;
    border: 1px solid rgba(var(--accent-rgb), 0.16);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0.02));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.faq-q {
    list-style: none;
    cursor: pointer;
    padding: 14px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.92);
}

.faq-q::-webkit-details-marker {
    display: none;
}

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid rgba(var(--accent-rgb), 0.28);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.20), rgba(var(--accent-rgb), 0.06));
    position: relative;
    flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 2px;
    background: rgba(255, 255, 255, 0.90);
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 10px;
}

.faq-item[open] .faq-icon::after {
    transform: translate(-50%, -50%) scaleY(0);
}

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 320ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.faq-a-inner {
    overflow: hidden;
    padding: 0 14px 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.55;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 240ms ease, transform 240ms ease;
}

.faq-item[open] .faq-a {
    grid-template-rows: 1fr;
}

.faq-item[open] .faq-a-inner {
    opacity: 1;
    transform: translateY(0px);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.market-card {
    border-radius: 18px;
    padding: 14px 14px 12px;
    border: 1px solid rgba(var(--accent-rgb), 0.14);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.09), rgba(var(--accent-rgb), 0.02));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.market-card:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    border-color: rgba(var(--accent-rgb), 0.22);
}

.market-k {
    font-size: 12px;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.70);
}

.market-v {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.95);
}

.market-v--pos {
    color: rgba(var(--accent-rgb), 1);
}

.market-v--neg {
    color: rgba(255, 120, 120, 0.95);
}

.progress-market {
    margin-top: 10px;
}

.progress-market .market-card {
    padding: 12px 12px 11px;
    border-radius: 16px;
}

.progress-market .market-v {
    font-size: 16px;
    margin-top: 7px;
}

.progress-market[data-state="loading"] .market-v,
.progress-market[data-state="error"] .market-v {
    opacity: 0.75;
}

.progress-market[data-state="loading"] .market-card {
    position: relative;
    overflow: hidden;
}

.progress-market[data-state="loading"] .market-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0)
    );
    width: 50%;
    left: -60%;
    transform: skewX(-14deg);
    animation: progress-shimmer 2400ms ease-in-out infinite;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: smooth;
    }

    .site-header,
    .hero,
    .guide,
    .airdrop-progress,
    .faq,
    .site-footer {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .progress-fill,
    .progress-bar::after,
    .progress-stat,
    .progress-milestones::after,
    .milestone.is-active .milestone-dot {
        animation: none !important;
    }

    .progress-market[data-state="loading"] .market-card::after {
        animation: none;
    }

    .faq-a,
    .faq-a-inner {
        transition: none !important;
    }

    .is-anchor-jump {
        animation: none !important;
    }
}

#snow {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.9;
}

.site-header,
.page {
    position: relative;
    z-index: 1;
}

.page {
    padding: 24px 18px 64px;
}

.hero {
    max-width: 1250px;
    margin: 0 auto;
    padding-top: 18px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.45fr 0.55fr;
    align-items: center;
    gap: 18px;
    padding: 22px;
}

.hero-content {
    text-align: left;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(var(--accent-rgb), 0.34);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.20), rgba(var(--accent-rgb), 0.06));
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 500;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, rgba(var(--accent-rgb), 1), rgba(var(--accent-rgb), 0.18));
    box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.10);
}

.hero-title {
    margin-top: 14px;
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.96);
}

.hero-title-main {
    display: block;
    max-width: 24ch;
    text-wrap: balance;
}

.hero-title-accent {
    display: block;
    margin-top: 6px;
    font-weight: 700;
    font-size: 1em;
    line-height: 1.08;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 1), rgba(var(--accent-rgb), 0.55));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (min-width: 980px) {
    .hero-title-accent {
        white-space: nowrap;
    }
}

.hero-subtitle {
    margin-top: 14px;
    max-width: 520px;
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.80);
}

.hero-ctas {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    border-radius: 14px;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(var(--accent-rgb), 0.40);
    transition: transform 160ms ease, filter 160ms ease, background 160ms ease, color 160ms ease;
    user-select: none;
}

.hero-cta--primary {
    color: rgba(10, 20, 14, 0.92);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 1), rgba(var(--accent-rgb), 0.72));
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.hero-cta--secondary {
    color: rgba(255, 255, 255, 0.90);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.18), rgba(var(--accent-rgb), 0.06));
}

.hero-cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.hero-cta:active {
    transform: translateY(0px);
}

.hero-media {
    display: grid;
    place-items: center;
    min-height: 260px;
    justify-self: end;
}

.hero-illustration-wrap {
    position: relative;
    width: min(560px, 100%);
}

@media (min-width: 900px) {
    .hero-illustration-wrap {
        transform: scale(1.12);
        transform-origin: center right;
    }
}

.hero-illustration {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.40));
    opacity: 0.95;
    user-select: none;
    pointer-events: none;
}

.hero-coin-logo {
    position: absolute;
    left: 48.8%;
    top: 27.6%;
    transform: translate(-50%, -50%);
    width: clamp(60px, 12vw, 104px);
    height: auto;
    pointer-events: none;
    user-select: none;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.38));
}

.guide {
    max-width: 1250px;
    margin: 0 auto;
    padding: 10px 0 0;
}

.guide-inner {
    padding: 22px;
}

.guide-head {
    max-width: 760px;
}

.guide-title {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.guide-subtitle {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

.guide-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

.guide-card {
    grid-column: span 6;
    border-radius: 18px;
    padding: 16px 16px 14px;

    border: 1px solid rgba(var(--accent-rgb), 0.18);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.10), rgba(var(--accent-rgb), 0.03));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.guide-card--wide {
    grid-column: span 12;
}

.guide-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.guide-step {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.70);
}

.guide-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    border: 1px solid rgba(var(--accent-rgb), 0.30);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.24), rgba(var(--accent-rgb), 0.10));
    color: rgba(255, 255, 255, 0.92);
    flex: 0 0 auto;
}

.guide-card-title {
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    font-weight: 650;
    color: rgba(255, 255, 255, 0.95);
}

.guide-card-text {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.airdrop-progress {
    max-width: 1250px;
    margin: 0 auto;
    padding: 10px 0 0;
}

.progress-inner {
    padding: 22px;
}

.progress-head {
    max-width: 760px;
}

.progress-title {
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.progress-subtitle {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

.progress-card {
    --p: 0;
    margin-top: 16px;
    border-radius: 20px;
    padding: 18px;
    display: grid;
    gap: 14px;

    border: 1px solid rgba(var(--accent-rgb), 0.18);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.09), rgba(var(--accent-rgb), 0.03));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.progress-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.progress-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.01em;
}

.progress-value {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.86);
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid rgba(var(--accent-rgb), 0.18);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.12), rgba(var(--accent-rgb), 0.03));
}

.progress-percent {
    color: rgba(var(--accent-rgb), 1);
}

.progress-claim-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(var(--accent-rgb), 0.45);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 1), rgba(var(--accent-rgb), 0.72));
    color: rgba(10, 20, 14, 0.92);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: -0.01em;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    transition: transform 160ms ease, filter 160ms ease;
    user-select: none;
}

.progress-claim-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.progress-claim-btn:active {
    transform: translateY(0px);
}

.progress-bar {
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(var(--accent-rgb), 0.22);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.08));
    position: relative;
}

.progress-fill {
    height: 100%;
    width: calc(var(--p) * 1%);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 1), rgba(var(--accent-rgb), 0.55));
    box-shadow: 0 10px 24px rgba(var(--accent-rgb), 0.22);
    animation: progress-fill 1800ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
    animation-delay: 420ms;
}

.progress-bar::after {
    content: "";
    position: absolute;
    inset: -2px 0 -2px 0;
    width: 55%;
    left: -60%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0)
    );
    transform: skewX(-14deg);
    animation: progress-shimmer 2400ms ease-in-out infinite;
    animation-delay: 900ms;
    pointer-events: none;
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.progress-stat {
    border-radius: 16px;
    padding: 11px 12px;
    border: 1px solid rgba(var(--accent-rgb), 0.14);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.09), rgba(var(--accent-rgb), 0.02));
    transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease;
    animation: stat-in 900ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.progress-stat:nth-child(1) { animation-delay: 560ms; }
.progress-stat:nth-child(2) { animation-delay: 640ms; }
.progress-stat:nth-child(3) { animation-delay: 720ms; }
.progress-stat:nth-child(4) { animation-delay: 800ms; }

.progress-stat:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
    border-color: rgba(var(--accent-rgb), 0.22);
}

.progress-stat-k {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.70);
}

.progress-stat-v {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.94);
}

.progress-milestones {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 0;
    padding-top: 6px;
}

.progress-milestones::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 12px;
    height: 2px;
    border-radius: 999px;
    background: rgba(var(--accent-rgb), 0.18);
}

.progress-milestones::after {
    content: "";
    position: absolute;
    left: 6%;
    top: 12px;
    height: 2px;
    border-radius: 999px;
    width: calc(var(--p) * 0.88%);
    background: linear-gradient(90deg, rgba(var(--accent-rgb), 1), rgba(var(--accent-rgb), 0.35));
    animation: milestone-fill 1800ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
    animation-delay: 520ms;
}

.milestone {
    flex: 1 1 0;
    text-align: center;
}

.milestone-dot {
    width: 12px;
    height: 12px;
    margin: 0 auto 8px;
    border-radius: 999px;
    border: 1px solid rgba(var(--accent-rgb), 0.30);
    background: rgba(var(--accent-rgb), 0.10);
    box-shadow: 0 0 0 5px rgba(var(--accent-rgb), 0.06);
}

.milestone.is-done .milestone-dot {
    background: rgba(var(--accent-rgb), 0.55);
}

.milestone.is-active .milestone-dot {
    background: rgba(var(--accent-rgb), 1);
    box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0.12);
    animation: milestone-pulse 1600ms ease-in-out infinite;
}

.milestone-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
}

@keyframes progress-fill {
    from { width: 0%; }
    to { width: calc(var(--p) * 1%); }
}

@keyframes progress-shimmer {
    0% { left: -60%; opacity: 0; }
    20% { opacity: 1; }
    50% { left: 110%; opacity: 0.9; }
    100% { left: 110%; opacity: 0; }
}

@keyframes stat-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes milestone-fill {
    from { width: 0%; }
    to { width: calc(var(--p) * 0.88%); }
}

@keyframes milestone-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 18px 18px 32px;
    overflow: visible;
}

.header-inner {
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;

    border-radius: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(var(--accent-rgb), 0.28);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.18), rgba(var(--accent-rgb), 0.08));
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header-garland {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
    margin-top: 1px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-self: start;
    min-width: 0;
}

.brand-logo {
    width: 34px;
    height: 34px;
    display: block;
    flex: 0 0 auto;
    user-select: none;
    pointer-events: none;
}

.brand-text {
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav {
    justify-self: center;
    display: inline-flex;
    gap: 10px;
    padding: 0;
}

.nav-link {
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-link:hover {
    background: rgba(var(--accent-rgb), 0.14);
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-1px);
}

.nav-link.is-active {
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.28), rgba(var(--accent-rgb), 0.10));
    color: rgba(255, 255, 255, 0.95);
}

.header-actions {
    justify-self: end;
    display: flex;
    justify-content: flex-end;
}

.reward-btn {
    appearance: none;
    border: 1px solid rgba(var(--accent-rgb), 0.45);
    border-radius: 14px;
    padding: 10px 14px;
    font-family: inherit;
    font-weight: 600;
    font-size: 14px;
    color: rgba(10, 20, 14, 0.92);
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 1), rgba(var(--accent-rgb), 0.72));
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    cursor: pointer;
    transition: transform 160ms ease, filter 160ms ease;
}

.reward-btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.reward-btn:active {
    transform: translateY(0px);
}

@media (max-width: 760px) {
    .nav {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .hero-content {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas {
        justify-content: center;
    }

    .guide-head {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .guide-card {
        text-align: center;
    }

    .guide-card-top {
        justify-content: center;
    }

    .progress-head {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .progress-top {
        justify-content: center;
        flex-wrap: wrap;
    }

    .progress-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .progress-milestones {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .market-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-inner {
        padding: 18px;
    }

    .faq-head {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .faq-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .site-footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-inner {
        grid-template-columns: auto 1fr auto;
        justify-items: stretch;
        gap: 10px;
        text-align: left;
        padding: 10px 12px;
    }

    .footer-actions {
        justify-self: end;
    }

    .footer-copy {
        display: none;
    }

    .site-footer .reward-btn {
        padding: 9px 12px;
        font-size: 13px;
        border-radius: 12px;
    }
}

@media (max-width: 720px) {
    .hero {
        padding-top: 10px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-media {
        min-height: 180px;
        margin-top: 14px;
        justify-self: center;
    }

    .hero-illustration-wrap {
        width: min(560px, 100%);
        transform: none;
    }

    .hero-coin-logo {
        top: 29%;
    }

    .guide-inner {
        padding: 18px;
    }

    .guide-card {
        grid-column: span 12;
    }

    .header-inner {
        grid-template-columns: 1fr auto;
    }
}

