@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600&display=swap');

:root {
    --bg: #303948;
    --surface: #252d38;
    --text: #FFFFFF;
    --accent: #3cbef2;
    --accent-dark: #2a9ed8;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

.scanline {
    position: fixed;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(60, 190, 242, 0.025) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 9999;
    animation: scan 12s linear infinite;
    opacity: 0.45;
}

@keyframes scan {
    0% { background-position: 0 0; }
    100% { background-position: 0 600px; }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header {
    background: rgba(48, 57, 72, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(60, 190, 242, 0.18);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 2.4rem;
    font-weight: 500;
    font-size: 1.02rem;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    position: relative;
    transition: color 0.25s ease;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--accent);
}

.nav a:hover::after {
    width: 100%;
}

.status {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.92rem;
    color: #9ca3b8;
    font-weight: 500;
}

.dot {
    width: 9px;
    height: 9px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 14px var(--accent);
    animation: pulse 2.2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

/* HERO */
.hero {
    padding: 160px 0 120px;
    background: linear-gradient(180deg, #303948 0%, #252d38 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -25%;
    width: 820px;
    height: 820px;
    background: radial-gradient(circle, rgba(60,190,242,0.07) 0%, transparent 68%);
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content .badge {
    display: inline-block;
    background: rgba(60, 190, 242, 0.12);
    color: var(--accent);
    padding: 7px 18px;
    border-radius: 9999px;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    margin-bottom: 1.2rem;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3.4rem, 7.8vw, 6rem);
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 1.4rem;
    background: linear-gradient(90deg, #ffffff, #3cbef2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.38rem;
    max-width: 540px;
    opacity: 0.92;
    margin-bottom: 2.8rem;
}

.hero-buttons {
    display: flex;
    gap: 1.1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 17px 34px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1.06rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #1c2637;
}

.btn-primary:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 20px 35px -12px rgba(60, 190, 242, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(255,255,255,0.35);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.trust-bar {
    margin-top: 3.2rem;
    padding: 16px 26px;
    background: rgba(255,255,255,0.055);
    border-radius: 14px;
    font-size: 1rem;
    border-left: 4px solid var(--accent);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Mockups */
.mockup {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 30px 70px -18px rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(60, 190, 242, 0.22);
    transition: transform 0.4s ease;
}

.mockup:hover {
    transform: scale(1.02);
}

/* Sections */
.section {
    padding: 120px 0;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.85rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.1rem;
}

.section-desc {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
    font-size: 1.12rem;
    opacity: 0.88;
}

/* Mirrors */
.mirrors-section {
    background: var(--surface);
}

.mirrors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    gap: 1.6rem;
    margin-bottom: 3.2rem;
}

.mirror-card {
    background: rgba(48, 57, 72, 0.65);
    border: 1px solid rgba(60, 190, 242, 0.18);
    border-radius: 18px;
    padding: 2rem 1.9rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mirror-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -15px rgba(60, 190, 242, 0.25);
}

.mirror-icon {
    font-size: 2.4rem;
    color: var(--accent);
    margin-bottom: 1.1rem;
    opacity: 0.9;
}

.mirror-link {
    display: block;
    color: var(--accent);
    font-family: ui-monospace, monospace;
    font-size: 1.18rem;
    line-height: 1.45;
    margin-bottom: 1.1rem;
    text-decoration: none;
    word-break: break-all;
}

.mirror-link:hover {
    text-decoration: underline;
    color: #ffffff;
}

.mirror-status {
    font-size: 0.88rem;
    color: #4ade80;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.warning-box {
    background: rgba(249, 115, 22, 0.09);
    border: 1px solid rgba(249, 115, 22, 0.35);
    color: #fcd34d;
    padding: 1.4rem 1.9rem;
    border-radius: 14px;
    font-size: 0.98rem;
}

/* Review */
.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem;
    align-items: start;
}

.rating {
    font-size: 4.4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin: 1.6rem 0 2rem;
}

.features-list {
    list-style: none;
    margin: 2.2rem 0 2.8rem;
}

.features-list li {
    padding: 13px 0 13px 30px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.features-list li::before {
    content: '→';
    position: absolute;
    left: 4px;
    color: var(--accent);
    font-weight: 600;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
}

.pros ul,
.cons ul {
    list-style: none;
}

.pros li,
.cons li {
    padding: 9px 0;
    font-size: 1.03rem;
}

.pros strong,
.cons strong {
    color: var(--accent);
    display: block;
    margin-bottom: 0.9rem;
    font-size: 1.15rem;
}

.review-visuals .mockup-stack {
    position: relative;
}

.layered {
    position: relative;
    z-index: 1;
}

.offset {
    position: absolute;
    top: 36%;
    right: -16%;
    transform: rotate(8deg);
    z-index: 2;
    box-shadow: 0 35px 65px -15px rgba(0,0,0,0.75);
}

/* Vault */
.vault-section {
    background: var(--surface);
}

.vault-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.2rem;
}

.vault-card {
    background: #303948;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(60,190,242,0.17);
    transition: transform 0.3s ease;
}

.vault-card:hover {
    transform: translateY(-8px);
}

.vault-header {
    height: 255px;
    background: #1c2637;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}

.vault-img {
    max-height: 168px;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6));
}

.coin-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.6px;
}

.vault-body {
    padding: 2rem 1.9rem;
}

.vault-desc {
    opacity: 0.9;
    margin-bottom: 1.6rem;
    font-size: 1.02rem;
}

.vault-stat {
    font-size: 0.93rem;
    color: var(--accent);
    font-weight: 500;
}

/* Access */
.access-section {
    background: linear-gradient(180deg, var(--surface), var(--bg));
}

.access-content {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.1rem;
    margin-top: 4.2rem;
}

.step {
    background: rgba(48, 57, 72, 0.55);
    padding: 2.2rem 1.8rem;
    border-radius: 18px;
    text-align: left;
    border: 1px solid rgba(60,190,242,0.12);
    transition: all 0.3s ease;
}

.step:hover {
    border-color: rgba(60,190,242,0.3);
    transform: translateY(-4px);
}

.step-number {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.22;
    margin-bottom: 1.1rem;
}

.step-text strong {
    display: block;
    font-size: 1.28rem;
    margin-bottom: 0.6rem;
}

/* Footer */
.footer {
    background: #1c2637;
    padding: 4.5rem 0 2.2rem;
    border-top: 1px solid rgba(60,190,242,0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.footer-logo {
    opacity: 0.92;
}

.footer-desc {
    max-width: 380px;
    opacity: 0.72;
    margin-top: 1.1rem;
    font-size: 1rem;
}

.footer-links a {
    color: #9ca3b8;
    text-decoration: none;
    margin-left: 2.2rem;
    transition: color 0.25s;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    text-align: center;
    padding-top: 2.2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 0.87rem;
    opacity: 0.65;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid,
    .review-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .offset {
        position: static;
        transform: none;
        margin-top: 2.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .nav {
        gap: 1.3rem;
        font-size: 0.96rem;
    }
    
    .mirrors-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 130px 0 90px;
    }
}

.features-section,
.faq-section {
    background: #252d38;
}

.features-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card,
.faq-item {
    background: #303948;
    padding: 2rem 1.8rem;
    border-radius: 18px;
    border: 1px solid rgba(60, 190, 242, 0.15);
    transition: all 0.3s ease;
}

.feature-card:hover,
.faq-item:hover {
    border-color: #3cbef2;
    transform: translateY(-6px);
}

.feature-card h3,
.faq-item h3 {
    color: #3cbef2;
    margin-bottom: 1rem;
    font-size: 1.35rem;
    font-weight: 600;
}

.faq-item {
    text-align: left;
}

.faq-item h3 {
    font-size: 1.22rem;
    line-height: 1.4;
}

.features-section .section-desc,
.faq-section .section-desc {
    max-width: 760px;
}

.review-text h3 {
    margin: 2.2rem 0 1.2rem;
    color: #3cbef2;
    font-size: 1.45rem;
}

.mirrors-section h2,
.review-section h2,
.features-section h2,
.vault-section h2,
.access-section h2,
.faq-section h2 {
    background: linear-gradient(90deg, #ffffff, #3cbef2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle,
.section-desc {
    color: #e0e0e0;
}

.warning-box {
    margin-top: 2.5rem;
    font-size: 1rem;
    line-height: 1.55;
}

.access-content h2 {
    margin-bottom: 1.2rem;
}

.steps {
    margin-top: 3.5rem;
}

.step {
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(60, 190, 242, 0.08);
}

.footer-desc {
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .review-grid {
        gap: 4rem;
    }
    
    .offset {
        position: static;
        transform: none;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.1rem;
    }
    
    .nav {
        gap: 1rem;
        font-size: 0.95rem;
    }
    
    .hero-title {
        font-size: 2.9rem;
    }
}