:root {
    --bg-page: #ffffff;
    --bg-soft: #f5f5f7;
    --bg-card: #ffffff;
    --border-subtle: #e5e7eb;
    --text-main: #111827;
    --text-muted: #6b7280;
    --accent: #1d4ed8;
    --accent-soft: #e0ecff;
    --radius: 12px;
    --radius-lg: 16px;
    --transition: 0.18s ease-out;
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
    background: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
}


.logo_icon {
    height: 44px;
    width: auto;
}

header {
    border-bottom: 1px solid var(--border-subtle);
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}



.logo-text-main {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.logo-text-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.9rem;
}

.nav a {
    padding-bottom: 2px;
    color: #4b5563;
    text-transform: capitalize;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), color var(--transition);
}

.nav a:hover {
    border-color: var(--accent);
    color:#1a04df;
}

.nav-cta a {
    border-radius: 999px;
    border: 1px solid var(--accent);
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    background: var(--accent);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.nav-cta a:hover {
    background: #173ea8;
    border-color: #173ea8;
}

/* базовый контейнер, если ещё не задан */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* HERO */
  
  .hero-dark {
    background: #020617;
    color: #e5e7eb;
    padding: 64px 0 52px;
    width: 100%;
  }
  
  .hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
    gap: 36px;
    align-items: center;
  }
  
  .hero-copy {
    max-width: 520px;
  }
  
  .hero-kicker {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #38bdf8;
    font-weight: 600;
    margin-bottom: 8px;
  }
  
  .hero-title {
    font-size: clamp(2.1rem, 3.1vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 8px;
    color: #f9fafb;
  }
  
  .hero-title span {
    color: #38bdf8;
  }
  
  .hero-subtitle {
    font-size: 0.96rem;
    color: #9ca3af;
    margin-bottom: 14px;
  }
  
  .hero-points {
    display: grid;
    gap: 6px;
    margin-bottom: 14px;
    font-size: 0.9rem;
  }
  
  .hero-point {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5f5;
  }
  
  .hero-point-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #22c55e;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.18s ease-out;
  }
  
  .btn-hero-primary {
    background: #0ea5e9;
    border-color: #0ea5e9;
    color: #020617;
    font-weight: 500;
  }
  
  .btn-hero-primary:hover {
    background: #38bdf8;
    border-color: #38bdf8;
    box-shadow: 0 14px 32px rgba(56,189,248,0.45);
    transform: translateY(-1px);
  }
  
  .btn-hero-secondary {
    background: transparent;
    border-color: #1f2937;
    color: #e5e7eb;
  }
  
  .btn-hero-secondary:hover {
    background: #020617;
    border-color: #38bdf8;
    transform: translateY(-1px);
  }
  
  .hero-meta {
    font-size: 0.8rem;
    color: #6b7280;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .hero-meta span::before {
    content: "•";
    margin-right: 6px;
    color: #4b5563;
  }
  
  .hero-meta span:first-child::before {
    content: "";
    margin-right: 0;
  }
  
  /* WALLET CARD */
  
  .hero-visual {
    display: flex;
    justify-content: flex-end;
  }
  
  .wallet-card {
    max-width: 640px;
    width: 100%;
    padding: 14px;
    border-radius: 24px;
    background: #020617;
    border: 1px solid #0b1120;
    box-shadow: 0 24px 60px rgba(15,23,42,0.8);
    position: relative;
    overflow: hidden;
    animation: walletFloat 7s ease-in-out infinite alternate;
  }
  
  .wallet-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
      radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.35) 0, transparent 55%),
      radial-gradient(circle at 100% 100%, rgba(59, 130, 246, 0.28) 0, transparent 60%);
    opacity: 0.3;
    pointer-events: none;
  }
  
  @keyframes walletFloat {
    from { transform: translateY(2px); }
    to   { transform: translateY(-4px); }
  }
  
  .wallet-card > * {
    position: relative;
    z-index: 1;
  }
  
  /* top bar */
  
  .wc-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.78rem;
  }
  
  .wc-logo {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .wc-logo-mark {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0, #38bdf8 0, #020617 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #e0f2fe;
  }
  
  .wc-logo-text {
    font-size: 0.82rem;
    font-weight: 500;
    color: #e5e7eb;
  }
  
  .wc-top-right {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .wc-chip {
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid #1f2937;
    font-size: 0.72rem;
  }
  
  .wc-chip-mainnet {
    background: #022c22;
    border-color: #065f46;
    color: #6ee7b7;
  }
  
  .wc-top-icon {
    font-size: 0.9rem;
  }
  
  /* layout */
  
  .wc-layout {
    display: grid;
    grid-template-columns: 0.6fr 1.1fr 0.9fr;
    gap: 10px;
  }
  
  /* sidebar */
  
  .wc-sidebar {
    background: #020617;
    border-radius: 16px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #0b1120;
  }
  
  .wc-nav {
    display: grid;
    gap: 4px;
    font-size: 0.78rem;
  }
  
  .wc-nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 6px;
    border-radius: 9px;
    color: #9ca3af;
  }
  
  .wc-nav-item--active {
    background: #0ea5e9;
    color: #020617;
  }
  
  .wc-nav-icon {
    font-size: 0.9rem;
  }
  
  .wc-version {
    font-size: 0.7rem;
    color: #6b7280;
  }
  
  /* center */
  
  .wc-center {
    background: #020617;
    border-radius: 16px;
    padding: 10px 9px;
    border: 1px solid #0b1120;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .wc-balance-card {
    background: #0ea5e9;
    border-radius: 12px;
    padding: 8px 9px;
    color: #020617;
  }
  
  .wc-balance-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    margin-bottom: 4px;
  }
  
  .wc-balance-sub {
    font-size: 0.68rem;
    opacity: 0.9;
    margin-bottom: 4px;
  }
  
  .wc-balance-amount {
    font-size: 1.02rem;
    font-weight: 600;
  }
  
  .wc-balance-amount span {
    font-size: 0.8rem;
  }
  
  /* send */
  
  .wc-send-card {
    border-radius: 12px;
    border: 1px solid #111827;
    padding: 7px 8px;
  }
  
  .wc-send-title {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }
  
  .wc-field {
    margin-bottom: 4px;
  }
  
  .wc-field-label {
    font-size: 0.72rem;
    color: #9ca3af;
    margin-bottom: 2px;
  }
  
  .wc-field-box {
    font-size: 0.78rem;
    padding: 5px 6px;
    border-radius: 8px;
    background: #020617;
    border: 1px solid #111827;
  }
  
  .wc-field-box--center {
    text-align: center;
  }
  
  .wc-field--inline {
    display: flex;
    align-items: flex-end;
    gap: 6px;
  }
  
  .wc-field-inline-main {
    flex: 1;
  }
  
  .wc-send-btn {
    border-radius: 999px;
    border: none;
    padding: 6px 10px;
    background: #0ea5e9;
    color: #020617;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
  }
  
  /* right column */
  
  .wc-right {
    background: #020617;
    border-radius: 16px;
    padding: 10px 9px;
    border: 1px solid #0b1120;
  }
  
  .wc-right-title {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }
  
  .wc-tx-list {
    display: grid;
    gap: 5px;
    font-size: 0.76rem;
  }
  
  .wc-tx {
    display: flex;
    justify-content: space-between;
    gap: 8px;
  }
  
  .wc-tx-left {
    display: flex;
    gap: 6px;
  }
  
  .wc-tx-icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid #111827;
    background: #020617;
  }
  
  .wc-tx-type {
    color: #e5e7eb;
  }
  
  .wc-tx-meta {
    color: #6b7280;
    font-size: 0.7rem;
  }
  
  .wc-tx-amount {
    font-weight: 500;
  }
  
  .wc-tx-amount--pos {
    color: #22c55e;
  }
  
  /* responsive */
  
  @media (max-width: 1024px) {
    .hero-inner {
      grid-template-columns: minmax(0, 1fr);
    }
  
    .hero-visual {
      justify-content: flex-start;
    }
  
    .wallet-card {
      max-width: 100%;
    }
  }
  
  @media (max-width: 720px) {
    .hero-dark {
      padding: 44px 0 32px;
    }
  
    .wc-layout {
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }
  
    .wc-right {
      display: none;
    }
  }
  
section {
    padding: 40px 0;

    background: #2563eb08;
}

.section-header {
    margin-bottom: 20px;
}

.section-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
    margin-bottom: 6px;
}

.section-title {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.section-subtitle {
    font-size: 0.94rem;
    color: var(--text-muted);
    max-width: 520px;
}

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

.card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    padding: 16px 18px;
    font-size: 0.9rem;
}

.card-title {
    font-size: 1rem;
    margin-bottom: 6px;
}

.card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.pill {
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 0.8rem;
    border: 1px solid var(--border-subtle);
    background: #f9fafb;
    color: #374151;
}



.doc-list {
    list-style: none;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.doc-list li {
    margin-bottom: 6px;
    padding-left: 14px;
    position: relative;
}

.doc-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 0.8rem;
}

.doc-code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.92rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
    background: #2563eb;
    padding: 10px 12px;
    white-space: pre;
    overflow-x: auto;
    color: #ffffff;
}



.download-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.download-card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    padding: 14px 14px 12px;
    font-size: 0.9rem;
}


.download-name {
    font-weight: 600;
    margin-bottom: 2px;
}

.download-hint {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.download-footer .btn {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
    padding-block: 7px;
}



.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

details {
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
    background: #ffffff;
    padding: 8px 10px;
    font-size: 0.9rem;
}

summary {
    list-style: none;
    cursor: pointer;
    font-weight: 500;
}

summary::-webkit-details-marker {
    display: none;
}

.faq-answer {
    margin-top: 4px;
    font-size: 0.86rem;
    color: var(--text-muted);
}



.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    background: #2563eb;
    padding: 19px;
    border-radius: 18px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.field label {
    font-size: 0.85rem;
    color: #fff;
}

.field input,
.field textarea {
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
    padding: 8px 9px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    background: #ffffff;
    transition: border-color var(--transition), background var(--transition);
}

.field input:focus,
.field textarea:focus {
    border-color: var(--accent);
    background: #f9fafb;
}

.field textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-meta strong {
    color: var(--text-main);
}


.download-section {
    padding: 40px 0;
    border-top: 1px solid #ffffff;
    background: #2563eb14;
}

.download-heading {
    text-align: left;
    margin-bottom: 22px;
}

.download-heading h2 {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.download-heading p {
    font-size: 0.95rem;
    color: #6b7280;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.download-card {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 14px 14px 12px;
    font-size: 0.9rem;
}

.download-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}



.download-platform {
    font-weight: 600;
}

.download-tag {
    font-size: 0.8rem;
    color: #6b7280;
}

.download-desc {
    font-size: 0.86rem;
    color: #6b7280;
    margin-bottom: 10px;
}

.download-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.download-links-multi {
    font-size: 0.85rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 13px;
    border-radius: 999px;
    border: 1px solid #1d4ed8;
    background: #1d4ed8;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 500;
    transition: background 0.18s ease-out, border-color 0.18s ease-out;
}

.download-btn:hover {
    background: #173ea8;
    border-color: #173ea8;
}

.download-link {
    color: #1d4ed8;
    text-decoration: none;
}

.download-link:hover {
    text-decoration: underline;
}

.download-separator {
    color: #9ca3af;
}


@media (max-width: 900px) {
    .download-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .download-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}




.roadmap-section {

    padding: 60px 0;
    border-top: 1px solid #e5e7eb;
    background: linear-gradient(180deg, #000000 0%, #252525fc 40%);
}

.roadmap-heading {
    margin-bottom: 28px;
    max-width: 720px;
}

.roadmap-heading h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: #fff;
}

.roadmap-heading p {
    color: #fff;
    font-size: 0.95rem;

}



.roadmap-shell {
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    padding: 22px 22px 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}



.roadmap-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.32fr) minmax(0, 1fr);
    gap: 28px;
    min-height: 260px;
}



.roadmap-years {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 18px;
}

.roadmap-years-line {
    position: absolute;
    left: 13px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(to bottom,
            var(--accent, #1d4ed8),
            rgba(148, 163, 184, 0.3));
    opacity: 0.25;
}

.roadmap-year {
    position: relative;
    border: none;
    background: transparent;
    padding: 5px 8px 5px 26px;
    text-align: left;
    font-size: 0.9rem;
    color: #4b5563;
    cursor: pointer;
    border-radius: 999px;
    transition: background 0.2s ease-out, color 0.2s ease-out, transform 0.15s ease-out;
}

.roadmap-year-dot {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #d1d5db;
    transition: background 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out;
}

.roadmap-year-label {
    position: relative;
}

.roadmap-year:hover {
    background: #f3f4f6;
}

.roadmap-year.is-active {
    background: var(--accent-soft, #e0ecff);
    color: #10df00;
    transform: translateX(2px);
}

.roadmap-year.is-active .roadmap-year-dot {
    background: #10df00;
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.15);
    transform: translateY(-50%) scale(1.05);
}



.roadmap-content-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.roadmap-content {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.roadmap-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}



.roadmap-pill-year {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eff6ff;
    color: #10df00;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.roadmap-pill-year::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #10df00;
}



.roadmap-title {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.roadmap-text {
    font-size: 0.94rem;
    color: var(--text-muted, #6b7280);
    margin-bottom: 10px;
}

.roadmap-list {
    list-style: none;
    margin: 0 0 14px 0;
    padding: 0;
    font-size: 0.9rem;
    color: var(--text-muted, #6b7280);
}

.roadmap-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 4px;
}

.roadmap-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #10df00;
}



.roadmap-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
    margin-top: 4px;
}

.roadmap-stat {
    min-width: 140px;
}

.roadmap-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted, #6b7280);
}

.roadmap-stat-value {
    font-size: 0.93rem;
    font-weight: 500;
}



@media (max-width: 900px) {
    .roadmap-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .roadmap-years {
        flex-direction: row;
        padding-right: 0;
        border-right: none;
        overflow-x: auto;
    }

    .roadmap-years-line {
        display: none;
    }

    .roadmap-year {
        padding: 6px 10px 6px 24px;
        white-space: nowrap;
    }

    .roadmap-shell {
        padding: 18px 14px 16px;
    }
}