/*
Theme Name: Crypto
Theme URI: https://wordpress.org
Author: Orkhan Chichitov
Author URI: https://wordpress.org
Description: A simple and clean WordPress theme for cryptocurrency-related websites. It features a modern design, responsive layout, and customizable options to create a unique online presence for your crypto business or blog.
Requires at least: 6.7
Tested up to: 6.9
Requires PHP: 7.2
Version: 1.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/



:root {
    --bg: #07111d;
    --bg-soft: #0b1728;
    --card: rgba(14, 24, 40, 0.92);
    --card-soft: rgba(255, 255, 255, 0.04);
    --line: rgba(255, 255, 255, 0.08);
    --text: #eef4ff;
    --muted: #9cb0cb;
    --accent: #6ee7ff;
    --accent-2: #8b5cf6;
    --green: #31d49b;
    --red: #ff6f84;
    --yellow: #ffc95f;
    --shadow: 0 24px 56px rgba(0, 0, 0, 0.36);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 14px;
    --max: 1260px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
            radial-gradient(circle at top left, rgba(110, 231, 255, 0.12), transparent 26%),
            radial-gradient(circle at top right, rgba(139, 92, 246, 0.14), transparent 22%),
            linear-gradient(180deg, #07111d 0%, #091522 48%, #06101a 100%);
    line-height: 1.55;
}

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

.container {
    width: min(calc(100% - 32px), var(--max));
    margin: 0 auto;
}

.section {
    padding: 84px 0;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(110, 231, 255, 0.18);
    background: rgba(110, 231, 255, 0.07);
    color: #dcfbff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: rgba(7, 17, 29, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(110, 231, 255, 0.22), rgba(139, 92, 246, 0.24));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    font-weight: 900;
    color: var(--text);
}

/* SVG стрелок обмена внутри квадрата логотипа */
.brand-mark__icon {
    display: block;
    width: 22px;
    height: 22px;
}

.nav-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
}

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

.hero {
    padding: 54px 0 30px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    gap: 24px;
    align-items: stretch;
}

.hero-copy,
.card {
    background: linear-gradient(180deg, rgba(16, 26, 43, 0.95), rgba(10, 17, 30, 0.92));
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.hero-copy {
    padding: 42px;
    position: relative;
    overflow: hidden;
}

.hero-copy::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110, 231, 255, 0.14), transparent 70%);
    pointer-events: none;
}

.eyebrow {
    margin: 14px 0 18px;
    color: #d7fbff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1 {
    margin: 0 0 18px;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 0.97;
    letter-spacing: -0.05em;
    max-width: 760px;
}

.hero-text {
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 18px;
    max-width: 700px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.micro-pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #deebff;
    font-size: 13px;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 700;
    transition: .2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #041119;
    background: linear-gradient(135deg, var(--accent), #67d8ff 55%, #a4a7ff);
    box-shadow: 0 12px 34px rgba(110, 231, 255, 0.2);
}

.btn-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.widget-card {
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.widget-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.18), transparent 66%);
    pointer-events: none;
}

.widget-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.widget-title {
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.03em;
}

.widget-placeholder {
    border-radius: 22px;
    border: 1px dashed rgba(110, 231, 255, 0.22);
    background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02)),
            rgba(255, 255, 255, 0.02);
    display: grid;
    place-items: center;
    text-align: center;
}

.widget-placeholder strong {
    display: block;
    font-size: 28px;
    letter-spacing: -0.04em;
    margin-bottom: 0;
}

.widget-bottom-text {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 15px;
    max-width: 440px;
}

.section-title {
    margin: 16px 0 14px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    max-width: 820px;
}

.section-subtitle {
    margin: 0;
    max-width: 780px;
    color: var(--muted);
    font-size: 18px;
}

.range-grid,
.cards-4,
.cards-2,
.pair-grid,
.faq-grid,
.chart-grid {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

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

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

.cards-2 {
    grid-template-columns: 1fr 1fr;
}

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

.faq-grid {
    grid-template-columns: 1fr 1fr;
}

.chart-grid {
    grid-template-columns: 1.05fr 0.95fr;
}

.range-card,
.content-card,
.pair-card,
.faq-item,
.chart-card,
.table-card,
.note-card,
.cta-box {
    background: var(--card-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.range-card,
.content-card,
.pair-card,
.faq-item,
.chart-card,
.note-card {
    padding: 20px;
}

.range-value {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 6px;
}

.range-note,
.content-card p,
.pair-card p,
.faq-item p,
.chart-card p,
.note-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.content-card h3,
.pair-card h3,
.faq-item h3,
.chart-card h3,
.note-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    letter-spacing: -0.03em;
}

.number {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 10px;
    background: rgba(110, 231, 255, 0.08);
    border: 1px solid rgba(110, 231, 255, 0.16);
    color: #d8fbff;
    font-size: 14px;
    font-weight: 800;
}

.table-card {
    padding: 0;
    overflow: hidden;
    margin-top: 28px;
}

.table-head {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.table-head h3 {
    margin: 0;
    font-size: 20px;
    letter-spacing: -0.03em;
}

.table-head span {
    color: var(--muted);
    font-size: 13px;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1180px;
}

th,
td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: left;
    white-space: nowrap;
    font-size: 14px;
}

th {
    font-size: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.02);
}

tbody tr:hover {
    background: rgba(255, 255, 255, 0.025);
}

.coin {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.coin-dot {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(110, 231, 255, 0.08);
    border: 1px solid rgba(110, 231, 255, 0.16);
    color: #d9fbff;
    font-size: 11px;
    font-weight: 800;
}

.green {
    color: var(--green);
}

.red {
    color: var(--red);
}

.bar-chart {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.bar-row {
    display: grid;
    grid-template-columns: 88px 1fr 92px;
    gap: 12px;
    align-items: center;
}

.bar-label {
    color: #dfeaff;
    font-size: 14px;
    font-weight: 700;
}

.bar-track {
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(110, 231, 255, 0.95), rgba(139, 92, 246, 0.9));
}

.bar-value {
    color: var(--muted);
    font-size: 13px;
    text-align: right;
}

.svg-wrap {
    margin-top: 12px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.axis-note,
.line-legend {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 12px;
    margin-top: 10px;
}

.legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}

.legend-dot.eth {
    background: #9aa7ff;
}

.legend-dot.sol {
    background: #9df6d2;
}

.legend-dot.trx {
    background: #ffd27a;
}

.pair-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.note-card {
    margin-top: 28px;
    background: rgba(255, 201, 95, 0.08);
    border-color: rgba(255, 201, 95, 0.18);
}

.note-card h3 {
    color: #ffe9b5;
}

.note-card p {
    color: #f6deb1;
}

.cta-box {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 20px;
    align-items: center;
    padding: 28px;
    background: linear-gradient(135deg, rgba(110, 231, 255, 0.1), rgba(139, 92, 246, 0.12));
    box-shadow: var(--shadow);
}

.cta-box h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.03;
    letter-spacing: -0.04em;
}

.cta-box p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
    max-width: 640px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quickex-link {
    color: #6ee7ff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

footer {
    padding: 28px 0 48px;
    color: var(--muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
}

.footer-menu .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-menu .menu-item {
    margin: 0;
    padding: 0;
}

.footer-menu .menu-item a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: #d6e5ff;
    font-size: 13px;
}

.footer-menu .menu-item a:hover {
    color: #eef4ff;
    border-color: rgba(110, 231, 255, 0.45);
}

.footer-menu .current-menu-item a {
    border-color: rgba(110, 231, 255, 0.45);
    color: #eefcff;
}

@media (max-width: 1180px) {

    .hero-grid,
    .chart-grid,
    .cta-box,
    .cards-4,
    .cards-2,
    .pair-grid,
    .faq-grid,
    .range-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-grid,
    .chart-grid,
    .cta-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .nav {
        align-items: flex-start;
        padding: 14px 0;
    }

    .nav-links {
        gap: 12px;
        font-size: 13px;
    }

    .hero {
        padding-top: 30px;
    }

    .hero-copy,
    .widget-card,
    .range-card,
    .content-card,
    .pair-card,
    .faq-item,
    .chart-card,
    .note-card,
    .cta-box {
        padding: 20px;
    }

    .range-grid,
    .cards-4,
    .cards-2,
    .pair-grid,
    .faq-grid,
    .chart-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 64px 0;
    }
}