/* ============================================
   LIMISKYTOKEN AIRDROP LANDING PAGE
   CSS3 - Responsive, Modern Design (Soft & Friendly)
   ============================================ */

:root {
    --ink: #1f2033;
    --ink-soft: #4b4f6b;
    --paper: #f7f8ff;
    --paper-2: #f2f3fb;
    --paper-3: #ffffff;
    --brand-violet: #6a6ff5;
    --brand-blue: #6aa8ff;
    --brand-cyan: #6fe0ff;
    --brand-pink: #ff7ac2;
    --brand-deep: #2c2f67;
    --gold: #f7c86a;
    --border-color: rgba(92, 98, 160, 0.18);
    --border-color-light: rgba(92, 98, 160, 0.12);

    --container-max-width: 1200px;
    --container-padding: 2rem;

    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;

    --shadow-soft: 0 20px 45px rgba(77, 83, 135, 0.18);
    --shadow-card: 0 16px 32px rgba(77, 83, 135, 0.12);

    --trans-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: linear-gradient(180deg, #f7f8ff 0%, #fdf2fb 45%, #f6f7ff 100%);
    color: var(--ink);
    font-family: var(--font-primary);
    line-height: 1.65;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.4px;
    font-family: var(--font-accent);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.05rem;
    color: var(--ink-soft);
    font-weight: 400;
}

a {
    color: var(--brand-violet);
    text-decoration: none;
    transition: color var(--trans-normal);
}

a:hover {
    color: var(--brand-pink);
}

/* ============================================
   BUTTONS - SOFT & FRIENDLY
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.875rem 1.75rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--trans-normal);
    letter-spacing: 0.2px;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(77, 83, 135, 0.18);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-violet), var(--brand-pink));
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(99, 91, 200, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, #5e62f0, #ff8ccf);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: var(--ink);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand-violet);
    border-color: rgba(106, 111, 245, 0.4);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 999px;
}

.btn-nav {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 999px;
}

/* Hide Font Awesome / empty icon placeholders inside buttons when icons aren't loaded */
.btn i[class*="fa"],
.btn .fas,
.btn .fa {
    display: none !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 249, 255, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(124, 130, 190, 0.18);
    box-shadow: 0 10px 30px rgba(71, 74, 120, 0.08);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    font-family: var(--font-accent);
    transition: transform var(--trans-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(72, 76, 140, 0.18);
    transition: transform var(--trans-normal), box-shadow var(--trans-normal);
    object-fit: cover;
}

.logo:hover img {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(72, 76, 140, 0.25);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex: 1;
}

.nav-links a {
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--trans-normal);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-violet), var(--brand-pink));
    transition: width var(--trans-normal);
}

.nav-links a:hover {
    color: var(--brand-violet);
}

.nav-links a:hover:before {
    width: 100%;
}

.nav-links a.active {
    color: var(--brand-violet);
}

.nav-links a.active:before {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--brand-violet);
    border-radius: 2px;
    transition: all var(--trans-normal);
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    position: relative;
    padding-top: 130px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(900px 500px at 15% 20%, rgba(111, 224, 255, 0.18), transparent 60%),
        radial-gradient(700px 500px at 85% 15%, rgba(255, 122, 194, 0.18), transparent 60%),
        linear-gradient(180deg, #f7f8ff 0%, #f2f0ff 45%, #fdf2fb 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    animation: float 15s infinite ease-in-out;
}

.particle-1 {
    width: 300px;
    height: 300px;
    background: var(--brand-blue);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 200px;
    height: 200px;
    background: var(--brand-pink);
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}

.particle-3 {
    width: 250px;
    height: 250px;
    background: var(--brand-violet);
    bottom: 10%;
    left: 50%;
    animation-delay: 4s;
}

.particle-4 {
    width: 150px;
    height: 150px;
    background: var(--brand-cyan);
    bottom: 20%;
    right: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-inner {
    text-align: center;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--ink);
    font-family: var(--font-accent);
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-violet) 55%, var(--brand-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--ink-soft);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.highlight {
    background: linear-gradient(135deg, var(--brand-violet), var(--brand-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.countdown-container {
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countdown-label {
    font-size: 1rem;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 500;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.5rem 1rem;
    backdrop-filter: blur(10px);
    transition: all var(--trans-normal);
    cursor: default;
}

.countdown-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(106, 111, 245, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 16px 28px rgba(77, 83, 135, 0.15);
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-violet);
    font-family: var(--font-accent);
    margin-bottom: 0.5rem;
}

.countdown-item .countdown-label {
    font-size: 0.85rem;
    color: rgba(75, 79, 107, 0.7);
    margin-bottom: 0;
}

.hero-cta {
    margin: 2rem 0 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-subtitle {
    font-size: 0.9rem;
    color: rgba(75, 79, 107, 0.7);
    margin-top: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    transition: all var(--trans-normal);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(106, 111, 245, 0.4);
    transform: translateY(-4px);
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-violet);
    font-family: var(--font-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(75, 79, 107, 0.7);
    font-weight: 500;
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    padding: 5rem var(--container-padding);
    border-top: 1px solid var(--border-color-light);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--ink);
    font-family: var(--font-accent);
    background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-violet) 70%, var(--brand-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: var(--ink-soft);
    font-weight: 400;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
    background: linear-gradient(135deg, rgba(106, 111, 245, 0.08) 0%, rgba(255, 122, 194, 0.06) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all var(--trans-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-color), var(--brand-pink));
    border-radius: 24px 24px 0 0;
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(106, 111, 245, 0.35);
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(77, 83, 135, 0.2);
}

.card-icon {
    font-size: 3.5rem;
    color: var(--card-color);
    margin-bottom: 1.5rem;
    transition: all var(--trans-normal);
    display: inline-block;
}

.about-card:hover .card-icon {
    transform: scale(1.15) rotate(8deg);
    filter: drop-shadow(0 8px 12px rgba(102, 121, 220, 0.25));
}

.about-card h3 {
    color: var(--ink);
    margin-bottom: 1rem;
}

.about-card p {
    margin-bottom: 2rem;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.7;
}

.card-benefit {
    padding: 1.2rem;
    background: rgba(106, 111, 245, 0.08);
    border-radius: 16px;
    border-left: 4px solid var(--card-color);
    color: var(--ink);
    font-size: 0.95rem;
    transition: all var(--trans-normal);
}

.card-benefit:hover {
    background: rgba(106, 111, 245, 0.12);
    transform: translateX(5px);
}

.card-benefit strong {
    color: var(--card-color);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
#how-works {
    background: linear-gradient(135deg, rgba(111, 224, 255, 0.06) 0%, rgba(106, 111, 245, 0.08) 100%);
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-violet), transparent);
    z-index: 0;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
        top: 0;
        width: 2px;
        height: calc(100% + 3rem);
    }
}

.timeline-item {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all var(--trans-normal);
    box-shadow: var(--shadow-card);
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(106, 111, 245, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(77, 83, 135, 0.18);
}

.timeline-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--dot-color);
    border: 4px solid var(--paper);
    border-radius: 50%;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 10px rgba(106, 111, 245, 0.15);
    z-index: 2;
    transition: all var(--trans-normal);
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 0 12px rgba(106, 111, 245, 0.25);
}

@media (max-width: 768px) {
    .timeline-dot {
        top: 10px;
        left: -32px;
    }
}

.timeline-content h3 {
    color: var(--ink);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.timeline-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.timeline-list li {
    color: var(--ink-soft);
    font-size: 0.95rem;
    padding-left: 1.8rem;
    position: relative;
    transition: all var(--trans-normal);
}

.timeline-list li:hover {
    color: var(--ink);
    transform: translateX(5px);
}

.timeline-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: var(--brand-pink);
    font-weight: 700;
    font-size: 1.1rem;
}

/* ============================================
   ROADMAP SECTION
   ============================================ */
#roadmap {
    background: linear-gradient(135deg, rgba(255, 122, 194, 0.05) 0%, rgba(106, 111, 245, 0.06) 100%);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.roadmap-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all var(--trans-normal);
    position: relative;
    box-shadow: var(--shadow-card);
}

.roadmap-card.active {
    background: linear-gradient(135deg, #5c61f0 0%, #7a6cfb 45%, #ff7ac2 100%);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px rgba(93, 90, 190, 0.3);
}

.roadmap-card:hover {
    border-color: rgba(106, 111, 245, 0.35);
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(77, 83, 135, 0.15);
}

.roadmap-quarter {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand-violet);
    font-family: var(--font-accent);
    margin-bottom: 1.5rem;
}

.roadmap-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.roadmap-item {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.roadmap-card.active .roadmap-item {
    color: rgba(255, 255, 255, 0.9);
}

.roadmap-status {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(106, 111, 245, 0.12);
    color: rgba(75, 79, 107, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--trans-normal);
}

.roadmap-status.active {
    background: rgba(255, 122, 194, 0.25);
    color: var(--brand-pink);
}

/* ============================================
   TOKENOMICS SECTION
   ============================================ */
#tokenomics {
    background: linear-gradient(135deg, rgba(106, 111, 245, 0.05) 0%, rgba(111, 224, 255, 0.05) 100%);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.tokenomics-chart {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.pie-chart {
    width: 100%;
    height: auto;
    transform: rotate(-90deg);
    filter: drop-shadow(0 15px 30px rgba(77, 83, 135, 0.12));
}

.pie-segment {
    fill-rule: evenodd;
    transition: stroke-width var(--trans-normal), filter var(--trans-normal);
    stroke-linecap: round;
}

.pie-chart:hover .pie-segment {
    stroke-width: 20;
    filter: drop-shadow(0 8px 16px rgba(77, 83, 135, 0.2));
}

.pie-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(30, 33, 70, 0.9);
    padding: 1.2rem;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 8px 16px rgba(0, 0, 0, 0.25);
}

.pie-total {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-cyan);
    font-family: var(--font-accent);
}

.pie-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.tokenomics-legend {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    border-left: 4px solid transparent;
    transition: all var(--trans-normal);
    box-shadow: var(--shadow-card);
}

.legend-item:hover {
    background: rgba(255, 255, 255, 0.95);
    border-left-color: rgba(106, 111, 245, 0.45);
    transform: translateX(6px);
}

.legend-color {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.legend-text {
    flex: 1;
}

.legend-text strong {
    display: block;
    color: var(--ink);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.legend-text span {
    font-size: 0.85rem;
    color: var(--ink-soft);
}

.tokenomics-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.metric {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 2rem;
    text-align: center;
    transition: all var(--trans-normal);
    box-shadow: var(--shadow-card);
}

.metric:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(106, 111, 245, 0.4);
    transform: translateY(-6px);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--ink-soft);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-violet);
    font-family: var(--font-accent);
}

/* ============================================
   FAQ SECTION
   ============================================ */
#faq {
    background: linear-gradient(135deg, rgba(255, 122, 194, 0.04) 0%, rgba(111, 224, 255, 0.05) 100%);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all var(--trans-normal);
    box-shadow: var(--shadow-card);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(106, 111, 245, 0.4);
    box-shadow: 0 18px 35px rgba(77, 83, 135, 0.15);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: all var(--trans-normal);
    text-align: left;
}

.faq-question:hover {
    color: var(--brand-violet);
}

.faq-question i {
    font-size: 1rem;
    color: var(--brand-violet);
    transition: transform var(--trans-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--trans-slow);
    background: rgba(106, 111, 245, 0.04);
    border-top: 1px solid var(--border-color);
}

.faq-answer.active {
    max-height: 600px;
    padding: 2rem;
}

.faq-answer p {
    color: var(--ink-soft);
    line-height: 1.8;
    font-size: 1rem;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta {
    background: linear-gradient(135deg, #5a60f0 0%, #7a6cfb 45%, #ff7ac2 100%);
    text-align: center;
    padding: 6rem var(--container-padding);
}

.final-cta h2 {
    color: white;
    margin-bottom: 2rem;
    font-family: var(--font-accent);
}

.final-countdown {
    margin: 3rem 0;
}

.final-countdown > p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

#final-countdown {
    margin-bottom: 3rem;
}

#final-countdown .countdown-item {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

#final-countdown .countdown-item:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

#final-countdown .countdown-number {
    color: #ffe39a;
}

.final-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .btn-secondary {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(135deg, #f1f3ff 0%, #fdf2fb 100%);
    border-top: 1px solid rgba(124, 130, 190, 0.2);
    padding: 4rem var(--container-padding) 2rem;
    color: var(--ink-soft);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: var(--ink);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: var(--ink-soft);
    font-size: 0.95rem;
    transition: all var(--trans-normal);
    padding-left: 0;
}

.footer-column a:hover {
    color: var(--brand-violet);
    padding-left: 6px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1rem;
    font-family: var(--font-accent);
}

.footer-logo img {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(72, 76, 140, 0.18);
    object-fit: cover;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(75, 79, 107, 0.7);
    margin-top: 1rem !important;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all var(--trans-normal);
}

.social-links a:hover {
    background: var(--brand-violet);
    color: white;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(93, 90, 190, 0.25);
}

.footer-bottom {
    border-top: 1px solid rgba(124, 130, 190, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.disclaimer {
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.disclaimer strong {
    color: var(--brand-pink);
}

.footer-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.4rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--ink-soft);
    transition: all var(--trans-normal);
    font-weight: 500;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(106, 111, 245, 0.4);
    color: var(--brand-violet);
}

.badge i {
    color: var(--brand-violet);
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   LOGO SHOWCASE
   ============================================ */
.logo-showcase {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: center;
    margin-top: 4rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    box-shadow: var(--shadow-soft);
}

.logo-visual {
    display: flex;
    justify-content: center;
}

.logo-visual img {
    width: 100%;
    max-width: 320px;
    border-radius: 26px;
    object-fit: cover;
    box-shadow: 0 24px 50px rgba(77, 83, 135, 0.25);
}

.logo-copy {
    text-align: left;
}

.logo-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(106, 111, 245, 0.12);
    border: 1px solid rgba(106, 111, 245, 0.25);
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 1rem;
}

.logo-chip img {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(77, 83, 135, 0.18);
}

.logo-showcase p {
    font-size: 1.05rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE - TABLETS
   ============================================ */
   
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

    .tokenomics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .final-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-buttons .btn {
        width: 100%;
        max-width: 400px;
    }
}

/* ============================================
   RESPONSIVE - MOBILES
   ============================================ */
@media (max-width: 768px) {
    :root {
        --container-padding: 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(248, 249, 255, 0.98);
        border-top: 1px solid var(--border-color);
        padding: 1rem 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
    }

    .nav-links a:before {
        display: none;
    }

    section {
        padding: 3rem 1.5rem;
    }

    #hero {
        padding-top: 100px;
        padding-bottom: 50px;
        min-height: auto;
    }

    .hero-image img {
        max-width: 100%;
    }

    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .countdown-item {
        padding: 1rem 0.75rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .about-grid,
    .roadmap-grid,
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline-line {
        display: none;
    }

    .timeline-dot {
        position: relative;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        margin-bottom: -15px;
    }

    .faq-question {
        padding: 1.5rem 1rem;
        font-size: 1rem;
    }

    .faq-answer.active {
        padding: 1.5rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-badges {
        gap: 1rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    h1, h2 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
    }

    .final-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .final-buttons .btn {
        width: 100%;
    }

    .logo-showcase {
        margin-top: 3rem;
        padding: 2rem;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .logo-copy {
        text-align: center;
    }

    .logo-chip {
        margin-left: auto;
        margin-right: auto;
    }

    .logo-visual img {
        max-width: 260px;
    }
}

/* ============================================
   RESPONSIVE - VERY SMALL MOBILES
   ============================================ */
@media (max-width: 480px) {
    :root {
        --container-padding: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.95rem;
    }

    section {
        padding: 2rem 1rem;
    }

    #hero {
        padding-top: 90px;
        min-height: auto;
    }

    .countdown {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .countdown-number {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 1rem;
        margin-top: 2rem;
    }

    .about-card,
    .roadmap-card {
        padding: 1.5rem 1rem;
    }

    .timeline-item {
        padding: 1.5rem 1rem;
    }

    .card-icon {
        font-size: 2rem;
    }

    .roadmap-quarter {
        font-size: 1.1rem;
    }

    .footer-column h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .footer-column a {
        font-size: 0.9rem;
    }

    .disclaimer {
        font-size: 0.8rem;
    }
}
