/* AXIOTRADE Intelligence Network — production editorial system */

body.net-page {
  --site-header: var(--nav-height);
  --net-glow: 0 0 80px rgba(0, 255, 133, 0.12);
  padding-top: var(--site-header);
  background:
    radial-gradient(ellipse 100% 60% at 50% -20%, rgba(88, 179, 143, 0.06), transparent 55%),
    #000;
}

/* ─── Brand lockup ─────────────────────────────────────────────────────── */
.logo--intel { align-items: center; gap: 0.55rem; }
.logo-stack { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.logo-text { font-size: clamp(0.72rem, 1.6vw, 0.92rem); letter-spacing: 0.14em; }
.logo-sub {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  opacity: 0.92;
}
.site-header--intel.scrolled { box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 48px rgba(0, 255, 133, 0.05); }
.btn-nav-launch {
  box-shadow: 0 0 24px rgba(0, 255, 133, 0.22);
  font-weight: 800 !important;
}

.nav-inner--net { grid-template-columns: auto minmax(0, 1fr) auto; }

/* ─── Mobile nav ───────────────────────────────────────────────────────── */
.net-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(88, 179, 143, 0.28);
  border-radius: 12px;
  padding: 0.48rem 0.52rem;
  cursor: pointer;
}
.net-menu-btn span {
  display: block; width: 20px; height: 2px;
  background: var(--accent-bright); border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.net-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.net-menu-btn.open span:nth-child(2) { opacity: 0; }
.net-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.net-mobile-nav {
  background: rgba(0, 0, 0, 0.97);
  border-bottom: 1px solid rgba(88, 179, 143, 0.16);
  padding: 1rem var(--container-px) 1.25rem;
  backdrop-filter: blur(18px);
}
.net-mobile-nav.hidden { display: none; }
.net-mobile-nav ul { list-style: none; display: grid; gap: 0.35rem; margin-bottom: 1rem; }
.net-mobile-nav a {
  display: block; padding: 0.7rem 0.85rem; border-radius: 12px;
  color: var(--text); font-weight: 700; text-decoration: none;
  background: rgba(88, 179, 143, 0.06);
  border: 1px solid rgba(88, 179, 143, 0.12);
}

/* ─── Hero premium ─────────────────────────────────────────────────────── */
.net-hero--premium {
  position: relative;
  min-height: min(92vh, 920px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3rem) 0 0;
}
.net-hero-mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 255, 133, 0.08), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(88, 179, 143, 0.12), transparent 32%),
    radial-gradient(circle at 60% 80%, rgba(88, 179, 143, 0.05), transparent 35%);
}
.net-hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.35;
  background-image:
    linear-gradient(rgba(88, 179, 143, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 179, 143, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}
.net-hero-shell {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding-bottom: clamp(2rem, 5vw, 3rem);
}
.net-hero-copy { max-width: 680px; }
.net-hero--premium h1 {
  font-size: clamp(2.15rem, 5.8vw, 3.6rem);
  font-weight: 900; line-height: 1.08; margin-bottom: 1.1rem;
  letter-spacing: -0.03em;
}
.net-hero--premium h1 .highlight {
  background: linear-gradient(120deg, #00ff85 0%, #58b38f 55%, #6ec9a3 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.net-hero-lead {
  font-size: clamp(1rem, 2.1vw, 1.12rem);
  color: #b4c8bc; line-height: 1.7; margin-bottom: 1.85rem; max-width: 560px;
}
.net-hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.btn-hero-main {
  min-height: 50px; padding-inline: 1.65rem !important;
  box-shadow: 0 0 36px rgba(0, 255, 133, 0.28), 0 10px 30px rgba(0, 0, 0, 0.35);
}

.net-hero-panel {
  display: flex; justify-content: center; align-items: center;
}
.net-hero-panel-inner {
  position: relative; width: min(100%, 340px); aspect-ratio: 1;
  border-radius: 28px;
  background: linear-gradient(165deg, rgba(14, 14, 14, 0.95), rgba(4, 4, 4, 0.98));
  border: 1px solid rgba(0, 255, 133, 0.18);
  box-shadow: var(--net-glow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.35rem; overflow: hidden;
}
.net-hero-orbit {
  position: absolute; inset: 12%; border-radius: 50%;
  border: 1px dashed rgba(0, 255, 133, 0.22);
  animation: net-orbit 18s linear infinite;
}
.net-hero-logo-wrap {
  position: relative; z-index: 1;
  width: 96px; height: 96px; border-radius: 22px;
  display: grid; place-items: center;
  background: rgba(88, 179, 143, 0.08);
  border: 1px solid rgba(88, 179, 143, 0.22);
  box-shadow: 0 0 40px rgba(0, 255, 133, 0.15);
}
.net-hero-logo-wrap img { width: 68px; height: 68px; object-fit: contain; }
.net-hero-panel-label {
  position: relative; z-index: 1;
  font-size: 0.82rem; font-weight: 900; letter-spacing: 0.18em; margin-top: 0.5rem;
}
.net-hero-panel-sub {
  position: relative; z-index: 1;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-bright);
}

@keyframes net-orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Stats band */
.net-stats-band {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(88, 179, 143, 0.12);
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
}
.net-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 1.15rem 0;
}
.net-stat { text-align: center; padding: 0.65rem 0.5rem; }
.net-stat-num {
  display: block; font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 900; color: var(--accent-bright); line-height: 1.1;
}
.net-stat-lbl {
  display: block; margin-top: 0.25rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}

/* ─── Sections ─────────────────────────────────────────────────────────── */
.net-section { padding: clamp(3rem, 7vw, 4.75rem) 0; }
.net-section--alt {
  background: linear-gradient(180deg, transparent, rgba(88, 179, 143, 0.035), transparent);
}
.net-section--mission { padding-top: clamp(2.5rem, 6vw, 4rem); }
.net-section-header { text-align: center; max-width: 700px; margin: 0 auto 2.5rem; }
.net-section-header .section-sub {
  color: var(--muted); font-size: 0.96rem; line-height: 1.65; margin-top: 0.8rem;
}

.net-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.net-mission-card {
  padding: 1.65rem 1.4rem;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(12, 12, 12, 0.98), rgba(5, 5, 5, 0.99));
  border: 1px solid rgba(88, 179, 143, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}
.net-mission-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(0, 255, 133, 0.1);
  border: 1px solid rgba(0, 255, 133, 0.22);
  color: var(--accent-bright); font-size: 0.78rem; font-weight: 900;
  margin-bottom: 1rem;
}
.net-mission-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.55rem; }
.net-mission-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ─── Cards ────────────────────────────────────────────────────────────── */
.net-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.net-grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.net-grid--featured { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.net-card {
  display: block; padding: 1.45rem 1.3rem; border-radius: 18px;
  background: linear-gradient(165deg, rgba(12, 12, 12, 0.98), rgba(6, 6, 6, 0.99));
  border: 1px solid rgba(88, 179, 143, 0.14);
  text-decoration: none; color: inherit;
  transition: border-color 0.28s, transform 0.28s, box-shadow 0.28s;
  position: relative; overflow: hidden;
}
.net-card::before {
  content: ''; position: absolute; inset: 0 auto auto 0; width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 133, 0.35), transparent);
  opacity: 0; transition: opacity 0.28s;
}
.net-card:hover {
  text-decoration: none; transform: translateY(-3px);
  border-color: rgba(0, 255, 133, 0.3);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 255, 133, 0.06);
}
.net-card:hover::before { opacity: 1; }
.net-card--premium { min-height: 210px; }
.net-card--featured { min-height: 200px; }
.net-card h3 { font-size: 1.02rem; font-weight: 800; margin: 0.55rem 0 0.5rem; color: var(--text); }
.net-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.58; margin: 0; }
.net-card-tag {
  display: inline-block; font-size: 0.66rem; font-weight: 800;
  letter-spacing: 0.11em; text-transform: uppercase; color: var(--accent-bright);
  padding: 0.22rem 0.58rem; border-radius: 999px;
  background: rgba(88, 179, 143, 0.1); border: 1px solid rgba(88, 179, 143, 0.2);
}
.net-card-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 1rem; font-size: 0.8rem; font-weight: 800; color: var(--accent);
}

/* ─── Launch band ──────────────────────────────────────────────────────── */
.net-launch-band {
  position: relative; overflow: hidden;
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
  border-top: 1px solid rgba(0, 255, 133, 0.14);
  border-bottom: 1px solid rgba(0, 255, 133, 0.1);
}
.net-launch-band-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 120% at 50% 100%, rgba(0, 255, 133, 0.12), transparent 60%),
    linear-gradient(180deg, rgba(88, 179, 143, 0.04), rgba(0, 0, 0, 0.2));
}
.net-launch-band-inner {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.25rem 2rem;
}
.net-launch-eyebrow {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent-bright); margin-bottom: 0.45rem;
}
.net-launch-copy h2 {
  font-size: clamp(1.45rem, 3.5vw, 2rem); font-weight: 900; line-height: 1.15; margin-bottom: 0.45rem;
}
.net-launch-copy p { color: var(--muted); max-width: 520px; line-height: 1.6; font-size: 0.92rem; }
.btn-launch--xl {
  min-height: 54px; padding: 0.95rem 1.85rem !important;
  font-size: 0.95rem !important; font-weight: 800 !important;
  box-shadow: 0 0 40px rgba(0, 255, 133, 0.32), 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* ─── Footer intel ─────────────────────────────────────────────────────── */
.footer-brand--intel { align-items: center; }
.footer-brand--intel span { display: flex; flex-direction: column; gap: 0.1rem; }
.footer-brand-name { font-weight: 900; letter-spacing: 0.12em; }
.footer-brand-sub {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
}
.footer-lead { color: var(--muted); font-size: 0.88rem; line-height: 1.6; max-width: 280px; }
.footer-contact { margin-top: 0.65rem; font-size: 0.78rem; }
.footer-contact a { color: var(--muted); }

/* Loader sub */
#axiotrade-loader .loader-sub {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); opacity: 0.85;
}

/* ─── Page shell ───────────────────────────────────────────────────────── */
.net-page-head {
  padding: 2.75rem 0 1.65rem;
  border-bottom: 1px solid rgba(88, 179, 143, 0.1);
  margin-bottom: 2rem;
}
.net-page-head h1 { font-size: clamp(1.85rem, 4vw, 2.45rem); font-weight: 900; margin-bottom: 0.7rem; }
.net-page-head p { color: var(--muted); max-width: 640px; line-height: 1.65; }
.net-breadcrumb { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.8rem; }
.net-breadcrumb a { color: var(--accent); font-weight: 700; }

/* Article (legacy shell — overridden on article pages) */
.net-page:not(.net-page--article) .net-article { max-width: 740px; margin: 0 auto; padding-bottom: 2rem; }
.net-page--article .net-article { max-width: none; margin: 0; padding-bottom: 0; }
.net-article-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem;
  font-size: 0.76rem; color: var(--muted); margin-bottom: 1.5rem;
}
.net-article-body { font-size: 1.02rem; line-height: 1.78; color: #d6e3da; }
.net-article-body h2 { font-size: 1.22rem; font-weight: 800; margin: 2rem 0 0.75rem; color: var(--text); }
.net-article-body p { margin-bottom: 1rem; }
.net-article-body ul { margin: 0 0 1rem 1.25rem; color: var(--muted); }
.net-article-body li { margin-bottom: 0.4rem; }
.net-disclaimer {
  margin-top: 2rem; padding: 1rem 1.1rem; border-radius: 14px;
  font-size: 0.82rem; color: var(--muted);
  background: rgba(88, 179, 143, 0.06); border: 1px solid rgba(88, 179, 143, 0.12);
}

/* Glossary */
.glossary-search-wrap { max-width: 520px; margin: 0 auto 2rem; }
.glossary-search {
  width: 100%; padding: 0.9rem 1.1rem; border-radius: 999px;
  border: 1px solid rgba(88, 179, 143, 0.25);
  background: rgba(0, 0, 0, 0.55); color: var(--text);
  font-family: var(--font); font-size: 0.95rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.glossary-search:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(88, 179, 143, 0.15);
}
.glossary-list { display: grid; gap: 1rem; max-width: 820px; margin: 0 auto; }
.glossary-term {
  padding: 1.3rem 1.2rem; border-radius: 16px;
  border: 1px solid rgba(88, 179, 143, 0.12);
  background: linear-gradient(165deg, rgba(10, 10, 10, 0.98), rgba(6, 6, 6, 0.99));
}
.glossary-term h3 { font-size: 1.04rem; font-weight: 800; color: var(--accent-bright); margin-bottom: 0.45rem; }
.glossary-term p { font-size: 0.9rem; color: var(--muted); line-height: 1.62; margin: 0; }

/* Academy */
.lesson-list { list-style: none; display: grid; gap: 0.7rem; max-width: 640px; }
.lesson-list li {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.95rem 1.05rem; border-radius: 14px;
  border: 1px solid rgba(88, 179, 143, 0.12);
  background: rgba(8, 8, 8, 0.85); font-size: 0.92rem;
}
.lesson-num {
  flex-shrink: 0; width: 30px; height: 30px;
  display: grid; place-items: center; border-radius: 9px;
  background: rgba(88, 179, 143, 0.12); color: var(--accent-bright);
  font-size: 0.74rem; font-weight: 800;
}

/* Intel */
.intel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.intel-panel {
  padding: 1.35rem; border-radius: 16px;
  border: 1px solid rgba(88, 179, 143, 0.14);
  background: linear-gradient(165deg, rgba(10, 10, 10, 0.98), rgba(6, 6, 6, 0.99));
}
.intel-panel h3 { font-size: 0.96rem; font-weight: 800; margin-bottom: 0.65rem; color: var(--accent-bright); }
.intel-panel p { font-size: 0.86rem; color: var(--muted); line-height: 1.58; }

/* Docs */
.docs-list { display: grid; gap: 0.75rem; max-width: 680px; }
.docs-list a {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.15rem; border-radius: 14px;
  border: 1px solid rgba(88, 179, 143, 0.12);
  background: linear-gradient(165deg, rgba(10, 10, 10, 0.98), rgba(6, 6, 6, 0.99));
  color: var(--text); font-weight: 700; text-decoration: none;
}
.docs-list a span { font-size: 0.78rem; color: var(--accent); font-weight: 700; }
.docs-list a:hover { border-color: rgba(0, 255, 133, 0.28); color: var(--accent-bright); text-decoration: none; }

/* Category nav */
.cat-nav { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.cat-nav a {
  padding: 0.48rem 0.95rem; border-radius: 999px;
  font-size: 0.78rem; font-weight: 700;
  border: 1px solid rgba(88, 179, 143, 0.2); color: var(--muted); text-decoration: none;
}
.cat-nav a:hover, .cat-nav a.active {
  color: var(--accent-bright); border-color: rgba(0, 255, 133, 0.35);
  background: rgba(88, 179, 143, 0.08); text-decoration: none;
}

/* About mission row */
.net-about-mission {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2.5rem;
}

/* Reveal animation */
.net-reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s ease, transform 0.55s ease; }
.net-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* RTL */
html[dir="rtl"] .net-hero-copy { text-align: right; }
html[dir="rtl"] .net-section-header { text-align: center; }
html[dir="rtl"] .net-breadcrumb { direction: rtl; }
html[dir="rtl"] .net-article { text-align: right; }
html[dir="rtl"] .net-article-body ul { margin-right: 1.25rem; margin-left: 0; }
html[dir="rtl"] .nav-inner--net { direction: rtl; }
html[dir="rtl"] .footer-grid { text-align: right; }
html[dir="rtl"] .net-launch-band-inner { direction: rtl; }

@media (max-width: 900px) {
  .nav-links--desktop { display: none !important; }
  .nav-actions .btn-nav-launch { display: none !important; }
  .net-menu-btn { display: inline-flex; }
  .nav-inner--net { grid-template-columns: auto 1fr auto auto; }
  .net-hero-shell { grid-template-columns: 1fr; }
  .net-hero-panel { display: none; }
  .net-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .net-mission-grid, .net-about-mission { grid-template-columns: 1fr; }
  .net-launch-band-inner { flex-direction: column; align-items: flex-start; }
  .btn-launch--xl { width: 100%; justify-content: center; }
}

@media (max-width: 520px) {
  .net-hero-actions .btn { width: 100%; justify-content: center; }
  .net-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Article pages — production reading layout ─────────────────────────── */
.net-page--article .net-section { padding-top: 1.5rem; padding-bottom: 2.5rem; }

.net-article-page { max-width: 1120px; }

.net-breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 0.5rem;
  font-size: 0.76rem; color: var(--muted); margin-bottom: 1.25rem;
}
.net-breadcrumb a { color: var(--accent); font-weight: 700; text-decoration: none; }
.net-breadcrumb span { opacity: 0.45; }

.net-article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.net-article-head { margin-bottom: 1.75rem; }
.net-article-head h1 {
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  font-weight: 900; line-height: 1.15;
  margin: 0.75rem 0 0.85rem;
  letter-spacing: -0.02em;
}

.net-read-time {
  padding: 0.15rem 0.55rem; border-radius: 999px;
  background: rgba(88, 179, 143, 0.1);
  border: 1px solid rgba(88, 179, 143, 0.18);
  font-size: 0.72rem; font-weight: 700; color: var(--accent-bright);
}

.net-article-body {
  font-size: clamp(0.98rem, 2.2vw, 1.05rem);
  line-height: 1.78; color: #d4e2d8;
}
.net-article-body .article-lead {
  font-size: clamp(1.05rem, 2.4vw, 1.15rem);
  color: #e8f2ec; line-height: 1.7;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(88, 179, 143, 0.12);
}
.net-article-body h2 {
  font-size: clamp(1.1rem, 3vw, 1.28rem);
  font-weight: 800; margin: 2rem 0 0.75rem;
  color: var(--text); letter-spacing: -0.01em;
}
.net-article-body p { margin-bottom: 1rem; }
.net-article-body ul {
  margin: 0 0 1.25rem 1.1rem;
  color: #b8c9bf;
}
.net-article-body li { margin-bottom: 0.45rem; line-height: 1.6; }
.net-article-body a { color: var(--accent-bright); }

.article-takeaway {
  margin-top: 2rem; padding: 1.15rem 1.2rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 255, 133, 0.08), rgba(88, 179, 143, 0.05));
  border: 1px solid rgba(0, 255, 133, 0.2);
}
.article-takeaway strong {
  display: block; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-bright); margin-bottom: 0.45rem;
}
.article-takeaway p { margin: 0; color: #dce8e0; font-size: 0.95rem; }

.net-article-foot { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(88, 179, 143, 0.1); }
.net-back-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  margin-top: 1rem; font-weight: 800; font-size: 0.88rem; color: var(--accent);
}

.net-article-aside { display: grid; gap: 1rem; position: sticky; top: calc(var(--site-header) + 1rem); }
.net-aside-card {
  padding: 1.15rem 1.1rem; border-radius: 16px;
  border: 1px solid rgba(88, 179, 143, 0.14);
  background: linear-gradient(165deg, rgba(10, 10, 10, 0.98), rgba(6, 6, 6, 0.99));
}
.net-aside-card h3 {
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-bright); margin-bottom: 0.75rem;
}
.net-aside-card ul { list-style: none; display: grid; gap: 0.45rem; }
.net-aside-card a {
  font-size: 0.86rem; font-weight: 700; color: var(--text); text-decoration: none; line-height: 1.45;
}
.net-aside-card a:hover { color: var(--accent); }
.net-aside-launch p { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.85rem; line-height: 1.5; }
.net-aside-launch .btn { width: 100%; justify-content: center; min-height: 44px; }

html[dir="rtl"] .net-article-body { text-align: right; }
html[dir="rtl"] .net-article-body ul { margin-right: 1.1rem; margin-left: 0; }
html[dir="rtl"] .net-breadcrumb { direction: rtl; }

@media (max-width: 900px) {
  .net-article-shell { grid-template-columns: 1fr; }
  .net-article-aside {
    position: static;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .net-article-head h1 { font-size: clamp(1.45rem, 6vw, 1.85rem); }
}

@media (max-width: 520px) {
  .net-page--article .container { width: min(100%, calc(100% - 1.25rem)); }
  .net-article-body .article-lead { font-size: 1rem; }
  .net-article-aside { grid-template-columns: 1fr; }
  .net-breadcrumb { font-size: 0.72rem; }
}

/* ─── Production polish — responsive, accessibility, premium UX ─────────── */
.net-page-head--center { text-align: center; }
.net-page-head--center .net-breadcrumb { justify-content: center; }
.net-page-head--center p { margin-left: auto; margin-right: auto; }

.net-page-head {
  position: relative;
  padding-bottom: 1.85rem;
}
.net-page-head::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 133, 0.28), transparent);
}

.net-spaced-top { margin-top: 2rem; }

.net-mobile-nav-cta {
  padding-top: 0.25rem;
  border-top: 1px solid rgba(88, 179, 143, 0.14);
}
.net-mobile-nav-cta .btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  font-weight: 800 !important;
  box-shadow: 0 0 28px rgba(0, 255, 133, 0.22);
}

.net-card:focus-visible,
.cat-nav a:focus-visible,
.docs-list a:focus-visible,
.net-breadcrumb a:focus-visible,
.net-back-link:focus-visible,
.lesson-list a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(88, 179, 143, 0.35);
  border-color: rgba(0, 255, 133, 0.45);
}

.net-card-link::after {
  content: '→';
  transition: transform 0.22s ease;
}
html[dir="rtl"] .net-card-link::after { content: '←'; }
.net-card:hover .net-card-link::after { transform: translateX(3px); }
html[dir="rtl"] .net-card:hover .net-card-link::after { transform: translateX(-3px); }

.net-reveal:nth-child(2) { transition-delay: 0.06s; }
.net-reveal:nth-child(3) { transition-delay: 0.12s; }
.net-reveal:nth-child(4) { transition-delay: 0.18s; }
.net-reveal:nth-child(5) { transition-delay: 0.24s; }
.net-reveal:nth-child(6) { transition-delay: 0.3s; }

.net-sticky-launch {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0; z-index: 900;
  padding: 0.65rem var(--container-px) calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(0, 0, 0, 0.92);
  border-top: 1px solid rgba(0, 255, 133, 0.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
}
.net-sticky-launch .btn { width: 100%; justify-content: center; min-height: 46px; font-weight: 800 !important; }

body.net-nav-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .net-reveal { opacity: 1; transform: none; transition: none; }
  .net-hero-orbit { animation: none; }
  .net-card { transition: border-color 0.2s; }
  .net-card:hover { transform: none; }
  #axiotrade-loader .loader-bar-fill { animation: none; }
}

@media (max-width: 1100px) {
  .nav-links--desktop { gap: 0.15rem; }
  .nav-links--desktop a { font-size: 0.78rem; padding-inline: 0.55rem; }
  .btn-nav-launch { padding-inline: 0.85rem !important; font-size: 0.78rem !important; }
}

@media (max-width: 768px) {
  .net-section { padding: clamp(2.25rem, 6vw, 3.5rem) 0; }
  .net-page-head { padding-top: 2rem; }
  .net-page-head h1 { font-size: clamp(1.55rem, 6vw, 2rem); }
  .net-grid--2 { grid-template-columns: 1fr; }
  .intel-grid { grid-template-columns: 1fr; }
  .glossary-list { gap: 0.85rem; }
  .net-launch-copy h2 { font-size: clamp(1.25rem, 5vw, 1.65rem); }
  .footer-grid { gap: 1.5rem; }
  .net-page--article .net-sticky-launch { display: block; }
  body.net-page--article { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 390px) {
  .net-stats-grid { grid-template-columns: 1fr; }
  .net-stat { padding: 0.5rem 0.35rem; }
  .net-breadcrumb { gap: 0.25rem 0.35rem; }
  .cat-nav { gap: 0.35rem; }
  .cat-nav a { font-size: 0.72rem; padding: 0.4rem 0.75rem; }
}

html[dir="rtl"] .cat-nav,
html[dir="rtl"] .intel-grid,
html[dir="rtl"] .glossary-search-wrap,
html[dir="rtl"] .lesson-list,
html[dir="rtl"] .docs-list { direction: rtl; }
html[dir="rtl"] .lesson-list li { flex-direction: row-reverse; text-align: right; }
html[dir="rtl"] .docs-list a { flex-direction: row-reverse; }
html[dir="rtl"] .glossary-term { text-align: right; }
html[dir="rtl"] .intel-panel { text-align: right; }
html[dir="rtl"] .net-page-head { text-align: right; }
html[dir="rtl"] .net-page-head--center { text-align: center; }
