@font-face {
  font-family: "BinanceNova";
  src: url("../fonts/BinanceNova-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BinanceNova";
  src: url("../fonts/BinanceNova-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BinanceNova";
  src: url("../fonts/BinanceNova-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BinanceNova";
  src: url("../fonts/BinanceNova-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #181A20;
  --surface: #1E2329;
  --surface2: #161A1E;
  --border: #2B3139;
  --text: #EAECEF;
  --muted: #B7BDC6;
  --accent: #F0B90B;
  --accent-soft: rgba(240, 185, 11, 0.15);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --radius-lg: 16px;
  --radius-md: 12px;
  --glass: rgba(24, 26, 32, 0.68);
  --glass-border: rgba(43, 49, 57, 0.75);
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: BinanceNova,Arial,sans-serif!important;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

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

.inline-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: var(--accent);
}

button {
  font-family: BinanceNova,Arial,sans-serif!important;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  background: var(--accent);
  color: #111;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 100;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--glass);
  border-bottom: 1px solid var(--glass-border);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  pointer-events: none;
  z-index: 0;
}

.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.logo-mark svg {
  width: 18px;
  height: 18px;
}

.header-collapse {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: flex-end;
}

#header-panel {
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-right: auto;
  font-size: 14px;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  padding: 4px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--border);
  background: var(--surface2);
  border-radius: 999px;
  padding: 4px;
}

.lang-btn {
  background: transparent;
  border: 0;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.lang-btn.is-active {
  background: var(--accent);
  color: #121212;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 3px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #141414;
  box-shadow: 0 12px 24px rgba(240, 185, 11, 0.25);
  font-weight: 500;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-link {
  background: transparent;
  border: 1px dashed transparent;
  color: var(--accent);
  padding: 10px 6px;
  font-weight: 600;
}

.btn-link:hover {
  color: var(--text);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.btn:focus-visible,
.menu-toggle:focus-visible,
.lang-btn:focus-visible,
.faq-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

main {
  overflow: hidden;
}

section {
  padding: 20px 0;
}

body.landing-page section {
  padding: 40px 0;
}

.hero {
  position: relative;
  padding: 90px 0 110px;
}

body.landing-page .hero {
  padding: 45px 0 55px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  z-index: 0;
}

.hero::before {
  background: radial-gradient(circle, rgba(240, 185, 11, 0.4), transparent 70%);
  top: -180px;
  right: -180px;
}

.hero::after {
  background: radial-gradient(circle, rgba(58, 94, 148, 0.35), transparent 70%);
  bottom: -220px;
  left: -200px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 12px;
  color: var(--muted);
}

.hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 14px 0 16px;
  line-height: 1.15;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--accent);
  width: fit-content;
  margin-bottom: 12px;
}

.hero-note {
  color: var(--muted);
  font-size: 14px;
}

.widget-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}

.widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.widget-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--accent);
}

.widget-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.widget-card th,
.widget-card td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid rgba(43, 49, 57, 0.7);
}

.widget-card th {
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
}

.widget-card tr:last-child td {
  border-bottom: none;
}

.section-head {
  margin-bottom: 32px;
}

.section-kicker {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
  margin: 0 0 8px;
}

.section-head h2 {
  margin: 0;
  font-size: 28px;
}

.section-subtitle {
  margin: 12px 0 0;
  color: var(--muted);
  max-width: 720px;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(240, 185, 11, 0.6);
}

a.card {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}

.icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.icon-wrap svg {
  width: 18px;
  height: 18px;
}

.feature-card h3,
.step-card h3,
.scenario-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.feature-card p,
.step-card p,
.scenario-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.stat-card {
  text-align: left;
}

.stat-value {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.stat-detail {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

.step-index {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 12px;
}

.access-card,
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(30, 35, 41, 0.9), rgba(22, 26, 30, 0.9));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.access-copy {
  max-width: 640px;
}

.access-card h2,
.cta-card h2 {
  margin: 0 0 10px;
}

.access-card p,
.cta-card p {
  margin: 0;
  color: var(--muted);
}

.access-subtitle {
  margin-bottom: 14px;
}

.access-list {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
}

.access-list li {
  margin-bottom: 6px;
}

.access-disclaimer {
  font-size: 13px;
  color: var(--muted);
}

.access-actions,
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 640px;
}

.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  color: var(--text);
  font-weight: 600;
  background: var(--surface2);
}

.comparison-table td {
  color: var(--muted);
}

.comparison-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.telegram-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.telegram-list {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
}

.telegram-list li {
  margin-bottom: 6px;
}

.telegram-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.telegram-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface2);
  overflow: hidden;
}

.faq-toggle {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--text);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 15px;
  text-align: left;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.faq-icon svg {
  transition: transform 0.2s ease;
}

.faq-toggle[aria-expanded="true"] .faq-icon svg {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 14px;
}

.faq-panel p {
  margin: 0;
}

.faq-disclaimer {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}

.final-cta {
  padding-bottom: 100px;
}

.cta-card {
  flex-direction: column;
  align-items: flex-start;
}

.cta-disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}

.learn-main {
  padding-bottom: 80px;
}

.container.learn-container {
  width: min(920px, 100%);
}

.learn-hero {
  position: relative;
  padding: 80px 0 40px;
}

.learn-hero::before,
.learn-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  z-index: 0;
}

.learn-hero::before {
  background: radial-gradient(circle, rgba(240, 185, 11, 0.35), transparent 70%);
  top: -180px;
  right: -120px;
}

.learn-hero::after {
  background: radial-gradient(circle, rgba(58, 94, 148, 0.25), transparent 70%);
  bottom: -200px;
  left: -140px;
}

.learn-hero .container {
  position: relative;
  z-index: 1;
}

.learn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}

.learn-back:hover {
  color: var(--text);
}

.learn-intro p {
  color: var(--muted);
  font-size: 16px;
}

.learn-toc h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.learn-toc ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.learn-toc li {
  margin-bottom: 6px;
}

.learn-toc a {
  color: var(--muted);
}

.learn-toc a:hover {
  color: var(--text);
}

.learn-section {
  margin-top: 28px;
}

.learn-section h2 {
  font-size: 22px;
  margin: 0 0 12px;
}

.learn-section p {
  color: var(--muted);
  margin: 0 0 14px;
}

.learn-section ul {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
}

.learn-section li {
  margin-bottom: 6px;
}

.learn-callouts {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.callout {
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 16px;
  background: var(--surface2);
}

.callout-risk {
  border-left-color: #F6465D;
  background: rgba(246, 70, 93, 0.08);
}

.callout-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--accent);
}

.callout-risk .callout-label {
  color: #F6465D;
}

.callout h3 {
  margin: 6px 0 8px;
  font-size: 16px;
}

.callout p {
  margin: 0;
  color: var(--muted);
}

.learn-faq {
  margin-top: 32px;
}

.learn-cta {
  margin-top: 32px;
}

.learn-related {
  margin-top: 32px;
}

.learn-index .cards-grid {
  margin-top: 16px;
}

.learn-index .card p {
  color: var(--muted);
  margin-top: 8px;
}

.learn-comparison {
  margin-top: 16px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface2);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-logo .logo-mark {
  width: 28px;
  height: 28px;
}

.footer-note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
}

.footer-col h3 {
  margin: 0 0 12px;
  font-size: 14px;
}

.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-disclaimer {
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  color: var(--muted);
  font-size: 12px;
}

.legal-main {

}

.legal-container {
  max-width: 900px;
}

.legal-breadcrumbs {
  margin-bottom: 8px;
}

.legal-back {
  font-size: 13px;
  color: var(--muted);
}

.legal-back:hover {
  color: var(--text);
}

.legal-header h1 {
  font-size: clamp(28px, 3vw, 40px);
  margin: 8px 0 12px;
}

.legal-intro {
  margin: 0 0 10px;
  color: var(--muted);
}

.legal-meta {
  font-size: 12px;
  color: var(--muted);
}

.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  margin: 24px 0;
}

.legal-card h2 {
  margin: 0 0 12px;
  font-size: 18px;
}

.legal-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-tldr ul,
.legal-toc ol,
.legal-section ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.legal-tldr li,
.legal-section li {
  margin-bottom: 6px;
}

.legal-callout {
  border-left: 3px solid var(--accent);
  background: rgba(240, 185, 11, 0.08);
}

.legal-callout h2 {
  color: var(--accent);
}

.legal-toc a {
  color: var(--muted);
}

.legal-toc a:hover {
  color: var(--text);
}

.legal-body {
  margin-top: 24px;
}

.legal-section {
  padding-top: 12px;
}

.legal-section h2 {
  font-size: 20px;
  margin: 24px 0 10px;
}

.legal-section h3 {
  font-size: 15px;
  margin: 18px 0 8px;
  color: var(--text);
}

.legal-section p {
  margin: 0 0 12px;
  color: var(--muted);
}

.legal-info {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.legal-info-row {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.legal-info-row span:first-child {
  min-width: 120px;
  color: var(--text);
}

.legal-table {
  margin-top: 12px;
}

.legal-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.legal-table th,
.legal-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
}

.legal-table th {
  color: var(--text);
  font-weight: 600;
}

.legal-table td {
  color: var(--muted);
}

.legal-related-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.legal-related-link {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface2);
  color: var(--text);
}

.legal-related-link:hover {
  border-color: rgba(240, 185, 11, 0.6);
}

.legal-muted {
  color: var(--muted);
  font-size: 13px;
}

.legal-nav {
  gap: 14px;
  font-size: 14px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (max-width: 960px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-top: none;
    border-radius: 0 0 16px 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
    gap: 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
    z-index: 10;
    backdrop-filter: blur(14px) saturate(130%);
  }

  .site-header[data-menu-open="true"] .header-collapse {
    max-height: calc(100vh - 88px);
    padding: 16px 24px 24px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    margin-right: 0;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
  }

  .header-actions .btn {
    width: 100%;
  }

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

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

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

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

  .access-card,
  .cta-card,
  .telegram-card {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
