/* style.css */
:root {
    --bg: #303948;
    --surface: #272f3a;
    --text: #ffffff;
    --text-secondary: #a8b4c4;
    --accent: #3cbef2;
    --accent-dark: #2a9fd8;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3.4rem, 9vw, 6.4rem);
}

h2 {
    font-size: clamp(2.4rem, 5.5vw, 2.9rem);
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(48, 57, 72, 0.95);
    backdrop-filter: blur(16px);
    z-index: 1000;
    border-bottom: 1px solid rgba(60, 190, 242, 0.12);
    transition: background 0.3s ease;
}

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

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

.nav a {
    color: var(--text);
    text-decoration: none;
    margin-left: 2.75rem;
    font-weight: 500;
    transition: color 0.25s ease;
    position: relative;
}

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

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

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

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

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

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 82px;
    position: relative;
    background: linear-gradient(to bottom, rgba(48,57,72,0.6), var(--bg));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem;
    align-items: center;
}

.hero-content {
    padding-right: 1rem;
}

.badge {
    display: inline-block;
    background: rgba(60, 190, 242, 0.15);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.42rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-top: 1.8rem;
}

.hero-buttons {
    margin-top: 4rem;
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
}

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

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

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(60, 190, 242, 0.5);
}

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

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

.hero-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(60, 190, 242, 0.25);
    transition: transform 0.6s ease;
}

.hero-visual:hover img {
    transform: scale(1.02);
}

.accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.review-section,
.wallets-section,
.details-section {
    padding: 160px 0;
    background: var(--surface);
}

.section-header {
    margin-bottom: 5rem;
}

.section-label {
    color: var(--accent);
    font-size: 0.98rem;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7.5rem;
    align-items: start;
}

.screenshot-stack {
    position: relative;
    height: 520px;
}

.screenshot {
    position: absolute;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.75);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.login-shot {
    top: 0;
    left: 0;
    transform: rotate(-8deg);
    z-index: 1;
}

.market-shot {
    top: 120px;
    right: -40px;
    transform: rotate(7deg);
    z-index: 2;
    width: 88%;
}

.review-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    padding: 2.4rem;
    margin-bottom: 2.2rem;
    transition: all 0.4s ease;
}

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

.review-card h3 {
    color: var(--accent);
    margin-bottom: 1.2rem;
    font-size: 1.48rem;
}

.highlight-box {
    background: linear-gradient(135deg, #3cbef2, #2899d4);
    color: #1f2836;
    padding: 3.2rem 3rem;
    border-radius: 24px;
}

.highlight-title {
    font-size: 1.2rem;
    opacity: 0.9;
}

.rating {
    font-size: 5.6rem;
    font-weight: 600;
    line-height: 1;
    margin: 0.8rem 0 0.6rem;
}

.rating-small {
    font-size: 2.2rem;
    vertical-align: super;
}

.mirrors-section {
    padding: 140px 0;
}

.mirrors-intro {
    max-width: 760px;
    margin-bottom: 3.5rem;
    color: var(--text-secondary);
    font-size: 1.12rem;
}

.mirrors-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mirror-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(60,190,242,0.18);
    border-radius: 16px;
    padding: 1.8rem 2.4rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mirror-item:hover {
    border-color: var(--accent);
    transform: translateX(18px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.mirror-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.1rem;
    color: var(--accent);
    width: 75px;
    flex-shrink: 0;
}

.mirror-link {
    flex: 1;
    color: var(--text);
    text-decoration: none;
    font-family: ui-monospace, monospace;
    font-size: 1.1rem;
    word-break: break-all;
}

.mirror-status {
    background: rgba(60,190,242,0.18);
    color: var(--accent);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.mirrors-note {
    margin-top: 3.5rem;
    padding: 2rem 2.4rem;
    background: rgba(60,190,242,0.08);
    border-radius: 16px;
    font-size: 1.05rem;
    line-height: 1.65;
}

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

.fact-item {
    background: rgba(255,255,255,0.035);
    padding: 2.2rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease;
}

.fact-item:hover {
    transform: translateY(-6px);
}

.fact-label {
    color: #8f9eb3;
    font-size: 0.96rem;
    margin-bottom: 0.8rem;
}

.fact-value {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.rule-list {
    list-style: none;
}

.rule-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--text-secondary);
}

.rule-list li:last-child {
    border-bottom: none;
}

.wallets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.8rem;
}

.wallet-card {
    background: rgba(255,255,255,0.04);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.wallet-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 40px 90px rgba(0,0,0,0.55);
    border-color: rgba(60,190,242,0.25);
}

.wallet-visual {
    height: 270px;
    background: #1c242f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.8rem;
}

.wallet-visual img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.wallet-info {
    padding: 2.4rem;
}

.wallet-info h3 {
    margin-bottom: 1.1rem;
    font-size: 1.55rem;
}

.wallet-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1.2rem;
}

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

.conclusion-section {
    padding: 150px 0;
}

.conclusion-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(60,190,242,0.25);
    border-radius: 28px;
    padding: 5rem 4.5rem;
    max-width: 980px;
    margin: 0 auto;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    margin: 3.5rem 0;
    text-align: left;
}

.pros ul,
.cons ul {
    margin-top: 1.4rem;
    padding-left: 1.4rem;
}

.pros li,
.cons li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.final-text {
    font-size: 1.18rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.75;
}

.footer {
    background: #1f252f;
    padding: 100px 0 60px;
    border-top: 1px solid rgba(60,190,242,0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-left p {
    margin-top: 1.4rem;
    color: #9ba7b8;
    max-width: 460px;
}

.footer-links a {
    color: #a8b4c4;
    text-decoration: none;
    margin-right: 2.4rem;
    transition: color 0.3s ease;
}

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

.footer-copyright {
    color: #6e7b8f;
    font-size: 0.93rem;
    margin-top: 2.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid,
    .review-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 4.5rem;
    }
    
    .market-shot {
        position: static;
        transform: none;
        margin-top: 3rem;
        width: 100%;
    }
    
    .screenshot-stack {
        height: auto;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .nav {
        display: none;
    }
    
    .mirror-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.4rem;
        padding: 1.6rem;
    }
    
    .wallets-grid {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-buttons {
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

.review-section,
.guide-section,
.advantages-section,
.details-section,
.summary-section {
    padding: 140px 0;
    background: #272f3a;
}

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

.guide-step,
.advantage-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    padding: 2.4rem 2.2rem;
    transition: all 0.4s ease;
}

.guide-step:hover,
.advantage-card:hover {
    transform: translateY(-8px);
    border-color: rgba(60,190,242,0.25);
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--accent);
    opacity: 0.85;
    margin-bottom: 1.2rem;
    line-height: 1;
}

.summary-box {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(60,190,242,0.22);
    border-radius: 28px;
    padding: 4.8rem 4.2rem;
    max-width: 980px;
    margin: 0 auto;
}

.summary-section {
    padding: 150px 0;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    margin: 3.8rem 0 3rem;
}

.pros ul,
.cons ul {
    margin-top: 1.2rem;
    padding-left: 1.3rem;
}

.pros li,
.cons li {
    margin-bottom: 0.95rem;
    color: #b8c4d3;
    line-height: 1.65;
}

.final-text {
    font-size: 1.16rem;
    color: #a8b4c4;
    line-height: 1.78;
    max-width: 740px;
    margin: 0 auto;
}

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

.fact-item {
    background: rgba(255,255,255,0.035);
    padding: 2rem 2.2rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
}

.fact-label {
    color: #8f9eb3;
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
}

.fact-value {
    font-size: 1.38rem;
    font-weight: 500;
}

.mirrors-intro,
.mirrors-note {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #b0bbc9;
}

.mirror-status {
    background: rgba(60,190,242,0.16);
    color: #3cbef2;
    padding: 7px 19px;
    border-radius: 9999px;
    font-size: 0.83rem;
    font-weight: 600;
    white-space: nowrap;
}

.highlight-box {
    background: linear-gradient(135deg, #3cbef2 0%, #2899d4 100%);
    color: #1f2836;
    padding: 3rem 2.8rem;
    border-radius: 22px;
    margin-top: 2rem;
}

.rating {
    font-size: 5.4rem;
    font-weight: 600;
    line-height: 1;
    margin: 0.6rem 0 0.4rem;
}

.rating-small {
    font-size: 2.1rem;
    vertical-align: super;
}

@media (max-width: 1024px) {
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .guide-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .summary-box {
        padding: 3rem 2rem;
    }
    
    .guide-step,
    .advantage-card {
        padding: 2rem 1.8rem;
    }
}